diff options
author | Ben Basha <benbasha@rockbox.org> | 2006-02-10 13:57:11 +0000 |
---|---|---|
committer | Ben Basha <benbasha@rockbox.org> | 2006-02-10 13:57:11 +0000 |
commit | e0622ab588583d1148af54c0e856ae63339a3491 (patch) | |
tree | 89ee56eb249b4a02399690e35ea3d08d031ffcb9 /apps/screen_access.h | |
parent | 1e385fdaeb7f21d70c8f2dea180ce75461ac27b9 (diff) | |
download | rockbox-e0622ab588583d1148af54c0e856ae63339a3491.tar.gz rockbox-e0622ab588583d1148af54c0e856ae63339a3491.tar.bz2 rockbox-e0622ab588583d1148af54c0e856ae63339a3491.zip |
add a bitmap progress bar option + add %P|filename.bmp| tag to the WPS
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8648 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/screen_access.h')
-rw-r--r-- | apps/screen_access.h | 6 |
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 int style, int offset); void (*mono_bitmap)(const unsigned char *src, int x, int y, int width, int height); + void (*mono_bitmap_part)(const unsigned char *src, int src_x, int src_y, + int stride, int x, int y, int width, int height); void (*bitmap)(const fb_data *src, int x, int y, int width, int height); + void (*bitmap_part)(const fb_data *src, int src_x, int src_y, + int stride, int x, int y, int width, int height); void (*transparent_bitmap)(const fb_data *src, int x, int y, int width, int height); + void (*transparent_bitmap_part)(const fb_data *src, int src_x, int src_y, + int stride, int x, int y, int width, int height); void (*set_drawmode)(int mode); #if (LCD_DEPTH > 1) || (LCD_REMOTE_DEPTH > 1) unsigned (*get_background)(void); |