webgl-threejs-hello/app/js/shaders/example-vert.glsl
2018-10-10 11:30:18 -04:00

5 lines
122 B
GLSL

void main() {
gl_Position = projectionMatrix *
modelViewMatrix *
vec4(position, 1.0);
}