123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847 |
- /**
- * @author supereggbert / http://www.paulbrunt.co.uk/
- * @author mrdoob / http://mrdoob.com/
- * @author alteredq / http://alteredqualia.com/
- * @author szimek / https://github.com/szimek/
- * @author tschw
- */
- import {
- RGBAFormat,
- HalfFloatType,
- FloatType,
- UnsignedByteType,
- LinearEncoding,
- LinearToneMapping,
- BackSide
- } from '../constants.js';
- import { MathUtils } from '../math/MathUtils.js';
- import { DataTexture } from '../textures/DataTexture.js';
- import { Frustum } from '../math/Frustum.js';
- import { Matrix4 } from '../math/Matrix4.js';
- import { UniformsLib } from './shaders/UniformsLib.js';
- import { Vector2 } from '../math/Vector2.js';
- import { Vector3 } from '../math/Vector3.js';
- import { Vector4 } from '../math/Vector4.js';
- import { Scene } from '../scenes/Scene.js';
- import { WebGLAnimation } from './webgl/WebGLAnimation.js';
- import { WebGLAttributes } from './webgl/WebGLAttributes.js';
- import { WebGLBackground } from './webgl/WebGLBackground.js';
- import { WebGLBufferRenderer } from './webgl/WebGLBufferRenderer.js';
- import { WebGLCapabilities } from './webgl/WebGLCapabilities.js';
- import { WebGLClipping } from './webgl/WebGLClipping.js';
- import { WebGLExtensions } from './webgl/WebGLExtensions.js';
- import { WebGLGeometries } from './webgl/WebGLGeometries.js';
- import { WebGLIndexedBufferRenderer } from './webgl/WebGLIndexedBufferRenderer.js';
- import { WebGLInfo } from './webgl/WebGLInfo.js';
- import { WebGLMorphtargets } from './webgl/WebGLMorphtargets.js';
- import { WebGLObjects } from './webgl/WebGLObjects.js';
- import { WebGLPrograms } from './webgl/WebGLPrograms.js';
- import { WebGLProperties } from './webgl/WebGLProperties.js';
- import { WebGLRenderLists } from './webgl/WebGLRenderLists.js';
- import { WebGLRenderStates } from './webgl/WebGLRenderStates.js';
- import { WebGLShadowMap } from './webgl/WebGLShadowMap.js';
- import { WebGLState } from './webgl/WebGLState.js';
- import { WebGLTextures } from './webgl/WebGLTextures.js';
- import { WebGLUniforms } from './webgl/WebGLUniforms.js';
- import { WebGLUtils } from './webgl/WebGLUtils.js';
- import { WebGLMultiview } from './webgl/WebGLMultiview.js';
- import { WebXRManager } from './webxr/WebXRManager.js';
- function WebGLRenderer( parameters ) {
- parameters = parameters || {};
- var _canvas = parameters.canvas !== undefined ? parameters.canvas : document.createElementNS( 'http://www.w3.org/1999/xhtml', 'canvas' ),
- _context = parameters.context !== undefined ? parameters.context : null,
- _alpha = parameters.alpha !== undefined ? parameters.alpha : false,
- _depth = parameters.depth !== undefined ? parameters.depth : true,
- _stencil = parameters.stencil !== undefined ? parameters.stencil : true,
- _antialias = parameters.antialias !== undefined ? parameters.antialias : false,
- _premultipliedAlpha = parameters.premultipliedAlpha !== undefined ? parameters.premultipliedAlpha : true,
- _preserveDrawingBuffer = parameters.preserveDrawingBuffer !== undefined ? parameters.preserveDrawingBuffer : false,
- _powerPreference = parameters.powerPreference !== undefined ? parameters.powerPreference : 'default',
- _failIfMajorPerformanceCaveat = parameters.failIfMajorPerformanceCaveat !== undefined ? parameters.failIfMajorPerformanceCaveat : false;
- var currentRenderList = null;
- var currentRenderState = null;
- // public properties
- this.domElement = _canvas;
- // Debug configuration container
- this.debug = {
- /**
- * Enables error checking and reporting when shader programs are being compiled
- * @type {boolean}
- */
- checkShaderErrors: true
- };
- // clearing
- this.autoClear = true;
- this.autoClearColor = true;
- this.autoClearDepth = true;
- this.autoClearStencil = true;
- // scene graph
- this.sortObjects = true;
- // user-defined clipping
- this.clippingPlanes = [];
- this.localClippingEnabled = false;
- // physically based shading
- this.gammaFactor = 2.0; // for backwards compatibility
- this.outputEncoding = LinearEncoding;
- // physical lights
- this.physicallyCorrectLights = false;
- // tone mapping
- this.toneMapping = LinearToneMapping;
- this.toneMappingExposure = 1.0;
- this.toneMappingWhitePoint = 1.0;
- // morphs
- this.maxMorphTargets = 8;
- this.maxMorphNormals = 4;
- // internal properties
- var _this = this,
- _isContextLost = false,
- // internal state cache
- _framebuffer = null,
- _currentActiveCubeFace = 0,
- _currentActiveMipmapLevel = 0,
- _currentRenderTarget = null,
- _currentFramebuffer = null,
- _currentMaterialId = - 1,
- // geometry and program caching
- _currentGeometryProgram = {
- geometry: null,
- program: null,
- wireframe: false
- },
- _currentCamera = null,
- _currentArrayCamera = null,
- _currentViewport = new Vector4(),
- _currentScissor = new Vector4(),
- _currentScissorTest = null,
- //
- _width = _canvas.width,
- _height = _canvas.height,
- _pixelRatio = 1,
- _opaqueSort = null,
- _transparentSort = null,
- _viewport = new Vector4( 0, 0, _width, _height ),
- _scissor = new Vector4( 0, 0, _width, _height ),
- _scissorTest = false,
- // frustum
- _frustum = new Frustum(),
- // clipping
- _clipping = new WebGLClipping(),
- _clippingEnabled = false,
- _localClippingEnabled = false,
- // camera matrices cache
- _projScreenMatrix = new Matrix4(),
- _vector3 = new Vector3();
- function getTargetPixelRatio() {
- return _currentRenderTarget === null ? _pixelRatio : 1;
- }
- // initialize
- var _gl;
- try {
- var contextAttributes = {
- alpha: _alpha,
- depth: _depth,
- stencil: _stencil,
- antialias: _antialias,
- premultipliedAlpha: _premultipliedAlpha,
- preserveDrawingBuffer: _preserveDrawingBuffer,
- powerPreference: _powerPreference,
- failIfMajorPerformanceCaveat: _failIfMajorPerformanceCaveat,
- xrCompatible: true
- };
- // event listeners must be registered before WebGL context is created, see #12753
- _canvas.addEventListener( 'webglcontextlost', onContextLost, false );
- _canvas.addEventListener( 'webglcontextrestored', onContextRestore, false );
- _gl = _context || _canvas.getContext( 'webgl', contextAttributes ) || _canvas.getContext( 'experimental-webgl', contextAttributes );
- if ( _gl === null ) {
- if ( _canvas.getContext( 'webgl' ) !== null ) {
- throw new Error( 'Error creating WebGL context with your selected attributes.' );
- } else {
- throw new Error( 'Error creating WebGL context.' );
- }
- }
- // Some experimental-webgl implementations do not have getShaderPrecisionFormat
- if ( _gl.getShaderPrecisionFormat === undefined ) {
- _gl.getShaderPrecisionFormat = function () {
- return { 'rangeMin': 1, 'rangeMax': 1, 'precision': 1 };
- };
- }
- } catch ( error ) {
- console.error( 'THREE.WebGLRenderer: ' + error.message );
- throw error;
- }
- var extensions, capabilities, state, info;
- var properties, textures, attributes, geometries, objects;
- var programCache, renderLists, renderStates;
- var background, morphtargets, bufferRenderer, indexedBufferRenderer;
- var utils;
- function initGLContext() {
- extensions = new WebGLExtensions( _gl );
- capabilities = new WebGLCapabilities( _gl, extensions, parameters );
- if ( capabilities.isWebGL2 === false ) {
- extensions.get( 'WEBGL_depth_texture' );
- extensions.get( 'OES_texture_float' );
- extensions.get( 'OES_texture_half_float' );
- extensions.get( 'OES_texture_half_float_linear' );
- extensions.get( 'OES_standard_derivatives' );
- extensions.get( 'OES_element_index_uint' );
- extensions.get( 'ANGLE_instanced_arrays' );
- }
- extensions.get( 'OES_texture_float_linear' );
- utils = new WebGLUtils( _gl, extensions, capabilities );
- state = new WebGLState( _gl, extensions, capabilities );
- state.scissor( _currentScissor.copy( _scissor ).multiplyScalar( _pixelRatio ).floor() );
- state.viewport( _currentViewport.copy( _viewport ).multiplyScalar( _pixelRatio ).floor() );
- info = new WebGLInfo( _gl );
- properties = new WebGLProperties();
- textures = new WebGLTextures( _gl, extensions, state, properties, capabilities, utils, info );
- attributes = new WebGLAttributes( _gl, capabilities );
- geometries = new WebGLGeometries( _gl, attributes, info );
- objects = new WebGLObjects( _gl, geometries, attributes, info );
- morphtargets = new WebGLMorphtargets( _gl );
- programCache = new WebGLPrograms( _this, extensions, capabilities );
- renderLists = new WebGLRenderLists();
- renderStates = new WebGLRenderStates();
- background = new WebGLBackground( _this, state, objects, _premultipliedAlpha );
- bufferRenderer = new WebGLBufferRenderer( _gl, extensions, info, capabilities );
- indexedBufferRenderer = new WebGLIndexedBufferRenderer( _gl, extensions, info, capabilities );
- info.programs = programCache.programs;
- _this.capabilities = capabilities;
- _this.extensions = extensions;
- _this.properties = properties;
- _this.renderLists = renderLists;
- _this.state = state;
- _this.info = info;
- }
- initGLContext();
- // xr
- var xr = new WebXRManager( _this, _gl );
- this.xr = xr;
- // Multiview
- var multiview = new WebGLMultiview( _this, _gl );
- // shadow map
- var shadowMap = new WebGLShadowMap( _this, objects, capabilities.maxTextureSize );
- this.shadowMap = shadowMap;
- // API
- this.getContext = function () {
- return _gl;
- };
- this.getContextAttributes = function () {
- return _gl.getContextAttributes();
- };
- this.forceContextLoss = function () {
- var extension = extensions.get( 'WEBGL_lose_context' );
- if ( extension ) extension.loseContext();
- };
- this.forceContextRestore = function () {
- var extension = extensions.get( 'WEBGL_lose_context' );
- if ( extension ) extension.restoreContext();
- };
- this.getPixelRatio = function () {
- return _pixelRatio;
- };
- this.setPixelRatio = function ( value ) {
- if ( value === undefined ) return;
- _pixelRatio = value;
- this.setSize( _width, _height, false );
- };
- this.getSize = function ( target ) {
- if ( target === undefined ) {
- console.warn( 'WebGLRenderer: .getsize() now requires a Vector2 as an argument' );
- target = new Vector2();
- }
- return target.set( _width, _height );
- };
- this.setSize = function ( width, height, updateStyle ) {
- if ( xr.isPresenting ) {
- console.warn( 'THREE.WebGLRenderer: Can\'t change size while VR device is presenting.' );
- return;
- }
- _width = width;
- _height = height;
- _canvas.width = Math.floor( width * _pixelRatio );
- _canvas.height = Math.floor( height * _pixelRatio );
- if ( updateStyle !== false ) {
- _canvas.style.width = width + 'px';
- _canvas.style.height = height + 'px';
- }
- this.setViewport( 0, 0, width, height );
- };
- this.getDrawingBufferSize = function ( target ) {
- if ( target === undefined ) {
- console.warn( 'WebGLRenderer: .getdrawingBufferSize() now requires a Vector2 as an argument' );
- target = new Vector2();
- }
- return target.set( _width * _pixelRatio, _height * _pixelRatio ).floor();
- };
- this.setDrawingBufferSize = function ( width, height, pixelRatio ) {
- _width = width;
- _height = height;
- _pixelRatio = pixelRatio;
- _canvas.width = Math.floor( width * pixelRatio );
- _canvas.height = Math.floor( height * pixelRatio );
- this.setViewport( 0, 0, width, height );
- };
- this.getCurrentViewport = function ( target ) {
- if ( target === undefined ) {
- console.warn( 'WebGLRenderer: .getCurrentViewport() now requires a Vector4 as an argument' );
- target = new Vector4();
- }
- return target.copy( _currentViewport );
- };
- this.getViewport = function ( target ) {
- return target.copy( _viewport );
- };
- this.setViewport = function ( x, y, width, height ) {
- if ( x.isVector4 ) {
- _viewport.set( x.x, x.y, x.z, x.w );
- } else {
- _viewport.set( x, y, width, height );
- }
- state.viewport( _currentViewport.copy( _viewport ).multiplyScalar( _pixelRatio ).floor() );
- };
- this.getScissor = function ( target ) {
- return target.copy( _scissor );
- };
- this.setScissor = function ( x, y, width, height ) {
- if ( x.isVector4 ) {
- _scissor.set( x.x, x.y, x.z, x.w );
- } else {
- _scissor.set( x, y, width, height );
- }
- state.scissor( _currentScissor.copy( _scissor ).multiplyScalar( _pixelRatio ).floor() );
- };
- this.getScissorTest = function () {
- return _scissorTest;
- };
- this.setScissorTest = function ( boolean ) {
- state.setScissorTest( _scissorTest = boolean );
- };
- this.setOpaqueSort = function ( method ) {
- _opaqueSort = method;
- };
- this.setTransparentSort = function ( method ) {
- _transparentSort = method;
- };
- // Clearing
- this.getClearColor = function () {
- return background.getClearColor();
- };
- this.setClearColor = function () {
- background.setClearColor.apply( background, arguments );
- };
- this.getClearAlpha = function () {
- return background.getClearAlpha();
- };
- this.setClearAlpha = function () {
- background.setClearAlpha.apply( background, arguments );
- };
- this.clear = function ( color, depth, stencil ) {
- var bits = 0;
- if ( color === undefined || color ) bits |= _gl.COLOR_BUFFER_BIT;
- if ( depth === undefined || depth ) bits |= _gl.DEPTH_BUFFER_BIT;
- if ( stencil === undefined || stencil ) bits |= _gl.STENCIL_BUFFER_BIT;
- _gl.clear( bits );
- };
- this.clearColor = function () {
- this.clear( true, false, false );
- };
- this.clearDepth = function () {
- this.clear( false, true, false );
- };
- this.clearStencil = function () {
- this.clear( false, false, true );
- };
- //
- this.dispose = function () {
- _canvas.removeEventListener( 'webglcontextlost', onContextLost, false );
- _canvas.removeEventListener( 'webglcontextrestored', onContextRestore, false );
- renderLists.dispose();
- renderStates.dispose();
- properties.dispose();
- objects.dispose();
- xr.dispose();
- animation.stop();
- };
- // Events
- function onContextLost( event ) {
- event.preventDefault();
- console.log( 'THREE.WebGLRenderer: Context Lost.' );
- _isContextLost = true;
- }
- function onContextRestore( /* event */ ) {
- console.log( 'THREE.WebGLRenderer: Context Restored.' );
- _isContextLost = false;
- initGLContext();
- }
- function onMaterialDispose( event ) {
- var material = event.target;
- material.removeEventListener( 'dispose', onMaterialDispose );
- deallocateMaterial( material );
- }
- // Buffer deallocation
- function deallocateMaterial( material ) {
- releaseMaterialProgramReference( material );
- properties.remove( material );
- }
- function releaseMaterialProgramReference( material ) {
- var programInfo = properties.get( material ).program;
- material.program = undefined;
- if ( programInfo !== undefined ) {
- programCache.releaseProgram( programInfo );
- }
- }
- // Buffer rendering
- function renderObjectImmediate( object, program ) {
- object.render( function ( object ) {
- _this.renderBufferImmediate( object, program );
- } );
- }
- this.renderBufferImmediate = function ( object, program ) {
- state.initAttributes();
- var buffers = properties.get( object );
- if ( object.hasPositions && ! buffers.position ) buffers.position = _gl.createBuffer();
- if ( object.hasNormals && ! buffers.normal ) buffers.normal = _gl.createBuffer();
- if ( object.hasUvs && ! buffers.uv ) buffers.uv = _gl.createBuffer();
- if ( object.hasColors && ! buffers.color ) buffers.color = _gl.createBuffer();
- var programAttributes = program.getAttributes();
- if ( object.hasPositions ) {
- _gl.bindBuffer( _gl.ARRAY_BUFFER, buffers.position );
- _gl.bufferData( _gl.ARRAY_BUFFER, object.positionArray, _gl.DYNAMIC_DRAW );
- state.enableAttribute( programAttributes.position );
- _gl.vertexAttribPointer( programAttributes.position, 3, _gl.FLOAT, false, 0, 0 );
- }
- if ( object.hasNormals ) {
- _gl.bindBuffer( _gl.ARRAY_BUFFER, buffers.normal );
- _gl.bufferData( _gl.ARRAY_BUFFER, object.normalArray, _gl.DYNAMIC_DRAW );
- state.enableAttribute( programAttributes.normal );
- _gl.vertexAttribPointer( programAttributes.normal, 3, _gl.FLOAT, false, 0, 0 );
- }
- if ( object.hasUvs ) {
- _gl.bindBuffer( _gl.ARRAY_BUFFER, buffers.uv );
- _gl.bufferData( _gl.ARRAY_BUFFER, object.uvArray, _gl.DYNAMIC_DRAW );
- state.enableAttribute( programAttributes.uv );
- _gl.vertexAttribPointer( programAttributes.uv, 2, _gl.FLOAT, false, 0, 0 );
- }
- if ( object.hasColors ) {
- _gl.bindBuffer( _gl.ARRAY_BUFFER, buffers.color );
- _gl.bufferData( _gl.ARRAY_BUFFER, object.colorArray, _gl.DYNAMIC_DRAW );
- state.enableAttribute( programAttributes.color );
- _gl.vertexAttribPointer( programAttributes.color, 3, _gl.FLOAT, false, 0, 0 );
- }
- state.disableUnusedAttributes();
- _gl.drawArrays( _gl.TRIANGLES, 0, object.count );
- object.count = 0;
- };
- var tempScene = new Scene();
- this.renderBufferDirect = function ( camera, scene, geometry, material, object, group ) {
- if ( scene === null ) scene = tempScene; // renderBufferDirect second parameter used to be fog (could be null)
- var frontFaceCW = ( object.isMesh && object.matrixWorld.determinant() < 0 );
- var program = setProgram( camera, scene, material, object );
- state.setMaterial( material, frontFaceCW );
- var updateBuffers = false;
- if ( _currentGeometryProgram.geometry !== geometry.id ||
- _currentGeometryProgram.program !== program.id ||
- _currentGeometryProgram.wireframe !== ( material.wireframe === true ) ) {
- _currentGeometryProgram.geometry = geometry.id;
- _currentGeometryProgram.program = program.id;
- _currentGeometryProgram.wireframe = material.wireframe === true;
- updateBuffers = true;
- }
- if ( material.morphTargets || material.morphNormals ) {
- morphtargets.update( object, geometry, material, program );
- updateBuffers = true;
- }
- //
- var index = geometry.index;
- var position = geometry.attributes.position;
- //
- if ( index === null ) {
- if ( position === undefined || position.count === 0 ) return;
- } else if ( index.count === 0 ) {
- return;
- }
- //
- var rangeFactor = 1;
- if ( material.wireframe === true ) {
- index = geometries.getWireframeAttribute( geometry );
- rangeFactor = 2;
- }
- var attribute;
- var renderer = bufferRenderer;
- if ( index !== null ) {
- attribute = attributes.get( index );
- renderer = indexedBufferRenderer;
- renderer.setIndex( attribute );
- }
- if ( updateBuffers ) {
- setupVertexAttributes( object, geometry, material, program );
- if ( index !== null ) {
- _gl.bindBuffer( _gl.ELEMENT_ARRAY_BUFFER, attribute.buffer );
- }
- }
- //
- var dataCount = ( index !== null ) ? index.count : position.count;
- var rangeStart = geometry.drawRange.start * rangeFactor;
- var rangeCount = geometry.drawRange.count * rangeFactor;
- var groupStart = group !== null ? group.start * rangeFactor : 0;
- var groupCount = group !== null ? group.count * rangeFactor : Infinity;
- var drawStart = Math.max( rangeStart, groupStart );
- var drawEnd = Math.min( dataCount, rangeStart + rangeCount, groupStart + groupCount ) - 1;
- var drawCount = Math.max( 0, drawEnd - drawStart + 1 );
- if ( drawCount === 0 ) return;
- //
- if ( object.isMesh ) {
- if ( material.wireframe === true ) {
- state.setLineWidth( material.wireframeLinewidth * getTargetPixelRatio() );
- renderer.setMode( _gl.LINES );
- } else {
- renderer.setMode( _gl.TRIANGLES );
- }
- } else if ( object.isLine ) {
- var lineWidth = material.linewidth;
- if ( lineWidth === undefined ) lineWidth = 1; // Not using Line*Material
- state.setLineWidth( lineWidth * getTargetPixelRatio() );
- if ( object.isLineSegments ) {
- renderer.setMode( _gl.LINES );
- } else if ( object.isLineLoop ) {
- renderer.setMode( _gl.LINE_LOOP );
- } else {
- renderer.setMode( _gl.LINE_STRIP );
- }
- } else if ( object.isPoints ) {
- renderer.setMode( _gl.POINTS );
- } else if ( object.isSprite ) {
- renderer.setMode( _gl.TRIANGLES );
- }
- if ( object.isInstancedMesh ) {
- renderer.renderInstances( geometry, drawStart, drawCount, object.count );
- } else if ( geometry.isInstancedBufferGeometry ) {
- renderer.renderInstances( geometry, drawStart, drawCount, geometry.maxInstancedCount );
- } else {
- renderer.render( drawStart, drawCount );
- }
- };
- function setupVertexAttributes( object, geometry, material, program ) {
- if ( capabilities.isWebGL2 === false && ( object.isInstancedMesh || geometry.isInstancedBufferGeometry ) ) {
- if ( extensions.get( 'ANGLE_instanced_arrays' ) === null ) return;
- }
- state.initAttributes();
- var geometryAttributes = geometry.attributes;
- var programAttributes = program.getAttributes();
- var materialDefaultAttributeValues = material.defaultAttributeValues;
- for ( var name in programAttributes ) {
- var programAttribute = programAttributes[ name ];
- if ( programAttribute >= 0 ) {
- var geometryAttribute = geometryAttributes[ name ];
- if ( geometryAttribute !== undefined ) {
- var normalized = geometryAttribute.normalized;
- var size = geometryAttribute.itemSize;
- var attribute = attributes.get( geometryAttribute );
- // TODO Attribute may not be available on context restore
- if ( attribute === undefined ) continue;
- var buffer = attribute.buffer;
- var type = attribute.type;
- var bytesPerElement = attribute.bytesPerElement;
- if ( geometryAttribute.isInterleavedBufferAttribute ) {
- var data = geometryAttribute.data;
- var stride = data.stride;
- var offset = geometryAttribute.offset;
- if ( data && data.isInstancedInterleavedBuffer ) {
- state.enableAttributeAndDivisor( programAttribute, data.meshPerAttribute );
- if ( geometry.maxInstancedCount === undefined ) {
- geometry.maxInstancedCount = data.meshPerAttribute * data.count;
- }
- } else {
- state.enableAttribute( programAttribute );
- }
- _gl.bindBuffer( _gl.ARRAY_BUFFER, buffer );
- _gl.vertexAttribPointer( programAttribute, size, type, normalized, stride * bytesPerElement, offset * bytesPerElement );
- } else {
- if ( geometryAttribute.isInstancedBufferAttribute ) {
- state.enableAttributeAndDivisor( programAttribute, geometryAttribute.meshPerAttribute );
- if ( geometry.maxInstancedCount === undefined ) {
- geometry.maxInstancedCount = geometryAttribute.meshPerAttribute * geometryAttribute.count;
- }
- } else {
- state.enableAttribute( programAttribute );
- }
- _gl.bindBuffer( _gl.ARRAY_BUFFER, buffer );
- _gl.vertexAttribPointer( programAttribute, size, type, normalized, 0, 0 );
- }
- } else if ( name === 'instanceMatrix' ) {
- var attribute = attributes.get( object.instanceMatrix );
- // TODO Attribute may not be available on context restore
- if ( attribute === undefined ) continue;
- var buffer = attribute.buffer;
- var type = attribute.type;
- state.enableAttributeAndDivisor( programAttribute + 0, 1 );
- state.enableAttributeAndDivisor( programAttribute + 1, 1 );
- state.enableAttributeAndDivisor( programAttribute + 2, 1 );
- state.enableAttributeAndDivisor( programAttribute + 3, 1 );
- _gl.bindBuffer( _gl.ARRAY_BUFFER, buffer );
- _gl.vertexAttribPointer( programAttribute + 0, 4, type, false, 64, 0 );
- _gl.vertexAttribPointer( programAttribute + 1, 4, type, false, 64, 16 );
- _gl.vertexAttribPointer( programAttribute + 2, 4, type, false, 64, 32 );
- _gl.vertexAttribPointer( programAttribute + 3, 4, type, false, 64, 48 );
- } else if ( materialDefaultAttributeValues !== undefined ) {
- var value = materialDefaultAttributeValues[ name ];
- if ( value !== undefined ) {
- switch ( value.length ) {
- case 2:
- _gl.vertexAttrib2fv( programAttribute, value );
- break;
- case 3:
- _gl.vertexAttrib3fv( programAttribute, value );
- break;
- case 4:
- _gl.vertexAttrib4fv( programAttribute, value );
- break;
- default:
- _gl.vertexAttrib1fv( programAttribute, value );
- }
- }
- }
- }
- }
- state.disableUnusedAttributes();
- }
- // Compile
- this.compile = function ( scene, camera ) {
- currentRenderState = renderStates.get( scene, camera );
- currentRenderState.init();
- scene.traverse( function ( object ) {
- if ( object.isLight ) {
- currentRenderState.pushLight( object );
- if ( object.castShadow ) {
- currentRenderState.pushShadow( object );
- }
- }
- } );
- currentRenderState.setupLights( camera );
- var compiled = {};
- scene.traverse( function ( object ) {
- if ( object.material ) {
- if ( Array.isArray( object.material ) ) {
- for ( var i = 0; i < object.material.length; i ++ ) {
- if ( object.material[ i ].uuid in compiled === false ) {
- initMaterial( object.material[ i ], scene, object );
- compiled[ object.material[ i ].uuid ] = true;
- }
- }
- } else if ( object.material.uuid in compiled === false ) {
- initMaterial( object.material, scene, object );
- compiled[ object.material.uuid ] = true;
- }
- }
- } );
- };
- // Animation Loop
- var onAnimationFrameCallback = null;
- function onAnimationFrame( time ) {
- if ( xr.isPresenting ) return;
- if ( onAnimationFrameCallback ) onAnimationFrameCallback( time );
- }
- var animation = new WebGLAnimation();
- animation.setAnimationLoop( onAnimationFrame );
- if ( typeof window !== 'undefined' ) animation.setContext( window );
- this.setAnimationLoop = function ( callback ) {
- onAnimationFrameCallback = callback;
- xr.setAnimationLoop( callback );
- animation.start();
- };
- // Rendering
- this.render = function ( scene, camera ) {
- var renderTarget, forceClear;
- if ( arguments[ 2 ] !== undefined ) {
- console.warn( 'THREE.WebGLRenderer.render(): the renderTarget argument has been removed. Use .setRenderTarget() instead.' );
- renderTarget = arguments[ 2 ];
- }
- if ( arguments[ 3 ] !== undefined ) {
- console.warn( 'THREE.WebGLRenderer.render(): the forceClear argument has been removed. Use .clear() instead.' );
- forceClear = arguments[ 3 ];
- }
- if ( ! ( camera && camera.isCamera ) ) {
- console.error( 'THREE.WebGLRenderer.render: camera is not an instance of THREE.Camera.' );
- return;
- }
- if ( _isContextLost ) return;
- // reset caching for this frame
- _currentGeometryProgram.geometry = null;
- _currentGeometryProgram.program = null;
- _currentGeometryProgram.wireframe = false;
- _currentMaterialId = - 1;
- _currentCamera = null;
- // update scene graph
- if ( scene.autoUpdate === true ) scene.updateMatrixWorld();
- // update camera matrices and frustum
- if ( camera.parent === null ) camera.updateMatrixWorld();
- if ( xr.enabled && xr.isPresenting ) {
- camera = xr.getCamera( camera );
- }
- //
- currentRenderState = renderStates.get( scene, camera );
- currentRenderState.init();
- scene.onBeforeRender( _this, scene, camera, renderTarget || _currentRenderTarget );
- _projScreenMatrix.multiplyMatrices( camera.projectionMatrix, camera.matrixWorldInverse );
- _frustum.setFromProjectionMatrix( _projScreenMatrix );
- _localClippingEnabled = this.localClippingEnabled;
- _clippingEnabled = _clipping.init( this.clippingPlanes, _localClippingEnabled, camera );
- currentRenderList = renderLists.get( scene, camera );
- currentRenderList.init();
- projectObject( scene, camera, 0, _this.sortObjects );
- currentRenderList.finish();
- if ( _this.sortObjects === true ) {
- currentRenderList.sort( _opaqueSort, _transparentSort );
- }
- //
- if ( _clippingEnabled ) _clipping.beginShadows();
- var shadowsArray = currentRenderState.state.shadowsArray;
- shadowMap.render( shadowsArray, scene, camera );
- currentRenderState.setupLights( camera );
- if ( _clippingEnabled ) _clipping.endShadows();
- //
- if ( this.info.autoReset ) this.info.reset();
- if ( renderTarget !== undefined ) {
- this.setRenderTarget( renderTarget );
- }
- if ( xr.enabled && multiview.isAvailable() ) {
- multiview.attachCamera( camera );
- }
- //
- background.render( currentRenderList, scene, camera, forceClear );
- // render scene
- var opaqueObjects = currentRenderList.opaque;
- var transparentObjects = currentRenderList.transparent;
- if ( scene.overrideMaterial ) {
- var overrideMaterial = scene.overrideMaterial;
- if ( opaqueObjects.length ) renderObjects( opaqueObjects, scene, camera, overrideMaterial );
- if ( transparentObjects.length ) renderObjects( transparentObjects, scene, camera, overrideMaterial );
- } else {
- // opaque pass (front-to-back order)
- if ( opaqueObjects.length ) renderObjects( opaqueObjects, scene, camera );
- // transparent pass (back-to-front order)
- if ( transparentObjects.length ) renderObjects( transparentObjects, scene, camera );
- }
- //
- scene.onAfterRender( _this, scene, camera );
- //
- if ( _currentRenderTarget !== null ) {
- // Generate mipmap if we're using any kind of mipmap filtering
- textures.updateRenderTargetMipmap( _currentRenderTarget );
- // resolve multisample renderbuffers to a single-sample texture if necessary
- textures.updateMultisampleRenderTarget( _currentRenderTarget );
- }
- // Ensure depth buffer writing is enabled so it can be cleared on next render
- state.buffers.depth.setTest( true );
- state.buffers.depth.setMask( true );
- state.buffers.color.setMask( true );
- state.setPolygonOffset( false );
- if ( xr.enabled ) {
- if ( multiview.isAvailable() ) {
- multiview.detachCamera( camera );
- }
- }
- // _gl.finish();
- currentRenderList = null;
- currentRenderState = null;
- };
- function projectObject( object, camera, groupOrder, sortObjects ) {
- if ( object.visible === false ) return;
- var visible = object.layers.test( camera.layers );
- if ( visible ) {
- if ( object.isGroup ) {
- groupOrder = object.renderOrder;
- } else if ( object.isLOD ) {
- if ( object.autoUpdate === true ) object.update( camera );
- } else if ( object.isLight ) {
- currentRenderState.pushLight( object );
- if ( object.castShadow ) {
- currentRenderState.pushShadow( object );
- }
- } else if ( object.isSprite ) {
- if ( ! object.frustumCulled || _frustum.intersectsSprite( object ) ) {
- if ( sortObjects ) {
- _vector3.setFromMatrixPosition( object.matrixWorld )
- .applyMatrix4( _projScreenMatrix );
- }
- var geometry = objects.update( object );
- var material = object.material;
- if ( material.visible ) {
- currentRenderList.push( object, geometry, material, groupOrder, _vector3.z, null );
- }
- }
- } else if ( object.isImmediateRenderObject ) {
- if ( sortObjects ) {
- _vector3.setFromMatrixPosition( object.matrixWorld )
- .applyMatrix4( _projScreenMatrix );
- }
- currentRenderList.push( object, null, object.material, groupOrder, _vector3.z, null );
- } else if ( object.isMesh || object.isLine || object.isPoints ) {
- if ( object.isSkinnedMesh ) {
- // update skeleton only once in a frame
- if ( object.skeleton.frame !== info.render.frame ) {
- object.skeleton.update();
- object.skeleton.frame = info.render.frame;
- }
- }
- if ( ! object.frustumCulled || _frustum.intersectsObject( object ) ) {
- if ( sortObjects ) {
- _vector3.setFromMatrixPosition( object.matrixWorld )
- .applyMatrix4( _projScreenMatrix );
- }
- var geometry = objects.update( object );
- var material = object.material;
- if ( Array.isArray( material ) ) {
- var groups = geometry.groups;
- for ( var i = 0, l = groups.length; i < l; i ++ ) {
- var group = groups[ i ];
- var groupMaterial = material[ group.materialIndex ];
- if ( groupMaterial && groupMaterial.visible ) {
- currentRenderList.push( object, geometry, groupMaterial, groupOrder, _vector3.z, group );
- }
- }
- } else if ( material.visible ) {
- currentRenderList.push( object, geometry, material, groupOrder, _vector3.z, null );
- }
- }
- }
- }
- var children = object.children;
- for ( var i = 0, l = children.length; i < l; i ++ ) {
- projectObject( children[ i ], camera, groupOrder, sortObjects );
- }
- }
- function renderObjects( renderList, scene, camera, overrideMaterial ) {
- for ( var i = 0, l = renderList.length; i < l; i ++ ) {
- var renderItem = renderList[ i ];
- var object = renderItem.object;
- var geometry = renderItem.geometry;
- var material = overrideMaterial === undefined ? renderItem.material : overrideMaterial;
- var group = renderItem.group;
- if ( camera.isArrayCamera ) {
- _currentArrayCamera = camera;
- if ( xr.enabled && multiview.isAvailable() ) {
- renderObject( object, scene, camera, geometry, material, group );
- } else {
- var cameras = camera.cameras;
- for ( var j = 0, jl = cameras.length; j < jl; j ++ ) {
- var camera2 = cameras[ j ];
- if ( object.layers.test( camera2.layers ) ) {
- state.viewport( _currentViewport.copy( camera2.viewport ) );
- currentRenderState.setupLights( camera2 );
- renderObject( object, scene, camera2, geometry, material, group );
- }
- }
- }
- } else {
- _currentArrayCamera = null;
- renderObject( object, scene, camera, geometry, material, group );
- }
- }
- }
- function renderObject( object, scene, camera, geometry, material, group ) {
- object.onBeforeRender( _this, scene, camera, geometry, material, group );
- currentRenderState = renderStates.get( scene, _currentArrayCamera || camera );
- object.modelViewMatrix.multiplyMatrices( camera.matrixWorldInverse, object.matrixWorld );
- object.normalMatrix.getNormalMatrix( object.modelViewMatrix );
- if ( object.isImmediateRenderObject ) {
- var program = setProgram( camera, scene, material, object );
- state.setMaterial( material );
- _currentGeometryProgram.geometry = null;
- _currentGeometryProgram.program = null;
- _currentGeometryProgram.wireframe = false;
- renderObjectImmediate( object, program );
- } else {
- _this.renderBufferDirect( camera, scene, geometry, material, object, group );
- }
- object.onAfterRender( _this, scene, camera, geometry, material, group );
- currentRenderState = renderStates.get( scene, _currentArrayCamera || camera );
- }
- function initMaterial( material, scene, object ) {
- var materialProperties = properties.get( material );
- var lights = currentRenderState.state.lights;
- var shadowsArray = currentRenderState.state.shadowsArray;
- var lightsStateVersion = lights.state.version;
- var parameters = programCache.getParameters( material, lights.state, shadowsArray, scene, _clipping.numPlanes, _clipping.numIntersection, object );
- var programCacheKey = programCache.getProgramCacheKey( parameters );
- var program = materialProperties.program;
- var programChange = true;
- if ( program === undefined ) {
- // new material
- material.addEventListener( 'dispose', onMaterialDispose );
- } else if ( program.cacheKey !== programCacheKey ) {
- // changed glsl or parameters
- releaseMaterialProgramReference( material );
- } else if ( materialProperties.lightsStateVersion !== lightsStateVersion ) {
- materialProperties.lightsStateVersion = lightsStateVersion;
- programChange = false;
- } else if ( parameters.shaderID !== undefined ) {
- // same glsl and uniform list
- return;
- } else {
- // only rebuild uniform list
- programChange = false;
- }
- if ( programChange ) {
- program = programCache.acquireProgram( parameters, programCacheKey );
- materialProperties.program = program;
- materialProperties.uniforms = parameters.uniforms;
- materialProperties.environment = material.isMeshStandardMaterial ? scene.environment : null;
- materialProperties.outputEncoding = _this.outputEncoding;
- material.program = program;
- }
- var programAttributes = program.getAttributes();
- if ( material.morphTargets ) {
- material.numSupportedMorphTargets = 0;
- for ( var i = 0; i < _this.maxMorphTargets; i ++ ) {
- if ( programAttributes[ 'morphTarget' + i ] >= 0 ) {
- material.numSupportedMorphTargets ++;
- }
- }
- }
- if ( material.morphNormals ) {
- material.numSupportedMorphNormals = 0;
- for ( var i = 0; i < _this.maxMorphNormals; i ++ ) {
- if ( programAttributes[ 'morphNormal' + i ] >= 0 ) {
- material.numSupportedMorphNormals ++;
- }
- }
- }
- var uniforms = materialProperties.uniforms;
- if ( ! material.isShaderMaterial &&
- ! material.isRawShaderMaterial ||
- material.clipping === true ) {
- materialProperties.numClippingPlanes = _clipping.numPlanes;
- materialProperties.numIntersection = _clipping.numIntersection;
- uniforms.clippingPlanes = _clipping.uniform;
- }
- materialProperties.fog = scene.fog;
- // store the light setup it was created for
- materialProperties.needsLights = materialNeedsLights( material );
- materialProperties.lightsStateVersion = lightsStateVersion;
- if ( materialProperties.needsLights ) {
- // wire up the material to this renderer's lighting state
- uniforms.ambientLightColor.value = lights.state.ambient;
- uniforms.lightProbe.value = lights.state.probe;
- uniforms.directionalLights.value = lights.state.directional;
- uniforms.spotLights.value = lights.state.spot;
- uniforms.rectAreaLights.value = lights.state.rectArea;
- uniforms.pointLights.value = lights.state.point;
- uniforms.hemisphereLights.value = lights.state.hemi;
- uniforms.directionalShadowMap.value = lights.state.directionalShadowMap;
- uniforms.directionalShadowMatrix.value = lights.state.directionalShadowMatrix;
- uniforms.spotShadowMap.value = lights.state.spotShadowMap;
- uniforms.spotShadowMatrix.value = lights.state.spotShadowMatrix;
- uniforms.pointShadowMap.value = lights.state.pointShadowMap;
- uniforms.pointShadowMatrix.value = lights.state.pointShadowMatrix;
- // TODO (abelnation): add area lights shadow info to uniforms
- }
- var progUniforms = materialProperties.program.getUniforms(),
- uniformsList =
- WebGLUniforms.seqWithValue( progUniforms.seq, uniforms );
- materialProperties.uniformsList = uniformsList;
- }
- function setProgram( camera, scene, material, object ) {
- textures.resetTextureUnits();
- var fog = scene.fog;
- var environment = material.isMeshStandardMaterial ? scene.environment : null;
- var materialProperties = properties.get( material );
- var lights = currentRenderState.state.lights;
- if ( _clippingEnabled ) {
- if ( _localClippingEnabled || camera !== _currentCamera ) {
- var useCache =
- camera === _currentCamera &&
- material.id === _currentMaterialId;
- // we might want to call this function with some ClippingGroup
- // object instead of the material, once it becomes feasible
- // (#8465, #8379)
- _clipping.setState(
- material.clippingPlanes, material.clipIntersection, material.clipShadows,
- camera, materialProperties, useCache );
- }
- }
- if ( material.version === materialProperties.__version ) {
- if ( materialProperties.program === undefined ) {
- initMaterial( material, scene, object );
- } else if ( material.fog && materialProperties.fog !== fog ) {
- initMaterial( material, scene, object );
- } else if ( materialProperties.environment !== environment ) {
- initMaterial( material, scene, object );
- } else if ( materialProperties.needsLights && ( materialProperties.lightsStateVersion !== lights.state.version ) ) {
- initMaterial( material, scene, object );
- } else if ( materialProperties.numClippingPlanes !== undefined &&
- ( materialProperties.numClippingPlanes !== _clipping.numPlanes ||
- materialProperties.numIntersection !== _clipping.numIntersection ) ) {
- initMaterial( material, scene, object );
- } else if ( materialProperties.outputEncoding !== _this.outputEncoding ) {
- initMaterial( material, scene, object );
- }
- } else {
- initMaterial( material, scene, object );
- materialProperties.__version = material.version;
- }
- var refreshProgram = false;
- var refreshMaterial = false;
- var refreshLights = false;
- var program = materialProperties.program,
- p_uniforms = program.getUniforms(),
- m_uniforms = materialProperties.uniforms;
- if ( state.useProgram( program.program ) ) {
- refreshProgram = true;
- refreshMaterial = true;
- refreshLights = true;
- }
- if ( material.id !== _currentMaterialId ) {
- _currentMaterialId = material.id;
- refreshMaterial = true;
- }
- if ( refreshProgram || _currentCamera !== camera ) {
- if ( program.numMultiviewViews > 0 ) {
- multiview.updateCameraProjectionMatricesUniform( camera, p_uniforms );
- } else {
- p_uniforms.setValue( _gl, 'projectionMatrix', camera.projectionMatrix );
- }
- if ( capabilities.logarithmicDepthBuffer ) {
- p_uniforms.setValue( _gl, 'logDepthBufFC',
- 2.0 / ( Math.log( camera.far + 1.0 ) / Math.LN2 ) );
- }
- if ( _currentCamera !== camera ) {
- _currentCamera = camera;
- // lighting uniforms depend on the camera so enforce an update
- // now, in case this material supports lights - or later, when
- // the next material that does gets activated:
- refreshMaterial = true; // set to true on material change
- refreshLights = true; // remains set until update done
- }
- // load material specific uniforms
- // (shader material also gets them for the sake of genericity)
- if ( material.isShaderMaterial ||
- material.isMeshPhongMaterial ||
- material.isMeshToonMaterial ||
- material.isMeshStandardMaterial ||
- material.envMap ) {
- var uCamPos = p_uniforms.map.cameraPosition;
- if ( uCamPos !== undefined ) {
- uCamPos.setValue( _gl,
- _vector3.setFromMatrixPosition( camera.matrixWorld ) );
- }
- }
- if ( material.isMeshPhongMaterial ||
- material.isMeshToonMaterial ||
- material.isMeshLambertMaterial ||
- material.isMeshBasicMaterial ||
- material.isMeshStandardMaterial ||
- material.isShaderMaterial ) {
- p_uniforms.setValue( _gl, 'isOrthographic', camera.isOrthographicCamera === true );
- }
- if ( material.isMeshPhongMaterial ||
- material.isMeshToonMaterial ||
- material.isMeshLambertMaterial ||
- material.isMeshBasicMaterial ||
- material.isMeshStandardMaterial ||
- material.isShaderMaterial ||
- material.skinning ) {
- if ( program.numMultiviewViews > 0 ) {
- multiview.updateCameraViewMatricesUniform( camera, p_uniforms );
- } else {
- p_uniforms.setValue( _gl, 'viewMatrix', camera.matrixWorldInverse );
- }
- }
- }
- // skinning uniforms must be set even if material didn't change
- // auto-setting of texture unit for bone texture must go before other textures
- // not sure why, but otherwise weird things happen
- if ( material.skinning ) {
- p_uniforms.setOptional( _gl, object, 'bindMatrix' );
- p_uniforms.setOptional( _gl, object, 'bindMatrixInverse' );
- var skeleton = object.skeleton;
- if ( skeleton ) {
- var bones = skeleton.bones;
- if ( capabilities.floatVertexTextures ) {
- if ( skeleton.boneTexture === undefined ) {
- // layout (1 matrix = 4 pixels)
- // RGBA RGBA RGBA RGBA (=> column1, column2, column3, column4)
- // with 8x8 pixel texture max 16 bones * 4 pixels = (8 * 8)
- // 16x16 pixel texture max 64 bones * 4 pixels = (16 * 16)
- // 32x32 pixel texture max 256 bones * 4 pixels = (32 * 32)
- // 64x64 pixel texture max 1024 bones * 4 pixels = (64 * 64)
- var size = Math.sqrt( bones.length * 4 ); // 4 pixels needed for 1 matrix
- size = MathUtils.ceilPowerOfTwo( size );
- size = Math.max( size, 4 );
- var boneMatrices = new Float32Array( size * size * 4 ); // 4 floats per RGBA pixel
- boneMatrices.set( skeleton.boneMatrices ); // copy current values
- var boneTexture = new DataTexture( boneMatrices, size, size, RGBAFormat, FloatType );
- skeleton.boneMatrices = boneMatrices;
- skeleton.boneTexture = boneTexture;
- skeleton.boneTextureSize = size;
- }
- p_uniforms.setValue( _gl, 'boneTexture', skeleton.boneTexture, textures );
- p_uniforms.setValue( _gl, 'boneTextureSize', skeleton.boneTextureSize );
- } else {
- p_uniforms.setOptional( _gl, skeleton, 'boneMatrices' );
- }
- }
- }
- if ( refreshMaterial || materialProperties.receiveShadow !== object.receiveShadow ) {
- materialProperties.receiveShadow = object.receiveShadow;
- p_uniforms.setValue( _gl, 'receiveShadow', object.receiveShadow );
- }
- if ( refreshMaterial ) {
- p_uniforms.setValue( _gl, 'toneMappingExposure', _this.toneMappingExposure );
- p_uniforms.setValue( _gl, 'toneMappingWhitePoint', _this.toneMappingWhitePoint );
- if ( materialProperties.needsLights ) {
- // the current material requires lighting info
- // note: all lighting uniforms are always set correctly
- // they simply reference the renderer's state for their
- // values
- //
- // use the current material's .needsUpdate flags to set
- // the GL state when required
- markUniformsLightsNeedsUpdate( m_uniforms, refreshLights );
- }
- // refresh uniforms common to several materials
- if ( fog && material.fog ) {
- refreshUniformsFog( m_uniforms, fog );
- }
- if ( material.isMeshBasicMaterial ) {
- refreshUniformsCommon( m_uniforms, material );
- } else if ( material.isMeshLambertMaterial ) {
- refreshUniformsCommon( m_uniforms, material );
- refreshUniformsLambert( m_uniforms, material );
- } else if ( material.isMeshToonMaterial ) {
- refreshUniformsCommon( m_uniforms, material );
- refreshUniformsToon( m_uniforms, material );
- } else if ( material.isMeshPhongMaterial ) {
- refreshUniformsCommon( m_uniforms, material );
- refreshUniformsPhong( m_uniforms, material );
- } else if ( material.isMeshStandardMaterial ) {
- refreshUniformsCommon( m_uniforms, material, environment );
- if ( material.isMeshPhysicalMaterial ) {
- refreshUniformsPhysical( m_uniforms, material, environment );
- } else {
- refreshUniformsStandard( m_uniforms, material, environment );
- }
- } else if ( material.isMeshMatcapMaterial ) {
- refreshUniformsCommon( m_uniforms, material );
- refreshUniformsMatcap( m_uniforms, material );
- } else if ( material.isMeshDepthMaterial ) {
- refreshUniformsCommon( m_uniforms, material );
- refreshUniformsDepth( m_uniforms, material );
- } else if ( material.isMeshDistanceMaterial ) {
- refreshUniformsCommon( m_uniforms, material );
- refreshUniformsDistance( m_uniforms, material );
- } else if ( material.isMeshNormalMaterial ) {
- refreshUniformsCommon( m_uniforms, material );
- refreshUniformsNormal( m_uniforms, material );
- } else if ( material.isLineBasicMaterial ) {
- refreshUniformsLine( m_uniforms, material );
- if ( material.isLineDashedMaterial ) {
- refreshUniformsDash( m_uniforms, material );
- }
- } else if ( material.isPointsMaterial ) {
- refreshUniformsPoints( m_uniforms, material );
- } else if ( material.isSpriteMaterial ) {
- refreshUniformsSprites( m_uniforms, material );
- } else if ( material.isShadowMaterial ) {
- m_uniforms.color.value.copy( material.color );
- m_uniforms.opacity.value = material.opacity;
- }
- // RectAreaLight Texture
- // TODO (mrdoob): Find a nicer implementation
- if ( m_uniforms.ltc_1 !== undefined ) m_uniforms.ltc_1.value = UniformsLib.LTC_1;
- if ( m_uniforms.ltc_2 !== undefined ) m_uniforms.ltc_2.value = UniformsLib.LTC_2;
- WebGLUniforms.upload( _gl, materialProperties.uniformsList, m_uniforms, textures );
- if ( material.isShaderMaterial ) {
- material.uniformsNeedUpdate = false; // #15581
- }
- }
- if ( material.isShaderMaterial && material.uniformsNeedUpdate === true ) {
- WebGLUniforms.upload( _gl, materialProperties.uniformsList, m_uniforms, textures );
- material.uniformsNeedUpdate = false;
- }
- if ( material.isSpriteMaterial ) {
- p_uniforms.setValue( _gl, 'center', object.center );
- }
- // common matrices
- if ( program.numMultiviewViews > 0 ) {
- multiview.updateObjectMatricesUniforms( object, camera, p_uniforms );
- } else {
- p_uniforms.setValue( _gl, 'modelViewMatrix', object.modelViewMatrix );
- p_uniforms.setValue( _gl, 'normalMatrix', object.normalMatrix );
- }
- p_uniforms.setValue( _gl, 'modelMatrix', object.matrixWorld );
- return program;
- }
- // Uniforms (refresh uniforms objects)
- function refreshUniformsCommon( uniforms, material, environment ) {
- uniforms.opacity.value = material.opacity;
- if ( material.color ) {
- uniforms.diffuse.value.copy( material.color );
- }
- if ( material.emissive ) {
- uniforms.emissive.value.copy( material.emissive ).multiplyScalar( material.emissiveIntensity );
- }
- if ( material.map ) {
- uniforms.map.value = material.map;
- }
- if ( material.alphaMap ) {
- uniforms.alphaMap.value = material.alphaMap;
- }
- if ( material.specularMap ) {
- uniforms.specularMap.value = material.specularMap;
- }
- var envMap = material.envMap || environment;
- if ( envMap ) {
- uniforms.envMap.value = envMap;
- uniforms.flipEnvMap.value = envMap.isCubeTexture ? - 1 : 1;
- uniforms.reflectivity.value = material.reflectivity;
- uniforms.refractionRatio.value = material.refractionRatio;
- uniforms.maxMipLevel.value = properties.get( envMap ).__maxMipLevel;
- }
- if ( material.lightMap ) {
- uniforms.lightMap.value = material.lightMap;
- uniforms.lightMapIntensity.value = material.lightMapIntensity;
- }
- if ( material.aoMap ) {
- uniforms.aoMap.value = material.aoMap;
- uniforms.aoMapIntensity.value = material.aoMapIntensity;
- }
- // uv repeat and offset setting priorities
- // 1. color map
- // 2. specular map
- // 3. normal map
- // 4. bump map
- // 5. alpha map
- // 6. emissive map
- var uvScaleMap;
- if ( material.map ) {
- uvScaleMap = material.map;
- } else if ( material.specularMap ) {
- uvScaleMap = material.specularMap;
- } else if ( material.displacementMap ) {
- uvScaleMap = material.displacementMap;
- } else if ( material.normalMap ) {
- uvScaleMap = material.normalMap;
- } else if ( material.bumpMap ) {
- uvScaleMap = material.bumpMap;
- } else if ( material.roughnessMap ) {
- uvScaleMap = material.roughnessMap;
- } else if ( material.metalnessMap ) {
- uvScaleMap = material.metalnessMap;
- } else if ( material.alphaMap ) {
- uvScaleMap = material.alphaMap;
- } else if ( material.emissiveMap ) {
- uvScaleMap = material.emissiveMap;
- }
- if ( uvScaleMap !== undefined ) {
- // backwards compatibility
- if ( uvScaleMap.isWebGLRenderTarget ) {
- uvScaleMap = uvScaleMap.texture;
- }
- if ( uvScaleMap.matrixAutoUpdate === true ) {
- uvScaleMap.updateMatrix();
- }
- uniforms.uvTransform.value.copy( uvScaleMap.matrix );
- }
- // uv repeat and offset setting priorities for uv2
- // 1. ao map
- // 2. light map
- var uv2ScaleMap;
- if ( material.aoMap ) {
- uv2ScaleMap = material.aoMap;
- } else if ( material.lightMap ) {
- uv2ScaleMap = material.lightMap;
- }
- if ( uv2ScaleMap !== undefined ) {
- // backwards compatibility
- if ( uv2ScaleMap.isWebGLRenderTarget ) {
- uv2ScaleMap = uv2ScaleMap.texture;
- }
- if ( uv2ScaleMap.matrixAutoUpdate === true ) {
- uv2ScaleMap.updateMatrix();
- }
- uniforms.uv2Transform.value.copy( uv2ScaleMap.matrix );
- }
- }
- function refreshUniformsLine( uniforms, material ) {
- uniforms.diffuse.value.copy( material.color );
- uniforms.opacity.value = material.opacity;
- }
- function refreshUniformsDash( uniforms, material ) {
- uniforms.dashSize.value = material.dashSize;
- uniforms.totalSize.value = material.dashSize + material.gapSize;
- uniforms.scale.value = material.scale;
- }
- function refreshUniformsPoints( uniforms, material ) {
- uniforms.diffuse.value.copy( material.color );
- uniforms.opacity.value = material.opacity;
- uniforms.size.value = material.size * _pixelRatio;
- uniforms.scale.value = _height * 0.5;
- if ( material.map ) {
- uniforms.map.value = material.map;
- }
- if ( material.alphaMap ) {
- uniforms.alphaMap.value = material.alphaMap;
- }
- // uv repeat and offset setting priorities
- // 1. color map
- // 2. alpha map
- var uvScaleMap;
- if ( material.map ) {
- uvScaleMap = material.map;
- } else if ( material.alphaMap ) {
- uvScaleMap = material.alphaMap;
- }
- if ( uvScaleMap !== undefined ) {
- if ( uvScaleMap.matrixAutoUpdate === true ) {
- uvScaleMap.updateMatrix();
- }
- uniforms.uvTransform.value.copy( uvScaleMap.matrix );
- }
- }
- function refreshUniformsSprites( uniforms, material ) {
- uniforms.diffuse.value.copy( material.color );
- uniforms.opacity.value = material.opacity;
- uniforms.rotation.value = material.rotation;
- if ( material.map ) {
- uniforms.map.value = material.map;
- }
- if ( material.alphaMap ) {
- uniforms.alphaMap.value = material.alphaMap;
- }
- // uv repeat and offset setting priorities
- // 1. color map
- // 2. alpha map
- var uvScaleMap;
- if ( material.map ) {
- uvScaleMap = material.map;
- } else if ( material.alphaMap ) {
- uvScaleMap = material.alphaMap;
- }
- if ( uvScaleMap !== undefined ) {
- if ( uvScaleMap.matrixAutoUpdate === true ) {
- uvScaleMap.updateMatrix();
- }
- uniforms.uvTransform.value.copy( uvScaleMap.matrix );
- }
- }
- function refreshUniformsFog( uniforms, fog ) {
- uniforms.fogColor.value.copy( fog.color );
- if ( fog.isFog ) {
- uniforms.fogNear.value = fog.near;
- uniforms.fogFar.value = fog.far;
- } else if ( fog.isFogExp2 ) {
- uniforms.fogDensity.value = fog.density;
- }
- }
- function refreshUniformsLambert( uniforms, material ) {
- if ( material.emissiveMap ) {
- uniforms.emissiveMap.value = material.emissiveMap;
- }
- }
- function refreshUniformsPhong( uniforms, material ) {
- uniforms.specular.value.copy( material.specular );
- uniforms.shininess.value = Math.max( material.shininess, 1e-4 ); // to prevent pow( 0.0, 0.0 )
- if ( material.emissiveMap ) {
- uniforms.emissiveMap.value = material.emissiveMap;
- }
- if ( material.bumpMap ) {
- uniforms.bumpMap.value = material.bumpMap;
- uniforms.bumpScale.value = material.bumpScale;
- if ( material.side === BackSide ) uniforms.bumpScale.value *= - 1;
- }
- if ( material.normalMap ) {
- uniforms.normalMap.value = material.normalMap;
- uniforms.normalScale.value.copy( material.normalScale );
- if ( material.side === BackSide ) uniforms.normalScale.value.negate();
- }
- if ( material.displacementMap ) {
- uniforms.displacementMap.value = material.displacementMap;
- uniforms.displacementScale.value = material.displacementScale;
- uniforms.displacementBias.value = material.displacementBias;
- }
- }
- function refreshUniformsToon( uniforms, material ) {
- uniforms.specular.value.copy( material.specular );
- uniforms.shininess.value = Math.max( material.shininess, 1e-4 ); // to prevent pow( 0.0, 0.0 )
- if ( material.gradientMap ) {
- uniforms.gradientMap.value = material.gradientMap;
- }
- if ( material.emissiveMap ) {
- uniforms.emissiveMap.value = material.emissiveMap;
- }
- if ( material.bumpMap ) {
- uniforms.bumpMap.value = material.bumpMap;
- uniforms.bumpScale.value = material.bumpScale;
- if ( material.side === BackSide ) uniforms.bumpScale.value *= - 1;
- }
- if ( material.normalMap ) {
- uniforms.normalMap.value = material.normalMap;
- uniforms.normalScale.value.copy( material.normalScale );
- if ( material.side === BackSide ) uniforms.normalScale.value.negate();
- }
- if ( material.displacementMap ) {
- uniforms.displacementMap.value = material.displacementMap;
- uniforms.displacementScale.value = material.displacementScale;
- uniforms.displacementBias.value = material.displacementBias;
- }
- }
- function refreshUniformsStandard( uniforms, material, environment ) {
- uniforms.roughness.value = material.roughness;
- uniforms.metalness.value = material.metalness;
- if ( material.roughnessMap ) {
- uniforms.roughnessMap.value = material.roughnessMap;
- }
- if ( material.metalnessMap ) {
- uniforms.metalnessMap.value = material.metalnessMap;
- }
- if ( material.emissiveMap ) {
- uniforms.emissiveMap.value = material.emissiveMap;
- }
- if ( material.bumpMap ) {
- uniforms.bumpMap.value = material.bumpMap;
- uniforms.bumpScale.value = material.bumpScale;
- if ( material.side === BackSide ) uniforms.bumpScale.value *= - 1;
- }
- if ( material.normalMap ) {
- uniforms.normalMap.value = material.normalMap;
- uniforms.normalScale.value.copy( material.normalScale );
- if ( material.side === BackSide ) uniforms.normalScale.value.negate();
- }
- if ( material.displacementMap ) {
- uniforms.displacementMap.value = material.displacementMap;
- uniforms.displacementScale.value = material.displacementScale;
- uniforms.displacementBias.value = material.displacementBias;
- }
- if ( material.envMap || environment ) {
- //uniforms.envMap.value = material.envMap; // part of uniforms common
- uniforms.envMapIntensity.value = material.envMapIntensity;
- }
- }
- function refreshUniformsPhysical( uniforms, material, environment ) {
- refreshUniformsStandard( uniforms, material, environment );
- uniforms.reflectivity.value = material.reflectivity; // also part of uniforms common
- uniforms.clearcoat.value = material.clearcoat;
- uniforms.clearcoatRoughness.value = material.clearcoatRoughness;
- if ( material.sheen ) uniforms.sheen.value.copy( material.sheen );
- if ( material.clearcoatNormalMap ) {
- uniforms.clearcoatNormalScale.value.copy( material.clearcoatNormalScale );
- uniforms.clearcoatNormalMap.value = material.clearcoatNormalMap;
- if ( material.side === BackSide ) {
- uniforms.clearcoatNormalScale.value.negate();
- }
- }
- uniforms.transparency.value = material.transparency;
- }
- function refreshUniformsMatcap( uniforms, material ) {
- if ( material.matcap ) {
- uniforms.matcap.value = material.matcap;
- }
- if ( material.bumpMap ) {
- uniforms.bumpMap.value = material.bumpMap;
- uniforms.bumpScale.value = material.bumpScale;
- if ( material.side === BackSide ) uniforms.bumpScale.value *= - 1;
- }
- if ( material.normalMap ) {
- uniforms.normalMap.value = material.normalMap;
- uniforms.normalScale.value.copy( material.normalScale );
- if ( material.side === BackSide ) uniforms.normalScale.value.negate();
- }
- if ( material.displacementMap ) {
- uniforms.displacementMap.value = material.displacementMap;
- uniforms.displacementScale.value = material.displacementScale;
- uniforms.displacementBias.value = material.displacementBias;
- }
- }
- function refreshUniformsDepth( uniforms, material ) {
- if ( material.displacementMap ) {
- uniforms.displacementMap.value = material.displacementMap;
- uniforms.displacementScale.value = material.displacementScale;
- uniforms.displacementBias.value = material.displacementBias;
- }
- }
- function refreshUniformsDistance( uniforms, material ) {
- if ( material.displacementMap ) {
- uniforms.displacementMap.value = material.displacementMap;
- uniforms.displacementScale.value = material.displacementScale;
- uniforms.displacementBias.value = material.displacementBias;
- }
- uniforms.referencePosition.value.copy( material.referencePosition );
- uniforms.nearDistance.value = material.nearDistance;
- uniforms.farDistance.value = material.farDistance;
- }
- function refreshUniformsNormal( uniforms, material ) {
- if ( material.bumpMap ) {
- uniforms.bumpMap.value = material.bumpMap;
- uniforms.bumpScale.value = material.bumpScale;
- if ( material.side === BackSide ) uniforms.bumpScale.value *= - 1;
- }
- if ( material.normalMap ) {
- uniforms.normalMap.value = material.normalMap;
- uniforms.normalScale.value.copy( material.normalScale );
- if ( material.side === BackSide ) uniforms.normalScale.value.negate();
- }
- if ( material.displacementMap ) {
- uniforms.displacementMap.value = material.displacementMap;
- uniforms.displacementScale.value = material.displacementScale;
- uniforms.displacementBias.value = material.displacementBias;
- }
- }
- // If uniforms are marked as clean, they don't need to be loaded to the GPU.
- function markUniformsLightsNeedsUpdate( uniforms, value ) {
- uniforms.ambientLightColor.needsUpdate = value;
- uniforms.lightProbe.needsUpdate = value;
- uniforms.directionalLights.needsUpdate = value;
- uniforms.pointLights.needsUpdate = value;
- uniforms.spotLights.needsUpdate = value;
- uniforms.rectAreaLights.needsUpdate = value;
- uniforms.hemisphereLights.needsUpdate = value;
- }
- function materialNeedsLights( material ) {
- return material.isMeshLambertMaterial || material.isMeshToonMaterial || material.isMeshPhongMaterial ||
- material.isMeshStandardMaterial || material.isShadowMaterial ||
- ( material.isShaderMaterial && material.lights === true );
- }
- //
- this.setFramebuffer = function ( value ) {
- if ( _framebuffer !== value && _currentRenderTarget === null ) _gl.bindFramebuffer( _gl.FRAMEBUFFER, value );
- _framebuffer = value;
- };
- this.getActiveCubeFace = function () {
- return _currentActiveCubeFace;
- };
- this.getActiveMipmapLevel = function () {
- return _currentActiveMipmapLevel;
- };
- this.getRenderTarget = function () {
- return _currentRenderTarget;
- };
- this.setRenderTarget = function ( renderTarget, activeCubeFace, activeMipmapLevel ) {
- _currentRenderTarget = renderTarget;
- _currentActiveCubeFace = activeCubeFace;
- _currentActiveMipmapLevel = activeMipmapLevel;
- if ( renderTarget && properties.get( renderTarget ).__webglFramebuffer === undefined ) {
- textures.setupRenderTarget( renderTarget );
- }
- var framebuffer = _framebuffer;
- var isCube = false;
- if ( renderTarget ) {
- var __webglFramebuffer = properties.get( renderTarget ).__webglFramebuffer;
- if ( renderTarget.isWebGLCubeRenderTarget ) {
- framebuffer = __webglFramebuffer[ activeCubeFace || 0 ];
- isCube = true;
- } else if ( renderTarget.isWebGLMultisampleRenderTarget ) {
- framebuffer = properties.get( renderTarget ).__webglMultisampledFramebuffer;
- } else {
- framebuffer = __webglFramebuffer;
- }
- _currentViewport.copy( renderTarget.viewport );
- _currentScissor.copy( renderTarget.scissor );
- _currentScissorTest = renderTarget.scissorTest;
- } else {
- _currentViewport.copy( _viewport ).multiplyScalar( _pixelRatio ).floor();
- _currentScissor.copy( _scissor ).multiplyScalar( _pixelRatio ).floor();
- _currentScissorTest = _scissorTest;
- }
- if ( _currentFramebuffer !== framebuffer ) {
- _gl.bindFramebuffer( _gl.FRAMEBUFFER, framebuffer );
- _currentFramebuffer = framebuffer;
- }
- state.viewport( _currentViewport );
- state.scissor( _currentScissor );
- state.setScissorTest( _currentScissorTest );
- if ( isCube ) {
- var textureProperties = properties.get( renderTarget.texture );
- _gl.framebufferTexture2D( _gl.FRAMEBUFFER, _gl.COLOR_ATTACHMENT0, _gl.TEXTURE_CUBE_MAP_POSITIVE_X + ( activeCubeFace || 0 ), textureProperties.__webglTexture, activeMipmapLevel || 0 );
- }
- };
- this.readRenderTargetPixels = function ( renderTarget, x, y, width, height, buffer, activeCubeFaceIndex ) {
- if ( ! ( renderTarget && renderTarget.isWebGLRenderTarget ) ) {
- console.error( 'THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not THREE.WebGLRenderTarget.' );
- return;
- }
- var framebuffer = properties.get( renderTarget ).__webglFramebuffer;
- if ( renderTarget.isWebGLCubeRenderTarget && activeCubeFaceIndex !== undefined ) {
- framebuffer = framebuffer[ activeCubeFaceIndex ];
- }
- if ( framebuffer ) {
- var restore = false;
- if ( framebuffer !== _currentFramebuffer ) {
- _gl.bindFramebuffer( _gl.FRAMEBUFFER, framebuffer );
- restore = true;
- }
- try {
- var texture = renderTarget.texture;
- var textureFormat = texture.format;
- var textureType = texture.type;
- if ( textureFormat !== RGBAFormat && utils.convert( textureFormat ) !== _gl.getParameter( _gl.IMPLEMENTATION_COLOR_READ_FORMAT ) ) {
- console.error( 'THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not in RGBA or implementation defined format.' );
- return;
- }
- if ( textureType !== UnsignedByteType && utils.convert( textureType ) !== _gl.getParameter( _gl.IMPLEMENTATION_COLOR_READ_TYPE ) && // IE11, Edge and Chrome Mac < 52 (#9513)
- ! ( textureType === FloatType && ( capabilities.isWebGL2 || extensions.get( 'OES_texture_float' ) || extensions.get( 'WEBGL_color_buffer_float' ) ) ) && // Chrome Mac >= 52 and Firefox
- ! ( textureType === HalfFloatType && ( capabilities.isWebGL2 ? extensions.get( 'EXT_color_buffer_float' ) : extensions.get( 'EXT_color_buffer_half_float' ) ) ) ) {
- console.error( 'THREE.WebGLRenderer.readRenderTargetPixels: renderTarget is not in UnsignedByteType or implementation defined type.' );
- return;
- }
- if ( _gl.checkFramebufferStatus( _gl.FRAMEBUFFER ) === _gl.FRAMEBUFFER_COMPLETE ) {
- // the following if statement ensures valid read requests (no out-of-bounds pixels, see #8604)
- if ( ( x >= 0 && x <= ( renderTarget.width - width ) ) && ( y >= 0 && y <= ( renderTarget.height - height ) ) ) {
- _gl.readPixels( x, y, width, height, utils.convert( textureFormat ), utils.convert( textureType ), buffer );
- }
- } else {
- console.error( 'THREE.WebGLRenderer.readRenderTargetPixels: readPixels from renderTarget failed. Framebuffer not complete.' );
- }
- } finally {
- if ( restore ) {
- _gl.bindFramebuffer( _gl.FRAMEBUFFER, _currentFramebuffer );
- }
- }
- }
- };
- this.copyFramebufferToTexture = function ( position, texture, level ) {
- if ( level === undefined ) level = 0;
- var levelScale = Math.pow( 2, - level );
- var width = Math.floor( texture.image.width * levelScale );
- var height = Math.floor( texture.image.height * levelScale );
- var glFormat = utils.convert( texture.format );
- textures.setTexture2D( texture, 0 );
- _gl.copyTexImage2D( _gl.TEXTURE_2D, level, glFormat, position.x, position.y, width, height, 0 );
- state.unbindTexture();
- };
- this.copyTextureToTexture = function ( position, srcTexture, dstTexture, level ) {
- level = level || 0;
- var width = srcTexture.image.width;
- var height = srcTexture.image.height;
- var glFormat = utils.convert( dstTexture.format );
- var glType = utils.convert( dstTexture.type );
- textures.setTexture2D( dstTexture, 0 );
- if ( srcTexture.isDataTexture ) {
- _gl.texSubImage2D( _gl.TEXTURE_2D, level, position.x, position.y, width, height, glFormat, glType, srcTexture.image.data );
- } else {
- _gl.texSubImage2D( _gl.TEXTURE_2D, level, position.x, position.y, glFormat, glType, srcTexture.image );
- }
- if ( level == 0 && dstTexture.generateMipmaps ) _gl.generateMipmap( _gl.TEXTURE_2D );
- state.unbindTexture();
- };
- this.initTexture = function ( texture ) {
- textures.setTexture2D( texture, 0 );
- state.unbindTexture();
- };
- if ( typeof __THREE_DEVTOOLS__ !== 'undefined' ) {
- __THREE_DEVTOOLS__.dispatchEvent( new CustomEvent( 'observe', { detail: this } ) ); // eslint-disable-line no-undef
- }
- }
- export { WebGLRenderer };
|