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