2024-02-19 23:02:09 -06:00

11 lines
156 B
GLSL

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