summaryrefslogtreecommitdiff
path: root/indra/newview/app_settings/shaders/class1/lighting/lightAlphaMaskNonIndexedF.glsl
diff options
context:
space:
mode:
authorDave Parks <davep@lindenlab.com>2011-11-02 13:13:38 -0500
committerDave Parks <davep@lindenlab.com>2011-11-02 13:13:38 -0500
commit2179e1c1f2f3614678d528fe96640728ce663f2e (patch)
treef42b13f36f374e6ba915e85cfacd8ab99183a167 /indra/newview/app_settings/shaders/class1/lighting/lightAlphaMaskNonIndexedF.glsl
parent55f69de90c9b32c7fa25f16ec7d1f41064eff614 (diff)
SH-2541 Fix for speckles on avatar on some cards -- don't use "maximum_alpha" for alpha tests in shaders as it was always being set to 1.0 anyway.
Diffstat (limited to 'indra/newview/app_settings/shaders/class1/lighting/lightAlphaMaskNonIndexedF.glsl')
-rw-r--r--indra/newview/app_settings/shaders/class1/lighting/lightAlphaMaskNonIndexedF.glsl4
1 files changed, 1 insertions, 3 deletions
diff --git a/indra/newview/app_settings/shaders/class1/lighting/lightAlphaMaskNonIndexedF.glsl b/indra/newview/app_settings/shaders/class1/lighting/lightAlphaMaskNonIndexedF.glsl
index 2640668d7d..1164e5b0a6 100644
--- a/indra/newview/app_settings/shaders/class1/lighting/lightAlphaMaskNonIndexedF.glsl
+++ b/indra/newview/app_settings/shaders/class1/lighting/lightAlphaMaskNonIndexedF.glsl
@@ -28,8 +28,6 @@ out vec4 gl_FragColor;
#endif
uniform float minimum_alpha;
-uniform float maximum_alpha;
-
uniform sampler2D diffuseMap;
@@ -43,7 +41,7 @@ void default_lighting()
{
vec4 color = texture2D(diffuseMap,vary_texcoord0.xy) * vertex_color;
- if (color.a < minimum_alpha || color.a > maximum_alpha)
+ if (color.a < minimum_alpha)
{
discard;
}