diff options
author | Phil Jones <philj56@gmail.com> | 2021-11-14 23:37:16 +0000 |
---|---|---|
committer | Phil Jones <philj56@gmail.com> | 2021-11-14 23:37:16 +0000 |
commit | d65bdf025f9685f3b332aefffe6f8b5c8dbe8827 (patch) | |
tree | 083d90d95e6c103b5c6967fe3ff496ad79a46992 /src/gl.c | |
parent | 929bca3f70c6406e7edbaf42804d8e1d1d9958e2 (diff) |
Initial experiments with layer shell.
Diffstat (limited to 'src/gl.c')
-rw-r--r-- | src/gl.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -26,9 +26,9 @@ static const char *gl_debug_severity_string(GLenum type); void gl_initialise(struct gl *gl, struct image *texture) { #ifdef DEBUG - glEnable(GL_DEBUG_OUTPUT); - glEnable(GL_DEBUG_OUTPUT_SYNCHRONOUS); - glDebugMessageCallback(MessageCallback, 0); + //glEnable(GL_DEBUG_OUTPUT); + //glEnable(GL_DEBUG_OUTPUT_SYNCHRONOUS); + //glDebugMessageCallback(MessageCallback, 0); #endif if (texture == NULL || texture->buffer == NULL) { return; |