summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
authorRani Hod <raenye@gmail.com>2006-08-11 14:10:34 +0000
committerRani Hod <raenye@gmail.com>2006-08-11 14:10:34 +0000
commitbcd94a9b01d19d87a437cd8158a758f206b30825 (patch)
treea98c155891484895a082763ea82c51fe76b89859 /firmware/export
parentd24ed9987b54c16fd73087cf01c27bafcf03dd1c (diff)
Accepted FS #5786 by Michael Sevakis - lcd_yuv_blit() for X5.
hard coded to YUV4:2:0 for now, gives ~13.5 fps. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10528 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export')
-rw-r--r--firmware/export/lcd.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/firmware/export/lcd.h b/firmware/export/lcd.h
index 5c362c2b53..147940fa4f 100644
--- a/firmware/export/lcd.h
+++ b/firmware/export/lcd.h
@@ -72,7 +72,8 @@ extern void lcd_puts_scroll_style(int x, int y, const unsigned char* string,
extern void lcd_icon(int icon, bool enable);
#if CONFIG_LCD == LCD_IPODCOLOR || CONFIG_LCD == LCD_IPODNANO \
- || CONFIG_LCD == LCD_H300 || CONFIG_LCD == LCD_IPODVIDEO
+ || CONFIG_LCD == LCD_H300 || CONFIG_LCD == LCD_IPODVIDEO \
+ || CONFIG_LCD == LCD_X5
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);