diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2012-12-07 01:50:52 -0500 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2012-12-18 19:16:26 -0500 |
commit | 371c86bf3f4d1708fc40db2aa7fa572eb429d0b4 (patch) | |
tree | be339c62eac616ac6938c2929349b72377c10ee2 /apps/plugin.c | |
parent | f668c3624184fedc14d34f87ad7b5f1e43bc87a1 (diff) |
Adapt OSD in plugin lib to be greylib compatible.
Requires addition of viewports and alternate framebuffers to greylib
which are essentially similar to the core implementation except that
the framebuffer can be any size and relationship to a viewport. Drawing
is always fully clipped to the intersecting area.
Adapt oscilloscope.c to the API change. FFT will use the new features
(later update).
Get rid of silly and wrong lcd_bmp_part use in OSD. Remove it from
plugin API (must be made incompatible now).
Change-Id: Iafa5e2174148fb8ad11db6b9d4add0dcabc5c563
Diffstat (limited to 'apps/plugin.c')
-rw-r--r-- | apps/plugin.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index baf6a2a256..9992d85620 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -799,7 +799,6 @@ static const struct plugin_api rockbox_api = { lcd_set_viewport, viewport_set_fullscreen, lcd_set_framebuffer, - lcd_bmp_part, #endif }; |