9 lines
139 B
GLSL
9 lines
139 B
GLSL
#version 430 core
|
|
in vec2 vTex;
|
|
out vec4 fragColor;
|
|
|
|
uniform sampler2D uDiffuse;
|
|
|
|
void main() {
|
|
fragColor = texture(uDiffuse, vTex);
|
|
}
|