Vertex Shader
void main() { gl_FrontColor = gl_Color; gl_Position = ftransform(); }
Fragment Shader
void main() { gl_FragColor = gl_Color; }