summaryrefslogtreecommitdiff
path: root/indra/newview/app_settings/shaders/class1/interface/customalphaF.glsl
diff options
context:
space:
mode:
authorRider Linden <rider@lindenlab.com>2018-09-14 15:43:52 +0000
committerRider Linden <rider@lindenlab.com>2018-09-14 15:43:52 +0000
commit62005a3b52ffbc79c78a99fc4a1e2f7911943bfd (patch)
tree16ab63f051f155ea3ea4b588dfea2cc81c549f33 /indra/newview/app_settings/shaders/class1/interface/customalphaF.glsl
parent53de3916a16e316543cd12491556999a4c84f545 (diff)
parent46d194d352a7da88e7a9c96fba404c61a1bddb89 (diff)
Merged in graham_linden/viewer-eep-graham (pull request #84)
SL-1872
Diffstat (limited to 'indra/newview/app_settings/shaders/class1/interface/customalphaF.glsl')
-rw-r--r--indra/newview/app_settings/shaders/class1/interface/customalphaF.glsl6
1 files changed, 4 insertions, 2 deletions
diff --git a/indra/newview/app_settings/shaders/class1/interface/customalphaF.glsl b/indra/newview/app_settings/shaders/class1/interface/customalphaF.glsl
index a96d04cc39..f6b31a5956 100644
--- a/indra/newview/app_settings/shaders/class1/interface/customalphaF.glsl
+++ b/indra/newview/app_settings/shaders/class1/interface/customalphaF.glsl
@@ -38,7 +38,9 @@ VARYING vec2 vary_texcoord0;
void main()
{
- vec4 color = vertex_color*texture2D(diffuseMap, vary_texcoord0.xy);
- color.a *= custom_alpha;
+ vec4 color = texture2D(diffuseMap, vary_texcoord0.xy);
+ color.rgb = pow(color.rgb, vec3(0.45));
+ color.rgb *= vertex_color.rgb;
+ color.a *= max(custom_alpha, vertex_color.a);
frag_color = color;
}