mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-01-23 01:41:02 +00:00
11 lines
195 B
Text
11 lines
195 B
Text
|
|
||
|
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);
|
||
|
}
|