8 lines
69 B
GLSL
8 lines
69 B
GLSL
#version 330 core
|
|
|
|
in vec4 col;
|
|
|
|
void main()
|
|
{
|
|
gl_FragColor = col;
|
|
} |