diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2005-10-01 10:20:55 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2005-10-01 10:20:55 +0000 |
| commit | 05042affc76ec42481bcddba4a3f94a7b77ec98d (patch) | |
| tree | fc1f73129fbe09b3e2022828c717ba7eb9507603 /apps/plugin.c | |
| parent | f0fe3c94772ddf971810e5082dcfb9b0ac462ae4 (diff) | |
| download | rockbox-05042affc76ec42481bcddba4a3f94a7b77ec98d.zip rockbox-05042affc76ec42481bcddba4a3f94a7b77ec98d.tar.gz rockbox-05042affc76ec42481bcddba4a3f94a7b77ec98d.tar.bz2 rockbox-05042affc76ec42481bcddba4a3f94a7b77ec98d.tar.xz | |
Core: A graphics framework can now register a hook function to extend the core screendump routine. * Grayscale library: (1) Changed the screendump routine into a hook, and implemented it for H1x0. (2) The planar pixel setting routines now use one register less. Fixes build problem with developer builds (frame pointers enabled) on coldfire.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7574 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
| -rw-r--r-- | apps/plugin.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index 6748a19..35ed62a 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -355,6 +355,8 @@ static const struct plugin_api rockbox_api = { menu_draw, menu_insert, menu_set_cursor, + + screen_dump_set_hook, }; int plugin_load(const char* plugin, void* parameter) |