mirror of
https://github.com/aap/librw.git
synced 2025-02-11 10:25:07 +00:00
17 lines
250 B
GLSL
17 lines
250 B
GLSL
uniform sampler2D tex0;
|
|
|
|
in vec4 v_color;
|
|
in vec2 v_tex0;
|
|
in float v_fog;
|
|
|
|
out vec4 color;
|
|
|
|
void
|
|
main(void)
|
|
{
|
|
color = v_color*texture(tex0, vec2(v_tex0.x, 1.0-v_tex0.y));
|
|
color.rgb = mix(u_fogColor.rgb, color.rgb, v_fog);
|
|
DoAlphaTest(color.a);
|
|
}
|
|
|