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.zip
rockbox-93fccc763b97323cb3112bf9afee819cd03ba195.tar.gz
rockbox-93fccc763b97323cb3112bf9afee819cd03ba195.tar.bz2
rockbox-93fccc763b97323cb3112bf9afee819cd03ba195.tar.xz
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 fdcf3c2..d38cc42 100644
--- a/apps/plugin.h
+++ b/apps/plugin.h
@@ -794,6 +794,14 @@ struct plugin_api {
#if defined(HAVE_LCD_MODES)
void (*lcd_set_mode)(int mode);
#endif
+
+#if defined(HAVE_LCD_MODES)
+#if HAVE_LCD_MODES & LCD_MODE_PAL256
+ void (*lcd_blit_pal256)(unsigned char *src, int src_x, int src_y, int x, int y,
+ int width, int height);
+ void (*lcd_pal256_update_pal)(fb_data *palette);
+#endif
+#endif
};
/* plugin header */