From aca1326e7e3cc4c06e29b92dca256673b46aa510 Mon Sep 17 00:00:00 2001 From: Mel Date: Sat, 1 Oct 2022 16:59:29 +0200 Subject: Triangle --- src/Shader/ShaderSources.hpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/Shader/ShaderSources.hpp (limited to 'src/Shader/ShaderSources.hpp') 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 -- cgit 1.4.1