video: Tidy up 24/32 BMP blitting
Drop the unnecessary brackets. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
ecb8b4f8f3
commit
f5aa93eb53
@ -345,10 +345,10 @@ int video_bmp_display(struct udevice *dev, ulong bmp_image, int x, int y,
|
|||||||
bmap += 3;
|
bmap += 3;
|
||||||
fb += 2;
|
fb += 2;
|
||||||
} else {
|
} else {
|
||||||
*(fb++) = *(bmap++);
|
*fb++ = *bmap++;
|
||||||
*(fb++) = *(bmap++);
|
*fb++ = *bmap++;
|
||||||
*(fb++) = *(bmap++);
|
*fb++ = *bmap++;
|
||||||
*(fb++) = 0;
|
*fb++ = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
fb -= priv->line_length + width * (bpix / 8);
|
fb -= priv->line_length + width * (bpix / 8);
|
||||||
@ -360,10 +360,10 @@ int video_bmp_display(struct udevice *dev, ulong bmp_image, int x, int y,
|
|||||||
case 32:
|
case 32:
|
||||||
for (i = 0; i < height; ++i) {
|
for (i = 0; i < height; ++i) {
|
||||||
for (j = 0; j < width; j++) {
|
for (j = 0; j < width; j++) {
|
||||||
*(fb++) = *(bmap++);
|
*fb++ = *bmap++;
|
||||||
*(fb++) = *(bmap++);
|
*fb++ = *bmap++;
|
||||||
*(fb++) = *(bmap++);
|
*fb++ = *bmap++;
|
||||||
*(fb++) = *(bmap++);
|
*fb++ = *bmap++;
|
||||||
}
|
}
|
||||||
fb -= priv->line_length + width * (bpix / 8);
|
fb -= priv->line_length + width * (bpix / 8);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user