diff --git a/com.unity.render-pipelines.high-definition/Runtime/PostProcessing/Shaders/DLSSBiasColorMask.shader b/com.unity.render-pipelines.high-definition/Runtime/PostProcessing/Shaders/DLSSBiasColorMask.shader index ad816c57..7e798648 100644 --- a/com.unity.render-pipelines.high-definition/Runtime/PostProcessing/Shaders/DLSSBiasColorMask.shader +++ b/com.unity.render-pipelines.high-definition/Runtime/PostProcessing/Shaders/DLSSBiasColorMask.shader @@ -37,8 +37,10 @@ Shader "Hidden/HDRP/DLSSBiasColorMask" void DLSSBiasColorMaskPS(Varyings input, out float4 outColor : SV_Target0) { + const float value = 0.7f; + UNITY_SETUP_STEREO_EYE_INDEX_POST_VERTEX(input); - outColor = float4(1,1,1,1); + outColor = float4(value,value,value,value); } ENDHLSL