Browse Source

Post-release fixes.

Mr.doob 9 years ago
parent
commit
8a16ebcd5f

BIN
examples/textures/cube/hdrPisa/nx.hdr


BIN
examples/textures/cube/hdrPisa/ny.hdr


BIN
examples/textures/cube/hdrPisa/nz.hdr


BIN
examples/textures/cube/hdrPisa/px.hdr


BIN
examples/textures/cube/hdrPisa/py.hdr


BIN
examples/textures/cube/hdrPisa/pz.hdr


+ 1 - 1
examples/webgl_gpgpu_water.html

@@ -480,7 +480,7 @@
 
 			function setMouseCoords( x, y ) {
 
-				mouseCoords.set( ( x / renderer.domElement.width ) * 2 - 1, - ( y / renderer.domElement.height ) * 2 + 1 );
+				mouseCoords.set( ( x / renderer.domElement.clientWidth ) * 2 - 1, - ( y / renderer.domElement.clientHeight ) * 2 + 1 );
 				mouseMoved = true;
 
 			}

+ 1 - 1
examples/webgl_tonemapping.html

@@ -160,7 +160,7 @@
 				scene.add( mesh );
 
 				// Materials
-				var hdrpath = "../examples/textures/cube/hdrPisa/";
+				var hdrpath = "../examples/textures/cube/pisaHDR/";
 				var hdrformat = '.hdr';
 				var hdrurls = [
 					hdrpath + 'px' + hdrformat, hdrpath + 'nx' + hdrformat,