summaryrefslogtreecommitdiff
path: root/firmware/drivers/lcd-ipod.c
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2006-02-05 18:25:41 +0000
committerDave Chapman <dave@dchapman.com>2006-02-05 18:25:41 +0000
commit2924a48ca55e0207d939998307d82e4b7f4502f8 (patch)
tree5271d5b8917a5db9778a2cce6b35fe578c75b02b /firmware/drivers/lcd-ipod.c
parent75a60fbf69fb7d7be5839b35efc8253d682a1c7d (diff)
downloadrockbox-2924a48ca55e0207d939998307d82e4b7f4502f8.tar.gz
rockbox-2924a48ca55e0207d939998307d82e4b7f4502f8.zip
Create config file for iPod 4G greyscale and various iPod 3G/4G greyscale fixes
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8585 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/drivers/lcd-ipod.c')
-rw-r--r--firmware/drivers/lcd-ipod.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/firmware/drivers/lcd-ipod.c b/firmware/drivers/lcd-ipod.c
index 2d165551e6..529509f4d8 100644
--- a/firmware/drivers/lcd-ipod.c
+++ b/firmware/drivers/lcd-ipod.c
@@ -156,6 +156,19 @@ void lcd_set_contrast(int val)
156 lcd_contrast = val; 156 lcd_contrast = val;
157} 157}
158 158
159void lcd_set_invert_display(bool yesno)
160{
161 /* TODO: Implement lcd_set_invert_display() */
162 (void)yesno;
163}
164
165/* turn the display upside down (call lcd_update() afterwards) */
166void lcd_set_flip(bool yesno)
167{
168 /* TODO: Implement lcd_set_flip() */
169 (void)yesno;
170}
171
159void lcd_update_rect(int x, int y, int width, int height) 172void lcd_update_rect(int x, int y, int width, int height)
160{ 173{
161 int cursor_pos, xx; 174 int cursor_pos, xx;