From 36a7a424a9008ff3b29aafc172969bc17bf1d024 Mon Sep 17 00:00:00 2001
From: Ptolemy <ptolemy@lindenlab.com>
Date: Tue, 5 Jul 2022 08:23:17 -0700
Subject: [PATCH] SL-17682: PBR: Fix debug fresnel roughness output to match
 glTF Sample Viewer

---
 .../app_settings/shaders/class3/deferred/softenLightF.glsl       | 1 +
 1 file changed, 1 insertion(+)

diff --git a/indra/newview/app_settings/shaders/class3/deferred/softenLightF.glsl b/indra/newview/app_settings/shaders/class3/deferred/softenLightF.glsl
index e787b5d41df..643b9ea20bf 100644
--- a/indra/newview/app_settings/shaders/class3/deferred/softenLightF.glsl
+++ b/indra/newview/app_settings/shaders/class3/deferred/softenLightF.glsl
@@ -395,6 +395,7 @@ void main()
     #endif
     #if DEBUG_PBR_FRESNEL
         color.rgb = fresnelR;
+        color.rgb = srgb_to_linear(color.rgb);
     #endif
     #if DEBUG_PBR_IOR
         color.rgb = vec3(IOR);
-- 
GitLab