11 lines
99 B
GLSL
11 lines
99 B
GLSL
#version 330
|
|
|
|
in vec3 color;
|
|
|
|
out vec4 fragment;
|
|
|
|
void main()
|
|
{
|
|
fragment = vec4(color, 1.0);
|
|
}
|