summaryrefslogtreecommitdiffstats
path: root/include/gui/2d-primitives.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/gui/2d-primitives.h')
-rw-r--r--include/gui/2d-primitives.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/include/gui/2d-primitives.h b/include/gui/2d-primitives.h
new file mode 100644
index 0000000000..06216bb03c
--- /dev/null
+++ b/include/gui/2d-primitives.h
@@ -0,0 +1,15 @@
+#ifndef __2D_PRIMITIVES__
+#define __2D_PRIMITIVES__
+
+#include <fb.h>
+
+void gu_draw_line(struct screen *sc,
+ int x1, int y1, int x2, int y2,
+ u8 r, u8 g, u8 b, u8 a,
+ unsigned int dash);
+
+void gu_draw_circle(struct screen *sc,
+ int x0, int y0, int radius,
+ u8 r, u8 g, u8 b, u8 a);
+
+#endif