diff options
| author | Dave Parks <davep@lindenlab.com> | 2022-09-13 17:16:00 -0500 | 
|---|---|---|
| committer | Dave Parks <davep@lindenlab.com> | 2022-09-13 17:16:00 -0500 | 
| commit | 5a10b11b0d306334cd80f52f267ca8c525672062 (patch) | |
| tree | b8aa0cd1e46245077595c869ce75fa7240286c8b /indra | |
| parent | ff3a28422dc65afe4cf3131daf953d0567711b8a (diff) | |
SL-17701 WIP -- Hook PBR transparency parameter up to alpha pass.
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/app_settings/shaders/class1/deferred/pbralphaF.glsl | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/newview/app_settings/shaders/class1/deferred/pbralphaF.glsl b/indra/newview/app_settings/shaders/class1/deferred/pbralphaF.glsl index 36d5b8a099..d91cd63953 100644 --- a/indra/newview/app_settings/shaders/class1/deferred/pbralphaF.glsl +++ b/indra/newview/app_settings/shaders/class1/deferred/pbralphaF.glsl @@ -302,5 +302,5 @@ void main()      col += 2.0*additive;      col  = scaleSoftClipFrag(col); -    frag_color = vec4(col,albedo.a); +    frag_color = vec4(col,albedo.a * vertex_color.a);  } | 
