9 lines
217 B
Text
9 lines
217 B
Text
|
#version 150 compatibility
|
||
|
|
||
|
uniform float plot_scale;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
// transform vertex to clip space
|
||
|
gl_Position = gl_ModelViewProjectionMatrix * vec4(gl_Vertex.x,gl_Vertex.y,plot_scale*gl_Vertex.z,gl_Vertex.w);
|
||
|
}
|