summaryrefslogtreecommitdiffstats
path: root/apps/screen_access.h
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2013-12-20 23:34:28 +0100
committerThomas Martitz <kugel@rockbox.org>2014-01-07 11:36:00 +0100
commitacee675a5e67635e812a2d325a0f450d3409d53a (patch)
tree93ace0e60f91747f8d53004b91dca33de7da2bc8 /apps/screen_access.h
parent77836e57362f91cd037ea9c97a8fda00187d2070 (diff)
downloadrockbox-acee675a5e67635e812a2d325a0f450d3409d53a.tar.gz
rockbox-acee675a5e67635e812a2d325a0f450d3409d53a.zip
lcd-charcell: Add set_drawmode() wrapper to multi-screen API.
Change-Id: Idb6477aca8b19cb346ba2c2f5b91074e4679b0dd
Diffstat (limited to 'apps/screen_access.h')
-rw-r--r--apps/screen_access.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/screen_access.h b/apps/screen_access.h
index d5bcd7e095..26c9977bf2 100644
--- a/apps/screen_access.h
+++ b/apps/screen_access.h
@@ -66,6 +66,7 @@ struct screen
#ifdef HAVE_BUTTONBAR
bool has_buttonbar;
#endif
+ void (*set_drawmode)(int mode);
void (*set_viewport)(struct viewport* vp);
int (*getwidth)(void);
int (*getheight)(void);
@@ -101,7 +102,6 @@ struct screen
void (*bmp)(const struct bitmap *bm, int x, int y);
void (*bmp_part)(const struct bitmap* bm, int src_x, int src_y,
int x, int y, int width, int height);
- void (*set_drawmode)(int mode);
#if defined(HAVE_LCD_COLOR) && defined(LCD_REMOTE_DEPTH) && LCD_REMOTE_DEPTH > 1
unsigned (*color_to_native)(unsigned color);
#endif