learn-opengl/19-blending/shaders/4.2.texture.fs
2026-08-29 13:13:41 -04:00

11 lines
146 B
GLSL

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