tedit/shaders/passthrough.frag
2025-04-07 20:08:16 -04:00

9 lines
154 B
GLSL

#version 330 core
out vec4 FragColor;
in vec2 TexCoord;
uniform sampler2D InputTexture;
void main() {
FragColor = texture(InputTexture, TexCoord);
}