summaryrefslogtreecommitdiff
path: root/src/gl.c
diff options
context:
space:
mode:
authorPhil Jones <philj56@gmail.com>2021-11-14 23:37:16 +0000
committerPhil Jones <philj56@gmail.com>2021-11-14 23:37:16 +0000
commitd65bdf025f9685f3b332aefffe6f8b5c8dbe8827 (patch)
tree083d90d95e6c103b5c6967fe3ff496ad79a46992 /src/gl.c
parent929bca3f70c6406e7edbaf42804d8e1d1d9958e2 (diff)
Initial experiments with layer shell.
Diffstat (limited to 'src/gl.c')
-rw-r--r--src/gl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gl.c b/src/gl.c
index 94a2ba6..b62e59e 100644
--- a/src/gl.c
+++ b/src/gl.c
@@ -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;