From f7353ec277198b295c6c842a4a4a07b403b2a572 Mon Sep 17 00:00:00 2001 From: epoch Date: Wed, 21 Dec 2016 11:58:30 -0600 Subject: trying to split up hackvr.c into graphical and non-graphical stuff to make it easier to port it to different graphic systems --- src/graphics.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/graphics.h (limited to 'src/graphics.h') diff --git a/src/graphics.h b/src/graphics.h new file mode 100644 index 0000000..ff17b9a --- /dev/null +++ b/src/graphics.h @@ -0,0 +1,11 @@ +#ifndef _HACKVR_GRAPHICS_H_ +#define _HACKVR_GRAPHICS_H_ + +#include + +int x11_init(); +int x11_event_handler(); +void draw_screen(Display *dpy,Window w,GC gc); +void set_aspect_ratio(); + +#endif -- cgit v1.2.3