diff options
Diffstat (limited to 'BuddhaTest/include/Helpers.h')
-rw-r--r-- | BuddhaTest/include/Helpers.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/BuddhaTest/include/Helpers.h b/BuddhaTest/include/Helpers.h new file mode 100644 index 0000000..05ad151 --- /dev/null +++ b/BuddhaTest/include/Helpers.h @@ -0,0 +1,9 @@ +#pragma once
+#include <glad/glad.h>
+#include <GLFW/glfw3.h>
+
+namespace Helpers
+{
+ GLuint LoadShaders(const char * vertex_file_path, const char * fragment_file_path);
+ GLuint LoadComputeShader(const char * compute_file_path);
+}
\ No newline at end of file |