Skip to content

Commit 8a16ebc

Browse files
committed
Post-release fixes.
1 parent fed23b5 commit 8a16ebc

File tree

8 files changed

+2
-2
lines changed

8 files changed

+2
-2
lines changed

examples/textures/cube/hdrPisa/nx.hdr

-220 KB
Binary file not shown.

examples/textures/cube/hdrPisa/ny.hdr

-194 KB
Binary file not shown.

examples/textures/cube/hdrPisa/nz.hdr

-226 KB
Binary file not shown.

examples/textures/cube/hdrPisa/px.hdr

-220 KB
Binary file not shown.

examples/textures/cube/hdrPisa/py.hdr

-205 KB
Binary file not shown.

examples/textures/cube/hdrPisa/pz.hdr

-225 KB
Binary file not shown.

examples/webgl_gpgpu_water.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -480,7 +480,7 @@
480480

481481
function setMouseCoords( x, y ) {
482482

483-
mouseCoords.set( ( x / renderer.domElement.width ) * 2 - 1, - ( y / renderer.domElement.height ) * 2 + 1 );
483+
mouseCoords.set( ( x / renderer.domElement.clientWidth ) * 2 - 1, - ( y / renderer.domElement.clientHeight ) * 2 + 1 );
484484
mouseMoved = true;
485485

486486
}

examples/webgl_tonemapping.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@
160160
scene.add( mesh );
161161

162162
// Materials
163-
var hdrpath = "../examples/textures/cube/hdrPisa/";
163+
var hdrpath = "../examples/textures/cube/pisaHDR/";
164164
var hdrformat = '.hdr';
165165
var hdrurls = [
166166
hdrpath + 'px' + hdrformat, hdrpath + 'nx' + hdrformat,

0 commit comments

Comments
 (0)