10 lines
235 B
GLSL
10 lines
235 B
GLSL
|
uniform sampler2D baseTexture;
|
||
|
varying float fogFactor;
|
||
|
|
||
|
void main(void)
|
||
|
{
|
||
|
vec4 base = texture2D( baseTexture, gl_TexCoord[0].st);
|
||
|
vec4 finalColor = base * gl_Color;
|
||
|
gl_FragColor = mix(gl_Fog.color, finalColor, fogFactor );
|
||
|
}
|