summaryrefslogtreecommitdiff
path: root/src/main.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.h')
-rw-r--r--src/main.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/main.h b/src/main.h
new file mode 100644
index 0000000..b2b0a6e
--- /dev/null
+++ b/src/main.h
@@ -0,0 +1,23 @@
+#ifndef MAIN_H_INCLUDED
+#define MAIN_H_INCLUDED
+
+#include <caca.h>
+#include <SDL2/SDL.h>
+#include <SDL2/SDL_opengl.h>
+#include <GL/glu.h>
+
+typedef struct {
+ caca_display_t *dp;
+ caca_canvas_t *cv;
+ caca_dither_t *d;
+ int w, h; // caca terminal size in characters
+ SDL_Window* sdl_win;
+ SDL_Renderer *sdl_rndr;
+ SDL_Texture *sdl_target;
+ void *raw_target;
+ SDL_GLContext gl_ctx;
+ Uint32 sdl_ticks;
+ Uint32 framecount;
+ Uint32 sc_framecount;
+} graphical_env_t;
+#endif