summaryrefslogtreecommitdiff
path: root/apps/plugin.h
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 /apps/plugin.h
parentd24ed9987b54c16fd73087cf01c27bafcf03dd1c (diff)
downloadrockbox-bcd94a9b01d19d87a437cd8158a758f206b30825.tar.gz
rockbox-bcd94a9b01d19d87a437cd8158a758f206b30825.zip
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 'apps/plugin.h')
-rw-r--r--apps/plugin.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index 9f17fa6480..505e7ec666 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -539,9 +539,7 @@ struct plugin_api {
539 void (*lcd_remote_bitmap)(const fb_remote_data *src, int x, int y, int width, 539 void (*lcd_remote_bitmap)(const fb_remote_data *src, int x, int y, int width,
540 int height); 540 int height);
541#endif 541#endif
542#if (CONFIG_LCD == LCD_IPODCOLOR || CONFIG_LCD == LCD_IPODNANO \ 542#if defined(HAVE_LCD_COLOR) && !defined(SIMULATOR)
543 || CONFIG_LCD == LCD_H300 || CONFIG_LCD == LCD_IPODVIDEO) && \
544 !defined(SIMULATOR)
545 void (*lcd_yuv_blit)(unsigned char * const src[3], 543 void (*lcd_yuv_blit)(unsigned char * const src[3],
546 int src_x, int src_y, int stride, 544 int src_x, int src_y, int stride,
547 int x, int y, int width, int height); 545 int x, int y, int width, int height);