Files
2026-04-18 22:31:51 +02:00

11 lines
94 B
GLSL

// VertexProgram
varying vec4 p;
void main()
{
gl_Position = gl_Vertex;
p = gl_Vertex;
}