diff options
author | Thomas Martitz <kugel@rockbox.org> | 2011-11-08 21:34:46 +0000 |
---|---|---|
committer | Thomas Martitz <kugel@rockbox.org> | 2011-11-08 21:34:46 +0000 |
commit | 13209604c1512658e729d0bd9f1c54cf3e53568d (patch) | |
tree | 2787f9036b5c40cf79cd324f3d215bb9d48dd34a /apps/screen_access.h | |
parent | 6223ad266e556f5b8d749d5f4fe08e27385be66f (diff) | |
download | rockbox-13209604c1512658e729d0bd9f1c54cf3e53568d.tar.gz rockbox-13209604c1512658e729d0bd9f1c54cf3e53568d.tar.bz2 rockbox-13209604c1512658e729d0bd9f1c54cf3e53568d.zip |
Add new lcd_bmp and lcd_bmp_part APIs.
This new APIs wrap around lcd_[mono|transparent]_bitmap/_part calls and
handle all kinds bitmaps. The intended use is to draw bitmaps that
come from read_bmp_fd/_file.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30936 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/screen_access.h')
-rw-r--r-- | apps/screen_access.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/screen_access.h b/apps/screen_access.h index 04cc6f4f90..a9d1408898 100644 --- a/apps/screen_access.h +++ b/apps/screen_access.h @@ -97,6 +97,9 @@ struct screen int x, int y, int width, int height); void (*transparent_bitmap_part)(const void *src, int src_x, int src_y, int stride, int x, int y, int width, int height); + 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); |