12 lines
148 B
Plaintext
Raw Normal View History

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