summaryrefslogtreecommitdiff
path: root/apps/plugins/lib/playergfx.h
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2005-03-05 11:31:43 +0000
committerJens Arnold <amiconn@rockbox.org>2005-03-05 11:31:43 +0000
commit75640f45ebeff048d8dfda6d300dec47d4ad4baa (patch)
tree62a2909bf8c1419ebc25c2d8bcc42532c1848ce7 /apps/plugins/lib/playergfx.h
parentb0f57cb88e27a5fdad792abfdd84ca1607582809 (diff)
downloadrockbox-75640f45ebeff048d8dfda6d300dec47d4ad4baa.zip
rockbox-75640f45ebeff048d8dfda6d300dec47d4ad4baa.tar.gz
rockbox-75640f45ebeff048d8dfda6d300dec47d4ad4baa.tar.bz2
rockbox-75640f45ebeff048d8dfda6d300dec47d4ad4baa.tar.xz
Player graphics library: fixed and more robust bounds check, added bitmap drawing.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6139 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lib/playergfx.h')
-rw-r--r--apps/plugins/lib/playergfx.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/plugins/lib/playergfx.h b/apps/plugins/lib/playergfx.h
index 9866411..ced4843 100644
--- a/apps/plugins/lib/playergfx.h
+++ b/apps/plugins/lib/playergfx.h
@@ -38,6 +38,8 @@ void pgfx_drawline(int x1, int y1, int x2, int y2);
void pgfx_clearline(int x1, int y1, int x2, int y2);
void pgfx_invertline(int x1, int y1, int x2, int y2);
void pgfx_invertrect (int x, int y, int nx, int ny);
+void pgfx_bitmap (const unsigned char *src, int x, int y, int nx, int ny,
+ bool clear);
#endif /* HAVE_LCD_CHARCELLS */
#endif /* __PGFX_H__ */