1
0
Fork 0
forked from len0rd/rockbox

Split the display & update function in two, and added invertpixel(), invertline() and invertrect().

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5916 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2005-02-11 19:35:50 +00:00
parent 707cb7bc04
commit b66f94b03d
2 changed files with 57 additions and 7 deletions

View file

@ -29,9 +29,13 @@
bool pgfx_init(struct plugin_api* newrb, int cwidth, int cheight);
void pgfx_release(void);
void pgfx_display(int cx, int cy);
void pgfx_update(void);
void pgfx_clear_display(void);
void pgfx_drawpixel(int x, int y);
void pgfx_invertpixel(int x, int y);
void pgfx_drawline(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);
#endif /* HAVE_LCD_CHARCELLS */
#endif /* __PGFX_H__ */