9 lines
109 B
Text
9 lines
109 B
Text
|
#version 150 compatibility
|
||
|
|
||
|
in vec3 color;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
gl_FragColor.rgb = color;
|
||
|
gl_FragColor.a = 1.0;
|
||
|
}
|