CGII/framework/shader/plot/glsl/plot2d_line.glfs

9 lines
109 B
Plaintext
Raw Normal View History

2018-05-17 14:01:02 +00:00
#version 150 compatibility
in vec3 color;
void main()
{
gl_FragColor.rgb = color;
gl_FragColor.a = 1.0;
}