diff options
author | Erik Kundiman <erik@megapahit.org> | 2023-09-11 13:54:57 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2023-09-11 13:54:57 +0800 |
commit | 9f3b890eb5ffdb45e85945cbd1ba6a72f8b66d16 (patch) | |
tree | eab70384c8a2e458e7129913ca04768de44c4bf6 | |
parent | a26946b3dd9962a0d0205de6a26d5322fc38546c (diff) |
Use the more portable GL_FRAMEBUFFER
-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 f3f023cd84..170d547a46 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -6727,7 +6727,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: |