Skip to content
Closed
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 src/renderers/WebGLRenderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@

// xr

const xr = new WebXRManager( _this, _gl );
const xr = new WebXRManager( _this, _gl, extensions, multiviewStereo );

/**
* A reference to the XR manager.
Expand Down Expand Up @@ -2657,7 +2657,7 @@

if ( ! warned ) {

console.warn( "THREE.WebGLRenderer.setTexture2D: don't use render targets as textures. Use their .texture property instead." );

Check failure on line 2660 in src/renderers/WebGLRenderer.js

View workflow job for this annotation

GitHub Actions / Lint testing

Strings must use singlequote
warned = true;

}
Expand Down
1 change: 1 addition & 0 deletions src/renderers/webgl/WebGLTextures.js
Original file line number Diff line number Diff line change
Expand Up @@ -851,7 +851,8 @@
_gl.pixelStorei( _gl.UNPACK_SKIP_PIXELS, currentUnpackSkipPixels );
_gl.pixelStorei( _gl.UNPACK_SKIP_ROWS, currentUnpackSkipRows );

}

Check failure on line 854 in src/renderers/webgl/WebGLTextures.js

View workflow job for this annotation

GitHub Actions / Lint testing

Block must be padded by blank lines
}

function setDeferTextureUploads( deferFlag ) {

Expand Down
Loading