mirror of
https://github.com/Doodle3D/Doodle3D-Core.git
synced 2024-11-05 06:03:24 +01:00
7 lines
135 B
GLSL
7 lines
135 B
GLSL
varying vec2 vUv;
|
|
|
|
void main() {
|
|
vUv = vec2(uv.x, uv.y);
|
|
gl_Position = projectionMatrix * modelViewMatrix * vec4(position, 1.0);
|
|
}
|