mirror of
https://github.com/bdrtr/GLFW-openGL.git
synced 2025-11-08 18:12:47 +00:00
12 lines
181 B
GLSL
12 lines
181 B
GLSL
#version 330 core
|
|
|
|
out vec4 Texture;
|
|
|
|
in vec2 texCoord;
|
|
uniform sampler2D atexture;
|
|
|
|
void main() {
|
|
|
|
Texture = texture(atexture, texCoord);
|
|
|
|
} |