diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2006-07-28 07:35:45 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2006-07-28 07:35:45 +0000 |
| commit | 05ddd9a44eb565e936274b6f73fc76f7476113a7 (patch) | |
| tree | 0c2a5a8db4c86196deb06615b246d66e920784b7 /apps/plugin.c | |
| parent | cb36fec3922cb1317bdb06a6497370f188694d4e (diff) | |
| download | rockbox-05ddd9a44eb565e936274b6f73fc76f7476113a7.zip rockbox-05ddd9a44eb565e936274b6f73fc76f7476113a7.tar.gz rockbox-05ddd9a44eb565e936274b6f73fc76f7476113a7.tar.bz2 rockbox-05ddd9a44eb565e936274b6f73fc76f7476113a7.tar.xz | |
X5 remote LCD drawing. This will break target linking atm - lcd_remote_update[_rect]() are not yet implemented.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10347 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
| -rw-r--r-- | apps/plugin.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index e7909f7..f9f7e42 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -454,6 +454,14 @@ static const struct plugin_api rockbox_api = { font_get_bits, font_load, #endif +#if defined(HAVE_REMOTE_LCD) && (LCD_REMOTE_DEPTH > 1) + lcd_remote_set_foreground, + lcd_remote_get_foreground, + lcd_remote_set_background, + lcd_remote_get_background, + lcd_remote_bitmap_part, + lcd_remote_bitmap, +#endif }; int plugin_load(const char* plugin, void* parameter) |