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