2012-01-03 19:21:34 +00:00
|
|
|
uniform sampler2D baseTexture;
|
|
|
|
varying float fogFactor;
|
|
|
|
|
2016-04-06 06:26:49 +00:00
|
|
|
vec3 filter_combined (in vec3 color) ;
|
|
|
|
|
2012-01-03 19:21:34 +00:00
|
|
|
void main(void)
|
|
|
|
{
|
|
|
|
vec4 base = texture2D( baseTexture, gl_TexCoord[0].st);
|
|
|
|
vec4 finalColor = base * gl_Color;
|
|
|
|
gl_FragColor.rgb = mix(gl_Fog.color.rgb, finalColor.rgb, fogFactor );
|
|
|
|
gl_FragColor.a = mix(0.0, finalColor.a, fogFactor);
|
|
|
|
}
|