From 8b67830f6ea1d482757fc216b11736e7ee78813e Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Fri, 19 Feb 2010 20:14:12 +0000 Subject: [PATCH] Added check against OSG_GL3_AVAILABLE to avoid issues with GL3 build under linux --- include/osg/Drawable | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/osg/Drawable b/include/osg/Drawable index 8ed6c5654..49e315c33 100644 --- a/include/osg/Drawable +++ b/include/osg/Drawable @@ -53,7 +53,7 @@ #endif -#ifndef GL_EXT_timer_query +#if !defined(GL_EXT_timer_query) && !defined(OSG_GL3_AVAILABLE) #ifdef _WIN32 typedef __int64 GLint64EXT; typedef unsigned __int64 GLuint64EXT;