summaryrefslogtreecommitdiff
path: root/apps/screen_access.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/screen_access.h')
-rw-r--r--apps/screen_access.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/screen_access.h b/apps/screen_access.h
index 680c6625fe..cf74a97ba1 100644
--- a/apps/screen_access.h
+++ b/apps/screen_access.h
@@ -72,7 +72,7 @@ struct screen
72 72
73 void (*scroll_step)(int pixels); 73 void (*scroll_step)(int pixels);
74 void (*puts_offset)(int x, int y, const unsigned char *str, int offset); 74 void (*puts_offset)(int x, int y, const unsigned char *str, int offset);
75 void (*puts_style_offset)(int x, int y, const unsigned char *str, 75 void (*puts_style_offset)(int x, int y, const unsigned char *str,
76 int style, int offset); 76 int style, int offset);
77 void (*puts_scroll_style)(int x, int y, const unsigned char *string, 77 void (*puts_scroll_style)(int x, int y, const unsigned char *string,
78 int style); 78 int style);
@@ -87,12 +87,15 @@ struct screen
87 void (*bitmap)(const fb_data *src, 87 void (*bitmap)(const fb_data *src,
88 int x, int y, int width, int height); 88 int x, int y, int width, int height);
89 void (*bitmap_part)(const fb_data *src, int src_x, int src_y, 89 void (*bitmap_part)(const fb_data *src, int src_x, int src_y,
90 int stride, int x, int y, int width, int height); 90 int stride, int x, int y, int width, int height);
91 void (*transparent_bitmap)(const fb_data *src, 91 void (*transparent_bitmap)(const fb_data *src,
92 int x, int y, int width, int height); 92 int x, int y, int width, int height);
93 void (*transparent_bitmap_part)(const fb_data *src, int src_x, int src_y, 93 void (*transparent_bitmap_part)(const fb_data *src, int src_x, int src_y,
94 int stride, int x, int y, int width, int height); 94 int stride, int x, int y, int width, int height);
95 void (*set_drawmode)(int mode); 95 void (*set_drawmode)(int mode);
96#if defined(HAVE_LCD_COLOR) && LCD_REMOTE_DEPTH > 1
97 unsigned (*color_to_native)(unsigned color);
98#endif
96#if (LCD_DEPTH > 1) || (LCD_REMOTE_DEPTH > 1) 99#if (LCD_DEPTH > 1) || (LCD_REMOTE_DEPTH > 1)
97 unsigned (*get_background)(void); 100 unsigned (*get_background)(void);
98 unsigned (*get_foreground)(void); 101 unsigned (*get_foreground)(void);