10 lines
140 B
GLSL
10 lines
140 B
GLSL
#version 330
|
|
|
|
uniform sampler2D tex;
|
|
|
|
in vec2 vsoTexCoord;
|
|
out vec4 fragColor;
|
|
|
|
void main() {
|
|
fragColor = texture(tex, vsoTexCoord);
|
|
}
|