12 lines
128 B
GLSL
12 lines
128 B
GLSL
#version 430
|
|
|
|
in vec2 uv;
|
|
|
|
out vec4 final_color;
|
|
|
|
uniform sampler2D tex;
|
|
|
|
void main()
|
|
{
|
|
final_color = texture(tex, uv).rgba;
|
|
} |