2021-05-26 17:23:13 +02:00

13 lines
168 B
GLSL

#version 410 core
out vec4 FragColor;
in vec2 texCoord;
uniform sampler2D texture1;
uniform float time;
void main()
{
FragColor = texture(texture1, texCoord);
}