13 lines
168 B
Plaintext
Raw Normal View History

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