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.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/screen_access.h b/apps/screen_access.h
index 7b8018dc41..ae0a962015 100644
--- a/apps/screen_access.h
+++ b/apps/screen_access.h
@@ -82,10 +82,16 @@ struct screen
82 int style, int offset); 82 int style, int offset);
83 void (*mono_bitmap)(const unsigned char *src, 83 void (*mono_bitmap)(const unsigned char *src,
84 int x, int y, int width, int height); 84 int x, int y, int width, int height);
85 void (*mono_bitmap_part)(const unsigned char *src, int src_x, int src_y,
86 int stride, int x, int y, int width, int height);
85 void (*bitmap)(const fb_data *src, 87 void (*bitmap)(const fb_data *src,
86 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,
90 int stride, int x, int y, int width, int height);
87 void (*transparent_bitmap)(const fb_data *src, 91 void (*transparent_bitmap)(const fb_data *src,
88 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,
94 int stride, int x, int y, int width, int height);
89 void (*set_drawmode)(int mode); 95 void (*set_drawmode)(int mode);
90#if (LCD_DEPTH > 1) || (LCD_REMOTE_DEPTH > 1) 96#if (LCD_DEPTH > 1) || (LCD_REMOTE_DEPTH > 1)
91 unsigned (*get_background)(void); 97 unsigned (*get_background)(void);