summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2007-03-31 09:58:49 +0000
committerJens Arnold <amiconn@rockbox.org>2007-03-31 09:58:49 +0000
commit54ea2e435e1a5688de4e4dcf551a1fc9c1db323f (patch)
treee8ee4e55a20c872a6c0deff554734038c35dc661 /apps/plugin.c
parent6186b556bdbe97bc3c50dd8feb970590bec2053c (diff)
downloadrockbox-54ea2e435e1a5688de4e4dcf551a1fc9c1db323f.tar.gz
rockbox-54ea2e435e1a5688de4e4dcf551a1fc9c1db323f.zip
Charcell lcd driver: Preparations for switching to non-immediate LCD updates, using lcd_update() like on bitmap targets. * Added proper clipping. * Simplified simulator code.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12979 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index de04269a89..52d43123b7 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -66,6 +66,7 @@ static const struct plugin_api rockbox_api = {
66 66
67 /* lcd */ 67 /* lcd */
68 lcd_set_contrast, 68 lcd_set_contrast,
69 lcd_update,
69 lcd_clear_display, 70 lcd_clear_display,
70 lcd_setmargins, 71 lcd_setmargins,
71 lcd_getstringsize, 72 lcd_getstringsize,
@@ -114,7 +115,6 @@ static const struct plugin_api rockbox_api = {
114 lcd_puts_scroll_style, 115 lcd_puts_scroll_style,
115 &lcd_framebuffer[0][0], 116 &lcd_framebuffer[0][0],
116 lcd_blit, 117 lcd_blit,
117 lcd_update,
118 lcd_update_rect, 118 lcd_update_rect,
119 gui_scrollbar_draw, 119 gui_scrollbar_draw,
120 font_get, 120 font_get,