Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/webgpu_lights_phong.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

let camera, scene, renderer,
light1, light2, light3, light4,
stats, controls;
controls;

init();

Expand Down
2 changes: 1 addition & 1 deletion examples/webgpu_lights_rectarealight.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
import { RectAreaLightTexturesLib } from 'three/addons/lights/RectAreaLightTexturesLib.js';

let renderer, scene, camera;
let stats, meshKnot;
let meshKnot;

init();

Expand Down
6 changes: 2 additions & 4 deletions examples/webgpu_postprocessing_bloom.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@

<small>
Bloom pass by <a href="http://eduperiment.com" target="_blank" rel="noopener">Prashant Sharma</a> and <a href="https://clara.io" target="_blank" rel="noopener">Ben Houston</a>.<br/>
<a href="https://blog.sketchfab.com/art-spotlight-primary-ion-drive/" target="_blank" rel="noopener">Primary Ion Drive</a> by
<a href="http://mjmurdock.com/" target="_blank" rel="noopener">Mike Murdock</a> is licensed under <a href="https://creativecommons.org/licenses/by/4.0/" target="_blank" rel="noopener">Creative Commons Attribution</a>.<br />
<a href="https://blog.sketchfab.com/art-spotlight-primary-ion-drive/" target="_blank" rel="noopener">Primary Ion Drive</a>
by <a href="http://mjmurdock.com/" target="_blank" rel="noopener">Mike Murdock</a> is licensed under <a href="https://creativecommons.org/licenses/by/4.0/" target="_blank" rel="noopener">Creative Commons Attribution</a>.<br />
</small>
</div>

Expand Down Expand Up @@ -59,8 +59,6 @@

async function init() {

const container = document.getElementById( 'container' );

clock = new THREE.Clock();

const scene = new THREE.Scene();
Expand Down
2 changes: 1 addition & 1 deletion examples/webgpu_tonemapping.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
import { HDRLoader } from 'three/addons/loaders/HDRLoader.js';

let renderer, scene, camera, controls;
let gui, guiExposure = null;
let gui = null;

const params = {
exposure: 1.0,
Expand Down