9 lines
160 B
GLSL
9 lines
160 B
GLSL
|
#version 330 core
|
||
|
in vec2 texCoords;
|
||
|
uniform sampler2D graphicSampler;
|
||
|
|
||
|
out vec4 fragColor;
|
||
|
|
||
|
void main() {
|
||
|
fragColor = texture(graphicSampler, texCoords);
|
||
|
}
|