summaryrefslogtreecommitdiff
path: root/uisimulator/sdl/lcd-sdl.c
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 /uisimulator/sdl/lcd-sdl.c
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 'uisimulator/sdl/lcd-sdl.c')
-rw-r--r--uisimulator/sdl/lcd-sdl.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/uisimulator/sdl/lcd-sdl.c b/uisimulator/sdl/lcd-sdl.c
index a90efbd204..80a3c96a87 100644
--- a/uisimulator/sdl/lcd-sdl.c
+++ b/uisimulator/sdl/lcd-sdl.c
@@ -73,7 +73,11 @@ void lcd_update_rect(int x_start, int y_start, int width, int height)
73#if LCD_DEPTH == 1 73#if LCD_DEPTH == 1
74 *p = ((lcd_framebuffer[y/8][x] >> (y & 7)) & 1); 74 *p = ((lcd_framebuffer[y/8][x] >> (y & 7)) & 1);
75#elif LCD_DEPTH == 2 75#elif LCD_DEPTH == 2
76#if LCD_PIXELFORMAT == HORIZONTAL_PACKING
77 *p = ((lcd_framebuffer[y][x/4] >> (2 * (x & 3))) & 3);
78#else
76 *p = ((lcd_framebuffer[y/4][x] >> (2 * (y & 3))) & 3); 79 *p = ((lcd_framebuffer[y/4][x] >> (2 * (y & 3))) & 3);
80#endif
77#elif LCD_DEPTH == 16 81#elif LCD_DEPTH == 16
78#if LCD_PIXELFORMAT == RGB565SWAPPED 82#if LCD_PIXELFORMAT == RGB565SWAPPED
79 unsigned bits = lcd_framebuffer[y][x]; 83 unsigned bits = lcd_framebuffer[y][x];