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:
parent
8bcb4a6971
commit
9c2ebdf724
1 changed files with 3 additions and 5 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue