summaryrefslogtreecommitdiff
path: root/gfx
diff options
context:
space:
mode:
Diffstat (limited to 'gfx')
-rw-r--r--gfx/gl/glSource.h2
-rw-r--r--gfx/gl/programHandle.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/gfx/gl/glSource.h b/gfx/gl/glSource.h
index e44c5a2..7b43c48 100644
--- a/gfx/gl/glSource.h
+++ b/gfx/gl/glSource.h
@@ -6,7 +6,7 @@
#include <string_view>
struct GLsource {
- using ShaderRef = glRef<GLuint, __glewCreateShader, __glewDeleteShader>;
+ using ShaderRef = glRef<GLuint, &__glewCreateShader, &__glewDeleteShader>;
const GLchar * text;
GLint len;
diff --git a/gfx/gl/programHandle.h b/gfx/gl/programHandle.h
index 6aa1084..5bd5c05 100644
--- a/gfx/gl/programHandle.h
+++ b/gfx/gl/programHandle.h
@@ -7,7 +7,7 @@
class ProgramHandleBase {
public:
ProgramHandleBase(GLuint, GLuint);
- using ProgramRef = glRef<GLuint, __glewCreateProgram, __glewDeleteProgram>;
+ using ProgramRef = glRef<GLuint, &__glewCreateProgram, &__glewDeleteProgram>;
ProgramRef m_program;
GLint viewProjection_uniform, model_uniform;