summaryrefslogtreecommitdiffstats
path: root/firmware/export/lcd.h
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2007-09-25 02:59:42 +0000
committerMichael Sevakis <jethead71@rockbox.org>2007-09-25 02:59:42 +0000
commit287d6223d3e4f90043e5fd36cf49d7267b53023d (patch)
tree04771c28f2b826099805f5a5ad98b8c4e41091cc /firmware/export/lcd.h
parent24327ddf7ba62c873bd392fa5abe5c341b4a47b9 (diff)
downloadrockbox-287d6223d3e4f90043e5fd36cf49d7267b53023d.tar.gz
rockbox-287d6223d3e4f90043e5fd36cf49d7267b53023d.zip
Dithering option for mpegplayer on gigabeat-f/x and e200. Assembly IDCT for ARm just to make it all work more nicely. Move UI simulator YUV code to its core to adapt it.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14851 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/lcd.h')
-rw-r--r--firmware/export/lcd.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/firmware/export/lcd.h b/firmware/export/lcd.h
index 49256ff50f..ac0aea8664 100644
--- a/firmware/export/lcd.h
+++ b/firmware/export/lcd.h
@@ -84,7 +84,9 @@ extern void lcd_puts_scroll(int x, int y, const unsigned char* string);
extern void lcd_puts_scroll_style(int x, int y, const unsigned char* string,
int style);
-#if defined(HAVE_LCD_COLOR) && !defined(SIMULATOR)
+#if defined(HAVE_LCD_COLOR)
+#define LCD_YUV_DITHER 0x1
+extern void lcd_yuv_set_options(unsigned options);
extern void lcd_yuv_blit(unsigned char * const src[3],
int src_x, int src_y, int stride,
int x, int y, int width, int height);