Skip to content

Commit

Permalink
Updated builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrdoob committed Dec 30, 2020
1 parent c0bcb18 commit de04828
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 5 additions & 1 deletion build/three.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
};
}

var REVISION = '124';
var REVISION = '125dev';
var MOUSE = {
LEFT: 0,
MIDDLE: 1,
Expand Down Expand Up @@ -15984,6 +15984,10 @@

_gl.pixelStorei(37440, texture.flipY);

_gl.pixelStorei(37441, texture.premultiplyAlpha);

_gl.pixelStorei(3317, texture.unpackAlignment);

var isCompressed = texture && (texture.isCompressedTexture || texture.image[0].isCompressedTexture);
var isDataTexture = texture.image[0] && texture.image[0].isDataTexture;
var cubeImage = [];
Expand Down
2 changes: 1 addition & 1 deletion build/three.min.js

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion build/three.module.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// threejs.org/license
const REVISION = '124';
const REVISION = '125dev';
const MOUSE = { LEFT: 0, MIDDLE: 1, RIGHT: 2, ROTATE: 0, DOLLY: 1, PAN: 2 };
const TOUCH = { ROTATE: 0, PAN: 1, DOLLY_PAN: 2, DOLLY_ROTATE: 3 };
const CullFaceNone = 0;
Expand Down Expand Up @@ -21099,6 +21099,8 @@ function WebGLTextures( _gl, extensions, state, properties, capabilities, utils,
state.bindTexture( 34067, textureProperties.__webglTexture );

_gl.pixelStorei( 37440, texture.flipY );
_gl.pixelStorei( 37441, texture.premultiplyAlpha );
_gl.pixelStorei( 3317, texture.unpackAlignment );

const isCompressed = ( texture && ( texture.isCompressedTexture || texture.image[ 0 ].isCompressedTexture ) );
const isDataTexture = ( texture.image[ 0 ] && texture.image[ 0 ].isDataTexture );
Expand Down

0 comments on commit de04828

Please sign in to comment.