10 lines
179 B
GLSL
10 lines
179 B
GLSL
#version 460 core
|
|
|
|
in vec2 pass_textureCoords;
|
|
|
|
uniform sampler2D textureSampler;
|
|
out vec4 fragColor;
|
|
|
|
void main() {
|
|
fragColor = texture(textureSampler, pass_textureCoords);
|
|
} |