123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934 |
- /**
- * @author mrdoob / http://mrdoob.com/
- */
- import { NotEqualDepth, GreaterDepth, GreaterEqualDepth, EqualDepth, LessEqualDepth, LessDepth, AlwaysDepth, NeverDepth, CullFaceFront, CullFaceBack, CullFaceNone, CustomBlending, MultiplyBlending, SubtractiveBlending, AdditiveBlending, NoBlending, NormalBlending, DoubleSide, BackSide } from '../../constants';
- import { Vector4 } from '../../math/Vector4';
- function WebGLState( gl, extensions, paramThreeToGL ) {
- function ColorBuffer() {
- var locked = false;
- var color = new Vector4();
- var currentColorMask = null;
- var currentColorClear = new Vector4();
- return {
- setMask: function ( colorMask ) {
- if ( currentColorMask !== colorMask && ! locked ) {
- gl.colorMask( colorMask, colorMask, colorMask, colorMask );
- currentColorMask = colorMask;
- }
- },
- setLocked: function ( lock ) {
- locked = lock;
- },
- setClear: function ( r, g, b, a, premultipliedAlpha ) {
- if ( premultipliedAlpha === true ) {
- r *= a; g *= a; b *= a;
- }
- color.set( r, g, b, a );
- if ( currentColorClear.equals( color ) === false ) {
- gl.clearColor( r, g, b, a );
- currentColorClear.copy( color );
- }
- },
- reset: function () {
- locked = false;
- currentColorMask = null;
- currentColorClear.set( 0, 0, 0, 1 );
- }
- };
- }
- function DepthBuffer() {
- var locked = false;
- var currentDepthMask = null;
- var currentDepthFunc = null;
- var currentDepthClear = null;
- return {
- setTest: function ( depthTest ) {
- if ( depthTest ) {
- enable( gl.DEPTH_TEST );
- } else {
- disable( gl.DEPTH_TEST );
- }
- },
- setMask: function ( depthMask ) {
- if ( currentDepthMask !== depthMask && ! locked ) {
- gl.depthMask( depthMask );
- currentDepthMask = depthMask;
- }
- },
- setFunc: function ( depthFunc ) {
- if ( currentDepthFunc !== depthFunc ) {
- if ( depthFunc ) {
- switch ( depthFunc ) {
- case NeverDepth:
- gl.depthFunc( gl.NEVER );
- break;
- case AlwaysDepth:
- gl.depthFunc( gl.ALWAYS );
- break;
- case LessDepth:
- gl.depthFunc( gl.LESS );
- break;
- case LessEqualDepth:
- gl.depthFunc( gl.LEQUAL );
- break;
- case EqualDepth:
- gl.depthFunc( gl.EQUAL );
- break;
- case GreaterEqualDepth:
- gl.depthFunc( gl.GEQUAL );
- break;
- case GreaterDepth:
- gl.depthFunc( gl.GREATER );
- break;
- case NotEqualDepth:
- gl.depthFunc( gl.NOTEQUAL );
- break;
- default:
- gl.depthFunc( gl.LEQUAL );
- }
- } else {
- gl.depthFunc( gl.LEQUAL );
- }
- currentDepthFunc = depthFunc;
- }
- },
- setLocked: function ( lock ) {
- locked = lock;
- },
- setClear: function ( depth ) {
- if ( currentDepthClear !== depth ) {
- gl.clearDepth( depth );
- currentDepthClear = depth;
- }
- },
- reset: function () {
- locked = false;
- currentDepthMask = null;
- currentDepthFunc = null;
- currentDepthClear = null;
- }
- };
- }
- function StencilBuffer() {
- var locked = false;
- var currentStencilMask = null;
- var currentStencilFunc = null;
- var currentStencilRef = null;
- var currentStencilFuncMask = null;
- var currentStencilFail = null;
- var currentStencilZFail = null;
- var currentStencilZPass = null;
- var currentStencilClear = null;
- return {
- setTest: function ( stencilTest ) {
- if ( stencilTest ) {
- enable( gl.STENCIL_TEST );
- } else {
- disable( gl.STENCIL_TEST );
- }
- },
- setMask: function ( stencilMask ) {
- if ( currentStencilMask !== stencilMask && ! locked ) {
- gl.stencilMask( stencilMask );
- currentStencilMask = stencilMask;
- }
- },
- setFunc: function ( stencilFunc, stencilRef, stencilMask ) {
- if ( currentStencilFunc !== stencilFunc ||
- currentStencilRef !== stencilRef ||
- currentStencilFuncMask !== stencilMask ) {
- gl.stencilFunc( stencilFunc, stencilRef, stencilMask );
- currentStencilFunc = stencilFunc;
- currentStencilRef = stencilRef;
- currentStencilFuncMask = stencilMask;
- }
- },
- setOp: function ( stencilFail, stencilZFail, stencilZPass ) {
- if ( currentStencilFail !== stencilFail ||
- currentStencilZFail !== stencilZFail ||
- currentStencilZPass !== stencilZPass ) {
- gl.stencilOp( stencilFail, stencilZFail, stencilZPass );
- currentStencilFail = stencilFail;
- currentStencilZFail = stencilZFail;
- currentStencilZPass = stencilZPass;
- }
- },
- setLocked: function ( lock ) {
- locked = lock;
- },
- setClear: function ( stencil ) {
- if ( currentStencilClear !== stencil ) {
- gl.clearStencil( stencil );
- currentStencilClear = stencil;
- }
- },
- reset: function () {
- locked = false;
- currentStencilMask = null;
- currentStencilFunc = null;
- currentStencilRef = null;
- currentStencilFuncMask = null;
- currentStencilFail = null;
- currentStencilZFail = null;
- currentStencilZPass = null;
- currentStencilClear = null;
- }
- };
- }
- //
- var colorBuffer = new ColorBuffer();
- var depthBuffer = new DepthBuffer();
- var stencilBuffer = new StencilBuffer();
- var maxVertexAttributes = gl.getParameter( gl.MAX_VERTEX_ATTRIBS );
- var newAttributes = new Uint8Array( maxVertexAttributes );
- var enabledAttributes = new Uint8Array( maxVertexAttributes );
- var attributeDivisors = new Uint8Array( maxVertexAttributes );
- var capabilities = {};
- var compressedTextureFormats = null;
- var currentBlending = null;
- var currentBlendEquation = null;
- var currentBlendSrc = null;
- var currentBlendDst = null;
- var currentBlendEquationAlpha = null;
- var currentBlendSrcAlpha = null;
- var currentBlendDstAlpha = null;
- var currentPremultipledAlpha = false;
- var currentFlipSided = null;
- var currentCullFace = null;
- var currentLineWidth = null;
- var currentPolygonOffsetFactor = null;
- var currentPolygonOffsetUnits = null;
- var currentScissorTest = null;
- var maxTextures = gl.getParameter( gl.MAX_TEXTURE_IMAGE_UNITS );
- var version = parseFloat( /^WebGL\ ([0-9])/.exec( gl.getParameter( gl.VERSION ) )[ 1 ] );
- var lineWidthAvailable = parseFloat( version ) >= 1.0;
- var currentTextureSlot = null;
- var currentBoundTextures = {};
- var currentScissor = new Vector4();
- var currentViewport = new Vector4();
- function createTexture( type, target, count ) {
- var data = new Uint8Array( 4 ); // 4 is required to match default unpack alignment of 4.
- var texture = gl.createTexture();
- gl.bindTexture( type, texture );
- gl.texParameteri( type, gl.TEXTURE_MIN_FILTER, gl.NEAREST );
- gl.texParameteri( type, gl.TEXTURE_MAG_FILTER, gl.NEAREST );
- for ( var i = 0; i < count; i ++ ) {
- gl.texImage2D( target + i, 0, gl.RGBA, 1, 1, 0, gl.RGBA, gl.UNSIGNED_BYTE, data );
- }
- return texture;
- }
- var emptyTextures = {};
- emptyTextures[ gl.TEXTURE_2D ] = createTexture( gl.TEXTURE_2D, gl.TEXTURE_2D, 1 );
- emptyTextures[ gl.TEXTURE_CUBE_MAP ] = createTexture( gl.TEXTURE_CUBE_MAP, gl.TEXTURE_CUBE_MAP_POSITIVE_X, 6 );
- //
- function init() {
- colorBuffer.setClear( 0, 0, 0, 1 );
- depthBuffer.setClear( 1 );
- stencilBuffer.setClear( 0 );
- enable( gl.DEPTH_TEST );
- depthBuffer.setFunc( LessEqualDepth );
- setFlipSided( false );
- setCullFace( CullFaceBack );
- enable( gl.CULL_FACE );
- enable( gl.BLEND );
- setBlending( NormalBlending );
- }
- function initAttributes() {
- for ( var i = 0, l = newAttributes.length; i < l; i ++ ) {
- newAttributes[ i ] = 0;
- }
- }
- function enableAttribute( attribute ) {
- newAttributes[ attribute ] = 1;
- if ( enabledAttributes[ attribute ] === 0 ) {
- gl.enableVertexAttribArray( attribute );
- enabledAttributes[ attribute ] = 1;
- }
- if ( attributeDivisors[ attribute ] !== 0 ) {
- var extension = extensions.get( 'ANGLE_instanced_arrays' );
- extension.vertexAttribDivisorANGLE( attribute, 0 );
- attributeDivisors[ attribute ] = 0;
- }
- }
- function enableAttributeAndDivisor( attribute, meshPerAttribute, extension ) {
- newAttributes[ attribute ] = 1;
- if ( enabledAttributes[ attribute ] === 0 ) {
- gl.enableVertexAttribArray( attribute );
- enabledAttributes[ attribute ] = 1;
- }
- if ( attributeDivisors[ attribute ] !== meshPerAttribute ) {
- extension.vertexAttribDivisorANGLE( attribute, meshPerAttribute );
- attributeDivisors[ attribute ] = meshPerAttribute;
- }
- }
- function disableUnusedAttributes() {
- for ( var i = 0, l = enabledAttributes.length; i !== l; ++ i ) {
- if ( enabledAttributes[ i ] !== newAttributes[ i ] ) {
- gl.disableVertexAttribArray( i );
- enabledAttributes[ i ] = 0;
- }
- }
- }
- function enable( id ) {
- if ( capabilities[ id ] !== true ) {
- gl.enable( id );
- capabilities[ id ] = true;
- }
- }
- function disable( id ) {
- if ( capabilities[ id ] !== false ) {
- gl.disable( id );
- capabilities[ id ] = false;
- }
- }
- function getCompressedTextureFormats() {
- if ( compressedTextureFormats === null ) {
- compressedTextureFormats = [];
- if ( extensions.get( 'WEBGL_compressed_texture_pvrtc' ) ||
- extensions.get( 'WEBGL_compressed_texture_s3tc' ) ||
- extensions.get( 'WEBGL_compressed_texture_etc1' ) ) {
- var formats = gl.getParameter( gl.COMPRESSED_TEXTURE_FORMATS );
- for ( var i = 0; i < formats.length; i ++ ) {
- compressedTextureFormats.push( formats[ i ] );
- }
- }
- }
- return compressedTextureFormats;
- }
- function setBlending( blending, blendEquation, blendSrc, blendDst, blendEquationAlpha, blendSrcAlpha, blendDstAlpha, premultipliedAlpha ) {
- if ( blending !== NoBlending ) {
- enable( gl.BLEND );
- } else {
- disable( gl.BLEND );
- }
- if ( blending !== currentBlending || premultipliedAlpha !== currentPremultipledAlpha ) {
- if ( blending === AdditiveBlending ) {
- if ( premultipliedAlpha ) {
- gl.blendEquationSeparate( gl.FUNC_ADD, gl.FUNC_ADD );
- gl.blendFuncSeparate( gl.ONE, gl.ONE, gl.ONE, gl.ONE );
- } else {
- gl.blendEquation( gl.FUNC_ADD );
- gl.blendFunc( gl.SRC_ALPHA, gl.ONE );
- }
- } else if ( blending === SubtractiveBlending ) {
- if ( premultipliedAlpha ) {
- gl.blendEquationSeparate( gl.FUNC_ADD, gl.FUNC_ADD );
- gl.blendFuncSeparate( gl.ZERO, gl.ZERO, gl.ONE_MINUS_SRC_COLOR, gl.ONE_MINUS_SRC_ALPHA );
- } else {
- gl.blendEquation( gl.FUNC_ADD );
- gl.blendFunc( gl.ZERO, gl.ONE_MINUS_SRC_COLOR );
- }
- } else if ( blending === MultiplyBlending ) {
- if ( premultipliedAlpha ) {
- gl.blendEquationSeparate( gl.FUNC_ADD, gl.FUNC_ADD );
- gl.blendFuncSeparate( gl.ZERO, gl.SRC_COLOR, gl.ZERO, gl.SRC_ALPHA );
- } else {
- gl.blendEquation( gl.FUNC_ADD );
- gl.blendFunc( gl.ZERO, gl.SRC_COLOR );
- }
- } else {
- if ( premultipliedAlpha ) {
- gl.blendEquationSeparate( gl.FUNC_ADD, gl.FUNC_ADD );
- gl.blendFuncSeparate( gl.ONE, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA );
- } else {
- gl.blendEquationSeparate( gl.FUNC_ADD, gl.FUNC_ADD );
- gl.blendFuncSeparate( gl.SRC_ALPHA, gl.ONE_MINUS_SRC_ALPHA, gl.ONE, gl.ONE_MINUS_SRC_ALPHA );
- }
- }
- currentBlending = blending;
- currentPremultipledAlpha = premultipliedAlpha;
- }
- if ( blending === CustomBlending ) {
- blendEquationAlpha = blendEquationAlpha || blendEquation;
- blendSrcAlpha = blendSrcAlpha || blendSrc;
- blendDstAlpha = blendDstAlpha || blendDst;
- if ( blendEquation !== currentBlendEquation || blendEquationAlpha !== currentBlendEquationAlpha ) {
- gl.blendEquationSeparate( paramThreeToGL( blendEquation ), paramThreeToGL( blendEquationAlpha ) );
- currentBlendEquation = blendEquation;
- currentBlendEquationAlpha = blendEquationAlpha;
- }
- if ( blendSrc !== currentBlendSrc || blendDst !== currentBlendDst || blendSrcAlpha !== currentBlendSrcAlpha || blendDstAlpha !== currentBlendDstAlpha ) {
- gl.blendFuncSeparate( paramThreeToGL( blendSrc ), paramThreeToGL( blendDst ), paramThreeToGL( blendSrcAlpha ), paramThreeToGL( blendDstAlpha ) );
- currentBlendSrc = blendSrc;
- currentBlendDst = blendDst;
- currentBlendSrcAlpha = blendSrcAlpha;
- currentBlendDstAlpha = blendDstAlpha;
- }
- } else {
- currentBlendEquation = null;
- currentBlendSrc = null;
- currentBlendDst = null;
- currentBlendEquationAlpha = null;
- currentBlendSrcAlpha = null;
- currentBlendDstAlpha = null;
- }
- }
- function setMaterial( material ) {
- material.side === DoubleSide
- ? disable( gl.CULL_FACE )
- : enable( gl.CULL_FACE );
- setFlipSided( material.side === BackSide );
- material.transparent === true
- ? setBlending( material.blending, material.blendEquation, material.blendSrc, material.blendDst, material.blendEquationAlpha, material.blendSrcAlpha, material.blendDstAlpha, material.premultipliedAlpha )
- : setBlending( NoBlending );
- depthBuffer.setFunc( material.depthFunc );
- depthBuffer.setTest( material.depthTest );
- depthBuffer.setMask( material.depthWrite );
- colorBuffer.setMask( material.colorWrite );
- setPolygonOffset( material.polygonOffset, material.polygonOffsetFactor, material.polygonOffsetUnits );
- }
- //
- function setFlipSided( flipSided ) {
- if ( currentFlipSided !== flipSided ) {
- if ( flipSided ) {
- gl.frontFace( gl.CW );
- } else {
- gl.frontFace( gl.CCW );
- }
- currentFlipSided = flipSided;
- }
- }
- function setCullFace( cullFace ) {
- if ( cullFace !== CullFaceNone ) {
- enable( gl.CULL_FACE );
- if ( cullFace !== currentCullFace ) {
- if ( cullFace === CullFaceBack ) {
- gl.cullFace( gl.BACK );
- } else if ( cullFace === CullFaceFront ) {
- gl.cullFace( gl.FRONT );
- } else {
- gl.cullFace( gl.FRONT_AND_BACK );
- }
- }
- } else {
- disable( gl.CULL_FACE );
- }
- currentCullFace = cullFace;
- }
- function setLineWidth( width ) {
- if ( width !== currentLineWidth ) {
- if ( lineWidthAvailable ) gl.lineWidth( width );
- currentLineWidth = width;
- }
- }
- function setPolygonOffset( polygonOffset, factor, units ) {
- if ( polygonOffset ) {
- enable( gl.POLYGON_OFFSET_FILL );
- if ( currentPolygonOffsetFactor !== factor || currentPolygonOffsetUnits !== units ) {
- gl.polygonOffset( factor, units );
- currentPolygonOffsetFactor = factor;
- currentPolygonOffsetUnits = units;
- }
- } else {
- disable( gl.POLYGON_OFFSET_FILL );
- }
- }
- function getScissorTest() {
- return currentScissorTest;
- }
- function setScissorTest( scissorTest ) {
- currentScissorTest = scissorTest;
- if ( scissorTest ) {
- enable( gl.SCISSOR_TEST );
- } else {
- disable( gl.SCISSOR_TEST );
- }
- }
- // texture
- function activeTexture( webglSlot ) {
- if ( webglSlot === undefined ) webglSlot = gl.TEXTURE0 + maxTextures - 1;
- if ( currentTextureSlot !== webglSlot ) {
- gl.activeTexture( webglSlot );
- currentTextureSlot = webglSlot;
- }
- }
- function bindTexture( webglType, webglTexture ) {
- if ( currentTextureSlot === null ) {
- activeTexture();
- }
- var boundTexture = currentBoundTextures[ currentTextureSlot ];
- if ( boundTexture === undefined ) {
- boundTexture = { type: undefined, texture: undefined };
- currentBoundTextures[ currentTextureSlot ] = boundTexture;
- }
- if ( boundTexture.type !== webglType || boundTexture.texture !== webglTexture ) {
- gl.bindTexture( webglType, webglTexture || emptyTextures[ webglType ] );
- boundTexture.type = webglType;
- boundTexture.texture = webglTexture;
- }
- }
- function compressedTexImage2D() {
- try {
- gl.compressedTexImage2D.apply( gl, arguments );
- } catch ( error ) {
- console.error( error );
- }
- }
- function texImage2D() {
- try {
- gl.texImage2D.apply( gl, arguments );
- } catch ( error ) {
- console.error( error );
- }
- }
- //
- function scissor( scissor ) {
- if ( currentScissor.equals( scissor ) === false ) {
- gl.scissor( scissor.x, scissor.y, scissor.z, scissor.w );
- currentScissor.copy( scissor );
- }
- }
- function viewport( viewport ) {
- if ( currentViewport.equals( viewport ) === false ) {
- gl.viewport( viewport.x, viewport.y, viewport.z, viewport.w );
- currentViewport.copy( viewport );
- }
- }
- //
- function reset() {
- for ( var i = 0; i < enabledAttributes.length; i ++ ) {
- if ( enabledAttributes[ i ] === 1 ) {
- gl.disableVertexAttribArray( i );
- enabledAttributes[ i ] = 0;
- }
- }
- capabilities = {};
- compressedTextureFormats = null;
- currentTextureSlot = null;
- currentBoundTextures = {};
- currentBlending = null;
- currentFlipSided = null;
- currentCullFace = null;
- colorBuffer.reset();
- depthBuffer.reset();
- stencilBuffer.reset();
- }
- return {
- buffers: {
- color: colorBuffer,
- depth: depthBuffer,
- stencil: stencilBuffer
- },
- init: init,
- initAttributes: initAttributes,
- enableAttribute: enableAttribute,
- enableAttributeAndDivisor: enableAttributeAndDivisor,
- disableUnusedAttributes: disableUnusedAttributes,
- enable: enable,
- disable: disable,
- getCompressedTextureFormats: getCompressedTextureFormats,
- setBlending: setBlending,
- setMaterial: setMaterial,
- setFlipSided: setFlipSided,
- setCullFace: setCullFace,
- setLineWidth: setLineWidth,
- setPolygonOffset: setPolygonOffset,
- getScissorTest: getScissorTest,
- setScissorTest: setScissorTest,
- activeTexture: activeTexture,
- bindTexture: bindTexture,
- compressedTexImage2D: compressedTexImage2D,
- texImage2D: texImage2D,
- scissor: scissor,
- viewport: viewport,
- reset: reset
- };
- }
- export { WebGLState };
|