summaryrefslogtreecommitdiff
path: root/src/gl/honey_gl.h
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2021-10-21 21:33:06 -0500
committersanine <sanine.not@pm.me>2021-10-21 21:33:06 -0500
commit9c238237597de90c73cc65c3fccf2f49bfaa46b4 (patch)
treebd7bb7846568e64104c63eba57a0adae1300d3ef /src/gl/honey_gl.h
parentd356c9bb873092e9d8ed53ee5f15a560accbf5bb (diff)
move test files to the same directories as the files they test
Diffstat (limited to 'src/gl/honey_gl.h')
-rw-r--r--src/gl/honey_gl.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/gl/honey_gl.h b/src/gl/honey_gl.h
new file mode 100644
index 0000000..fc57037
--- /dev/null
+++ b/src/gl/honey_gl.h
@@ -0,0 +1,18 @@
+#ifndef HONEY_GL_H
+#define HONEY_GL_H
+
+#include <stdbool.h>
+
+#ifdef UNIT_TEST
+#include "test/mock/mock_GLFW.h"
+#else
+#include "glad/glad.h"
+#include <GLFW/glfw3.h>
+#endif
+
+extern int honey_gl_window_ref;
+
+bool honey_gl_setup();
+
+
+#endif