From 3d341b8ca1bb80f5fc1cba46186bc4186fd2f247 Mon Sep 17 00:00:00 2001 From: jules Date: Tue, 2 Feb 2016 14:21:37 +0000 Subject: [PATCH] Added some linux GL definitions --- modules/juce_opengl/native/juce_OpenGLExtensions.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/juce_opengl/native/juce_OpenGLExtensions.h b/modules/juce_opengl/native/juce_OpenGLExtensions.h index 3eb6e13af4..abfdda53d6 100644 --- a/modules/juce_opengl/native/juce_OpenGLExtensions.h +++ b/modules/juce_opengl/native/juce_OpenGLExtensions.h @@ -120,6 +120,9 @@ struct OpenGLExtensionFunctions #define JUCE_DECLARE_GL_FUNCTION(name, returnType, params, callparams) typedef returnType (*type_ ## name) params; type_ ## name name; JUCE_GL_BASE_FUNCTIONS (JUCE_DECLARE_GL_FUNCTION) JUCE_GL_EXTENSION_FUNCTIONS (JUCE_DECLARE_GL_FUNCTION) + #if JUCE_OPENGL3 + JUCE_GL_VERTEXBUFFER_FUNCTIONS (JUCE_DECLARE_GL_FUNCTION) + #endif //============================================================================== #elif JUCE_OPENGL_ES