mirror of
https://github.com/seigler/webgl-threejs-hello
synced 2025-07-27 01:36:14 +00:00
6 lines
125 B
GLSL
6 lines
125 B
GLSL
varying vec2 vUV;
|
|
|
|
void main() {
|
|
vUV = uv;
|
|
gl_Position = projectionMatrix * modelViewMatrix * vec4(position, 1.0);
|
|
}
|