mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-15 16:12:28 -05:00
Lcd save function pointer to frame buffer get_address_fn before loops
Calling multiple levels of indirection in a loop slows things down Really these need to be rewritten to take a start and end address like most of the rest of the codebase But this is safer without having test hardware in hand Change-Id: Idae7b92ee779d020ed7fcc9334e2d5a9c710e64d
This commit is contained in:
parent
60e5786b48
commit
cfeeb7889d
23 changed files with 78 additions and 40 deletions
|
|
@ -333,17 +333,18 @@ void lcd_update_rect(int x, int y, int width, int height)
|
|||
x >>= 3;
|
||||
width = xmax - x + 1;
|
||||
|
||||
for (; y <= ymax; y++)
|
||||
void* (*fbaddr)(int x, int y) = FB_CURRENTVP_BUFFER->get_address_fn;
|
||||
for (; y <= ymax; y++)
|
||||
{
|
||||
lcd_cmd_and_data(R_RAM_ADDR_SET, (y << 5) + addr_offset - x);
|
||||
lcd_prepare_cmd(R_RAM_DATA);
|
||||
|
||||
fb_data *data = fbaddr(2*x,y);
|
||||
#if defined(IPOD_MINI) || defined(IPOD_MINI2G)
|
||||
if (pix_offset == -2)
|
||||
lcd_write_data_shifted(FBADDR(2*x, y), width);
|
||||
lcd_write_data_shifted(data, width);
|
||||
else
|
||||
#endif
|
||||
lcd_write_data(FBADDR(2*x, y), width);
|
||||
lcd_write_data(data, width);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue