diff options
author | Erik Kundiman <erik@megapahit.org> | 2023-09-10 10:43:18 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2023-09-10 10:43:18 +0800 |
commit | ce8972461cfd435c6259e23c37a99173230f3633 (patch) | |
tree | d1087825cf0c809bbc2c006a6a7faf59638c8d95 /indra | |
parent | 60f60670bf2dad116cf80b673c88668e8102d610 (diff) |
Lose the _EXT from GL_FRAMEBUFFER macro
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/pipeline.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index 1a465763e3..5181279633 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -7482,7 +7482,7 @@ void apply_cube_face_rotation(U32 face) void validate_framebuffer_object() { GLenum status; - status = glCheckFramebufferStatus(GL_FRAMEBUFFER_EXT); + status = glCheckFramebufferStatus(GL_FRAMEBUFFER); switch(status) { case GL_FRAMEBUFFER_COMPLETE: |