summaryrefslogtreecommitdiff
path: root/src/graphics_cs.h
diff options
context:
space:
mode:
authorepoch <epoch@hacking.allowed.org>2017-03-19 04:51:01 -0500
committerepoch <epoch@hacking.allowed.org>2017-03-19 04:51:01 -0500
commit781ecd6529505e4bf1fd400634ee83bcb9a07c81 (patch)
treea5f51756d54dff5ebb47f5435198e1db15ce345d /src/graphics_cs.h
parent17347b2e23292aad11c879d3df4a0e73c31e2ae8 (diff)
downloadhackvr-781ecd6529505e4bf1fd400634ee83bcb9a07c81.tar.gz
hackvr-781ecd6529505e4bf1fd400634ee83bcb9a07c81.zip
I have no idea why I am doing this...
Diffstat (limited to 'src/graphics_cs.h')
-rw-r--r--src/graphics_cs.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/graphics_cs.h b/src/graphics_cs.h
new file mode 100644
index 0000000..b5e02fb
--- /dev/null
+++ b/src/graphics_cs.h
@@ -0,0 +1,26 @@
+#ifndef _HACKVR_GRAPHICS_CS_H_
+#define _HACKVR_GRAPHICS_CS_H_
+
+#include "math.h"
+
+//these are just the functions that all backends need to implement to work with hackvr.
+//the list of functions are subject to change.
+
+void draw_cs_line(cs_t p1,cs_t p2);
+void draw_cs_text(cs_t p,char *text);
+void draw_cs_shape(cs_s_t s);
+void draw_cs_filled_shape(cs_s_t s);
+void set_aspect_ratio();
+void set_color_based_on_distance(real d);
+void flipscreen();
+void set_color();
+void set_color_red();
+void set_color_blue();
+void clear_backbuffer();
+void keypress_handler(unsigned char sym,int x,int y);
+int graphics_init();
+int graphics_event_handler();
+void set_clipping_rectangle(int x,int y,int width,int height);
+void red_and_blue_magic();
+
+#endif