9 lines
74 B
GLSL
9 lines
74 B
GLSL
#version 430 core
|
|
|
|
in vec4 color;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = color;
|
|
}
|