diff options
author | Thomas Martitz <kugel@rockbox.org> | 2010-10-10 23:15:05 +0000 |
---|---|---|
committer | Thomas Martitz <kugel@rockbox.org> | 2010-10-10 23:15:05 +0000 |
commit | 8a0152bd4ae638c1fe4917b855fcb9fc6a15202c (patch) | |
tree | 7a3a81bf30d49a3c072d89485f79207bc7d2c29e /firmware/export/lcd.h | |
parent | 752c91b50dcf36e4476cf89cceb6493e2fd4c586 (diff) |
Two new lcd/multi screen api convinience functions: draw_viewport(), fill_viewport().
They work as the drawrect/fillrect pendants but work on a viewport basis; pass NULL to draw the current viewport (the one set with set_viewport()).
In conjunction with action_get_touchscreen_press_in_vp() it should be less of a pain to draw buttons and get presses on them.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28239 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/lcd.h')
-rw-r--r-- | firmware/export/lcd.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/export/lcd.h b/firmware/export/lcd.h index 54a2f3c511..6dab8f4cad 100644 --- a/firmware/export/lcd.h +++ b/firmware/export/lcd.h @@ -507,6 +507,8 @@ extern void lcd_hline(int x1, int x2, int y); extern void lcd_vline(int x, int y1, int y2); extern void lcd_drawrect(int x, int y, int width, int height); extern void lcd_fillrect(int x, int y, int width, int height); +extern void lcd_draw_viewport(const struct viewport *vp); +extern void lcd_fill_viewport(const struct viewport *vp); extern void lcd_bitmap_part(const fb_data *src, int src_x, int src_y, int stride, int x, int y, int width, int height); extern void lcd_bitmap(const fb_data *src, int x, int y, int width, |