From d6d4b1948c0aee4cf428bdb2cc9674cad595db19 Mon Sep 17 00:00:00 2001 From: Vincent Lejeune Date: Tue, 16 Sep 2014 17:19:24 +0200 Subject: [PATCH] Use glewExperimental on OSX too --- 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 e74dca929..7b3f5847b 100644 --- a/src/graphics/glwrap.cpp +++ b/src/graphics/glwrap.cpp @@ -106,7 +106,7 @@ void initGL() return; is_gl_init = true; // For Mesa extension reporting -#ifdef __linux__ +#ifndef WIN32 glewExperimental = GL_TRUE; #endif GLenum err = glewInit();