summaryrefslogtreecommitdiff
path: root/indra/newview/app_settings/shaders/class3
diff options
context:
space:
mode:
authorPtolemy <ptolemy@lindenlab.com>2022-07-01 15:27:02 -0700
committerPtolemy <ptolemy@lindenlab.com>2022-07-01 15:27:02 -0700
commit9ae6859b80e36a52007ac5381e0f7e9d645de208 (patch)
treec9718d96a20a5b839f26cd4b91e8dd567d823efb /indra/newview/app_settings/shaders/class3
parent20a7dd5b50b28e2f78d8cca433ef863a462cd327 (diff)
SL-17682: PBR: Cleanup FE_LAMBERT debug name
Diffstat (limited to 'indra/newview/app_settings/shaders/class3')
-rw-r--r--indra/newview/app_settings/shaders/class3/deferred/softenLightF.glsl4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/app_settings/shaders/class3/deferred/softenLightF.glsl b/indra/newview/app_settings/shaders/class3/deferred/softenLightF.glsl
index d9a3310a07..9d928198d9 100644
--- a/indra/newview/app_settings/shaders/class3/deferred/softenLightF.glsl
+++ b/indra/newview/app_settings/shaders/class3/deferred/softenLightF.glsl
@@ -54,7 +54,7 @@
// Diffuse
#define DEBUG_PBR_DIFFUSE_C 0 // Output: diffuse non metal mix
#define DEBUG_PBR_IRRADIANCE 0 // Output: Diffuse Irradiance
-#define DEBUG_PBR_FE_LAMBERT 0 // Output: FssEssLambert
+#define DEBUG_PBR_FSS_ESS_LAMBERT 0 // Output: FssEssLambert
#define DEBUG_PBR_EMS 0 // Output: Ems
#define DEBUG_PBR_AVG 0 // Output: Avg
#define DEBUG_PBR_EMS_FMS 0 // Output: FmsEms
@@ -386,7 +386,7 @@ void main()
#if DEBUG_PBR_FE_GGX
color.rgb = FssEssGGX; // spec
#endif
- #if DEBUG_PBR_FE_LAMBERT
+ #if DEBUG_PBR_FSS_ESS_LAMBERT
color.rgb = FssEssLambert; // diffuse
#endif
#if DEBUG_PBR_FRESNEL