Skip to content

Commit

Permalink
Updated builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mugen87 committed Sep 16, 2023
1 parent b17a561 commit 51462bf
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build/three.cjs
Expand Up @@ -24988,7 +24988,7 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils,

if ( renderTarget.depthBuffer && ! renderTarget.stencilBuffer ) {

let glInternalFormat = _gl.DEPTH_COMPONENT16;
let glInternalFormat = ( isWebGL2 === true ) ? _gl.DEPTH_COMPONENT24 : _gl.DEPTH_COMPONENT16;

if ( isMultisample || useMultisampledRTT( renderTarget ) ) {

Expand Down
2 changes: 1 addition & 1 deletion build/three.js
Expand Up @@ -24993,7 +24993,7 @@ console.warn( 'Scripts "build/three.js" and "build/three.min.js" are deprecated

if ( renderTarget.depthBuffer && ! renderTarget.stencilBuffer ) {

let glInternalFormat = _gl.DEPTH_COMPONENT16;
let glInternalFormat = ( isWebGL2 === true ) ? _gl.DEPTH_COMPONENT24 : _gl.DEPTH_COMPONENT16;

if ( isMultisample || useMultisampledRTT( renderTarget ) ) {

Expand Down
2 changes: 1 addition & 1 deletion build/three.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/three.module.js
Expand Up @@ -24986,7 +24986,7 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils,

if ( renderTarget.depthBuffer && ! renderTarget.stencilBuffer ) {

let glInternalFormat = _gl.DEPTH_COMPONENT16;
let glInternalFormat = ( isWebGL2 === true ) ? _gl.DEPTH_COMPONENT24 : _gl.DEPTH_COMPONENT16;

if ( isMultisample || useMultisampledRTT( renderTarget ) ) {

Expand Down
2 changes: 1 addition & 1 deletion build/three.module.min.js

Large diffs are not rendered by default.

0 comments on commit 51462bf

Please sign in to comment.