summaryrefslogtreecommitdiff
path: root/apps/plugins/lib/playergfx.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/lib/playergfx.h')
-rw-r--r--apps/plugins/lib/playergfx.h18
1 files changed, 11 insertions, 7 deletions
diff --git a/apps/plugins/lib/playergfx.h b/apps/plugins/lib/playergfx.h
index ced484398e..a0e3973dd4 100644
--- a/apps/plugins/lib/playergfx.h
+++ b/apps/plugins/lib/playergfx.h
@@ -30,16 +30,20 @@ bool pgfx_init(struct plugin_api* newrb, int cwidth, int cheight);
30void pgfx_release(void); 30void pgfx_release(void);
31void pgfx_display(int cx, int cy); 31void pgfx_display(int cx, int cy);
32void pgfx_update(void); 32void pgfx_update(void);
33
34void pgfx_set_drawmode(int mode);
35int pgfx_get_drawmode(void);
36
33void pgfx_clear_display(void); 37void pgfx_clear_display(void);
34void pgfx_drawpixel(int x, int y); 38void pgfx_drawpixel(int x, int y);
35void pgfx_clearpixel(int x, int y);
36void pgfx_invertpixel(int x, int y);
37void pgfx_drawline(int x1, int y1, int x2, int y2); 39void pgfx_drawline(int x1, int y1, int x2, int y2);
38void pgfx_clearline(int x1, int y1, int x2, int y2); 40void pgfx_hline(int x1, int x2, int y);
39void pgfx_invertline(int x1, int y1, int x2, int y2); 41void pgfx_vline(int x, int y1, int y2);
40void pgfx_invertrect (int x, int y, int nx, int ny); 42void pgfx_drawrect(int x, int y, int width, int height);
41void pgfx_bitmap (const unsigned char *src, int x, int y, int nx, int ny, 43void pgfx_fillrect(int x, int y, int width, int height);
42 bool clear); 44void pgfx_bitmap_part(const unsigned char *src, int src_x, int src_y,
45 int stride, int x, int y, int width, int height);
46void pgfx_bitmap(const unsigned char *src, int x, int y, int width, int height);
43 47
44#endif /* HAVE_LCD_CHARCELLS */ 48#endif /* HAVE_LCD_CHARCELLS */
45#endif /* __PGFX_H__ */ 49#endif /* __PGFX_H__ */