summaryrefslogtreecommitdiff
path: root/firmware/export/lcd.h
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2006-02-09 00:48:53 +0000
committerDave Chapman <dave@dchapman.com>2006-02-09 00:48:53 +0000
commit8ad2df82754184a8dfe1a6d66248a1dd156286bd (patch)
treef1916f784da7adce628654f1480b3ada77498152 /firmware/export/lcd.h
parenta88632f885308667fed1b000f3d2d5a363b130c3 (diff)
downloadrockbox-8ad2df82754184a8dfe1a6d66248a1dd156286bd.tar.gz
rockbox-8ad2df82754184a8dfe1a6d66248a1dd156286bd.zip
Create an SDL sim for the iPod 4G Grayscale and also create an IPOD_ARCH define for all iPods.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8636 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/lcd.h')
-rw-r--r--firmware/export/lcd.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/firmware/export/lcd.h b/firmware/export/lcd.h
index bee8d3cd0c..d56f39d09c 100644
--- a/firmware/export/lcd.h
+++ b/firmware/export/lcd.h
@@ -192,10 +192,12 @@ typedef void lcd_fastpixelfunc_type(fb_data *address);
192/* Memory copy of display bitmap */ 192/* Memory copy of display bitmap */
193#if LCD_DEPTH == 1 193#if LCD_DEPTH == 1
194extern fb_data lcd_framebuffer[LCD_HEIGHT/8][LCD_WIDTH]; 194extern fb_data lcd_framebuffer[LCD_HEIGHT/8][LCD_WIDTH];
195#elif CONFIG_LCD == LCD_IPOD2BPP
196extern fb_data lcd_framebuffer[LCD_HEIGHT][LCD_WIDTH/4];
197#elif LCD_DEPTH == 2 195#elif LCD_DEPTH == 2
196#if LCD_PIXELFORMAT == HORIZONTAL_PACKING
197extern fb_data lcd_framebuffer[LCD_HEIGHT][LCD_WIDTH/4];
198#else
198extern fb_data lcd_framebuffer[LCD_HEIGHT/4][LCD_WIDTH]; 199extern fb_data lcd_framebuffer[LCD_HEIGHT/4][LCD_WIDTH];
200#endif
199#elif LCD_DEPTH == 16 201#elif LCD_DEPTH == 16
200extern fb_data lcd_framebuffer[LCD_HEIGHT][LCD_WIDTH]; 202extern fb_data lcd_framebuffer[LCD_HEIGHT][LCD_WIDTH];
201#elif LCD_DEPTH == 18 203#elif LCD_DEPTH == 18