From 4478d76618efb2b7ada6a2444e4990490639c754 Mon Sep 17 00:00:00 2001 From: Niraj Venkat Date: Wed, 8 Jul 2015 15:28:25 -0700 Subject: [PATCH] attempt #3 - fixing ubuntu build --- libraries/gpu/src/gpu/GLBackendQuery.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/libraries/gpu/src/gpu/GLBackendQuery.cpp b/libraries/gpu/src/gpu/GLBackendQuery.cpp index bcd291f7e7..a6e34a90ca 100644 --- a/libraries/gpu/src/gpu/GLBackendQuery.cpp +++ b/libraries/gpu/src/gpu/GLBackendQuery.cpp @@ -11,6 +11,11 @@ #include "GPULogging.h" #include "GLBackendShared.h" +#ifndef GL_ARB_timer_query +#define GL_TIME_ELAPSED 0x88BF +#define GL_TIMESTAMP 0x8E28 +#endif + using namespace gpu; GLBackend::GLQuery::GLQuery() {}