12 lines
170 B
Plaintext
Raw Normal View History

#version 330 core
out vec4 FragColor;
in vec2 texCoord;
uniform sampler2D texture1;
void main()
{
2021-05-20 15:52:20 +02:00
FragColor = texture(texture1, vec2(-texCoord.y, -texCoord.x));
}