1
0
Fork 0
forked from len0rd/rockbox

Speed up LCD driver on Ingenic Jz4740 by doing some sort of partial LCD updates.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20997 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Maurus Cuelenaere 2009-05-20 12:43:23 +00:00
parent 8bcb4a6971
commit 9c2ebdf724

View file

@ -71,13 +71,11 @@ bool lcd_active(void)
/* Update a fraction of the display. */
void lcd_update_rect(int x, int y, int width, int height)
{
/* Currently only do full updates.
* DMA can't handle partial updates and CPU is too slow compared
* to full DMA updates */
/* Currently only do updates with full LCD width.
* DMA can't handle full partial updates and CPU is too slow compared
* to DMA updates */
x = 0;
y = 0;
width = LCD_WIDTH;
height = LCD_HEIGHT;
mutex_lock(&lcd_mtx);