summaryrefslogtreecommitdiff
path: root/apps/plugin.h
diff options
context:
space:
mode:
authorKarl Kurbjun <kkurbjun@gmail.com>2009-04-09 04:22:14 +0000
committerKarl Kurbjun <kkurbjun@gmail.com>2009-04-09 04:22:14 +0000
commit93fccc763b97323cb3112bf9afee819cd03ba195 (patch)
tree8b3da3ecd807da715478fe4cc1697fcffea1bd67 /apps/plugin.h
parent49fcfe81b861f866c4e9e16e272f33654a1be450 (diff)
downloadrockbox-93fccc763b97323cb3112bf9afee819cd03ba195.tar.gz
rockbox-93fccc763b97323cb3112bf9afee819cd03ba195.zip
M:Robe 500: More LCD initialization, QVGA (vs. VGA) is now enabled by default for performance, 256 color palette mode added, include some linker cleanups and reorganization. Doom and MPEGPlayer now run reaonably well.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20664 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
-rw-r--r--apps/plugin.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/plugin.h b/apps/plugin.h
index fdcf3c2afa..d38cc42ee7 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -794,6 +794,14 @@ struct plugin_api {
794#if defined(HAVE_LCD_MODES) 794#if defined(HAVE_LCD_MODES)
795 void (*lcd_set_mode)(int mode); 795 void (*lcd_set_mode)(int mode);
796#endif 796#endif
797
798#if defined(HAVE_LCD_MODES)
799#if HAVE_LCD_MODES & LCD_MODE_PAL256
800 void (*lcd_blit_pal256)(unsigned char *src, int src_x, int src_y, int x, int y,
801 int width, int height);
802 void (*lcd_pal256_update_pal)(fb_data *palette);
803#endif
804#endif
797}; 805};
798 806
799/* plugin header */ 807/* plugin header */