diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/embed-glsl.cpp.m4 | 4 | ||||
-rw-r--r-- | lib/embed-glsl.h.m4 | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/embed-glsl.cpp.m4 b/lib/embed-glsl.cpp.m4 index 003db65..5b25e0a 100644 --- a/lib/embed-glsl.cpp.m4 +++ b/lib/embed-glsl.cpp.m4 @@ -2,11 +2,11 @@ changecom()dnl // NAME #include "substr(TYPE,1)-NAME.h" #include <GL/glew.h> -#include "gfx/gl/glSource.h" +#include "gfx/gl/shader.h" #include "lib/strings.hpp" constexpr const GLchar * src { R"GLSL-EMBED(dnl include(SOURCE))GLSL-EMBED" }; constexpr auto len { constexpr_strlen (src) }; -const GLsource NAME`_'substr(TYPE,1) { src, len, GLTYPE }; +const Shader NAME`_'substr(TYPE,1) { src, len, GLTYPE }; diff --git a/lib/embed-glsl.h.m4 b/lib/embed-glsl.h.m4 index 57ba0cf..a2b4770 100644 --- a/lib/embed-glsl.h.m4 +++ b/lib/embed-glsl.h.m4 @@ -1,6 +1,6 @@ #pragma once // NAME -#include <gfx/gl/glSource.h> +#include <gfx/gl/shader.h> -extern const GLsource NAME`_'substr(TYPE,1); +extern const Shader NAME`_'substr(TYPE,1); |