interstellar / src /shaders /simpleVertex.glsl
Pim Schreurs
Modernize the whole codebase; improve rendering
8194362
varying vec2 vUv;
void main() {
vUv = uv;
gl_Position = projectionMatrix * modelViewMatrix * vec4( position, 1.0 );
}