11 lines
154 B
GLSL
11 lines
154 B
GLSL
#version 460 core
|
|
|
|
in vec2 textureCoords;
|
|
|
|
out vec4 color;
|
|
|
|
uniform sampler2D guiTexture;
|
|
|
|
void main() {
|
|
color = texture(guiTexture, textureCoords);
|
|
} |