summaryrefslogtreecommitdiff
path: root/src/gl/window.c
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2022-06-16 22:20:56 -0500
committersanine <sanine.not@pm.me>2022-06-16 22:20:56 -0500
commit2cdda7ca1276b7f8cc3c235262aa5d9a1204d954 (patch)
tree608806157c550da269d93e56fd7d5aca41a87573 /src/gl/window.c
parent38fc53f3ddb1e27457307dc8ac34c0d5e535a9c0 (diff)
add initial window framework
Diffstat (limited to 'src/gl/window.c')
-rw-r--r--src/gl/window.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/gl/window.c b/src/gl/window.c
new file mode 100644
index 0000000..c81c041
--- /dev/null
+++ b/src/gl/window.c
@@ -0,0 +1,9 @@
+#include "gl/glad/glad.h"
+#include <GLFW/glfw3.h>
+#include <lua.h>
+
+
+int gl_init(lua_State *L)
+{
+ return 0;
+}