mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 15:22:15 +00:00
ad7aaa8f2a
OpenGL has been supporting this since version 3.3 and Vulkan requires it so it's the way to go.
14 lines
271 B
GLSL
14 lines
271 B
GLSL
|
|
in vec4 vTexCoord;
|
|
in vec4 vColor;
|
|
layout(location=0) out vec4 FragColor;
|
|
|
|
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);
|
|
}
|