aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gdisp/QImage/gdisp_lld_qimage.h
diff options
context:
space:
mode:
authorJoel Bodenmann <joel@embedded.pro>2016-07-19 01:24:05 +0200
committerJoel Bodenmann <joel@embedded.pro>2016-07-19 01:24:05 +0200
commit038a1f3630a480cc9b2951e0af80b7a5dba58401 (patch)
tree611cd313e8d20132029b08d2e517033af23346a3 /drivers/gdisp/QImage/gdisp_lld_qimage.h
parent5ad68305a7c5929ca9e31ca7682fcce5dded769b (diff)
downloaduGFX-038a1f3630a480cc9b2951e0af80b7a5dba58401.tar.gz
uGFX-038a1f3630a480cc9b2951e0af80b7a5dba58401.tar.bz2
uGFX-038a1f3630a480cc9b2951e0af80b7a5dba58401.zip
Adding QImage display driver
Diffstat (limited to 'drivers/gdisp/QImage/gdisp_lld_qimage.h')
-rw-r--r--drivers/gdisp/QImage/gdisp_lld_qimage.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/drivers/gdisp/QImage/gdisp_lld_qimage.h b/drivers/gdisp/QImage/gdisp_lld_qimage.h
new file mode 100644
index 00000000..9e855f08
--- /dev/null
+++ b/drivers/gdisp/QImage/gdisp_lld_qimage.h
@@ -0,0 +1,15 @@
+#pragma once
+
+#include "../../../gfx.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+bool_t qimage_init(GDisplay* g, coord_t width, coord_t height);
+void qimage_setPixel(GDisplay* g);
+color_t qimage_getPixel(GDisplay* g);
+
+#ifdef __cplusplus
+}
+#endif