Browse Source

Examples: Clean up.

Mr.doob 1 year ago
parent
commit
966e9fee64
1 changed files with 2 additions and 1 deletions
  1. 2 1
      examples/webgl_postprocessing_hbao.html

+ 2 - 1
examples/webgl_postprocessing_hbao.html

@@ -7,7 +7,7 @@
 		<link type="text/css" rel="stylesheet" href="main.css">
 		<style>
 			body {
-				background-color: #bfe3dd;
+				background-color: #ffffff;
 				color: #000;
 			}
 			a {
@@ -56,6 +56,7 @@
 			container.appendChild( stats.dom );
 
 			const renderer = new THREE.WebGLRenderer( { antialias: true } );
+			// renderer.setPixelRatio( window.devicePixelRatio );
 			renderer.setSize( window.innerWidth, window.innerHeight );
 			document.body.appendChild( renderer.domElement );