GLFW-openGL/shaders/shader.fs
2024-09-01 19:24:32 +02:00

12 lines
181 B
GLSL

#version 330 core
out vec4 Texture;
in vec2 texCoord;
uniform sampler2D atexture;
void main() {
Texture = texture(atexture, texCoord);
}