forked from len0rd/rockbox
Increase the number of pixels written to the Photo/Color LCD in one go to 0x10000 (was 64000)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10730 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
92fe88a3a7
commit
06fc18fca8
1 changed files with 4 additions and 4 deletions
|
@ -512,8 +512,8 @@ void lcd_yuv_blit(unsigned char * const src[3],
|
|||
h = height;
|
||||
|
||||
/* calculate how much we can do in one go */
|
||||
if (pixels_to_write > 64000) {
|
||||
h = (64000/2) / width;
|
||||
if (pixels_to_write > 0x10000) {
|
||||
h = (0x10000/2) / width;
|
||||
pixels_to_write = (width * h) * 2;
|
||||
}
|
||||
|
||||
|
@ -709,8 +709,8 @@ void lcd_update_rect(int x, int y, int width, int height)
|
|||
h = height;
|
||||
|
||||
/* calculate how much we can do in one go */
|
||||
if (pixels_to_write > 64000) {
|
||||
h = (64000/2) / width;
|
||||
if (pixels_to_write > 0x10000) {
|
||||
h = (0x10000/2) / width;
|
||||
pixels_to_write = (width * h) * 2;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue