CGII/framework/shader/plot/glsl/plot1d_empty.glvs

10 lines
142 B
Plaintext
Raw Normal View History

2018-05-17 14:01:02 +00:00
#version 150 compatibility
out vec4 colors;
void main()
{
// transform vertex to clip space
gl_Position = gl_Vertex;
colors = gl_Color;
}