From f3752a03f0745c86442722b75ba3365e4be1c126 Mon Sep 17 00:00:00 2001 From: Vincent Lejeune Date: Mon, 25 Aug 2014 01:53:05 +0200 Subject: [PATCH] Enable arb debug output on all non apple platform --- src/graphics/glwrap.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graphics/glwrap.cpp b/src/graphics/glwrap.cpp index 219e2f558..031b08ef4 100644 --- a/src/graphics/glwrap.cpp +++ b/src/graphics/glwrap.cpp @@ -108,7 +108,7 @@ PFNGLVERTEXATTRIBLPOINTERPROC glVertexAttribLPointer; static bool is_gl_init = false; #ifdef DEBUG -#ifdef WIN32 +#if !defined(__APPLE__) #define ARB_DEBUG_OUTPUT #endif #endif