Skip to content

Commit

Permalink
Fixed webgl_loader_texture_rgbm example.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdoob committed Nov 22, 2020
1 parent 6119225 commit 7fbb4a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/webgl_loader_texture_rgbm.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@

const material = new THREE.MeshBasicMaterial( { map: texture } );

const quad = new THREE.PlaneBufferGeometry( 1.5 * texture.width / texture.height, 1.5 );
const quad = new THREE.PlaneBufferGeometry( 1, 1.5 );

const mesh = new THREE.Mesh( quad, material );

Expand Down

0 comments on commit 7fbb4a0

Please sign in to comment.