From 52d2b12c32ab15f4314cf5f0b27ea24709ed1cb1 Mon Sep 17 00:00:00 2001 From: Franklin Wei Date: Sun, 8 Feb 2015 17:32:23 -0500 Subject: lots of optimization, new features --- drivers/include/gfx.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'drivers/include') diff --git a/drivers/include/gfx.h b/drivers/include/gfx.h index 42ada32..561eb3e 100644 --- a/drivers/include/gfx.h +++ b/drivers/include/gfx.h @@ -54,6 +54,12 @@ void gfx_set_background(uint32_t); uint32_t gfx_get_background(void); +void gfx_hline(int x1, int x2, int y); + +void gfx_vline(int y1, int y2, int x); + +void gfx_fillrect(int x1, int y1, int w, int h); + extern const uint16_t *gfx_width, *gfx_height; /* this is _BYTES_ per pixel, NOT BITS per pixel! */ -- cgit v1.1