diff options
| author | Dave Parks <davep@lindenlab.com> | 2011-08-11 12:49:05 -0500 | 
|---|---|---|
| committer | Dave Parks <davep@lindenlab.com> | 2011-08-11 12:49:05 -0500 | 
| commit | 610764fbfce75f54c95d4b10c2a8f9482a7a7b80 (patch) | |
| tree | 7bb208e926ad66481d53a0e960c37d7f4aac4d90 /indra/newview/app_settings | |
| parent | 17f46868d28876b65adcf24a45e6c19a20f2834c (diff) | |
SH-2181 Fix for occlusion culling going bonkers when ban lines are present.
Diffstat (limited to 'indra/newview/app_settings')
| -rw-r--r-- | indra/newview/app_settings/shaders/class1/objects/impostorF.glsl | 38 | 
1 files changed, 19 insertions, 19 deletions
| diff --git a/indra/newview/app_settings/shaders/class1/objects/impostorF.glsl b/indra/newview/app_settings/shaders/class1/objects/impostorF.glsl index 7257132f06..13597ee439 100644 --- a/indra/newview/app_settings/shaders/class1/objects/impostorF.glsl +++ b/indra/newview/app_settings/shaders/class1/objects/impostorF.glsl @@ -5,22 +5,22 @@   * $/LicenseInfo$   */ -uniform float minimum_alpha;
 -uniform float maximum_alpha;
 -
 -vec3 fullbrightAtmosTransport(vec3 light);
 -vec3 fullbrightScaleSoftClip(vec3 light);
 -
 -uniform sampler2D diffuseMap;
 -
 -void main()
 -{
 -	vec4 color = texture2D(diffuseMap,gl_TexCoord[0].xy) * gl_Color;
 -	
 -	if (color.a < minimum_alpha || color.a > maximum_alpha)
 -	{
 -		discard;
 -	}
 -
 -	gl_FragColor = color;
 -}
 +uniform float minimum_alpha; +uniform float maximum_alpha; + +vec3 fullbrightAtmosTransport(vec3 light); +vec3 fullbrightScaleSoftClip(vec3 light); + +uniform sampler2D diffuseMap; + +void main() +{ +	vec4 color = texture2D(diffuseMap,gl_TexCoord[0].xy) * gl_Color; +	 +	if (color.a < minimum_alpha || color.a > maximum_alpha) +	{ +		discard; +	} + +	gl_FragColor = color; +} | 
