mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-29 23:33:00 +00:00
10 lines
195 B
GLSL
10 lines
195 B
GLSL
|
|
void main()
|
|
{
|
|
vec4 frag = vColor;
|
|
|
|
vec4 t1 = texture(tex, vTexCoord.xy);
|
|
vec4 t2 = texture(texture2, vec2(vTexCoord.x, 1.0-vTexCoord.y));
|
|
|
|
FragColor = frag * vec4(t1.r, t1.g, t1.b, t2.a);
|
|
}
|