diff options
author | Dave Parks <davep@lindenlab.com> | 2022-10-13 16:16:04 -0500 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2022-10-13 16:16:04 -0500 |
commit | 15c3c3f94d6d1b3007f3135602bf3f65dc791f57 (patch) | |
tree | 6f65ef700c2372f036d1d866a2a18e66dcbc5766 /indra/newview/app_settings/shaders | |
parent | bc6ad18826995103015cfba6018cf1de30070fee (diff) | |
parent | 16a7989f065ac0870ad147592e4604cdcb204405 (diff) |
Merge branch 'DRTVWR-559' of ssh://bitbucket.org/lindenlab/viewer into DRTVWR-559
Diffstat (limited to 'indra/newview/app_settings/shaders')
-rw-r--r-- | indra/newview/app_settings/shaders/class2/windlight/skyF.glsl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/app_settings/shaders/class2/windlight/skyF.glsl b/indra/newview/app_settings/shaders/class2/windlight/skyF.glsl index 7146349453..7a229e0f5e 100644 --- a/indra/newview/app_settings/shaders/class2/windlight/skyF.glsl +++ b/indra/newview/app_settings/shaders/class2/windlight/skyF.glsl @@ -33,7 +33,7 @@ out vec4 frag_color; // The fragment shader for the sky ///////////////////////////////////////////////////////////////////////// -VARYING vec4 vary_HazeColor; +VARYING vec3 vary_HazeColor; /// Soft clips the light with a gamma correction vec3 scaleSoftClip(vec3 light); @@ -45,7 +45,7 @@ void main() // the fragment) if the sky wouldn't show up because the clouds // are fully opaque. - vec4 color; + vec3 color; color = vary_HazeColor; color.rgb *= 2.; /// Gamma correct for WL (soft clip effect). |