julien-c's picture
julien-c HF staff
do not gitignore the builds
6cd9596
raw
history blame
183 Bytes
export default /* glsl */`
varying vec2 vUv;
uniform mat3 uvTransform;
void main() {
vUv = ( uvTransform * vec3( uv, 1 ) ).xy;
gl_Position = vec4( position.xy, 1.0, 1.0 );
}
`;