From 3f4d647db9f381a0a5a79cc1b93645086c393c91 Mon Sep 17 00:00:00 2001 From: AmyFoxie Date: Wed, 8 Nov 2023 00:40:01 +0100 Subject: [PATCH] enable GL_FRAMEBUFFER_SRGB --- engine/gl/GlWindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/engine/gl/GlWindow.cpp b/engine/gl/GlWindow.cpp index 409061f..6f1dfb1 100644 --- a/engine/gl/GlWindow.cpp +++ b/engine/gl/GlWindow.cpp @@ -38,6 +38,8 @@ namespace Vixen::Gl { } #endif + glEnable(GL_FRAMEBUFFER_SRGB); + glfwDefaultWindowHints(); }