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.tar.gz
rockbox-75640f45ebeff048d8dfda6d300dec47d4ad4baa.zip
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 98664117aa..ced484398e 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);
38void pgfx_clearline(int x1, int y1, int x2, int y2); 38void pgfx_clearline(int x1, int y1, int x2, int y2);
39void pgfx_invertline(int x1, int y1, int x2, int y2); 39void pgfx_invertline(int x1, int y1, int x2, int y2);
40void pgfx_invertrect (int x, int y, int nx, int ny); 40void pgfx_invertrect (int x, int y, int nx, int ny);
41void pgfx_bitmap (const unsigned char *src, int x, int y, int nx, int ny,
42 bool clear);
41 43
42#endif /* HAVE_LCD_CHARCELLS */ 44#endif /* HAVE_LCD_CHARCELLS */
43#endif /* __PGFX_H__ */ 45#endif /* __PGFX_H__ */