11 lines
140 B
GLSL
11 lines
140 B
GLSL
#version 330 core
|
|
|
|
in vec2 v_coord;
|
|
out vec4 f_color;
|
|
|
|
uniform sampler2D u_texture;
|
|
|
|
void main(){
|
|
f_color = texture(u_texture, v_coord);
|
|
}
|