summaryrefslogtreecommitdiff
path: root/glgfx.h
diff options
context:
space:
mode:
Diffstat (limited to 'glgfx.h')
-rw-r--r--glgfx.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/glgfx.h b/glgfx.h
new file mode 100644
index 0000000..b2e9997
--- /dev/null
+++ b/glgfx.h
@@ -0,0 +1,16 @@
+#ifndef GLGFX_H
+#define GLGFX_H
+#include "GL/glew.h"
+#include "GL/gl.h"
+#include "gfx.h"
+#include <iostream>
+#include <fstream>
+#include <glm/glm.hpp>
+#include <glm/gtc/matrix_transform.hpp>
+#include <glm/gtc/type_ptr.hpp>
+int initglgfx();
+int genshaders();
+int drawmodel(float x, float y, float z, float xr, float yr, float zr);
+int quitglgfx();
+std::string readfile(const char *);
+#endif