From 58546f31159f3f8d3cc03b03fb78a3853f1717ae Mon Sep 17 00:00:00 2001 From: renderexpert Date: Sat, 1 Mar 2025 00:06:17 +0000 Subject: [PATCH] Fixed gamma correction Signed-off-by: renderexpert --- dev_sandbox/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/dev_sandbox/main.cpp b/dev_sandbox/main.cpp index 0cd1c9e85c..99492586c8 100644 --- a/dev_sandbox/main.cpp +++ b/dev_sandbox/main.cpp @@ -246,6 +246,7 @@ int main(int argc, char * argv[]) float xs = 1.0f, ys = 1.0f; glfwGetWindowContentScale(window, &xs, &ys); float visualScale = std::max(xs, ys); + glfwSetGamma(monitor, 1.0f); IMGUI_CHECKVERSION(); ImGui::CreateContext();