Skip to content

Commit

Permalink
Examples: Clean up. (#26955)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mugen87 committed Oct 12, 2023
1 parent 30985da commit 5303ef2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/webgl2_multisampled_renderbuffers.html
Expand Up @@ -134,7 +134,7 @@
//

const size = renderer.getDrawingBufferSize( new THREE.Vector2() );
const renderTarget = new THREE.WebGLRenderTarget( size.width, size.height, { samples: 4 } );
const renderTarget = new THREE.WebGLRenderTarget( size.width, size.height, { samples: 4, type: THREE.HalfFloatType } );

const renderPass = new RenderPass( scene, camera );
const outputPass = new OutputPass();
Expand Down

0 comments on commit 5303ef2

Please sign in to comment.