12 lines
143 B
GLSL
12 lines
143 B
GLSL
|
#version 330
|
||
|
|
||
|
uniform sampler2D tex;
|
||
|
|
||
|
in vec2 fragTexCoord;
|
||
|
|
||
|
out vec4 outputColor;
|
||
|
|
||
|
void main() {
|
||
|
outputColor = texture(tex, fragTexCoord);
|
||
|
}
|