diff options
author | Ptolemy <ptolemy@lindenlab.com> | 2022-07-01 15:27:43 -0700 |
---|---|---|
committer | Ptolemy <ptolemy@lindenlab.com> | 2022-07-01 15:27:43 -0700 |
commit | c7f5cb7c631c5b6a06fa0da88318608b9c09fc87 (patch) | |
tree | 33e6dab4362ad537d7b835d9b6684421e3494e32 /indra/newview/app_settings/shaders/class3/deferred/softenLightF.glsl | |
parent | 9ae6859b80e36a52007ac5381e0f7e9d645de208 (diff) |
SL-17682: PBR: Cleanup EMS_FMS debug name
Diffstat (limited to 'indra/newview/app_settings/shaders/class3/deferred/softenLightF.glsl')
-rw-r--r-- | indra/newview/app_settings/shaders/class3/deferred/softenLightF.glsl | 4 |
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 9d928198d9..89c4eb1b11 100644 --- a/indra/newview/app_settings/shaders/class3/deferred/softenLightF.glsl +++ b/indra/newview/app_settings/shaders/class3/deferred/softenLightF.glsl @@ -57,7 +57,7 @@ #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 +#define DEBUG_PBR_FMS_EMS 0 // Output: FmsEms #define DEBUG_PBR_DIFFUSE_K 0 // Output: diffuse FssEssLambert + FmsEms #define DEBUG_PBR_DIFFUSE_PRE_AO 0 // Output: diffuse pre AO @@ -380,7 +380,7 @@ void main() #if DEBUG_PBR_EMS_AVG color.rgb = AvgEms; #endif - #if DEBUG_PBR_EMS_FMS + #if DEBUG_PBR_FMS_EMS color.rgb = FmsEms; #endif #if DEBUG_PBR_FE_GGX |