aboutsummaryrefslogtreecommitdiff
path: root/shader.h
diff options
context:
space:
mode:
Diffstat (limited to 'shader.h')
-rw-r--r--shader.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/shader.h b/shader.h
new file mode 100644
index 0000000..f748519
--- /dev/null
+++ b/shader.h
@@ -0,0 +1,8 @@
+#ifndef SHADER_H_
+#define SHADER_H_
+
+#include "./glad/glad.h"
+
+GLuint createShader(const char *vertexCode, const char *fragmentCode);
+
+#endif // SHADER_H_