12 lines
120 B
GLSL
12 lines
120 B
GLSL
|
#version 450
|
||
|
|
||
|
// Input
|
||
|
in vec2 UV;
|
||
|
|
||
|
// Output
|
||
|
out vec4 color;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
color = texture(textureSampler, UV).rgb;
|
||
|
}
|