mirror of
https://github.com/quantum5/punyverse.git
synced 2025-04-24 21:21:59 -04:00
9 lines
130 B
GLSL
9 lines
130 B
GLSL
#version 130
|
|
|
|
in vec3 a_position;
|
|
uniform mat4 u_mvpMatrix;
|
|
|
|
void main() {
|
|
gl_Position = u_mvpMatrix * vec4(a_position, 1);
|
|
}
|