mirror of
https://github.com/seigler/webgl-threejs-hello
synced 2025-07-27 17:56:17 +00:00
5 lines
122 B
GLSL
5 lines
122 B
GLSL
void main() {
|
|
gl_Position = projectionMatrix *
|
|
modelViewMatrix *
|
|
vec4(position, 1.0);
|
|
}
|