summaryrefslogtreecommitdiff
path: root/firmware/export/lcd.h
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2006-07-28 07:17:00 +0000
committerJens Arnold <amiconn@rockbox.org>2006-07-28 07:17:00 +0000
commitcb36fec3922cb1317bdb06a6497370f188694d4e (patch)
tree5dfe6aa35f8e55485e18de4c5bdac0ed54e8d80c /firmware/export/lcd.h
parent2d4cfa8738abc42603de8f90e715433bb4345dd7 (diff)
downloadrockbox-cb36fec3922cb1317bdb06a6497370f188694d4e.tar.gz
rockbox-cb36fec3922cb1317bdb06a6497370f188694d4e.zip
LCD drivers: * Slight speedup for 2bit greyscale drivers. Use the same scrolltext drawing anywhere. * Cleanup, fixes and definitions in preparation for X5 remote.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10346 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/lcd.h')
-rw-r--r--firmware/export/lcd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/lcd.h b/firmware/export/lcd.h
index 89bf35300c..38561a725e 100644
--- a/firmware/export/lcd.h
+++ b/firmware/export/lcd.h
@@ -138,7 +138,7 @@ extern void lcd_jump_scroll_delay(int ms);
138 138
139/* Low-level drawing function types */ 139/* Low-level drawing function types */
140typedef void lcd_pixelfunc_type(int x, int y); 140typedef void lcd_pixelfunc_type(int x, int y);
141typedef void lcd_blockfunc_type(unsigned char *address, unsigned mask, unsigned bits); 141typedef void lcd_blockfunc_type(fb_data *address, unsigned mask, unsigned bits);
142#if LCD_DEPTH >= 8 142#if LCD_DEPTH >= 8
143typedef void lcd_fastpixelfunc_type(fb_data *address); 143typedef void lcd_fastpixelfunc_type(fb_data *address);
144#endif 144#endif