1 2 3 4 5 6 7 8 9 10 11 12
#version 130 //! [0] uniform mat4 mvpMatrix; in vec4 vertex; void main(void) { gl_Position = mvpMatrix * vertex; } //! [0]