8 lines
86 B
GLSL
8 lines
86 B
GLSL
#version 430 core
|
|
in vec4 vColor;
|
|
out vec4 fColor;
|
|
void main()
|
|
{
|
|
fColor = vColor;
|
|
}
|