diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2005-07-12 23:46:50 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2005-07-12 23:46:50 +0000 |
| commit | 89d6e950fd6c76c15eec15ef513e44c147fa3862 (patch) | |
| tree | f196477fb9e00c43238173789ef5471c5bc6c39f /apps/plugin.c | |
| parent | 426df39c4c7900d6e2ec4f0f8a9087a08c3405f0 (diff) | |
| download | rockbox-89d6e950fd6c76c15eec15ef513e44c147fa3862.zip rockbox-89d6e950fd6c76c15eec15ef513e44c147fa3862.tar.gz rockbox-89d6e950fd6c76c15eec15ef513e44c147fa3862.tar.bz2 rockbox-89d6e950fd6c76c15eec15ef513e44c147fa3862.tar.xz | |
Added a number of new graphics functions to the plugin API.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7127 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 58b12fb..f346cf7 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -333,6 +333,14 @@ static const struct plugin_api rockbox_api = { &rundb_fd, &rundb_initialized, strncmp, +#if LCD_DEPTH > 1 + lcd_set_foreground, + lcd_get_foreground, + lcd_set_background, + lcd_get_background, + lcd_bitmap_part, + lcd_bitmap, +#endif }; int plugin_load(const char* plugin, void* parameter) |