summary refs log tree commit diff
path: root/src/Shader/ShaderSources.hpp
diff options
context:
space:
mode:
authorMel <einebeere@gmail.com>2022-10-01 16:59:29 +0200
committerMel <einebeere@gmail.com>2022-10-01 16:59:29 +0200
commitaca1326e7e3cc4c06e29b92dca256673b46aa510 (patch)
treec7cb614990afa3140700448ab1c89091e1f6e347 /src/Shader/ShaderSources.hpp
parente2234b4afebb266878435d10267e7b162b1fe984 (diff)
downloadmeowcraft-aca1326e7e3cc4c06e29b92dca256673b46aa510.tar.zst
meowcraft-aca1326e7e3cc4c06e29b92dca256673b46aa510.zip
Triangle
Diffstat (limited to 'src/Shader/ShaderSources.hpp')
-rw-r--r--src/Shader/ShaderSources.hpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/Shader/ShaderSources.hpp b/src/Shader/ShaderSources.hpp
new file mode 100644
index 0000000..bd413b6
--- /dev/null
+++ b/src/Shader/ShaderSources.hpp
@@ -0,0 +1,13 @@
+#pragma once
+
+namespace MC::ShaderSources {
+
+constexpr const char* vertex_shader =
+#include "Generated/vertex.glsl.includable"
+;
+
+constexpr const char* fragment_shader =
+#include "Generated/fragment.glsl.includable"
+;
+
+}
\ No newline at end of file