9 lines
119 B
GLSL
9 lines
119 B
GLSL
out vec4 FragColor;
|
|
|
|
in vec2 tex_coord;
|
|
|
|
uniform sampler2D tex;
|
|
|
|
void main() {
|
|
FragColor = texture(tex, tex_coord);
|
|
}
|