From be589191a0b5353124dde57b29698e82406bb235 Mon Sep 17 00:00:00 2001 From: ed Date: Tue, 23 Apr 2019 09:41:54 +0100 Subject: [PATCH] OpenGL: Added GL_POINT_SPRITE to juce_MissingGLDefinitions.h --- modules/juce_opengl/native/juce_MissingGLDefinitions.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/juce_opengl/native/juce_MissingGLDefinitions.h b/modules/juce_opengl/native/juce_MissingGLDefinitions.h index ea9fe3c67a..07ce6ecf92 100644 --- a/modules/juce_opengl/native/juce_MissingGLDefinitions.h +++ b/modules/juce_opengl/native/juce_MissingGLDefinitions.h @@ -96,6 +96,10 @@ enum MissingOpenGLDefinitions GL_MAX_ELEMENTS_INDICES = 0x80E9, #endif + #ifndef GL_POINT_SPRITE + GL_POINT_SPRITE = 0x8861, + #endif + #if JUCE_WINDOWS && ! defined (GL_TEXTURE0) GL_OPERAND0_RGB = 0x8590, GL_OPERAND1_RGB = 0x8591,