diff options
author | Erik Kundiman <erik@megapahit.org> | 2024-08-08 09:16:32 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2024-08-08 09:16:32 +0800 |
commit | 3471454607a62bf51e02792b21c93f7d22c75c11 (patch) | |
tree | 2c7a1d68503a84f2beb213a6ee0b96eac21b3613 /indra/llrender | |
parent | 14a87739a21bbf37b98ac6a9a0918c33f6000f1a (diff) |
Fix glext header inclusion on macOS
Somehow it hasn't led to an error on my and observeur's systems.
It should have had, really.
Diffstat (limited to 'indra/llrender')
-rw-r--r-- | indra/llrender/llglheaders.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llrender/llglheaders.h b/indra/llrender/llglheaders.h index 0e278e1744..715e559ca3 100644 --- a/indra/llrender/llglheaders.h +++ b/indra/llrender/llglheaders.h @@ -839,7 +839,7 @@ extern PFNGLPOLYGONOFFSETCLAMPPROC glPolygonOffsetClamp; #define GL_EXT_separate_specular_color 1 #define GL_GLEXT_PROTOTYPES -#include "GL/glext.h" +#include <OpenGL/glext.h> #define GL_DO_NOT_WARN_IF_MULTI_GL_VERSION_HEADERS_INCLUDED #include <OpenGL/gl3.h> |