From 2924a48ca55e0207d939998307d82e4b7f4502f8 Mon Sep 17 00:00:00 2001 From: Dave Chapman Date: Sun, 5 Feb 2006 18:25:41 +0000 Subject: 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 --- firmware/drivers/lcd-ipod.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'firmware/drivers/lcd-ipod.c') 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) lcd_contrast = val; } +void lcd_set_invert_display(bool yesno) +{ + /* TODO: Implement lcd_set_invert_display() */ + (void)yesno; +} + +/* turn the display upside down (call lcd_update() afterwards) */ +void lcd_set_flip(bool yesno) +{ + /* TODO: Implement lcd_set_flip() */ + (void)yesno; +} + void lcd_update_rect(int x, int y, int width, int height) { int cursor_pos, xx; -- cgit v1.2.3