From d70adae523c1b3c67defbe9fdf3a69c153cbd454 Mon Sep 17 00:00:00 2001 From: Michael Herzog Date: Mon, 1 Dec 2025 09:57:45 +0100 Subject: [PATCH 1/6] Update PointLightHelper.js --- src/helpers/PointLightHelper.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/PointLightHelper.js b/src/helpers/PointLightHelper.js index 1c7004db73bba8..fbb10435c124f9 100644 --- a/src/helpers/PointLightHelper.js +++ b/src/helpers/PointLightHelper.js @@ -38,7 +38,7 @@ class PointLightHelper extends Mesh { /** * The light being visualized. * - * @type {HemisphereLight} + * @type {PointLight} */ this.light = light; From 9e94632cb90fc22f0b32f1461d625439b9db47e8 Mon Sep 17 00:00:00 2001 From: Michael Herzog Date: Mon, 1 Dec 2025 09:58:39 +0100 Subject: [PATCH 2/6] Update ReferenceNode.js Fix typo. --- src/nodes/accessors/ReferenceNode.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nodes/accessors/ReferenceNode.js b/src/nodes/accessors/ReferenceNode.js index 87d64d43c27a53..5607c64e0336ca 100644 --- a/src/nodes/accessors/ReferenceNode.js +++ b/src/nodes/accessors/ReferenceNode.js @@ -9,7 +9,7 @@ import { uniformArray } from './UniformArrayNode.js'; import ArrayElementNode from '../utils/ArrayElementNode.js'; import { warn } from '../../utils.js'; -// TODO: Avoid duplicated code and ues only ReferenceBaseNode or ReferenceNode +// TODO: Avoid duplicated code and use only ReferenceBaseNode or ReferenceNode /** * This class is only relevant if the referenced property is array-like. From 72f91e3cf64eee7f392c8b15bddbc36bc56247d5 Mon Sep 17 00:00:00 2001 From: Michael Herzog Date: Mon, 1 Dec 2025 09:59:15 +0100 Subject: [PATCH 3/6] Update ReferenceBaseNode.js Fix typo. --- src/nodes/accessors/ReferenceBaseNode.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nodes/accessors/ReferenceBaseNode.js b/src/nodes/accessors/ReferenceBaseNode.js index 9fcfebba9a340c..33b5efb64ed607 100644 --- a/src/nodes/accessors/ReferenceBaseNode.js +++ b/src/nodes/accessors/ReferenceBaseNode.js @@ -4,7 +4,7 @@ import { uniform } from '../core/UniformNode.js'; import { nodeObject } from '../tsl/TSLCore.js'; import ArrayElementNode from '../utils/ArrayElementNode.js'; -// TODO: Avoid duplicated code and ues only ReferenceBaseNode or ReferenceNode +// TODO: Avoid duplicated code and use only ReferenceBaseNode or ReferenceNode /** * This class is only relevant if the referenced property is array-like. From 35eb0c7e7fe6819618c97d9295c246336f4f4482 Mon Sep 17 00:00:00 2001 From: Christian Helgeson <62450112+cmhhelgeson@users.noreply.github.com> Date: Mon, 1 Dec 2025 02:38:51 -0800 Subject: [PATCH 4/6] WebGPUBindingUtils: Improve Bind Group Layout cache system. (#32249) Co-authored-by: chelgeson1click --- src/renderers/common/Backend.js | 8 + src/renderers/common/Bindings.js | 2 + src/renderers/webgpu/WebGPUBackend.js | 16 +- .../webgpu/utils/WebGPUBindingUtils.js | 475 +++++++++++------- .../webgpu/utils/WebGPUPipelineUtils.js | 6 +- 5 files changed, 320 insertions(+), 187 deletions(-) diff --git a/src/renderers/common/Backend.js b/src/renderers/common/Backend.js index ff616efe8e7fc3..2ba911e6e78ba4 100644 --- a/src/renderers/common/Backend.js +++ b/src/renderers/common/Backend.js @@ -725,6 +725,14 @@ class Backend { } + /** + * Delete GPU data associated with a bind group. + * + * @abstract + * @param {BindGroup} bindGroup - The bind group. + */ + deleteBindGroupData( /*bindGroup*/ ) { } + /** * Deletes an object from the internal data structure. * diff --git a/src/renderers/common/Bindings.js b/src/renderers/common/Bindings.js index 89339b20f078f5..f7675a18046e38 100644 --- a/src/renderers/common/Bindings.js +++ b/src/renderers/common/Bindings.js @@ -164,6 +164,7 @@ class Bindings extends DataMap { for ( const bindGroup of bindings ) { + this.backend.deleteBindGroupData( bindGroup ); this.delete( bindGroup ); } @@ -181,6 +182,7 @@ class Bindings extends DataMap { for ( const bindGroup of bindings ) { + this.backend.deleteBindGroupData( bindGroup ); this.delete( bindGroup ); } diff --git a/src/renderers/webgpu/WebGPUBackend.js b/src/renderers/webgpu/WebGPUBackend.js index 07ff008e9a127e..28a25798205d0d 100644 --- a/src/renderers/webgpu/WebGPUBackend.js +++ b/src/renderers/webgpu/WebGPUBackend.js @@ -1665,7 +1665,9 @@ class WebGPUBackend extends Backend { data[ 0 ] = i; - const bindGroupIndex = this.bindingUtils.createBindGroupIndex( data, bindingsData.layout ); + const { layoutGPU } = bindingsData.layout; + + const bindGroupIndex = this.bindingUtils.createBindGroupIndex( data, layoutGPU ); indexesGPU.push( bindGroupIndex ); @@ -2132,6 +2134,17 @@ class WebGPUBackend extends Backend { } + /** + * Delete data associated with the current bind group. + * + * @param {BindGroup} bindGroup - The bind group. + */ + deleteBindGroupData( bindGroup ) { + + this.bindingUtils.deleteBindGroupData( bindGroup ); + + } + /** * Updates the given bind group definition. * @@ -2487,6 +2500,7 @@ class WebGPUBackend extends Backend { dispose() { this.textureUtils.dispose(); + this.bindingUtils.dispose(); } diff --git a/src/renderers/webgpu/utils/WebGPUBindingUtils.js b/src/renderers/webgpu/utils/WebGPUBindingUtils.js index cfe8db92f7f2bf..8a72f09df009e2 100644 --- a/src/renderers/webgpu/utils/WebGPUBindingUtils.js +++ b/src/renderers/webgpu/utils/WebGPUBindingUtils.js @@ -7,6 +7,37 @@ import { FloatType, IntType, UnsignedIntType } from '../../../constants.js'; import { NodeAccess } from '../../../nodes/core/constants.js'; import { isTypedArray, error } from '../../../utils.js'; +/** +* Class representing a WebGPU bind group layout. +* +*/ +class BindGroupLayout { + + /** + * Constructs a new BindGroupLayout. + * + * @param {GPUBindGroupLayout} layoutGPU - A GPU Bind Group Layout. + */ + constructor( layoutGPU ) { + + /** + * The current GPUBindGroupLayout + * + * @type {GPUBindGroupLayout} + */ + this.layoutGPU = layoutGPU; + + /** + * The number of bind groups that use the current GPUBindGroupLayout + * + * @type {number} + */ + this.usedTimes = 0; + + } + +} + /** * A WebGPU backend utility module for managing bindings. * @@ -34,11 +65,11 @@ class WebGPUBindingUtils { this.backend = backend; /** - * A cache for managing bind group layouts. + * A cache that maps combinations of layout entries to existing bind group layouts. * - * @type {WeakMap,GPUBindGroupLayout>} + * @type {Map} */ - this.bindGroupLayoutCache = new WeakMap(); + this.bindGroupLayoutCache = new Map(); } @@ -53,185 +84,33 @@ class WebGPUBindingUtils { const backend = this.backend; const device = backend.device; - const entries = []; - - let index = 0; - - for ( const binding of bindGroup.bindings ) { - - const bindingGPU = { - binding: index ++, - visibility: binding.visibility - }; - - if ( binding.isUniformBuffer || binding.isStorageBuffer ) { - - const buffer = {}; // GPUBufferBindingLayout - - if ( binding.isStorageBuffer ) { - - if ( binding.visibility & GPUShaderStage.COMPUTE ) { - - // compute - - if ( binding.access === NodeAccess.READ_WRITE || binding.access === NodeAccess.WRITE_ONLY ) { - - buffer.type = GPUBufferBindingType.Storage; - - } else { - - buffer.type = GPUBufferBindingType.ReadOnlyStorage; - - } - - } else { - - buffer.type = GPUBufferBindingType.ReadOnlyStorage; - - } - - } - - bindingGPU.buffer = buffer; - - } else if ( binding.isSampledTexture && binding.store ) { - - const storageTexture = {}; // GPUStorageTextureBindingLayout - storageTexture.format = this.backend.get( binding.texture ).texture.format; - - const access = binding.access; - - if ( access === NodeAccess.READ_WRITE ) { - - storageTexture.access = GPUStorageTextureAccess.ReadWrite; - - } else if ( access === NodeAccess.WRITE_ONLY ) { - - storageTexture.access = GPUStorageTextureAccess.WriteOnly; - - } else { - - storageTexture.access = GPUStorageTextureAccess.ReadOnly; - - } - - if ( binding.texture.isArrayTexture ) { - - storageTexture.viewDimension = GPUTextureViewDimension.TwoDArray; - - } else if ( binding.texture.is3DTexture ) { - - storageTexture.viewDimension = GPUTextureViewDimension.ThreeD; - - } - - bindingGPU.storageTexture = storageTexture; - - } else if ( binding.isSampledTexture ) { - - const texture = {}; // GPUTextureBindingLayout - - const { primarySamples } = backend.utils.getTextureSampleData( binding.texture ); - - if ( primarySamples > 1 ) { - - texture.multisampled = true; - - if ( ! binding.texture.isDepthTexture ) { - - texture.sampleType = GPUTextureSampleType.UnfilterableFloat; - - } - - } - - if ( binding.texture.isDepthTexture ) { - - if ( backend.compatibilityMode && binding.texture.compareFunction === null ) { - - texture.sampleType = GPUTextureSampleType.UnfilterableFloat; - - } else { - - texture.sampleType = GPUTextureSampleType.Depth; - - } - - } else if ( binding.texture.isDataTexture || binding.texture.isDataArrayTexture || binding.texture.isData3DTexture ) { - - const type = binding.texture.type; - - if ( type === IntType ) { - - texture.sampleType = GPUTextureSampleType.SInt; - - } else if ( type === UnsignedIntType ) { - - texture.sampleType = GPUTextureSampleType.UInt; - - } else if ( type === FloatType ) { - - if ( this.backend.hasFeature( 'float32-filterable' ) ) { - - texture.sampleType = GPUTextureSampleType.Float; - - } else { - - texture.sampleType = GPUTextureSampleType.UnfilterableFloat; - - } - - } - - } - - if ( binding.isSampledCubeTexture ) { - - texture.viewDimension = GPUTextureViewDimension.Cube; - - } else if ( binding.texture.isArrayTexture || binding.texture.isDataArrayTexture || binding.texture.isCompressedArrayTexture ) { - - texture.viewDimension = GPUTextureViewDimension.TwoDArray; - - } else if ( binding.isSampledTexture3D ) { - - texture.viewDimension = GPUTextureViewDimension.ThreeD; - - } - - bindingGPU.texture = texture; - - } else if ( binding.isSampler ) { + const bindingsData = backend.get( bindGroup ); - const sampler = {}; // GPUSamplerBindingLayout + // When current bind group has already been assigned a layout + if ( bindingsData.bindGroupLayout !== undefined ) { - if ( binding.texture.isDepthTexture ) { + return bindingsData.bindGroupLayout.layoutGPU; - if ( binding.texture.compareFunction !== null ) { + } - sampler.type = GPUSamplerBindingType.Comparison; + const entries = this._createBindingsLayoutEntries( bindGroup ); - } else if ( backend.compatibilityMode ) { + const bindGroupLayoutKey = JSON.stringify( entries ); - sampler.type = GPUSamplerBindingType.NonFiltering; + let bindGroupLayout = this.bindGroupLayoutCache.get( bindGroupLayoutKey ); - } - - } + if ( bindGroupLayout === undefined ) { - bindingGPU.sampler = sampler; - - } else { - - error( `WebGPUBindingUtils: Unsupported binding "${ binding }".` ); - - } - - entries.push( bindingGPU ); + bindGroupLayout = new BindGroupLayout( device.createBindGroupLayout( { entries } ) ); + this.bindGroupLayoutCache.set( bindGroupLayoutKey, bindGroupLayout ); } - return device.createBindGroupLayout( { entries } ); + bindingsData.layout = bindGroupLayout; + bindingsData.layout.usedTimes ++; + bindingsData.layoutKey = bindGroupLayoutKey; + + return bindGroupLayout.layoutGPU; } @@ -245,19 +124,12 @@ class WebGPUBindingUtils { */ createBindings( bindGroup, bindings, cacheIndex, version = 0 ) { - const { backend, bindGroupLayoutCache } = this; + const { backend } = this; const bindingsData = backend.get( bindGroup ); // setup (static) binding layout and (dynamic) binding group - let bindLayoutGPU = bindGroupLayoutCache.get( bindGroup.bindingsReference ); - - if ( bindLayoutGPU === undefined ) { - - bindLayoutGPU = this.createBindingsLayout( bindGroup ); - bindGroupLayoutCache.set( bindGroup.bindingsReference, bindLayoutGPU ); - - } + const bindLayoutGPU = this.createBindingsLayout( bindGroup ); let bindGroupGPU; @@ -292,7 +164,6 @@ class WebGPUBindingUtils { } bindingsData.group = bindGroupGPU; - bindingsData.layout = bindLayoutGPU; } @@ -354,10 +225,10 @@ class WebGPUBindingUtils { * Creates a GPU bind group for the camera index. * * @param {Uint32Array} data - The index data. - * @param {GPUBindGroupLayout} layout - The GPU bind group layout. + * @param {GPUBindGroupLayout} layoutGPU - The GPU bind group layout. * @return {GPUBindGroup} The GPU bind group. */ - createBindGroupIndex( data, layout ) { + createBindGroupIndex( data, layoutGPU ) { const backend = this.backend; const device = backend.device; @@ -377,7 +248,7 @@ class WebGPUBindingUtils { return device.createBindGroup( { label: 'bindGroupCameraIndex_' + index, - layout, + layout: layoutGPU, entries } ); @@ -538,6 +409,242 @@ class WebGPUBindingUtils { } + /** + * Creates a bind group layout entry for the given binding. + * + * @param {Binding} binding - The binding. + * @param {number} index - The index of the bind group layout entry in the bind group layout. + * @return {GPUBindGroupLayoutEntry} The bind group layout entry. + */ + _createBindingLayoutEntry( binding, index ) { + + const backend = this.backend; + + const bindingGPU = { + binding: index, + visibility: binding.visibility + }; + + if ( binding.isUniformBuffer || binding.isStorageBuffer ) { + + const buffer = {}; // GPUBufferBindingLayout + + if ( binding.isStorageBuffer ) { + + if ( binding.visibility & GPUShaderStage.COMPUTE ) { + + // compute + + if ( binding.access === NodeAccess.READ_WRITE || binding.access === NodeAccess.WRITE_ONLY ) { + + buffer.type = GPUBufferBindingType.Storage; + + } else { + + buffer.type = GPUBufferBindingType.ReadOnlyStorage; + + } + + } else { + + buffer.type = GPUBufferBindingType.ReadOnlyStorage; + + } + + } + + bindingGPU.buffer = buffer; + + } else if ( binding.isSampledTexture && binding.store ) { + + const storageTexture = {}; // GPUStorageTextureBindingLayout + storageTexture.format = this.backend.get( binding.texture ).texture.format; + + const access = binding.access; + + if ( access === NodeAccess.READ_WRITE ) { + + storageTexture.access = GPUStorageTextureAccess.ReadWrite; + + } else if ( access === NodeAccess.WRITE_ONLY ) { + + storageTexture.access = GPUStorageTextureAccess.WriteOnly; + + } else { + + storageTexture.access = GPUStorageTextureAccess.ReadOnly; + + } + + if ( binding.texture.isArrayTexture ) { + + storageTexture.viewDimension = GPUTextureViewDimension.TwoDArray; + + } else if ( binding.texture.is3DTexture ) { + + storageTexture.viewDimension = GPUTextureViewDimension.ThreeD; + + } + + bindingGPU.storageTexture = storageTexture; + + } else if ( binding.isSampledTexture ) { + + const texture = {}; // GPUTextureBindingLayout + + const { primarySamples } = backend.utils.getTextureSampleData( binding.texture ); + + if ( primarySamples > 1 ) { + + texture.multisampled = true; + + if ( ! binding.texture.isDepthTexture ) { + + texture.sampleType = GPUTextureSampleType.UnfilterableFloat; + + } + + } + + if ( binding.texture.isDepthTexture ) { + + if ( backend.compatibilityMode && binding.texture.compareFunction === null ) { + + texture.sampleType = GPUTextureSampleType.UnfilterableFloat; + + } else { + + texture.sampleType = GPUTextureSampleType.Depth; + + } + + } else if ( binding.texture.isDataTexture || binding.texture.isDataArrayTexture || binding.texture.isData3DTexture ) { + + const type = binding.texture.type; + + if ( type === IntType ) { + + texture.sampleType = GPUTextureSampleType.SInt; + + } else if ( type === UnsignedIntType ) { + + texture.sampleType = GPUTextureSampleType.UInt; + + } else if ( type === FloatType ) { + + if ( this.backend.hasFeature( 'float32-filterable' ) ) { + + texture.sampleType = GPUTextureSampleType.Float; + + } else { + + texture.sampleType = GPUTextureSampleType.UnfilterableFloat; + + } + + } + + } + + if ( binding.isSampledCubeTexture ) { + + texture.viewDimension = GPUTextureViewDimension.Cube; + + } else if ( binding.texture.isArrayTexture || binding.texture.isDataArrayTexture || binding.texture.isCompressedArrayTexture ) { + + texture.viewDimension = GPUTextureViewDimension.TwoDArray; + + } else if ( binding.isSampledTexture3D ) { + + texture.viewDimension = GPUTextureViewDimension.ThreeD; + + } + + bindingGPU.texture = texture; + + } else if ( binding.isSampler ) { + + const sampler = {}; // GPUSamplerBindingLayout + + if ( binding.texture.isDepthTexture ) { + + if ( binding.texture.compareFunction !== null ) { + + sampler.type = GPUSamplerBindingType.Comparison; + + } else if ( backend.compatibilityMode ) { + + sampler.type = GPUSamplerBindingType.NonFiltering; + + } + + } + + bindingGPU.sampler = sampler; + + } else { + + error( `WebGPUBindingUtils: Unsupported binding "${ binding }".` ); + + } + + return bindingGPU; + + } + + /** + * Creates a GPU bind group layout entries for the given bind group. + * + * @param {BindGroup} bindGroup - The bind group. + * @return {Array} The GPU bind group layout entries. + */ + _createBindingsLayoutEntries( bindGroup ) { + + const entries = []; + let index = 0; + + for ( const binding of bindGroup.bindings ) { + + entries.push( this._createBindingLayoutEntry( binding, index ) ); + index ++; + + } + + return entries; + + } + + /** + * Delete the data associated with a bind group. + * + * @param {BindGroup} bindGroup - The bind group. + */ + deleteBindGroupData( bindGroup ) { + + const { backend } = this; + + const bindingsData = backend.get( bindGroup ); + + // Decrement the layout reference's usedTimes attribute + bindingsData.layout.usedTimes --; + + // Remove reference from map + if ( bindingsData.layout.usedTimes === 0 ) { + + this.bindGroupLayoutCache.delete( bindingsData.layoutKey ); + + } + + bindingsData.layout = null; + + } + + dispose() { + + this.bindGroupLayoutCache.clear(); + + } + } export default WebGPUBindingUtils; diff --git a/src/renderers/webgpu/utils/WebGPUPipelineUtils.js b/src/renderers/webgpu/utils/WebGPUPipelineUtils.js index 330d48cfb15545..5b1a2e4c4da2ad 100644 --- a/src/renderers/webgpu/utils/WebGPUPipelineUtils.js +++ b/src/renderers/webgpu/utils/WebGPUPipelineUtils.js @@ -106,8 +106,9 @@ class WebGPUPipelineUtils { for ( const bindGroup of renderObject.getBindings() ) { const bindingsData = backend.get( bindGroup ); + const { layoutGPU } = bindingsData.layout; - bindGroupLayouts.push( bindingsData.layout ); + bindGroupLayouts.push( layoutGPU ); } @@ -341,8 +342,9 @@ class WebGPUPipelineUtils { for ( const bindingsGroup of bindings ) { const bindingsData = backend.get( bindingsGroup ); + const { layoutGPU } = bindingsData.layout; - bindGroupLayouts.push( bindingsData.layout ); + bindGroupLayouts.push( layoutGPU ); } From c3d9cd4e647c4524d59b0a651eb8b5bdfa48af5c Mon Sep 17 00:00:00 2001 From: Mugen87 Date: Mon, 1 Dec 2025 11:39:46 +0100 Subject: [PATCH 5/6] Updated builds. --- build/three.cjs | 104 +++-- build/three.core.js | 104 +++-- build/three.core.min.js | 2 +- build/three.tsl.js | 4 +- build/three.tsl.min.js | 2 +- build/three.webgpu.js | 702 +++++++++++++++++++++----------- build/three.webgpu.min.js | 2 +- build/three.webgpu.nodes.js | 702 +++++++++++++++++++++----------- build/three.webgpu.nodes.min.js | 2 +- 9 files changed, 1088 insertions(+), 536 deletions(-) diff --git a/build/three.cjs b/build/three.cjs index 4d2b43cf50c81e..1c97867d4dc646 100644 --- a/build/three.cjs +++ b/build/three.cjs @@ -18979,11 +18979,11 @@ class BufferGeometry extends EventDispatcher { this.indirect = null; /** - * The offset, in bytes, into the indirect drawing buffer where the value data begins. + * The offset, in bytes, into the indirect drawing buffer where the value data begins. If an array is provided, multiple indirect draw calls will be made for each offset. * * Can only be used with {@link WebGPURenderer} and a WebGPU backend. * - * @type {number} + * @type {number|Array} * @default 0 */ this.indirectOffset = 0; @@ -19101,7 +19101,7 @@ class BufferGeometry extends EventDispatcher { * Sets the given indirect attribute to this geometry. * * @param {BufferAttribute} indirect - The attribute holding indirect draw calls. - * @param {number} [indirectOffset=0] - The offset, in bytes, into the indirect drawing buffer where the value data begins. + * @param {number|Array} [indirectOffset=0] - The offset, in bytes, into the indirect drawing buffer where the value data begins. If an array is provided, multiple indirect draw calls will be made for each offset. * @return {BufferGeometry} A reference to this instance. */ setIndirect( indirect, indirectOffset = 0 ) { @@ -25399,6 +25399,15 @@ class Skeleton { */ this.boneMatrices = null; + /** + * An array buffer holding the bone data of the previous frame. + * Required for computing velocity. Maintained in {@link SkinningNode}. + * + * @type {?Float32Array} + * @default null + */ + this.previousBoneMatrices = null; + /** * A texture holding the bone data for use * in the vertex shader. @@ -35474,9 +35483,9 @@ class ExtrudeGeometry extends BufferGeometry { // SETUP TNB variables - // TODO1 - have a .isClosed in spline? + const isClosed = extrudePath.isCatmullRomCurve3 ? extrudePath.closed : false; - splineTube = extrudePath.computeFrenetFrames( steps, false ); + splineTube = extrudePath.computeFrenetFrames( steps, isClosed ); // log(splineTube, 'splineTube', splineTube.normals.length, 'steps', steps, 'extrudePts', extrudePts.length); @@ -45377,16 +45386,6 @@ class Light extends Object3D { data.object.color = this.color.getHex(); data.object.intensity = this.intensity; - if ( this.groundColor !== undefined ) data.object.groundColor = this.groundColor.getHex(); - - if ( this.distance !== undefined ) data.object.distance = this.distance; - if ( this.angle !== undefined ) data.object.angle = this.angle; - if ( this.decay !== undefined ) data.object.decay = this.decay; - if ( this.penumbra !== undefined ) data.object.penumbra = this.penumbra; - - if ( this.shadow !== undefined ) data.object.shadow = this.shadow.toJSON(); - if ( this.target !== undefined ) data.object.target = this.target.uuid; - return data; } @@ -45452,6 +45451,16 @@ class HemisphereLight extends Light { } + toJSON( meta ) { + + const data = super.toJSON( meta ); + + data.object.groundColor = this.groundColor.getHex(); + + return data; + + } + } const _projScreenMatrix$1 = /*@__PURE__*/ new Matrix4(); @@ -46015,13 +46024,32 @@ class SpotLight extends Light { this.decay = source.decay; this.target = source.target.clone(); - + this.map = source.map; this.shadow = source.shadow.clone(); return this; } + toJSON( meta ) { + + const data = super.toJSON( meta ); + + data.object.distance = this.distance; + data.object.angle = this.angle; + data.object.decay = this.decay; + data.object.penumbra = this.penumbra; + + data.object.target = this.target.uuid; + + if ( this.map && this.map.isTexture ) data.object.map = this.map.toJSON( meta ).uuid; + + data.object.shadow = this.shadow.toJSON(); + + return data; + + } + } const _projScreenMatrix = /*@__PURE__*/ new Matrix4(); @@ -46211,6 +46239,19 @@ class PointLight extends Light { } + toJSON( meta ) { + + const data = super.toJSON( meta ); + + data.object.distance = this.distance; + data.object.decay = this.decay; + + data.object.shadow = this.shadow.toJSON(); + + return data; + + } + } /** @@ -46575,6 +46616,17 @@ class DirectionalLight extends Light { } + toJSON( meta ) { + + const data = super.toJSON( meta ); + + data.object.shadow = this.shadow.toJSON(); + data.object.target = this.target.uuid; + + return data; + + } + } /** @@ -47125,21 +47177,6 @@ class LightProbe extends Light { } - /** - * Deserializes the light prove from the given JSON. - * - * @param {Object} json - The JSON holding the serialized light probe. - * @return {LightProbe} A reference to this light probe. - */ - fromJSON( json ) { - - this.intensity = json.intensity; // TODO: Move this bit to Light.fromJSON(); - this.sh.fromArray( json.sh ); - - return this; - - } - toJSON( meta ) { const data = super.toJSON( meta ); @@ -48762,7 +48799,8 @@ class ObjectLoader extends Loader { case 'LightProbe': - object = new LightProbe().fromJSON( data ); + const sh = new SphericalHarmonics3().fromArray( data.sh ); + object = new LightProbe( sh, data.intensity ); break; @@ -56850,7 +56888,7 @@ class PointLightHelper extends Mesh { /** * The light being visualized. * - * @type {HemisphereLight} + * @type {PointLight} */ this.light = light; diff --git a/build/three.core.js b/build/three.core.js index ec8cdadf9b7109..8bb890f0dea966 100644 --- a/build/three.core.js +++ b/build/three.core.js @@ -18977,11 +18977,11 @@ class BufferGeometry extends EventDispatcher { this.indirect = null; /** - * The offset, in bytes, into the indirect drawing buffer where the value data begins. + * The offset, in bytes, into the indirect drawing buffer where the value data begins. If an array is provided, multiple indirect draw calls will be made for each offset. * * Can only be used with {@link WebGPURenderer} and a WebGPU backend. * - * @type {number} + * @type {number|Array} * @default 0 */ this.indirectOffset = 0; @@ -19099,7 +19099,7 @@ class BufferGeometry extends EventDispatcher { * Sets the given indirect attribute to this geometry. * * @param {BufferAttribute} indirect - The attribute holding indirect draw calls. - * @param {number} [indirectOffset=0] - The offset, in bytes, into the indirect drawing buffer where the value data begins. + * @param {number|Array} [indirectOffset=0] - The offset, in bytes, into the indirect drawing buffer where the value data begins. If an array is provided, multiple indirect draw calls will be made for each offset. * @return {BufferGeometry} A reference to this instance. */ setIndirect( indirect, indirectOffset = 0 ) { @@ -25397,6 +25397,15 @@ class Skeleton { */ this.boneMatrices = null; + /** + * An array buffer holding the bone data of the previous frame. + * Required for computing velocity. Maintained in {@link SkinningNode}. + * + * @type {?Float32Array} + * @default null + */ + this.previousBoneMatrices = null; + /** * A texture holding the bone data for use * in the vertex shader. @@ -35472,9 +35481,9 @@ class ExtrudeGeometry extends BufferGeometry { // SETUP TNB variables - // TODO1 - have a .isClosed in spline? + const isClosed = extrudePath.isCatmullRomCurve3 ? extrudePath.closed : false; - splineTube = extrudePath.computeFrenetFrames( steps, false ); + splineTube = extrudePath.computeFrenetFrames( steps, isClosed ); // log(splineTube, 'splineTube', splineTube.normals.length, 'steps', steps, 'extrudePts', extrudePts.length); @@ -45375,16 +45384,6 @@ class Light extends Object3D { data.object.color = this.color.getHex(); data.object.intensity = this.intensity; - if ( this.groundColor !== undefined ) data.object.groundColor = this.groundColor.getHex(); - - if ( this.distance !== undefined ) data.object.distance = this.distance; - if ( this.angle !== undefined ) data.object.angle = this.angle; - if ( this.decay !== undefined ) data.object.decay = this.decay; - if ( this.penumbra !== undefined ) data.object.penumbra = this.penumbra; - - if ( this.shadow !== undefined ) data.object.shadow = this.shadow.toJSON(); - if ( this.target !== undefined ) data.object.target = this.target.uuid; - return data; } @@ -45450,6 +45449,16 @@ class HemisphereLight extends Light { } + toJSON( meta ) { + + const data = super.toJSON( meta ); + + data.object.groundColor = this.groundColor.getHex(); + + return data; + + } + } const _projScreenMatrix$1 = /*@__PURE__*/ new Matrix4(); @@ -46013,13 +46022,32 @@ class SpotLight extends Light { this.decay = source.decay; this.target = source.target.clone(); - + this.map = source.map; this.shadow = source.shadow.clone(); return this; } + toJSON( meta ) { + + const data = super.toJSON( meta ); + + data.object.distance = this.distance; + data.object.angle = this.angle; + data.object.decay = this.decay; + data.object.penumbra = this.penumbra; + + data.object.target = this.target.uuid; + + if ( this.map && this.map.isTexture ) data.object.map = this.map.toJSON( meta ).uuid; + + data.object.shadow = this.shadow.toJSON(); + + return data; + + } + } const _projScreenMatrix = /*@__PURE__*/ new Matrix4(); @@ -46209,6 +46237,19 @@ class PointLight extends Light { } + toJSON( meta ) { + + const data = super.toJSON( meta ); + + data.object.distance = this.distance; + data.object.decay = this.decay; + + data.object.shadow = this.shadow.toJSON(); + + return data; + + } + } /** @@ -46573,6 +46614,17 @@ class DirectionalLight extends Light { } + toJSON( meta ) { + + const data = super.toJSON( meta ); + + data.object.shadow = this.shadow.toJSON(); + data.object.target = this.target.uuid; + + return data; + + } + } /** @@ -47123,21 +47175,6 @@ class LightProbe extends Light { } - /** - * Deserializes the light prove from the given JSON. - * - * @param {Object} json - The JSON holding the serialized light probe. - * @return {LightProbe} A reference to this light probe. - */ - fromJSON( json ) { - - this.intensity = json.intensity; // TODO: Move this bit to Light.fromJSON(); - this.sh.fromArray( json.sh ); - - return this; - - } - toJSON( meta ) { const data = super.toJSON( meta ); @@ -48760,7 +48797,8 @@ class ObjectLoader extends Loader { case 'LightProbe': - object = new LightProbe().fromJSON( data ); + const sh = new SphericalHarmonics3().fromArray( data.sh ); + object = new LightProbe( sh, data.intensity ); break; @@ -56848,7 +56886,7 @@ class PointLightHelper extends Mesh { /** * The light being visualized. * - * @type {HemisphereLight} + * @type {PointLight} */ this.light = light; diff --git a/build/three.core.min.js b/build/three.core.min.js index 642d9874f3be3d..256b782f0d9943 100644 --- a/build/three.core.min.js +++ b/build/three.core.min.js @@ -3,4 +3,4 @@ * Copyright 2010-2025 Three.js Authors * SPDX-License-Identifier: MIT */ -const t="182dev",e={LEFT:0,MIDDLE:1,RIGHT:2,ROTATE:0,DOLLY:1,PAN:2},i={ROTATE:0,PAN:1,DOLLY_PAN:2,DOLLY_ROTATE:3},s=0,r=1,n=2,a=3,o=0,h=1,l=2,c=3,u=0,d=1,p=2,m=0,y=1,g=2,f=3,x=4,b=5,v=100,w=101,M=102,S=103,_=104,A=200,T=201,z=202,C=203,I=204,B=205,k=206,O=207,P=208,R=209,N=210,V=211,F=212,L=213,E=214,j=0,D=1,W=2,U=3,q=4,J=5,X=6,Y=7,Z=0,H=1,G=2,$=0,Q=1,K=2,tt=3,et=4,it=5,st=6,rt=7,nt="attached",at="detached",ot=300,ht=301,lt=302,ct=303,ut=304,dt=306,pt=1e3,mt=1001,yt=1002,gt=1003,ft=1004,xt=1004,bt=1005,vt=1005,wt=1006,Mt=1007,St=1007,_t=1008,At=1008,Tt=1009,zt=1010,Ct=1011,It=1012,Bt=1013,kt=1014,Ot=1015,Pt=1016,Rt=1017,Nt=1018,Vt=1020,Ft=35902,Lt=35899,Et=1021,jt=1022,Dt=1023,Wt=1026,Ut=1027,qt=1028,Jt=1029,Xt=1030,Yt=1031,Zt=1032,Ht=1033,Gt=33776,$t=33777,Qt=33778,Kt=33779,te=35840,ee=35841,ie=35842,se=35843,re=36196,ne=37492,ae=37496,oe=37488,he=37489,le=37490,ce=37491,ue=37808,de=37809,pe=37810,me=37811,ye=37812,ge=37813,fe=37814,xe=37815,be=37816,ve=37817,we=37818,Me=37819,Se=37820,_e=37821,Ae=36492,Te=36494,ze=36495,Ce=36283,Ie=36284,Be=36285,ke=36286,Oe=2200,Pe=2201,Re=2202,Ne=2300,Ve=2301,Fe=2302,Le=2400,Ee=2401,je=2402,De=2500,We=2501,Ue=0,qe=1,Je=2,Xe=3200,Ye=3201,Ze=3202,He=3203,Ge=3204,$e=0,Qe=1,Ke="",ti="srgb",ei="srgb-linear",ii="linear",si="srgb",ri="",ni="rg",ai="ga",oi=0,hi=7680,li=7681,ci=7682,ui=7683,di=34055,pi=34056,mi=5386,yi=512,gi=513,fi=514,xi=515,bi=516,vi=517,wi=518,Mi=519,Si=512,_i=513,Ai=514,Ti=515,zi=516,Ci=517,Ii=518,Bi=519,ki=35044,Oi=35048,Pi=35040,Ri=35045,Ni=35049,Vi=35041,Fi=35046,Li=35050,Ei=35042,ji="100",Di="300 es",Wi=2e3,Ui=2001,qi={COMPUTE:"compute",RENDER:"render"},Ji={PERSPECTIVE:"perspective",LINEAR:"linear",FLAT:"flat"},Xi={NORMAL:"normal",CENTROID:"centroid",SAMPLE:"sample",FIRST:"first",EITHER:"either"};function Yi(t){for(let e=t.length-1;e>=0;--e)if(t[e]>=65535)return!0;return!1}const Zi={Int8Array:Int8Array,Uint8Array:Uint8Array,Uint8ClampedArray:Uint8ClampedArray,Int16Array:Int16Array,Uint16Array:Uint16Array,Int32Array:Int32Array,Uint32Array:Uint32Array,Float32Array:Float32Array,Float64Array:Float64Array};function Hi(t,e){return new Zi[t](e)}function Gi(t){return ArrayBuffer.isView(t)&&!(t instanceof DataView)}function $i(t){return document.createElementNS("http://www.w3.org/1999/xhtml",t)}function Qi(){const t=$i("canvas");return t.style.display="block",t}const Ki={};let ts=null;function es(t){ts=t}function is(){return ts}function ss(...t){const e="THREE."+t.shift();ts?ts("log",e,...t):console.log(e,...t)}function rs(...t){const e="THREE."+t.shift();ts?ts("warn",e,...t):console.warn(e,...t)}function ns(...t){const e="THREE."+t.shift();ts?ts("error",e,...t):console.error(e,...t)}function as(...t){const e=t.join(" ");e in Ki||(Ki[e]=!0,rs(...t))}function os(t,e,i){return new Promise(function(s,r){setTimeout(function n(){switch(t.clientWaitSync(e,t.SYNC_FLUSH_COMMANDS_BIT,0)){case t.WAIT_FAILED:r();break;case t.TIMEOUT_EXPIRED:setTimeout(n,i);break;default:s()}},i)})}class hs{addEventListener(t,e){void 0===this._listeners&&(this._listeners={});const i=this._listeners;void 0===i[t]&&(i[t]=[]),-1===i[t].indexOf(e)&&i[t].push(e)}hasEventListener(t,e){const i=this._listeners;return void 0!==i&&(void 0!==i[t]&&-1!==i[t].indexOf(e))}removeEventListener(t,e){const i=this._listeners;if(void 0===i)return;const s=i[t];if(void 0!==s){const t=s.indexOf(e);-1!==t&&s.splice(t,1)}}dispatchEvent(t){const e=this._listeners;if(void 0===e)return;const i=e[t.type];if(void 0!==i){t.target=this;const e=i.slice(0);for(let i=0,s=e.length;i>8&255]+ls[t>>16&255]+ls[t>>24&255]+"-"+ls[255&e]+ls[e>>8&255]+"-"+ls[e>>16&15|64]+ls[e>>24&255]+"-"+ls[63&i|128]+ls[i>>8&255]+"-"+ls[i>>16&255]+ls[i>>24&255]+ls[255&s]+ls[s>>8&255]+ls[s>>16&255]+ls[s>>24&255]).toLowerCase()}function ms(t,e,i){return Math.max(e,Math.min(i,t))}function ys(t,e){return(t%e+e)%e}function gs(t,e,i){return(1-i)*t+i*e}function fs(t,e){switch(e.constructor){case Float32Array:return t;case Uint32Array:return t/4294967295;case Uint16Array:return t/65535;case Uint8Array:return t/255;case Int32Array:return Math.max(t/2147483647,-1);case Int16Array:return Math.max(t/32767,-1);case Int8Array:return Math.max(t/127,-1);default:throw new Error("Invalid component type.")}}function xs(t,e){switch(e.constructor){case Float32Array:return t;case Uint32Array:return Math.round(4294967295*t);case Uint16Array:return Math.round(65535*t);case Uint8Array:return Math.round(255*t);case Int32Array:return Math.round(2147483647*t);case Int16Array:return Math.round(32767*t);case Int8Array:return Math.round(127*t);default:throw new Error("Invalid component type.")}}const bs={DEG2RAD:us,RAD2DEG:ds,generateUUID:ps,clamp:ms,euclideanModulo:ys,mapLinear:function(t,e,i,s,r){return s+(t-e)*(r-s)/(i-e)},inverseLerp:function(t,e,i){return t!==e?(i-t)/(e-t):0},lerp:gs,damp:function(t,e,i,s){return gs(t,e,1-Math.exp(-i*s))},pingpong:function(t,e=1){return e-Math.abs(ys(t,2*e)-e)},smoothstep:function(t,e,i){return t<=e?0:t>=i?1:(t=(t-e)/(i-e))*t*(3-2*t)},smootherstep:function(t,e,i){return t<=e?0:t>=i?1:(t=(t-e)/(i-e))*t*t*(t*(6*t-15)+10)},randInt:function(t,e){return t+Math.floor(Math.random()*(e-t+1))},randFloat:function(t,e){return t+Math.random()*(e-t)},randFloatSpread:function(t){return t*(.5-Math.random())},seededRandom:function(t){void 0!==t&&(cs=t);let e=cs+=1831565813;return e=Math.imul(e^e>>>15,1|e),e^=e+Math.imul(e^e>>>7,61|e),((e^e>>>14)>>>0)/4294967296},degToRad:function(t){return t*us},radToDeg:function(t){return t*ds},isPowerOfTwo:function(t){return!(t&t-1)&&0!==t},ceilPowerOfTwo:function(t){return Math.pow(2,Math.ceil(Math.log(t)/Math.LN2))},floorPowerOfTwo:function(t){return Math.pow(2,Math.floor(Math.log(t)/Math.LN2))},setQuaternionFromProperEuler:function(t,e,i,s,r){const n=Math.cos,a=Math.sin,o=n(i/2),h=a(i/2),l=n((e+s)/2),c=a((e+s)/2),u=n((e-s)/2),d=a((e-s)/2),p=n((s-e)/2),m=a((s-e)/2);switch(r){case"XYX":t.set(o*c,h*u,h*d,o*l);break;case"YZY":t.set(h*d,o*c,h*u,o*l);break;case"ZXZ":t.set(h*u,h*d,o*c,o*l);break;case"XZX":t.set(o*c,h*m,h*p,o*l);break;case"YXY":t.set(h*p,o*c,h*m,o*l);break;case"ZYZ":t.set(h*m,h*p,o*c,o*l);break;default:rs("MathUtils: .setQuaternionFromProperEuler() encountered an unknown order: "+r)}},normalize:xs,denormalize:fs};class vs{constructor(t=0,e=0){vs.prototype.isVector2=!0,this.x=t,this.y=e}get width(){return this.x}set width(t){this.x=t}get height(){return this.y}set height(t){this.y=t}set(t,e){return this.x=t,this.y=e,this}setScalar(t){return this.x=t,this.y=t,this}setX(t){return this.x=t,this}setY(t){return this.y=t,this}setComponent(t,e){switch(t){case 0:this.x=e;break;case 1:this.y=e;break;default:throw new Error("index is out of range: "+t)}return this}getComponent(t){switch(t){case 0:return this.x;case 1:return this.y;default:throw new Error("index is out of range: "+t)}}clone(){return new this.constructor(this.x,this.y)}copy(t){return this.x=t.x,this.y=t.y,this}add(t){return this.x+=t.x,this.y+=t.y,this}addScalar(t){return this.x+=t,this.y+=t,this}addVectors(t,e){return this.x=t.x+e.x,this.y=t.y+e.y,this}addScaledVector(t,e){return this.x+=t.x*e,this.y+=t.y*e,this}sub(t){return this.x-=t.x,this.y-=t.y,this}subScalar(t){return this.x-=t,this.y-=t,this}subVectors(t,e){return this.x=t.x-e.x,this.y=t.y-e.y,this}multiply(t){return this.x*=t.x,this.y*=t.y,this}multiplyScalar(t){return this.x*=t,this.y*=t,this}divide(t){return this.x/=t.x,this.y/=t.y,this}divideScalar(t){return this.multiplyScalar(1/t)}applyMatrix3(t){const e=this.x,i=this.y,s=t.elements;return this.x=s[0]*e+s[3]*i+s[6],this.y=s[1]*e+s[4]*i+s[7],this}min(t){return this.x=Math.min(this.x,t.x),this.y=Math.min(this.y,t.y),this}max(t){return this.x=Math.max(this.x,t.x),this.y=Math.max(this.y,t.y),this}clamp(t,e){return this.x=ms(this.x,t.x,e.x),this.y=ms(this.y,t.y,e.y),this}clampScalar(t,e){return this.x=ms(this.x,t,e),this.y=ms(this.y,t,e),this}clampLength(t,e){const i=this.length();return this.divideScalar(i||1).multiplyScalar(ms(i,t,e))}floor(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this}ceil(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this}round(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this}roundToZero(){return this.x=Math.trunc(this.x),this.y=Math.trunc(this.y),this}negate(){return this.x=-this.x,this.y=-this.y,this}dot(t){return this.x*t.x+this.y*t.y}cross(t){return this.x*t.y-this.y*t.x}lengthSq(){return this.x*this.x+this.y*this.y}length(){return Math.sqrt(this.x*this.x+this.y*this.y)}manhattanLength(){return Math.abs(this.x)+Math.abs(this.y)}normalize(){return this.divideScalar(this.length()||1)}angle(){return Math.atan2(-this.y,-this.x)+Math.PI}angleTo(t){const e=Math.sqrt(this.lengthSq()*t.lengthSq());if(0===e)return Math.PI/2;const i=this.dot(t)/e;return Math.acos(ms(i,-1,1))}distanceTo(t){return Math.sqrt(this.distanceToSquared(t))}distanceToSquared(t){const e=this.x-t.x,i=this.y-t.y;return e*e+i*i}manhattanDistanceTo(t){return Math.abs(this.x-t.x)+Math.abs(this.y-t.y)}setLength(t){return this.normalize().multiplyScalar(t)}lerp(t,e){return this.x+=(t.x-this.x)*e,this.y+=(t.y-this.y)*e,this}lerpVectors(t,e,i){return this.x=t.x+(e.x-t.x)*i,this.y=t.y+(e.y-t.y)*i,this}equals(t){return t.x===this.x&&t.y===this.y}fromArray(t,e=0){return this.x=t[e],this.y=t[e+1],this}toArray(t=[],e=0){return t[e]=this.x,t[e+1]=this.y,t}fromBufferAttribute(t,e){return this.x=t.getX(e),this.y=t.getY(e),this}rotateAround(t,e){const i=Math.cos(e),s=Math.sin(e),r=this.x-t.x,n=this.y-t.y;return this.x=r*i-n*s+t.x,this.y=r*s+n*i+t.y,this}random(){return this.x=Math.random(),this.y=Math.random(),this}*[Symbol.iterator](){yield this.x,yield this.y}}class ws{constructor(t=0,e=0,i=0,s=1){this.isQuaternion=!0,this._x=t,this._y=e,this._z=i,this._w=s}static slerpFlat(t,e,i,s,r,n,a){let o=i[s+0],h=i[s+1],l=i[s+2],c=i[s+3],u=r[n+0],d=r[n+1],p=r[n+2],m=r[n+3];if(a<=0)return t[e+0]=o,t[e+1]=h,t[e+2]=l,void(t[e+3]=c);if(a>=1)return t[e+0]=u,t[e+1]=d,t[e+2]=p,void(t[e+3]=m);if(c!==m||o!==u||h!==d||l!==p){let t=o*u+h*d+l*p+c*m;t<0&&(u=-u,d=-d,p=-p,m=-m,t=-t);let e=1-a;if(t<.9995){const i=Math.acos(t),s=Math.sin(i);e=Math.sin(e*i)/s,o=o*e+u*(a=Math.sin(a*i)/s),h=h*e+d*a,l=l*e+p*a,c=c*e+m*a}else{o=o*e+u*a,h=h*e+d*a,l=l*e+p*a,c=c*e+m*a;const t=1/Math.sqrt(o*o+h*h+l*l+c*c);o*=t,h*=t,l*=t,c*=t}}t[e]=o,t[e+1]=h,t[e+2]=l,t[e+3]=c}static multiplyQuaternionsFlat(t,e,i,s,r,n){const a=i[s],o=i[s+1],h=i[s+2],l=i[s+3],c=r[n],u=r[n+1],d=r[n+2],p=r[n+3];return t[e]=a*p+l*c+o*d-h*u,t[e+1]=o*p+l*u+h*c-a*d,t[e+2]=h*p+l*d+a*u-o*c,t[e+3]=l*p-a*c-o*u-h*d,t}get x(){return this._x}set x(t){this._x=t,this._onChangeCallback()}get y(){return this._y}set y(t){this._y=t,this._onChangeCallback()}get z(){return this._z}set z(t){this._z=t,this._onChangeCallback()}get w(){return this._w}set w(t){this._w=t,this._onChangeCallback()}set(t,e,i,s){return this._x=t,this._y=e,this._z=i,this._w=s,this._onChangeCallback(),this}clone(){return new this.constructor(this._x,this._y,this._z,this._w)}copy(t){return this._x=t.x,this._y=t.y,this._z=t.z,this._w=t.w,this._onChangeCallback(),this}setFromEuler(t,e=!0){const i=t._x,s=t._y,r=t._z,n=t._order,a=Math.cos,o=Math.sin,h=a(i/2),l=a(s/2),c=a(r/2),u=o(i/2),d=o(s/2),p=o(r/2);switch(n){case"XYZ":this._x=u*l*c+h*d*p,this._y=h*d*c-u*l*p,this._z=h*l*p+u*d*c,this._w=h*l*c-u*d*p;break;case"YXZ":this._x=u*l*c+h*d*p,this._y=h*d*c-u*l*p,this._z=h*l*p-u*d*c,this._w=h*l*c+u*d*p;break;case"ZXY":this._x=u*l*c-h*d*p,this._y=h*d*c+u*l*p,this._z=h*l*p+u*d*c,this._w=h*l*c-u*d*p;break;case"ZYX":this._x=u*l*c-h*d*p,this._y=h*d*c+u*l*p,this._z=h*l*p-u*d*c,this._w=h*l*c+u*d*p;break;case"YZX":this._x=u*l*c+h*d*p,this._y=h*d*c+u*l*p,this._z=h*l*p-u*d*c,this._w=h*l*c-u*d*p;break;case"XZY":this._x=u*l*c-h*d*p,this._y=h*d*c-u*l*p,this._z=h*l*p+u*d*c,this._w=h*l*c+u*d*p;break;default:rs("Quaternion: .setFromEuler() encountered an unknown order: "+n)}return!0===e&&this._onChangeCallback(),this}setFromAxisAngle(t,e){const i=e/2,s=Math.sin(i);return this._x=t.x*s,this._y=t.y*s,this._z=t.z*s,this._w=Math.cos(i),this._onChangeCallback(),this}setFromRotationMatrix(t){const e=t.elements,i=e[0],s=e[4],r=e[8],n=e[1],a=e[5],o=e[9],h=e[2],l=e[6],c=e[10],u=i+a+c;if(u>0){const t=.5/Math.sqrt(u+1);this._w=.25/t,this._x=(l-o)*t,this._y=(r-h)*t,this._z=(n-s)*t}else if(i>a&&i>c){const t=2*Math.sqrt(1+i-a-c);this._w=(l-o)/t,this._x=.25*t,this._y=(s+n)/t,this._z=(r+h)/t}else if(a>c){const t=2*Math.sqrt(1+a-i-c);this._w=(r-h)/t,this._x=(s+n)/t,this._y=.25*t,this._z=(o+l)/t}else{const t=2*Math.sqrt(1+c-i-a);this._w=(n-s)/t,this._x=(r+h)/t,this._y=(o+l)/t,this._z=.25*t}return this._onChangeCallback(),this}setFromUnitVectors(t,e){let i=t.dot(e)+1;return i<1e-8?(i=0,Math.abs(t.x)>Math.abs(t.z)?(this._x=-t.y,this._y=t.x,this._z=0,this._w=i):(this._x=0,this._y=-t.z,this._z=t.y,this._w=i)):(this._x=t.y*e.z-t.z*e.y,this._y=t.z*e.x-t.x*e.z,this._z=t.x*e.y-t.y*e.x,this._w=i),this.normalize()}angleTo(t){return 2*Math.acos(Math.abs(ms(this.dot(t),-1,1)))}rotateTowards(t,e){const i=this.angleTo(t);if(0===i)return this;const s=Math.min(1,e/i);return this.slerp(t,s),this}identity(){return this.set(0,0,0,1)}invert(){return this.conjugate()}conjugate(){return this._x*=-1,this._y*=-1,this._z*=-1,this._onChangeCallback(),this}dot(t){return this._x*t._x+this._y*t._y+this._z*t._z+this._w*t._w}lengthSq(){return this._x*this._x+this._y*this._y+this._z*this._z+this._w*this._w}length(){return Math.sqrt(this._x*this._x+this._y*this._y+this._z*this._z+this._w*this._w)}normalize(){let t=this.length();return 0===t?(this._x=0,this._y=0,this._z=0,this._w=1):(t=1/t,this._x=this._x*t,this._y=this._y*t,this._z=this._z*t,this._w=this._w*t),this._onChangeCallback(),this}multiply(t){return this.multiplyQuaternions(this,t)}premultiply(t){return this.multiplyQuaternions(t,this)}multiplyQuaternions(t,e){const i=t._x,s=t._y,r=t._z,n=t._w,a=e._x,o=e._y,h=e._z,l=e._w;return this._x=i*l+n*a+s*h-r*o,this._y=s*l+n*o+r*a-i*h,this._z=r*l+n*h+i*o-s*a,this._w=n*l-i*a-s*o-r*h,this._onChangeCallback(),this}slerp(t,e){if(e<=0)return this;if(e>=1)return this.copy(t);let i=t._x,s=t._y,r=t._z,n=t._w,a=this.dot(t);a<0&&(i=-i,s=-s,r=-r,n=-n,a=-a);let o=1-e;if(a<.9995){const t=Math.acos(a),h=Math.sin(t);o=Math.sin(o*t)/h,e=Math.sin(e*t)/h,this._x=this._x*o+i*e,this._y=this._y*o+s*e,this._z=this._z*o+r*e,this._w=this._w*o+n*e,this._onChangeCallback()}else this._x=this._x*o+i*e,this._y=this._y*o+s*e,this._z=this._z*o+r*e,this._w=this._w*o+n*e,this.normalize();return this}slerpQuaternions(t,e,i){return this.copy(t).slerp(e,i)}random(){const t=2*Math.PI*Math.random(),e=2*Math.PI*Math.random(),i=Math.random(),s=Math.sqrt(1-i),r=Math.sqrt(i);return this.set(s*Math.sin(t),s*Math.cos(t),r*Math.sin(e),r*Math.cos(e))}equals(t){return t._x===this._x&&t._y===this._y&&t._z===this._z&&t._w===this._w}fromArray(t,e=0){return this._x=t[e],this._y=t[e+1],this._z=t[e+2],this._w=t[e+3],this._onChangeCallback(),this}toArray(t=[],e=0){return t[e]=this._x,t[e+1]=this._y,t[e+2]=this._z,t[e+3]=this._w,t}fromBufferAttribute(t,e){return this._x=t.getX(e),this._y=t.getY(e),this._z=t.getZ(e),this._w=t.getW(e),this._onChangeCallback(),this}toJSON(){return this.toArray()}_onChange(t){return this._onChangeCallback=t,this}_onChangeCallback(){}*[Symbol.iterator](){yield this._x,yield this._y,yield this._z,yield this._w}}class Ms{constructor(t=0,e=0,i=0){Ms.prototype.isVector3=!0,this.x=t,this.y=e,this.z=i}set(t,e,i){return void 0===i&&(i=this.z),this.x=t,this.y=e,this.z=i,this}setScalar(t){return this.x=t,this.y=t,this.z=t,this}setX(t){return this.x=t,this}setY(t){return this.y=t,this}setZ(t){return this.z=t,this}setComponent(t,e){switch(t){case 0:this.x=e;break;case 1:this.y=e;break;case 2:this.z=e;break;default:throw new Error("index is out of range: "+t)}return this}getComponent(t){switch(t){case 0:return this.x;case 1:return this.y;case 2:return this.z;default:throw new Error("index is out of range: "+t)}}clone(){return new this.constructor(this.x,this.y,this.z)}copy(t){return this.x=t.x,this.y=t.y,this.z=t.z,this}add(t){return this.x+=t.x,this.y+=t.y,this.z+=t.z,this}addScalar(t){return this.x+=t,this.y+=t,this.z+=t,this}addVectors(t,e){return this.x=t.x+e.x,this.y=t.y+e.y,this.z=t.z+e.z,this}addScaledVector(t,e){return this.x+=t.x*e,this.y+=t.y*e,this.z+=t.z*e,this}sub(t){return this.x-=t.x,this.y-=t.y,this.z-=t.z,this}subScalar(t){return this.x-=t,this.y-=t,this.z-=t,this}subVectors(t,e){return this.x=t.x-e.x,this.y=t.y-e.y,this.z=t.z-e.z,this}multiply(t){return this.x*=t.x,this.y*=t.y,this.z*=t.z,this}multiplyScalar(t){return this.x*=t,this.y*=t,this.z*=t,this}multiplyVectors(t,e){return this.x=t.x*e.x,this.y=t.y*e.y,this.z=t.z*e.z,this}applyEuler(t){return this.applyQuaternion(_s.setFromEuler(t))}applyAxisAngle(t,e){return this.applyQuaternion(_s.setFromAxisAngle(t,e))}applyMatrix3(t){const e=this.x,i=this.y,s=this.z,r=t.elements;return this.x=r[0]*e+r[3]*i+r[6]*s,this.y=r[1]*e+r[4]*i+r[7]*s,this.z=r[2]*e+r[5]*i+r[8]*s,this}applyNormalMatrix(t){return this.applyMatrix3(t).normalize()}applyMatrix4(t){const e=this.x,i=this.y,s=this.z,r=t.elements,n=1/(r[3]*e+r[7]*i+r[11]*s+r[15]);return this.x=(r[0]*e+r[4]*i+r[8]*s+r[12])*n,this.y=(r[1]*e+r[5]*i+r[9]*s+r[13])*n,this.z=(r[2]*e+r[6]*i+r[10]*s+r[14])*n,this}applyQuaternion(t){const e=this.x,i=this.y,s=this.z,r=t.x,n=t.y,a=t.z,o=t.w,h=2*(n*s-a*i),l=2*(a*e-r*s),c=2*(r*i-n*e);return this.x=e+o*h+n*c-a*l,this.y=i+o*l+a*h-r*c,this.z=s+o*c+r*l-n*h,this}project(t){return this.applyMatrix4(t.matrixWorldInverse).applyMatrix4(t.projectionMatrix)}unproject(t){return this.applyMatrix4(t.projectionMatrixInverse).applyMatrix4(t.matrixWorld)}transformDirection(t){const e=this.x,i=this.y,s=this.z,r=t.elements;return this.x=r[0]*e+r[4]*i+r[8]*s,this.y=r[1]*e+r[5]*i+r[9]*s,this.z=r[2]*e+r[6]*i+r[10]*s,this.normalize()}divide(t){return this.x/=t.x,this.y/=t.y,this.z/=t.z,this}divideScalar(t){return this.multiplyScalar(1/t)}min(t){return this.x=Math.min(this.x,t.x),this.y=Math.min(this.y,t.y),this.z=Math.min(this.z,t.z),this}max(t){return this.x=Math.max(this.x,t.x),this.y=Math.max(this.y,t.y),this.z=Math.max(this.z,t.z),this}clamp(t,e){return this.x=ms(this.x,t.x,e.x),this.y=ms(this.y,t.y,e.y),this.z=ms(this.z,t.z,e.z),this}clampScalar(t,e){return this.x=ms(this.x,t,e),this.y=ms(this.y,t,e),this.z=ms(this.z,t,e),this}clampLength(t,e){const i=this.length();return this.divideScalar(i||1).multiplyScalar(ms(i,t,e))}floor(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this.z=Math.floor(this.z),this}ceil(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this.z=Math.ceil(this.z),this}round(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this.z=Math.round(this.z),this}roundToZero(){return this.x=Math.trunc(this.x),this.y=Math.trunc(this.y),this.z=Math.trunc(this.z),this}negate(){return this.x=-this.x,this.y=-this.y,this.z=-this.z,this}dot(t){return this.x*t.x+this.y*t.y+this.z*t.z}lengthSq(){return this.x*this.x+this.y*this.y+this.z*this.z}length(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z)}manhattanLength(){return Math.abs(this.x)+Math.abs(this.y)+Math.abs(this.z)}normalize(){return this.divideScalar(this.length()||1)}setLength(t){return this.normalize().multiplyScalar(t)}lerp(t,e){return this.x+=(t.x-this.x)*e,this.y+=(t.y-this.y)*e,this.z+=(t.z-this.z)*e,this}lerpVectors(t,e,i){return this.x=t.x+(e.x-t.x)*i,this.y=t.y+(e.y-t.y)*i,this.z=t.z+(e.z-t.z)*i,this}cross(t){return this.crossVectors(this,t)}crossVectors(t,e){const i=t.x,s=t.y,r=t.z,n=e.x,a=e.y,o=e.z;return this.x=s*o-r*a,this.y=r*n-i*o,this.z=i*a-s*n,this}projectOnVector(t){const e=t.lengthSq();if(0===e)return this.set(0,0,0);const i=t.dot(this)/e;return this.copy(t).multiplyScalar(i)}projectOnPlane(t){return Ss.copy(this).projectOnVector(t),this.sub(Ss)}reflect(t){return this.sub(Ss.copy(t).multiplyScalar(2*this.dot(t)))}angleTo(t){const e=Math.sqrt(this.lengthSq()*t.lengthSq());if(0===e)return Math.PI/2;const i=this.dot(t)/e;return Math.acos(ms(i,-1,1))}distanceTo(t){return Math.sqrt(this.distanceToSquared(t))}distanceToSquared(t){const e=this.x-t.x,i=this.y-t.y,s=this.z-t.z;return e*e+i*i+s*s}manhattanDistanceTo(t){return Math.abs(this.x-t.x)+Math.abs(this.y-t.y)+Math.abs(this.z-t.z)}setFromSpherical(t){return this.setFromSphericalCoords(t.radius,t.phi,t.theta)}setFromSphericalCoords(t,e,i){const s=Math.sin(e)*t;return this.x=s*Math.sin(i),this.y=Math.cos(e)*t,this.z=s*Math.cos(i),this}setFromCylindrical(t){return this.setFromCylindricalCoords(t.radius,t.theta,t.y)}setFromCylindricalCoords(t,e,i){return this.x=t*Math.sin(e),this.y=i,this.z=t*Math.cos(e),this}setFromMatrixPosition(t){const e=t.elements;return this.x=e[12],this.y=e[13],this.z=e[14],this}setFromMatrixScale(t){const e=this.setFromMatrixColumn(t,0).length(),i=this.setFromMatrixColumn(t,1).length(),s=this.setFromMatrixColumn(t,2).length();return this.x=e,this.y=i,this.z=s,this}setFromMatrixColumn(t,e){return this.fromArray(t.elements,4*e)}setFromMatrix3Column(t,e){return this.fromArray(t.elements,3*e)}setFromEuler(t){return this.x=t._x,this.y=t._y,this.z=t._z,this}setFromColor(t){return this.x=t.r,this.y=t.g,this.z=t.b,this}equals(t){return t.x===this.x&&t.y===this.y&&t.z===this.z}fromArray(t,e=0){return this.x=t[e],this.y=t[e+1],this.z=t[e+2],this}toArray(t=[],e=0){return t[e]=this.x,t[e+1]=this.y,t[e+2]=this.z,t}fromBufferAttribute(t,e){return this.x=t.getX(e),this.y=t.getY(e),this.z=t.getZ(e),this}random(){return this.x=Math.random(),this.y=Math.random(),this.z=Math.random(),this}randomDirection(){const t=Math.random()*Math.PI*2,e=2*Math.random()-1,i=Math.sqrt(1-e*e);return this.x=i*Math.cos(t),this.y=e,this.z=i*Math.sin(t),this}*[Symbol.iterator](){yield this.x,yield this.y,yield this.z}}const Ss=new Ms,_s=new ws;class As{constructor(t,e,i,s,r,n,a,o,h){As.prototype.isMatrix3=!0,this.elements=[1,0,0,0,1,0,0,0,1],void 0!==t&&this.set(t,e,i,s,r,n,a,o,h)}set(t,e,i,s,r,n,a,o,h){const l=this.elements;return l[0]=t,l[1]=s,l[2]=a,l[3]=e,l[4]=r,l[5]=o,l[6]=i,l[7]=n,l[8]=h,this}identity(){return this.set(1,0,0,0,1,0,0,0,1),this}copy(t){const e=this.elements,i=t.elements;return e[0]=i[0],e[1]=i[1],e[2]=i[2],e[3]=i[3],e[4]=i[4],e[5]=i[5],e[6]=i[6],e[7]=i[7],e[8]=i[8],this}extractBasis(t,e,i){return t.setFromMatrix3Column(this,0),e.setFromMatrix3Column(this,1),i.setFromMatrix3Column(this,2),this}setFromMatrix4(t){const e=t.elements;return this.set(e[0],e[4],e[8],e[1],e[5],e[9],e[2],e[6],e[10]),this}multiply(t){return this.multiplyMatrices(this,t)}premultiply(t){return this.multiplyMatrices(t,this)}multiplyMatrices(t,e){const i=t.elements,s=e.elements,r=this.elements,n=i[0],a=i[3],o=i[6],h=i[1],l=i[4],c=i[7],u=i[2],d=i[5],p=i[8],m=s[0],y=s[3],g=s[6],f=s[1],x=s[4],b=s[7],v=s[2],w=s[5],M=s[8];return r[0]=n*m+a*f+o*v,r[3]=n*y+a*x+o*w,r[6]=n*g+a*b+o*M,r[1]=h*m+l*f+c*v,r[4]=h*y+l*x+c*w,r[7]=h*g+l*b+c*M,r[2]=u*m+d*f+p*v,r[5]=u*y+d*x+p*w,r[8]=u*g+d*b+p*M,this}multiplyScalar(t){const e=this.elements;return e[0]*=t,e[3]*=t,e[6]*=t,e[1]*=t,e[4]*=t,e[7]*=t,e[2]*=t,e[5]*=t,e[8]*=t,this}determinant(){const t=this.elements,e=t[0],i=t[1],s=t[2],r=t[3],n=t[4],a=t[5],o=t[6],h=t[7],l=t[8];return e*n*l-e*a*h-i*r*l+i*a*o+s*r*h-s*n*o}invert(){const t=this.elements,e=t[0],i=t[1],s=t[2],r=t[3],n=t[4],a=t[5],o=t[6],h=t[7],l=t[8],c=l*n-a*h,u=a*o-l*r,d=h*r-n*o,p=e*c+i*u+s*d;if(0===p)return this.set(0,0,0,0,0,0,0,0,0);const m=1/p;return t[0]=c*m,t[1]=(s*h-l*i)*m,t[2]=(a*i-s*n)*m,t[3]=u*m,t[4]=(l*e-s*o)*m,t[5]=(s*r-a*e)*m,t[6]=d*m,t[7]=(i*o-h*e)*m,t[8]=(n*e-i*r)*m,this}transpose(){let t;const e=this.elements;return t=e[1],e[1]=e[3],e[3]=t,t=e[2],e[2]=e[6],e[6]=t,t=e[5],e[5]=e[7],e[7]=t,this}getNormalMatrix(t){return this.setFromMatrix4(t).invert().transpose()}transposeIntoArray(t){const e=this.elements;return t[0]=e[0],t[1]=e[3],t[2]=e[6],t[3]=e[1],t[4]=e[4],t[5]=e[7],t[6]=e[2],t[7]=e[5],t[8]=e[8],this}setUvTransform(t,e,i,s,r,n,a){const o=Math.cos(r),h=Math.sin(r);return this.set(i*o,i*h,-i*(o*n+h*a)+n+t,-s*h,s*o,-s*(-h*n+o*a)+a+e,0,0,1),this}scale(t,e){return this.premultiply(Ts.makeScale(t,e)),this}rotate(t){return this.premultiply(Ts.makeRotation(-t)),this}translate(t,e){return this.premultiply(Ts.makeTranslation(t,e)),this}makeTranslation(t,e){return t.isVector2?this.set(1,0,t.x,0,1,t.y,0,0,1):this.set(1,0,t,0,1,e,0,0,1),this}makeRotation(t){const e=Math.cos(t),i=Math.sin(t);return this.set(e,-i,0,i,e,0,0,0,1),this}makeScale(t,e){return this.set(t,0,0,0,e,0,0,0,1),this}equals(t){const e=this.elements,i=t.elements;for(let t=0;t<9;t++)if(e[t]!==i[t])return!1;return!0}fromArray(t,e=0){for(let i=0;i<9;i++)this.elements[i]=t[i+e];return this}toArray(t=[],e=0){const i=this.elements;return t[e]=i[0],t[e+1]=i[1],t[e+2]=i[2],t[e+3]=i[3],t[e+4]=i[4],t[e+5]=i[5],t[e+6]=i[6],t[e+7]=i[7],t[e+8]=i[8],t}clone(){return(new this.constructor).fromArray(this.elements)}}const Ts=new As,zs=(new As).set(.4123908,.3575843,.1804808,.212639,.7151687,.0721923,.0193308,.1191948,.9505322),Cs=(new As).set(3.2409699,-1.5373832,-.4986108,-.9692436,1.8759675,.0415551,.0556301,-.203977,1.0569715);function Is(){const t={enabled:!0,workingColorSpace:ei,spaces:{},convert:function(t,e,i){return!1!==this.enabled&&e!==i&&e&&i?(this.spaces[e].transfer===si&&(t.r=ks(t.r),t.g=ks(t.g),t.b=ks(t.b)),this.spaces[e].primaries!==this.spaces[i].primaries&&(t.applyMatrix3(this.spaces[e].toXYZ),t.applyMatrix3(this.spaces[i].fromXYZ)),this.spaces[i].transfer===si&&(t.r=Os(t.r),t.g=Os(t.g),t.b=Os(t.b)),t):t},workingToColorSpace:function(t,e){return this.convert(t,this.workingColorSpace,e)},colorSpaceToWorking:function(t,e){return this.convert(t,e,this.workingColorSpace)},getPrimaries:function(t){return this.spaces[t].primaries},getTransfer:function(t){return""===t?ii:this.spaces[t].transfer},getToneMappingMode:function(t){return this.spaces[t].outputColorSpaceConfig.toneMappingMode||"standard"},getLuminanceCoefficients:function(t,e=this.workingColorSpace){return t.fromArray(this.spaces[e].luminanceCoefficients)},define:function(t){Object.assign(this.spaces,t)},_getMatrix:function(t,e,i){return t.copy(this.spaces[e].toXYZ).multiply(this.spaces[i].fromXYZ)},_getDrawingBufferColorSpace:function(t){return this.spaces[t].outputColorSpaceConfig.drawingBufferColorSpace},_getUnpackColorSpace:function(t=this.workingColorSpace){return this.spaces[t].workingColorSpaceConfig.unpackColorSpace},fromWorkingColorSpace:function(e,i){return as("ColorManagement: .fromWorkingColorSpace() has been renamed to .workingToColorSpace()."),t.workingToColorSpace(e,i)},toWorkingColorSpace:function(e,i){return as("ColorManagement: .toWorkingColorSpace() has been renamed to .colorSpaceToWorking()."),t.colorSpaceToWorking(e,i)}},e=[.64,.33,.3,.6,.15,.06],i=[.2126,.7152,.0722],s=[.3127,.329];return t.define({[ei]:{primaries:e,whitePoint:s,transfer:ii,toXYZ:zs,fromXYZ:Cs,luminanceCoefficients:i,workingColorSpaceConfig:{unpackColorSpace:ti},outputColorSpaceConfig:{drawingBufferColorSpace:ti}},[ti]:{primaries:e,whitePoint:s,transfer:si,toXYZ:zs,fromXYZ:Cs,luminanceCoefficients:i,outputColorSpaceConfig:{drawingBufferColorSpace:ti}}}),t}const Bs=Is();function ks(t){return t<.04045?.0773993808*t:Math.pow(.9478672986*t+.0521327014,2.4)}function Os(t){return t<.0031308?12.92*t:1.055*Math.pow(t,.41666)-.055}let Ps;class Rs{static getDataURL(t,e="image/png"){if(/^data:/i.test(t.src))return t.src;if("undefined"==typeof HTMLCanvasElement)return t.src;let i;if(t instanceof HTMLCanvasElement)i=t;else{void 0===Ps&&(Ps=$i("canvas")),Ps.width=t.width,Ps.height=t.height;const e=Ps.getContext("2d");t instanceof ImageData?e.putImageData(t,0,0):e.drawImage(t,0,0,t.width,t.height),i=Ps}return i.toDataURL(e)}static sRGBToLinear(t){if("undefined"!=typeof HTMLImageElement&&t instanceof HTMLImageElement||"undefined"!=typeof HTMLCanvasElement&&t instanceof HTMLCanvasElement||"undefined"!=typeof ImageBitmap&&t instanceof ImageBitmap){const e=$i("canvas");e.width=t.width,e.height=t.height;const i=e.getContext("2d");i.drawImage(t,0,0,t.width,t.height);const s=i.getImageData(0,0,t.width,t.height),r=s.data;for(let t=0;t1),this.pmremVersion=0}get width(){return this.source.getSize(Es).x}get height(){return this.source.getSize(Es).y}get depth(){return this.source.getSize(Es).z}get image(){return this.source.data}set image(t=null){this.source.data=t}updateMatrix(){this.matrix.setUvTransform(this.offset.x,this.offset.y,this.repeat.x,this.repeat.y,this.rotation,this.center.x,this.center.y)}addUpdateRange(t,e){this.updateRanges.push({start:t,count:e})}clearUpdateRanges(){this.updateRanges.length=0}clone(){return(new this.constructor).copy(this)}copy(t){return this.name=t.name,this.source=t.source,this.mipmaps=t.mipmaps.slice(0),this.mapping=t.mapping,this.channel=t.channel,this.wrapS=t.wrapS,this.wrapT=t.wrapT,this.magFilter=t.magFilter,this.minFilter=t.minFilter,this.anisotropy=t.anisotropy,this.format=t.format,this.internalFormat=t.internalFormat,this.type=t.type,this.offset.copy(t.offset),this.repeat.copy(t.repeat),this.center.copy(t.center),this.rotation=t.rotation,this.matrixAutoUpdate=t.matrixAutoUpdate,this.matrix.copy(t.matrix),this.generateMipmaps=t.generateMipmaps,this.premultiplyAlpha=t.premultiplyAlpha,this.flipY=t.flipY,this.unpackAlignment=t.unpackAlignment,this.colorSpace=t.colorSpace,this.renderTarget=t.renderTarget,this.isRenderTargetTexture=t.isRenderTargetTexture,this.isArrayTexture=t.isArrayTexture,this.userData=JSON.parse(JSON.stringify(t.userData)),this.needsUpdate=!0,this}setValues(t){for(const e in t){const i=t[e];if(void 0===i){rs(`Texture.setValues(): parameter '${e}' has value of undefined.`);continue}const s=this[e];void 0!==s?s&&i&&s.isVector2&&i.isVector2||s&&i&&s.isVector3&&i.isVector3||s&&i&&s.isMatrix3&&i.isMatrix3?s.copy(i):this[e]=i:rs(`Texture.setValues(): property '${e}' does not exist.`)}}toJSON(t){const e=void 0===t||"string"==typeof t;if(!e&&void 0!==t.textures[this.uuid])return t.textures[this.uuid];const i={metadata:{version:4.7,type:"Texture",generator:"Texture.toJSON"},uuid:this.uuid,name:this.name,image:this.source.toJSON(t).uuid,mapping:this.mapping,channel:this.channel,repeat:[this.repeat.x,this.repeat.y],offset:[this.offset.x,this.offset.y],center:[this.center.x,this.center.y],rotation:this.rotation,wrap:[this.wrapS,this.wrapT],format:this.format,internalFormat:this.internalFormat,type:this.type,colorSpace:this.colorSpace,minFilter:this.minFilter,magFilter:this.magFilter,anisotropy:this.anisotropy,flipY:this.flipY,generateMipmaps:this.generateMipmaps,premultiplyAlpha:this.premultiplyAlpha,unpackAlignment:this.unpackAlignment};return Object.keys(this.userData).length>0&&(i.userData=this.userData),e||(t.textures[this.uuid]=i),i}dispose(){this.dispatchEvent({type:"dispose"})}transformUv(t){if(this.mapping!==ot)return t;if(t.applyMatrix3(this.matrix),t.x<0||t.x>1)switch(this.wrapS){case pt:t.x=t.x-Math.floor(t.x);break;case mt:t.x=t.x<0?0:1;break;case yt:1===Math.abs(Math.floor(t.x)%2)?t.x=Math.ceil(t.x)-t.x:t.x=t.x-Math.floor(t.x)}if(t.y<0||t.y>1)switch(this.wrapT){case pt:t.y=t.y-Math.floor(t.y);break;case mt:t.y=t.y<0?0:1;break;case yt:1===Math.abs(Math.floor(t.y)%2)?t.y=Math.ceil(t.y)-t.y:t.y=t.y-Math.floor(t.y)}return this.flipY&&(t.y=1-t.y),t}set needsUpdate(t){!0===t&&(this.version++,this.source.needsUpdate=!0)}set needsPMREMUpdate(t){!0===t&&this.pmremVersion++}}js.DEFAULT_IMAGE=null,js.DEFAULT_MAPPING=ot,js.DEFAULT_ANISOTROPY=1;class Ds{constructor(t=0,e=0,i=0,s=1){Ds.prototype.isVector4=!0,this.x=t,this.y=e,this.z=i,this.w=s}get width(){return this.z}set width(t){this.z=t}get height(){return this.w}set height(t){this.w=t}set(t,e,i,s){return this.x=t,this.y=e,this.z=i,this.w=s,this}setScalar(t){return this.x=t,this.y=t,this.z=t,this.w=t,this}setX(t){return this.x=t,this}setY(t){return this.y=t,this}setZ(t){return this.z=t,this}setW(t){return this.w=t,this}setComponent(t,e){switch(t){case 0:this.x=e;break;case 1:this.y=e;break;case 2:this.z=e;break;case 3:this.w=e;break;default:throw new Error("index is out of range: "+t)}return this}getComponent(t){switch(t){case 0:return this.x;case 1:return this.y;case 2:return this.z;case 3:return this.w;default:throw new Error("index is out of range: "+t)}}clone(){return new this.constructor(this.x,this.y,this.z,this.w)}copy(t){return this.x=t.x,this.y=t.y,this.z=t.z,this.w=void 0!==t.w?t.w:1,this}add(t){return this.x+=t.x,this.y+=t.y,this.z+=t.z,this.w+=t.w,this}addScalar(t){return this.x+=t,this.y+=t,this.z+=t,this.w+=t,this}addVectors(t,e){return this.x=t.x+e.x,this.y=t.y+e.y,this.z=t.z+e.z,this.w=t.w+e.w,this}addScaledVector(t,e){return this.x+=t.x*e,this.y+=t.y*e,this.z+=t.z*e,this.w+=t.w*e,this}sub(t){return this.x-=t.x,this.y-=t.y,this.z-=t.z,this.w-=t.w,this}subScalar(t){return this.x-=t,this.y-=t,this.z-=t,this.w-=t,this}subVectors(t,e){return this.x=t.x-e.x,this.y=t.y-e.y,this.z=t.z-e.z,this.w=t.w-e.w,this}multiply(t){return this.x*=t.x,this.y*=t.y,this.z*=t.z,this.w*=t.w,this}multiplyScalar(t){return this.x*=t,this.y*=t,this.z*=t,this.w*=t,this}applyMatrix4(t){const e=this.x,i=this.y,s=this.z,r=this.w,n=t.elements;return this.x=n[0]*e+n[4]*i+n[8]*s+n[12]*r,this.y=n[1]*e+n[5]*i+n[9]*s+n[13]*r,this.z=n[2]*e+n[6]*i+n[10]*s+n[14]*r,this.w=n[3]*e+n[7]*i+n[11]*s+n[15]*r,this}divide(t){return this.x/=t.x,this.y/=t.y,this.z/=t.z,this.w/=t.w,this}divideScalar(t){return this.multiplyScalar(1/t)}setAxisAngleFromQuaternion(t){this.w=2*Math.acos(t.w);const e=Math.sqrt(1-t.w*t.w);return e<1e-4?(this.x=1,this.y=0,this.z=0):(this.x=t.x/e,this.y=t.y/e,this.z=t.z/e),this}setAxisAngleFromRotationMatrix(t){let e,i,s,r;const n=.01,a=.1,o=t.elements,h=o[0],l=o[4],c=o[8],u=o[1],d=o[5],p=o[9],m=o[2],y=o[6],g=o[10];if(Math.abs(l-u)o&&t>f?tf?o1);this.dispose()}this.viewport.set(0,0,t,e),this.scissor.set(0,0,t,e)}clone(){return(new this.constructor).copy(this)}copy(t){this.width=t.width,this.height=t.height,this.depth=t.depth,this.scissor.copy(t.scissor),this.scissorTest=t.scissorTest,this.viewport.copy(t.viewport),this.textures.length=0;for(let e=0,i=t.textures.length;e=this.min.x&&t.x<=this.max.x&&t.y>=this.min.y&&t.y<=this.max.y&&t.z>=this.min.z&&t.z<=this.max.z}containsBox(t){return this.min.x<=t.min.x&&t.max.x<=this.max.x&&this.min.y<=t.min.y&&t.max.y<=this.max.y&&this.min.z<=t.min.z&&t.max.z<=this.max.z}getParameter(t,e){return e.set((t.x-this.min.x)/(this.max.x-this.min.x),(t.y-this.min.y)/(this.max.y-this.min.y),(t.z-this.min.z)/(this.max.z-this.min.z))}intersectsBox(t){return t.max.x>=this.min.x&&t.min.x<=this.max.x&&t.max.y>=this.min.y&&t.min.y<=this.max.y&&t.max.z>=this.min.z&&t.min.z<=this.max.z}intersectsSphere(t){return this.clampPoint(t.center,Gs),Gs.distanceToSquared(t.center)<=t.radius*t.radius}intersectsPlane(t){let e,i;return t.normal.x>0?(e=t.normal.x*this.min.x,i=t.normal.x*this.max.x):(e=t.normal.x*this.max.x,i=t.normal.x*this.min.x),t.normal.y>0?(e+=t.normal.y*this.min.y,i+=t.normal.y*this.max.y):(e+=t.normal.y*this.max.y,i+=t.normal.y*this.min.y),t.normal.z>0?(e+=t.normal.z*this.min.z,i+=t.normal.z*this.max.z):(e+=t.normal.z*this.max.z,i+=t.normal.z*this.min.z),e<=-t.constant&&i>=-t.constant}intersectsTriangle(t){if(this.isEmpty())return!1;this.getCenter(rr),nr.subVectors(this.max,rr),Qs.subVectors(t.a,rr),Ks.subVectors(t.b,rr),tr.subVectors(t.c,rr),er.subVectors(Ks,Qs),ir.subVectors(tr,Ks),sr.subVectors(Qs,tr);let e=[0,-er.z,er.y,0,-ir.z,ir.y,0,-sr.z,sr.y,er.z,0,-er.x,ir.z,0,-ir.x,sr.z,0,-sr.x,-er.y,er.x,0,-ir.y,ir.x,0,-sr.y,sr.x,0];return!!hr(e,Qs,Ks,tr,nr)&&(e=[1,0,0,0,1,0,0,0,1],!!hr(e,Qs,Ks,tr,nr)&&(ar.crossVectors(er,ir),e=[ar.x,ar.y,ar.z],hr(e,Qs,Ks,tr,nr)))}clampPoint(t,e){return e.copy(t).clamp(this.min,this.max)}distanceToPoint(t){return this.clampPoint(t,Gs).distanceTo(t)}getBoundingSphere(t){return this.isEmpty()?t.makeEmpty():(this.getCenter(t.center),t.radius=.5*this.getSize(Gs).length()),t}intersect(t){return this.min.max(t.min),this.max.min(t.max),this.isEmpty()&&this.makeEmpty(),this}union(t){return this.min.min(t.min),this.max.max(t.max),this}applyMatrix4(t){return this.isEmpty()||(Hs[0].set(this.min.x,this.min.y,this.min.z).applyMatrix4(t),Hs[1].set(this.min.x,this.min.y,this.max.z).applyMatrix4(t),Hs[2].set(this.min.x,this.max.y,this.min.z).applyMatrix4(t),Hs[3].set(this.min.x,this.max.y,this.max.z).applyMatrix4(t),Hs[4].set(this.max.x,this.min.y,this.min.z).applyMatrix4(t),Hs[5].set(this.max.x,this.min.y,this.max.z).applyMatrix4(t),Hs[6].set(this.max.x,this.max.y,this.min.z).applyMatrix4(t),Hs[7].set(this.max.x,this.max.y,this.max.z).applyMatrix4(t),this.setFromPoints(Hs)),this}translate(t){return this.min.add(t),this.max.add(t),this}equals(t){return t.min.equals(this.min)&&t.max.equals(this.max)}toJSON(){return{min:this.min.toArray(),max:this.max.toArray()}}fromJSON(t){return this.min.fromArray(t.min),this.max.fromArray(t.max),this}}const Hs=[new Ms,new Ms,new Ms,new Ms,new Ms,new Ms,new Ms,new Ms],Gs=new Ms,$s=new Zs,Qs=new Ms,Ks=new Ms,tr=new Ms,er=new Ms,ir=new Ms,sr=new Ms,rr=new Ms,nr=new Ms,ar=new Ms,or=new Ms;function hr(t,e,i,s,r){for(let n=0,a=t.length-3;n<=a;n+=3){or.fromArray(t,n);const a=r.x*Math.abs(or.x)+r.y*Math.abs(or.y)+r.z*Math.abs(or.z),o=e.dot(or),h=i.dot(or),l=s.dot(or);if(Math.max(-Math.max(o,h,l),Math.min(o,h,l))>a)return!1}return!0}const lr=new Zs,cr=new Ms,ur=new Ms;class dr{constructor(t=new Ms,e=-1){this.isSphere=!0,this.center=t,this.radius=e}set(t,e){return this.center.copy(t),this.radius=e,this}setFromPoints(t,e){const i=this.center;void 0!==e?i.copy(e):lr.setFromPoints(t).getCenter(i);let s=0;for(let e=0,r=t.length;ethis.radius*this.radius&&(e.sub(this.center).normalize(),e.multiplyScalar(this.radius).add(this.center)),e}getBoundingBox(t){return this.isEmpty()?(t.makeEmpty(),t):(t.set(this.center,this.center),t.expandByScalar(this.radius),t)}applyMatrix4(t){return this.center.applyMatrix4(t),this.radius=this.radius*t.getMaxScaleOnAxis(),this}translate(t){return this.center.add(t),this}expandByPoint(t){if(this.isEmpty())return this.center.copy(t),this.radius=0,this;cr.subVectors(t,this.center);const e=cr.lengthSq();if(e>this.radius*this.radius){const t=Math.sqrt(e),i=.5*(t-this.radius);this.center.addScaledVector(cr,i/t),this.radius+=i}return this}union(t){return t.isEmpty()?this:this.isEmpty()?(this.copy(t),this):(!0===this.center.equals(t.center)?this.radius=Math.max(this.radius,t.radius):(ur.subVectors(t.center,this.center).setLength(t.radius),this.expandByPoint(cr.copy(t.center).add(ur)),this.expandByPoint(cr.copy(t.center).sub(ur))),this)}equals(t){return t.center.equals(this.center)&&t.radius===this.radius}clone(){return(new this.constructor).copy(this)}toJSON(){return{radius:this.radius,center:this.center.toArray()}}fromJSON(t){return this.radius=t.radius,this.center.fromArray(t.center),this}}const pr=new Ms,mr=new Ms,yr=new Ms,gr=new Ms,fr=new Ms,xr=new Ms,br=new Ms;class vr{constructor(t=new Ms,e=new Ms(0,0,-1)){this.origin=t,this.direction=e}set(t,e){return this.origin.copy(t),this.direction.copy(e),this}copy(t){return this.origin.copy(t.origin),this.direction.copy(t.direction),this}at(t,e){return e.copy(this.origin).addScaledVector(this.direction,t)}lookAt(t){return this.direction.copy(t).sub(this.origin).normalize(),this}recast(t){return this.origin.copy(this.at(t,pr)),this}closestPointToPoint(t,e){e.subVectors(t,this.origin);const i=e.dot(this.direction);return i<0?e.copy(this.origin):e.copy(this.origin).addScaledVector(this.direction,i)}distanceToPoint(t){return Math.sqrt(this.distanceSqToPoint(t))}distanceSqToPoint(t){const e=pr.subVectors(t,this.origin).dot(this.direction);return e<0?this.origin.distanceToSquared(t):(pr.copy(this.origin).addScaledVector(this.direction,e),pr.distanceToSquared(t))}distanceSqToSegment(t,e,i,s){mr.copy(t).add(e).multiplyScalar(.5),yr.copy(e).sub(t).normalize(),gr.copy(this.origin).sub(mr);const r=.5*t.distanceTo(e),n=-this.direction.dot(yr),a=gr.dot(this.direction),o=-gr.dot(yr),h=gr.lengthSq(),l=Math.abs(1-n*n);let c,u,d,p;if(l>0)if(c=n*o-a,u=n*a-o,p=r*l,c>=0)if(u>=-p)if(u<=p){const t=1/l;c*=t,u*=t,d=c*(c+n*u+2*a)+u*(n*c+u+2*o)+h}else u=r,c=Math.max(0,-(n*u+a)),d=-c*c+u*(u+2*o)+h;else u=-r,c=Math.max(0,-(n*u+a)),d=-c*c+u*(u+2*o)+h;else u<=-p?(c=Math.max(0,-(-n*r+a)),u=c>0?-r:Math.min(Math.max(-r,-o),r),d=-c*c+u*(u+2*o)+h):u<=p?(c=0,u=Math.min(Math.max(-r,-o),r),d=u*(u+2*o)+h):(c=Math.max(0,-(n*r+a)),u=c>0?r:Math.min(Math.max(-r,-o),r),d=-c*c+u*(u+2*o)+h);else u=n>0?-r:r,c=Math.max(0,-(n*u+a)),d=-c*c+u*(u+2*o)+h;return i&&i.copy(this.origin).addScaledVector(this.direction,c),s&&s.copy(mr).addScaledVector(yr,u),d}intersectSphere(t,e){pr.subVectors(t.center,this.origin);const i=pr.dot(this.direction),s=pr.dot(pr)-i*i,r=t.radius*t.radius;if(s>r)return null;const n=Math.sqrt(r-s),a=i-n,o=i+n;return o<0?null:a<0?this.at(o,e):this.at(a,e)}intersectsSphere(t){return!(t.radius<0)&&this.distanceSqToPoint(t.center)<=t.radius*t.radius}distanceToPlane(t){const e=t.normal.dot(this.direction);if(0===e)return 0===t.distanceToPoint(this.origin)?0:null;const i=-(this.origin.dot(t.normal)+t.constant)/e;return i>=0?i:null}intersectPlane(t,e){const i=this.distanceToPlane(t);return null===i?null:this.at(i,e)}intersectsPlane(t){const e=t.distanceToPoint(this.origin);if(0===e)return!0;return t.normal.dot(this.direction)*e<0}intersectBox(t,e){let i,s,r,n,a,o;const h=1/this.direction.x,l=1/this.direction.y,c=1/this.direction.z,u=this.origin;return h>=0?(i=(t.min.x-u.x)*h,s=(t.max.x-u.x)*h):(i=(t.max.x-u.x)*h,s=(t.min.x-u.x)*h),l>=0?(r=(t.min.y-u.y)*l,n=(t.max.y-u.y)*l):(r=(t.max.y-u.y)*l,n=(t.min.y-u.y)*l),i>n||r>s?null:((r>i||isNaN(i))&&(i=r),(n=0?(a=(t.min.z-u.z)*c,o=(t.max.z-u.z)*c):(a=(t.max.z-u.z)*c,o=(t.min.z-u.z)*c),i>o||a>s?null:((a>i||i!=i)&&(i=a),(o=0?i:s,e)))}intersectsBox(t){return null!==this.intersectBox(t,pr)}intersectTriangle(t,e,i,s,r){fr.subVectors(e,t),xr.subVectors(i,t),br.crossVectors(fr,xr);let n,a=this.direction.dot(br);if(a>0){if(s)return null;n=1}else{if(!(a<0))return null;n=-1,a=-a}gr.subVectors(this.origin,t);const o=n*this.direction.dot(xr.crossVectors(gr,xr));if(o<0)return null;const h=n*this.direction.dot(fr.cross(gr));if(h<0)return null;if(o+h>a)return null;const l=-n*gr.dot(br);return l<0?null:this.at(l/a,r)}applyMatrix4(t){return this.origin.applyMatrix4(t),this.direction.transformDirection(t),this}equals(t){return t.origin.equals(this.origin)&&t.direction.equals(this.direction)}clone(){return(new this.constructor).copy(this)}}class wr{constructor(t,e,i,s,r,n,a,o,h,l,c,u,d,p,m,y){wr.prototype.isMatrix4=!0,this.elements=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],void 0!==t&&this.set(t,e,i,s,r,n,a,o,h,l,c,u,d,p,m,y)}set(t,e,i,s,r,n,a,o,h,l,c,u,d,p,m,y){const g=this.elements;return g[0]=t,g[4]=e,g[8]=i,g[12]=s,g[1]=r,g[5]=n,g[9]=a,g[13]=o,g[2]=h,g[6]=l,g[10]=c,g[14]=u,g[3]=d,g[7]=p,g[11]=m,g[15]=y,this}identity(){return this.set(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1),this}clone(){return(new wr).fromArray(this.elements)}copy(t){const e=this.elements,i=t.elements;return e[0]=i[0],e[1]=i[1],e[2]=i[2],e[3]=i[3],e[4]=i[4],e[5]=i[5],e[6]=i[6],e[7]=i[7],e[8]=i[8],e[9]=i[9],e[10]=i[10],e[11]=i[11],e[12]=i[12],e[13]=i[13],e[14]=i[14],e[15]=i[15],this}copyPosition(t){const e=this.elements,i=t.elements;return e[12]=i[12],e[13]=i[13],e[14]=i[14],this}setFromMatrix3(t){const e=t.elements;return this.set(e[0],e[3],e[6],0,e[1],e[4],e[7],0,e[2],e[5],e[8],0,0,0,0,1),this}extractBasis(t,e,i){return t.setFromMatrixColumn(this,0),e.setFromMatrixColumn(this,1),i.setFromMatrixColumn(this,2),this}makeBasis(t,e,i){return this.set(t.x,e.x,i.x,0,t.y,e.y,i.y,0,t.z,e.z,i.z,0,0,0,0,1),this}extractRotation(t){const e=this.elements,i=t.elements,s=1/Mr.setFromMatrixColumn(t,0).length(),r=1/Mr.setFromMatrixColumn(t,1).length(),n=1/Mr.setFromMatrixColumn(t,2).length();return e[0]=i[0]*s,e[1]=i[1]*s,e[2]=i[2]*s,e[3]=0,e[4]=i[4]*r,e[5]=i[5]*r,e[6]=i[6]*r,e[7]=0,e[8]=i[8]*n,e[9]=i[9]*n,e[10]=i[10]*n,e[11]=0,e[12]=0,e[13]=0,e[14]=0,e[15]=1,this}makeRotationFromEuler(t){const e=this.elements,i=t.x,s=t.y,r=t.z,n=Math.cos(i),a=Math.sin(i),o=Math.cos(s),h=Math.sin(s),l=Math.cos(r),c=Math.sin(r);if("XYZ"===t.order){const t=n*l,i=n*c,s=a*l,r=a*c;e[0]=o*l,e[4]=-o*c,e[8]=h,e[1]=i+s*h,e[5]=t-r*h,e[9]=-a*o,e[2]=r-t*h,e[6]=s+i*h,e[10]=n*o}else if("YXZ"===t.order){const t=o*l,i=o*c,s=h*l,r=h*c;e[0]=t+r*a,e[4]=s*a-i,e[8]=n*h,e[1]=n*c,e[5]=n*l,e[9]=-a,e[2]=i*a-s,e[6]=r+t*a,e[10]=n*o}else if("ZXY"===t.order){const t=o*l,i=o*c,s=h*l,r=h*c;e[0]=t-r*a,e[4]=-n*c,e[8]=s+i*a,e[1]=i+s*a,e[5]=n*l,e[9]=r-t*a,e[2]=-n*h,e[6]=a,e[10]=n*o}else if("ZYX"===t.order){const t=n*l,i=n*c,s=a*l,r=a*c;e[0]=o*l,e[4]=s*h-i,e[8]=t*h+r,e[1]=o*c,e[5]=r*h+t,e[9]=i*h-s,e[2]=-h,e[6]=a*o,e[10]=n*o}else if("YZX"===t.order){const t=n*o,i=n*h,s=a*o,r=a*h;e[0]=o*l,e[4]=r-t*c,e[8]=s*c+i,e[1]=c,e[5]=n*l,e[9]=-a*l,e[2]=-h*l,e[6]=i*c+s,e[10]=t-r*c}else if("XZY"===t.order){const t=n*o,i=n*h,s=a*o,r=a*h;e[0]=o*l,e[4]=-c,e[8]=h*l,e[1]=t*c+r,e[5]=n*l,e[9]=i*c-s,e[2]=s*c-i,e[6]=a*l,e[10]=r*c+t}return e[3]=0,e[7]=0,e[11]=0,e[12]=0,e[13]=0,e[14]=0,e[15]=1,this}makeRotationFromQuaternion(t){return this.compose(_r,t,Ar)}lookAt(t,e,i){const s=this.elements;return Cr.subVectors(t,e),0===Cr.lengthSq()&&(Cr.z=1),Cr.normalize(),Tr.crossVectors(i,Cr),0===Tr.lengthSq()&&(1===Math.abs(i.z)?Cr.x+=1e-4:Cr.z+=1e-4,Cr.normalize(),Tr.crossVectors(i,Cr)),Tr.normalize(),zr.crossVectors(Cr,Tr),s[0]=Tr.x,s[4]=zr.x,s[8]=Cr.x,s[1]=Tr.y,s[5]=zr.y,s[9]=Cr.y,s[2]=Tr.z,s[6]=zr.z,s[10]=Cr.z,this}multiply(t){return this.multiplyMatrices(this,t)}premultiply(t){return this.multiplyMatrices(t,this)}multiplyMatrices(t,e){const i=t.elements,s=e.elements,r=this.elements,n=i[0],a=i[4],o=i[8],h=i[12],l=i[1],c=i[5],u=i[9],d=i[13],p=i[2],m=i[6],y=i[10],g=i[14],f=i[3],x=i[7],b=i[11],v=i[15],w=s[0],M=s[4],S=s[8],_=s[12],A=s[1],T=s[5],z=s[9],C=s[13],I=s[2],B=s[6],k=s[10],O=s[14],P=s[3],R=s[7],N=s[11],V=s[15];return r[0]=n*w+a*A+o*I+h*P,r[4]=n*M+a*T+o*B+h*R,r[8]=n*S+a*z+o*k+h*N,r[12]=n*_+a*C+o*O+h*V,r[1]=l*w+c*A+u*I+d*P,r[5]=l*M+c*T+u*B+d*R,r[9]=l*S+c*z+u*k+d*N,r[13]=l*_+c*C+u*O+d*V,r[2]=p*w+m*A+y*I+g*P,r[6]=p*M+m*T+y*B+g*R,r[10]=p*S+m*z+y*k+g*N,r[14]=p*_+m*C+y*O+g*V,r[3]=f*w+x*A+b*I+v*P,r[7]=f*M+x*T+b*B+v*R,r[11]=f*S+x*z+b*k+v*N,r[15]=f*_+x*C+b*O+v*V,this}multiplyScalar(t){const e=this.elements;return e[0]*=t,e[4]*=t,e[8]*=t,e[12]*=t,e[1]*=t,e[5]*=t,e[9]*=t,e[13]*=t,e[2]*=t,e[6]*=t,e[10]*=t,e[14]*=t,e[3]*=t,e[7]*=t,e[11]*=t,e[15]*=t,this}determinant(){const t=this.elements,e=t[0],i=t[4],s=t[8],r=t[12],n=t[1],a=t[5],o=t[9],h=t[13],l=t[2],c=t[6],u=t[10],d=t[14],p=t[3],m=t[7],y=t[11],g=t[15],f=o*d-h*u,x=a*d-h*c,b=a*u-o*c,v=n*d-h*l,w=n*u-o*l,M=n*c-a*l;return e*(m*f-y*x+g*b)-i*(p*f-y*v+g*w)+s*(p*x-m*v+g*M)-r*(p*b-m*w+y*M)}transpose(){const t=this.elements;let e;return e=t[1],t[1]=t[4],t[4]=e,e=t[2],t[2]=t[8],t[8]=e,e=t[6],t[6]=t[9],t[9]=e,e=t[3],t[3]=t[12],t[12]=e,e=t[7],t[7]=t[13],t[13]=e,e=t[11],t[11]=t[14],t[14]=e,this}setPosition(t,e,i){const s=this.elements;return t.isVector3?(s[12]=t.x,s[13]=t.y,s[14]=t.z):(s[12]=t,s[13]=e,s[14]=i),this}invert(){const t=this.elements,e=t[0],i=t[1],s=t[2],r=t[3],n=t[4],a=t[5],o=t[6],h=t[7],l=t[8],c=t[9],u=t[10],d=t[11],p=t[12],m=t[13],y=t[14],g=t[15],f=c*y*h-m*u*h+m*o*d-a*y*d-c*o*g+a*u*g,x=p*u*h-l*y*h-p*o*d+n*y*d+l*o*g-n*u*g,b=l*m*h-p*c*h+p*a*d-n*m*d-l*a*g+n*c*g,v=p*c*o-l*m*o-p*a*u+n*m*u+l*a*y-n*c*y,w=e*f+i*x+s*b+r*v;if(0===w)return this.set(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);const M=1/w;return t[0]=f*M,t[1]=(m*u*r-c*y*r-m*s*d+i*y*d+c*s*g-i*u*g)*M,t[2]=(a*y*r-m*o*r+m*s*h-i*y*h-a*s*g+i*o*g)*M,t[3]=(c*o*r-a*u*r-c*s*h+i*u*h+a*s*d-i*o*d)*M,t[4]=x*M,t[5]=(l*y*r-p*u*r+p*s*d-e*y*d-l*s*g+e*u*g)*M,t[6]=(p*o*r-n*y*r-p*s*h+e*y*h+n*s*g-e*o*g)*M,t[7]=(n*u*r-l*o*r+l*s*h-e*u*h-n*s*d+e*o*d)*M,t[8]=b*M,t[9]=(p*c*r-l*m*r-p*i*d+e*m*d+l*i*g-e*c*g)*M,t[10]=(n*m*r-p*a*r+p*i*h-e*m*h-n*i*g+e*a*g)*M,t[11]=(l*a*r-n*c*r-l*i*h+e*c*h+n*i*d-e*a*d)*M,t[12]=v*M,t[13]=(l*m*s-p*c*s+p*i*u-e*m*u-l*i*y+e*c*y)*M,t[14]=(p*a*s-n*m*s-p*i*o+e*m*o+n*i*y-e*a*y)*M,t[15]=(n*c*s-l*a*s+l*i*o-e*c*o-n*i*u+e*a*u)*M,this}scale(t){const e=this.elements,i=t.x,s=t.y,r=t.z;return e[0]*=i,e[4]*=s,e[8]*=r,e[1]*=i,e[5]*=s,e[9]*=r,e[2]*=i,e[6]*=s,e[10]*=r,e[3]*=i,e[7]*=s,e[11]*=r,this}getMaxScaleOnAxis(){const t=this.elements,e=t[0]*t[0]+t[1]*t[1]+t[2]*t[2],i=t[4]*t[4]+t[5]*t[5]+t[6]*t[6],s=t[8]*t[8]+t[9]*t[9]+t[10]*t[10];return Math.sqrt(Math.max(e,i,s))}makeTranslation(t,e,i){return t.isVector3?this.set(1,0,0,t.x,0,1,0,t.y,0,0,1,t.z,0,0,0,1):this.set(1,0,0,t,0,1,0,e,0,0,1,i,0,0,0,1),this}makeRotationX(t){const e=Math.cos(t),i=Math.sin(t);return this.set(1,0,0,0,0,e,-i,0,0,i,e,0,0,0,0,1),this}makeRotationY(t){const e=Math.cos(t),i=Math.sin(t);return this.set(e,0,i,0,0,1,0,0,-i,0,e,0,0,0,0,1),this}makeRotationZ(t){const e=Math.cos(t),i=Math.sin(t);return this.set(e,-i,0,0,i,e,0,0,0,0,1,0,0,0,0,1),this}makeRotationAxis(t,e){const i=Math.cos(e),s=Math.sin(e),r=1-i,n=t.x,a=t.y,o=t.z,h=r*n,l=r*a;return this.set(h*n+i,h*a-s*o,h*o+s*a,0,h*a+s*o,l*a+i,l*o-s*n,0,h*o-s*a,l*o+s*n,r*o*o+i,0,0,0,0,1),this}makeScale(t,e,i){return this.set(t,0,0,0,0,e,0,0,0,0,i,0,0,0,0,1),this}makeShear(t,e,i,s,r,n){return this.set(1,i,r,0,t,1,n,0,e,s,1,0,0,0,0,1),this}compose(t,e,i){const s=this.elements,r=e._x,n=e._y,a=e._z,o=e._w,h=r+r,l=n+n,c=a+a,u=r*h,d=r*l,p=r*c,m=n*l,y=n*c,g=a*c,f=o*h,x=o*l,b=o*c,v=i.x,w=i.y,M=i.z;return s[0]=(1-(m+g))*v,s[1]=(d+b)*v,s[2]=(p-x)*v,s[3]=0,s[4]=(d-b)*w,s[5]=(1-(u+g))*w,s[6]=(y+f)*w,s[7]=0,s[8]=(p+x)*M,s[9]=(y-f)*M,s[10]=(1-(u+m))*M,s[11]=0,s[12]=t.x,s[13]=t.y,s[14]=t.z,s[15]=1,this}decompose(t,e,i){const s=this.elements;let r=Mr.set(s[0],s[1],s[2]).length();const n=Mr.set(s[4],s[5],s[6]).length(),a=Mr.set(s[8],s[9],s[10]).length();this.determinant()<0&&(r=-r),t.x=s[12],t.y=s[13],t.z=s[14],Sr.copy(this);const o=1/r,h=1/n,l=1/a;return Sr.elements[0]*=o,Sr.elements[1]*=o,Sr.elements[2]*=o,Sr.elements[4]*=h,Sr.elements[5]*=h,Sr.elements[6]*=h,Sr.elements[8]*=l,Sr.elements[9]*=l,Sr.elements[10]*=l,e.setFromRotationMatrix(Sr),i.x=r,i.y=n,i.z=a,this}makePerspective(t,e,i,s,r,n,a=2e3,o=!1){const h=this.elements,l=2*r/(e-t),c=2*r/(i-s),u=(e+t)/(e-t),d=(i+s)/(i-s);let p,m;if(o)p=r/(n-r),m=n*r/(n-r);else if(a===Wi)p=-(n+r)/(n-r),m=-2*n*r/(n-r);else{if(a!==Ui)throw new Error("THREE.Matrix4.makePerspective(): Invalid coordinate system: "+a);p=-n/(n-r),m=-n*r/(n-r)}return h[0]=l,h[4]=0,h[8]=u,h[12]=0,h[1]=0,h[5]=c,h[9]=d,h[13]=0,h[2]=0,h[6]=0,h[10]=p,h[14]=m,h[3]=0,h[7]=0,h[11]=-1,h[15]=0,this}makeOrthographic(t,e,i,s,r,n,a=2e3,o=!1){const h=this.elements,l=2/(e-t),c=2/(i-s),u=-(e+t)/(e-t),d=-(i+s)/(i-s);let p,m;if(o)p=1/(n-r),m=n/(n-r);else if(a===Wi)p=-2/(n-r),m=-(n+r)/(n-r);else{if(a!==Ui)throw new Error("THREE.Matrix4.makeOrthographic(): Invalid coordinate system: "+a);p=-1/(n-r),m=-r/(n-r)}return h[0]=l,h[4]=0,h[8]=0,h[12]=u,h[1]=0,h[5]=c,h[9]=0,h[13]=d,h[2]=0,h[6]=0,h[10]=p,h[14]=m,h[3]=0,h[7]=0,h[11]=0,h[15]=1,this}equals(t){const e=this.elements,i=t.elements;for(let t=0;t<16;t++)if(e[t]!==i[t])return!1;return!0}fromArray(t,e=0){for(let i=0;i<16;i++)this.elements[i]=t[i+e];return this}toArray(t=[],e=0){const i=this.elements;return t[e]=i[0],t[e+1]=i[1],t[e+2]=i[2],t[e+3]=i[3],t[e+4]=i[4],t[e+5]=i[5],t[e+6]=i[6],t[e+7]=i[7],t[e+8]=i[8],t[e+9]=i[9],t[e+10]=i[10],t[e+11]=i[11],t[e+12]=i[12],t[e+13]=i[13],t[e+14]=i[14],t[e+15]=i[15],t}}const Mr=new Ms,Sr=new wr,_r=new Ms(0,0,0),Ar=new Ms(1,1,1),Tr=new Ms,zr=new Ms,Cr=new Ms,Ir=new wr,Br=new ws;class kr{constructor(t=0,e=0,i=0,s=kr.DEFAULT_ORDER){this.isEuler=!0,this._x=t,this._y=e,this._z=i,this._order=s}get x(){return this._x}set x(t){this._x=t,this._onChangeCallback()}get y(){return this._y}set y(t){this._y=t,this._onChangeCallback()}get z(){return this._z}set z(t){this._z=t,this._onChangeCallback()}get order(){return this._order}set order(t){this._order=t,this._onChangeCallback()}set(t,e,i,s=this._order){return this._x=t,this._y=e,this._z=i,this._order=s,this._onChangeCallback(),this}clone(){return new this.constructor(this._x,this._y,this._z,this._order)}copy(t){return this._x=t._x,this._y=t._y,this._z=t._z,this._order=t._order,this._onChangeCallback(),this}setFromRotationMatrix(t,e=this._order,i=!0){const s=t.elements,r=s[0],n=s[4],a=s[8],o=s[1],h=s[5],l=s[9],c=s[2],u=s[6],d=s[10];switch(e){case"XYZ":this._y=Math.asin(ms(a,-1,1)),Math.abs(a)<.9999999?(this._x=Math.atan2(-l,d),this._z=Math.atan2(-n,r)):(this._x=Math.atan2(u,h),this._z=0);break;case"YXZ":this._x=Math.asin(-ms(l,-1,1)),Math.abs(l)<.9999999?(this._y=Math.atan2(a,d),this._z=Math.atan2(o,h)):(this._y=Math.atan2(-c,r),this._z=0);break;case"ZXY":this._x=Math.asin(ms(u,-1,1)),Math.abs(u)<.9999999?(this._y=Math.atan2(-c,d),this._z=Math.atan2(-n,h)):(this._y=0,this._z=Math.atan2(o,r));break;case"ZYX":this._y=Math.asin(-ms(c,-1,1)),Math.abs(c)<.9999999?(this._x=Math.atan2(u,d),this._z=Math.atan2(o,r)):(this._x=0,this._z=Math.atan2(-n,h));break;case"YZX":this._z=Math.asin(ms(o,-1,1)),Math.abs(o)<.9999999?(this._x=Math.atan2(-l,h),this._y=Math.atan2(-c,r)):(this._x=0,this._y=Math.atan2(a,d));break;case"XZY":this._z=Math.asin(-ms(n,-1,1)),Math.abs(n)<.9999999?(this._x=Math.atan2(u,h),this._y=Math.atan2(a,r)):(this._x=Math.atan2(-l,d),this._y=0);break;default:rs("Euler: .setFromRotationMatrix() encountered an unknown order: "+e)}return this._order=e,!0===i&&this._onChangeCallback(),this}setFromQuaternion(t,e,i){return Ir.makeRotationFromQuaternion(t),this.setFromRotationMatrix(Ir,e,i)}setFromVector3(t,e=this._order){return this.set(t.x,t.y,t.z,e)}reorder(t){return Br.setFromEuler(this),this.setFromQuaternion(Br,t)}equals(t){return t._x===this._x&&t._y===this._y&&t._z===this._z&&t._order===this._order}fromArray(t){return this._x=t[0],this._y=t[1],this._z=t[2],void 0!==t[3]&&(this._order=t[3]),this._onChangeCallback(),this}toArray(t=[],e=0){return t[e]=this._x,t[e+1]=this._y,t[e+2]=this._z,t[e+3]=this._order,t}_onChange(t){return this._onChangeCallback=t,this}_onChangeCallback(){}*[Symbol.iterator](){yield this._x,yield this._y,yield this._z,yield this._order}}kr.DEFAULT_ORDER="XYZ";class Or{constructor(){this.mask=1}set(t){this.mask=1<>>0}enable(t){this.mask|=1<1){for(let t=0;t1){for(let t=0;t0&&(s.userData=this.userData),s.layers=this.layers.mask,s.matrix=this.matrix.toArray(),s.up=this.up.toArray(),!1===this.matrixAutoUpdate&&(s.matrixAutoUpdate=!1),this.isInstancedMesh&&(s.type="InstancedMesh",s.count=this.count,s.instanceMatrix=this.instanceMatrix.toJSON(),null!==this.instanceColor&&(s.instanceColor=this.instanceColor.toJSON())),this.isBatchedMesh&&(s.type="BatchedMesh",s.perObjectFrustumCulled=this.perObjectFrustumCulled,s.sortObjects=this.sortObjects,s.drawRanges=this._drawRanges,s.reservedRanges=this._reservedRanges,s.geometryInfo=this._geometryInfo.map(t=>({...t,boundingBox:t.boundingBox?t.boundingBox.toJSON():void 0,boundingSphere:t.boundingSphere?t.boundingSphere.toJSON():void 0})),s.instanceInfo=this._instanceInfo.map(t=>({...t})),s.availableInstanceIds=this._availableInstanceIds.slice(),s.availableGeometryIds=this._availableGeometryIds.slice(),s.nextIndexStart=this._nextIndexStart,s.nextVertexStart=this._nextVertexStart,s.geometryCount=this._geometryCount,s.maxInstanceCount=this._maxInstanceCount,s.maxVertexCount=this._maxVertexCount,s.maxIndexCount=this._maxIndexCount,s.geometryInitialized=this._geometryInitialized,s.matricesTexture=this._matricesTexture.toJSON(t),s.indirectTexture=this._indirectTexture.toJSON(t),null!==this._colorsTexture&&(s.colorsTexture=this._colorsTexture.toJSON(t)),null!==this.boundingSphere&&(s.boundingSphere=this.boundingSphere.toJSON()),null!==this.boundingBox&&(s.boundingBox=this.boundingBox.toJSON())),this.isScene)this.background&&(this.background.isColor?s.background=this.background.toJSON():this.background.isTexture&&(s.background=this.background.toJSON(t).uuid)),this.environment&&this.environment.isTexture&&!0!==this.environment.isRenderTargetTexture&&(s.environment=this.environment.toJSON(t).uuid);else if(this.isMesh||this.isLine||this.isPoints){s.geometry=r(t.geometries,this.geometry);const e=this.geometry.parameters;if(void 0!==e&&void 0!==e.shapes){const i=e.shapes;if(Array.isArray(i))for(let e=0,s=i.length;e0){s.children=[];for(let e=0;e0){s.animations=[];for(let e=0;e0&&(i.geometries=e),s.length>0&&(i.materials=s),r.length>0&&(i.textures=r),a.length>0&&(i.images=a),o.length>0&&(i.shapes=o),h.length>0&&(i.skeletons=h),l.length>0&&(i.animations=l),c.length>0&&(i.nodes=c)}return i.object=s,i;function n(t){const e=[];for(const i in t){const s=t[i];delete s.metadata,e.push(s)}return e}}clone(t){return(new this.constructor).copy(this,t)}copy(t,e=!0){if(this.name=t.name,this.up.copy(t.up),this.position.copy(t.position),this.rotation.order=t.rotation.order,this.quaternion.copy(t.quaternion),this.scale.copy(t.scale),this.matrix.copy(t.matrix),this.matrixWorld.copy(t.matrixWorld),this.matrixAutoUpdate=t.matrixAutoUpdate,this.matrixWorldAutoUpdate=t.matrixWorldAutoUpdate,this.matrixWorldNeedsUpdate=t.matrixWorldNeedsUpdate,this.layers.mask=t.layers.mask,this.visible=t.visible,this.castShadow=t.castShadow,this.receiveShadow=t.receiveShadow,this.frustumCulled=t.frustumCulled,this.renderOrder=t.renderOrder,this.animations=t.animations.slice(),this.userData=JSON.parse(JSON.stringify(t.userData)),!0===e)for(let e=0;e0?s.multiplyScalar(1/Math.sqrt(r)):s.set(0,0,0)}static getBarycoord(t,e,i,s,r){Hr.subVectors(s,e),Gr.subVectors(i,e),$r.subVectors(t,e);const n=Hr.dot(Hr),a=Hr.dot(Gr),o=Hr.dot($r),h=Gr.dot(Gr),l=Gr.dot($r),c=n*h-a*a;if(0===c)return r.set(0,0,0),null;const u=1/c,d=(h*o-a*l)*u,p=(n*l-a*o)*u;return r.set(1-d-p,p,d)}static containsPoint(t,e,i,s){return null!==this.getBarycoord(t,e,i,s,Qr)&&(Qr.x>=0&&Qr.y>=0&&Qr.x+Qr.y<=1)}static getInterpolation(t,e,i,s,r,n,a,o){return null===this.getBarycoord(t,e,i,s,Qr)?(o.x=0,o.y=0,"z"in o&&(o.z=0),"w"in o&&(o.w=0),null):(o.setScalar(0),o.addScaledVector(r,Qr.x),o.addScaledVector(n,Qr.y),o.addScaledVector(a,Qr.z),o)}static getInterpolatedAttribute(t,e,i,s,r,n){return an.setScalar(0),on.setScalar(0),hn.setScalar(0),an.fromBufferAttribute(t,e),on.fromBufferAttribute(t,i),hn.fromBufferAttribute(t,s),n.setScalar(0),n.addScaledVector(an,r.x),n.addScaledVector(on,r.y),n.addScaledVector(hn,r.z),n}static isFrontFacing(t,e,i,s){return Hr.subVectors(i,e),Gr.subVectors(t,e),Hr.cross(Gr).dot(s)<0}set(t,e,i){return this.a.copy(t),this.b.copy(e),this.c.copy(i),this}setFromPointsAndIndices(t,e,i,s){return this.a.copy(t[e]),this.b.copy(t[i]),this.c.copy(t[s]),this}setFromAttributeAndIndices(t,e,i,s){return this.a.fromBufferAttribute(t,e),this.b.fromBufferAttribute(t,i),this.c.fromBufferAttribute(t,s),this}clone(){return(new this.constructor).copy(this)}copy(t){return this.a.copy(t.a),this.b.copy(t.b),this.c.copy(t.c),this}getArea(){return Hr.subVectors(this.c,this.b),Gr.subVectors(this.a,this.b),.5*Hr.cross(Gr).length()}getMidpoint(t){return t.addVectors(this.a,this.b).add(this.c).multiplyScalar(1/3)}getNormal(t){return ln.getNormal(this.a,this.b,this.c,t)}getPlane(t){return t.setFromCoplanarPoints(this.a,this.b,this.c)}getBarycoord(t,e){return ln.getBarycoord(t,this.a,this.b,this.c,e)}getInterpolation(t,e,i,s,r){return ln.getInterpolation(t,this.a,this.b,this.c,e,i,s,r)}containsPoint(t){return ln.containsPoint(t,this.a,this.b,this.c)}isFrontFacing(t){return ln.isFrontFacing(this.a,this.b,this.c,t)}intersectsBox(t){return t.intersectsTriangle(this)}closestPointToPoint(t,e){const i=this.a,s=this.b,r=this.c;let n,a;Kr.subVectors(s,i),tn.subVectors(r,i),sn.subVectors(t,i);const o=Kr.dot(sn),h=tn.dot(sn);if(o<=0&&h<=0)return e.copy(i);rn.subVectors(t,s);const l=Kr.dot(rn),c=tn.dot(rn);if(l>=0&&c<=l)return e.copy(s);const u=o*c-l*h;if(u<=0&&o>=0&&l<=0)return n=o/(o-l),e.copy(i).addScaledVector(Kr,n);nn.subVectors(t,r);const d=Kr.dot(nn),p=tn.dot(nn);if(p>=0&&d<=p)return e.copy(r);const m=d*h-o*p;if(m<=0&&h>=0&&p<=0)return a=h/(h-p),e.copy(i).addScaledVector(tn,a);const y=l*p-d*c;if(y<=0&&c-l>=0&&d-p>=0)return en.subVectors(r,s),a=(c-l)/(c-l+(d-p)),e.copy(s).addScaledVector(en,a);const g=1/(y+m+u);return n=m*g,a=u*g,e.copy(i).addScaledVector(Kr,n).addScaledVector(tn,a)}equals(t){return t.a.equals(this.a)&&t.b.equals(this.b)&&t.c.equals(this.c)}}const cn={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074},un={h:0,s:0,l:0},dn={h:0,s:0,l:0};function pn(t,e,i){return i<0&&(i+=1),i>1&&(i-=1),i<1/6?t+6*(e-t)*i:i<.5?e:i<2/3?t+6*(e-t)*(2/3-i):t}class mn{constructor(t,e,i){return this.isColor=!0,this.r=1,this.g=1,this.b=1,this.set(t,e,i)}set(t,e,i){if(void 0===e&&void 0===i){const e=t;e&&e.isColor?this.copy(e):"number"==typeof e?this.setHex(e):"string"==typeof e&&this.setStyle(e)}else this.setRGB(t,e,i);return this}setScalar(t){return this.r=t,this.g=t,this.b=t,this}setHex(t,e=ti){return t=Math.floor(t),this.r=(t>>16&255)/255,this.g=(t>>8&255)/255,this.b=(255&t)/255,Bs.colorSpaceToWorking(this,e),this}setRGB(t,e,i,s=Bs.workingColorSpace){return this.r=t,this.g=e,this.b=i,Bs.colorSpaceToWorking(this,s),this}setHSL(t,e,i,s=Bs.workingColorSpace){if(t=ys(t,1),e=ms(e,0,1),i=ms(i,0,1),0===e)this.r=this.g=this.b=i;else{const s=i<=.5?i*(1+e):i+e-i*e,r=2*i-s;this.r=pn(r,s,t+1/3),this.g=pn(r,s,t),this.b=pn(r,s,t-1/3)}return Bs.colorSpaceToWorking(this,s),this}setStyle(t,e=ti){function i(e){void 0!==e&&parseFloat(e)<1&&rs("Color: Alpha component of "+t+" will be ignored.")}let s;if(s=/^(\w+)\(([^\)]*)\)/.exec(t)){let r;const n=s[1],a=s[2];switch(n){case"rgb":case"rgba":if(r=/^\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*(?:,\s*(\d*\.?\d+)\s*)?$/.exec(a))return i(r[4]),this.setRGB(Math.min(255,parseInt(r[1],10))/255,Math.min(255,parseInt(r[2],10))/255,Math.min(255,parseInt(r[3],10))/255,e);if(r=/^\s*(\d+)\%\s*,\s*(\d+)\%\s*,\s*(\d+)\%\s*(?:,\s*(\d*\.?\d+)\s*)?$/.exec(a))return i(r[4]),this.setRGB(Math.min(100,parseInt(r[1],10))/100,Math.min(100,parseInt(r[2],10))/100,Math.min(100,parseInt(r[3],10))/100,e);break;case"hsl":case"hsla":if(r=/^\s*(\d*\.?\d+)\s*,\s*(\d*\.?\d+)\%\s*,\s*(\d*\.?\d+)\%\s*(?:,\s*(\d*\.?\d+)\s*)?$/.exec(a))return i(r[4]),this.setHSL(parseFloat(r[1])/360,parseFloat(r[2])/100,parseFloat(r[3])/100,e);break;default:rs("Color: Unknown color model "+t)}}else if(s=/^\#([A-Fa-f\d]+)$/.exec(t)){const i=s[1],r=i.length;if(3===r)return this.setRGB(parseInt(i.charAt(0),16)/15,parseInt(i.charAt(1),16)/15,parseInt(i.charAt(2),16)/15,e);if(6===r)return this.setHex(parseInt(i,16),e);rs("Color: Invalid hex color "+t)}else if(t&&t.length>0)return this.setColorName(t,e);return this}setColorName(t,e=ti){const i=cn[t.toLowerCase()];return void 0!==i?this.setHex(i,e):rs("Color: Unknown color "+t),this}clone(){return new this.constructor(this.r,this.g,this.b)}copy(t){return this.r=t.r,this.g=t.g,this.b=t.b,this}copySRGBToLinear(t){return this.r=ks(t.r),this.g=ks(t.g),this.b=ks(t.b),this}copyLinearToSRGB(t){return this.r=Os(t.r),this.g=Os(t.g),this.b=Os(t.b),this}convertSRGBToLinear(){return this.copySRGBToLinear(this),this}convertLinearToSRGB(){return this.copyLinearToSRGB(this),this}getHex(t=ti){return Bs.workingToColorSpace(yn.copy(this),t),65536*Math.round(ms(255*yn.r,0,255))+256*Math.round(ms(255*yn.g,0,255))+Math.round(ms(255*yn.b,0,255))}getHexString(t=ti){return("000000"+this.getHex(t).toString(16)).slice(-6)}getHSL(t,e=Bs.workingColorSpace){Bs.workingToColorSpace(yn.copy(this),e);const i=yn.r,s=yn.g,r=yn.b,n=Math.max(i,s,r),a=Math.min(i,s,r);let o,h;const l=(a+n)/2;if(a===n)o=0,h=0;else{const t=n-a;switch(h=l<=.5?t/(n+a):t/(2-n-a),n){case i:o=(s-r)/t+(s0!=t>0&&this.version++,this._alphaTest=t}onBeforeRender(){}onBeforeCompile(){}customProgramCacheKey(){return this.onBeforeCompile.toString()}setValues(t){if(void 0!==t)for(const e in t){const i=t[e];if(void 0===i){rs(`Material: parameter '${e}' has value of undefined.`);continue}const s=this[e];void 0!==s?s&&s.isColor?s.set(i):s&&s.isVector3&&i&&i.isVector3?s.copy(i):this[e]=i:rs(`Material: '${e}' is not a property of THREE.${this.type}.`)}}toJSON(t){const e=void 0===t||"string"==typeof t;e&&(t={textures:{},images:{}});const i={metadata:{version:4.7,type:"Material",generator:"Material.toJSON"}};function s(t){const e=[];for(const i in t){const s=t[i];delete s.metadata,e.push(s)}return e}if(i.uuid=this.uuid,i.type=this.type,""!==this.name&&(i.name=this.name),this.color&&this.color.isColor&&(i.color=this.color.getHex()),void 0!==this.roughness&&(i.roughness=this.roughness),void 0!==this.metalness&&(i.metalness=this.metalness),void 0!==this.sheen&&(i.sheen=this.sheen),this.sheenColor&&this.sheenColor.isColor&&(i.sheenColor=this.sheenColor.getHex()),void 0!==this.sheenRoughness&&(i.sheenRoughness=this.sheenRoughness),this.emissive&&this.emissive.isColor&&(i.emissive=this.emissive.getHex()),void 0!==this.emissiveIntensity&&1!==this.emissiveIntensity&&(i.emissiveIntensity=this.emissiveIntensity),this.specular&&this.specular.isColor&&(i.specular=this.specular.getHex()),void 0!==this.specularIntensity&&(i.specularIntensity=this.specularIntensity),this.specularColor&&this.specularColor.isColor&&(i.specularColor=this.specularColor.getHex()),void 0!==this.shininess&&(i.shininess=this.shininess),void 0!==this.clearcoat&&(i.clearcoat=this.clearcoat),void 0!==this.clearcoatRoughness&&(i.clearcoatRoughness=this.clearcoatRoughness),this.clearcoatMap&&this.clearcoatMap.isTexture&&(i.clearcoatMap=this.clearcoatMap.toJSON(t).uuid),this.clearcoatRoughnessMap&&this.clearcoatRoughnessMap.isTexture&&(i.clearcoatRoughnessMap=this.clearcoatRoughnessMap.toJSON(t).uuid),this.clearcoatNormalMap&&this.clearcoatNormalMap.isTexture&&(i.clearcoatNormalMap=this.clearcoatNormalMap.toJSON(t).uuid,i.clearcoatNormalScale=this.clearcoatNormalScale.toArray()),this.sheenColorMap&&this.sheenColorMap.isTexture&&(i.sheenColorMap=this.sheenColorMap.toJSON(t).uuid),this.sheenRoughnessMap&&this.sheenRoughnessMap.isTexture&&(i.sheenRoughnessMap=this.sheenRoughnessMap.toJSON(t).uuid),void 0!==this.dispersion&&(i.dispersion=this.dispersion),void 0!==this.iridescence&&(i.iridescence=this.iridescence),void 0!==this.iridescenceIOR&&(i.iridescenceIOR=this.iridescenceIOR),void 0!==this.iridescenceThicknessRange&&(i.iridescenceThicknessRange=this.iridescenceThicknessRange),this.iridescenceMap&&this.iridescenceMap.isTexture&&(i.iridescenceMap=this.iridescenceMap.toJSON(t).uuid),this.iridescenceThicknessMap&&this.iridescenceThicknessMap.isTexture&&(i.iridescenceThicknessMap=this.iridescenceThicknessMap.toJSON(t).uuid),void 0!==this.anisotropy&&(i.anisotropy=this.anisotropy),void 0!==this.anisotropyRotation&&(i.anisotropyRotation=this.anisotropyRotation),this.anisotropyMap&&this.anisotropyMap.isTexture&&(i.anisotropyMap=this.anisotropyMap.toJSON(t).uuid),this.map&&this.map.isTexture&&(i.map=this.map.toJSON(t).uuid),this.matcap&&this.matcap.isTexture&&(i.matcap=this.matcap.toJSON(t).uuid),this.alphaMap&&this.alphaMap.isTexture&&(i.alphaMap=this.alphaMap.toJSON(t).uuid),this.lightMap&&this.lightMap.isTexture&&(i.lightMap=this.lightMap.toJSON(t).uuid,i.lightMapIntensity=this.lightMapIntensity),this.aoMap&&this.aoMap.isTexture&&(i.aoMap=this.aoMap.toJSON(t).uuid,i.aoMapIntensity=this.aoMapIntensity),this.bumpMap&&this.bumpMap.isTexture&&(i.bumpMap=this.bumpMap.toJSON(t).uuid,i.bumpScale=this.bumpScale),this.normalMap&&this.normalMap.isTexture&&(i.normalMap=this.normalMap.toJSON(t).uuid,i.normalMapType=this.normalMapType,i.normalScale=this.normalScale.toArray()),this.displacementMap&&this.displacementMap.isTexture&&(i.displacementMap=this.displacementMap.toJSON(t).uuid,i.displacementScale=this.displacementScale,i.displacementBias=this.displacementBias),this.roughnessMap&&this.roughnessMap.isTexture&&(i.roughnessMap=this.roughnessMap.toJSON(t).uuid),this.metalnessMap&&this.metalnessMap.isTexture&&(i.metalnessMap=this.metalnessMap.toJSON(t).uuid),this.emissiveMap&&this.emissiveMap.isTexture&&(i.emissiveMap=this.emissiveMap.toJSON(t).uuid),this.specularMap&&this.specularMap.isTexture&&(i.specularMap=this.specularMap.toJSON(t).uuid),this.specularIntensityMap&&this.specularIntensityMap.isTexture&&(i.specularIntensityMap=this.specularIntensityMap.toJSON(t).uuid),this.specularColorMap&&this.specularColorMap.isTexture&&(i.specularColorMap=this.specularColorMap.toJSON(t).uuid),this.envMap&&this.envMap.isTexture&&(i.envMap=this.envMap.toJSON(t).uuid,void 0!==this.combine&&(i.combine=this.combine)),void 0!==this.envMapRotation&&(i.envMapRotation=this.envMapRotation.toArray()),void 0!==this.envMapIntensity&&(i.envMapIntensity=this.envMapIntensity),void 0!==this.reflectivity&&(i.reflectivity=this.reflectivity),void 0!==this.refractionRatio&&(i.refractionRatio=this.refractionRatio),this.gradientMap&&this.gradientMap.isTexture&&(i.gradientMap=this.gradientMap.toJSON(t).uuid),void 0!==this.transmission&&(i.transmission=this.transmission),this.transmissionMap&&this.transmissionMap.isTexture&&(i.transmissionMap=this.transmissionMap.toJSON(t).uuid),void 0!==this.thickness&&(i.thickness=this.thickness),this.thicknessMap&&this.thicknessMap.isTexture&&(i.thicknessMap=this.thicknessMap.toJSON(t).uuid),void 0!==this.attenuationDistance&&this.attenuationDistance!==1/0&&(i.attenuationDistance=this.attenuationDistance),void 0!==this.attenuationColor&&(i.attenuationColor=this.attenuationColor.getHex()),void 0!==this.size&&(i.size=this.size),null!==this.shadowSide&&(i.shadowSide=this.shadowSide),void 0!==this.sizeAttenuation&&(i.sizeAttenuation=this.sizeAttenuation),1!==this.blending&&(i.blending=this.blending),0!==this.side&&(i.side=this.side),!0===this.vertexColors&&(i.vertexColors=!0),this.opacity<1&&(i.opacity=this.opacity),!0===this.transparent&&(i.transparent=!0),204!==this.blendSrc&&(i.blendSrc=this.blendSrc),205!==this.blendDst&&(i.blendDst=this.blendDst),100!==this.blendEquation&&(i.blendEquation=this.blendEquation),null!==this.blendSrcAlpha&&(i.blendSrcAlpha=this.blendSrcAlpha),null!==this.blendDstAlpha&&(i.blendDstAlpha=this.blendDstAlpha),null!==this.blendEquationAlpha&&(i.blendEquationAlpha=this.blendEquationAlpha),this.blendColor&&this.blendColor.isColor&&(i.blendColor=this.blendColor.getHex()),0!==this.blendAlpha&&(i.blendAlpha=this.blendAlpha),3!==this.depthFunc&&(i.depthFunc=this.depthFunc),!1===this.depthTest&&(i.depthTest=this.depthTest),!1===this.depthWrite&&(i.depthWrite=this.depthWrite),!1===this.colorWrite&&(i.colorWrite=this.colorWrite),255!==this.stencilWriteMask&&(i.stencilWriteMask=this.stencilWriteMask),519!==this.stencilFunc&&(i.stencilFunc=this.stencilFunc),0!==this.stencilRef&&(i.stencilRef=this.stencilRef),255!==this.stencilFuncMask&&(i.stencilFuncMask=this.stencilFuncMask),this.stencilFail!==hi&&(i.stencilFail=this.stencilFail),this.stencilZFail!==hi&&(i.stencilZFail=this.stencilZFail),this.stencilZPass!==hi&&(i.stencilZPass=this.stencilZPass),!0===this.stencilWrite&&(i.stencilWrite=this.stencilWrite),void 0!==this.rotation&&0!==this.rotation&&(i.rotation=this.rotation),!0===this.polygonOffset&&(i.polygonOffset=!0),0!==this.polygonOffsetFactor&&(i.polygonOffsetFactor=this.polygonOffsetFactor),0!==this.polygonOffsetUnits&&(i.polygonOffsetUnits=this.polygonOffsetUnits),void 0!==this.linewidth&&1!==this.linewidth&&(i.linewidth=this.linewidth),void 0!==this.dashSize&&(i.dashSize=this.dashSize),void 0!==this.gapSize&&(i.gapSize=this.gapSize),void 0!==this.scale&&(i.scale=this.scale),!0===this.dithering&&(i.dithering=!0),this.alphaTest>0&&(i.alphaTest=this.alphaTest),!0===this.alphaHash&&(i.alphaHash=!0),!0===this.alphaToCoverage&&(i.alphaToCoverage=!0),!0===this.premultipliedAlpha&&(i.premultipliedAlpha=!0),!0===this.forceSinglePass&&(i.forceSinglePass=!0),!1===this.allowOverride&&(i.allowOverride=!1),!0===this.wireframe&&(i.wireframe=!0),this.wireframeLinewidth>1&&(i.wireframeLinewidth=this.wireframeLinewidth),"round"!==this.wireframeLinecap&&(i.wireframeLinecap=this.wireframeLinecap),"round"!==this.wireframeLinejoin&&(i.wireframeLinejoin=this.wireframeLinejoin),!0===this.flatShading&&(i.flatShading=!0),!1===this.visible&&(i.visible=!1),!1===this.toneMapped&&(i.toneMapped=!1),!1===this.fog&&(i.fog=!1),Object.keys(this.userData).length>0&&(i.userData=this.userData),e){const e=s(t.textures),r=s(t.images);e.length>0&&(i.textures=e),r.length>0&&(i.images=r)}return i}clone(){return(new this.constructor).copy(this)}copy(t){this.name=t.name,this.blending=t.blending,this.side=t.side,this.vertexColors=t.vertexColors,this.opacity=t.opacity,this.transparent=t.transparent,this.blendSrc=t.blendSrc,this.blendDst=t.blendDst,this.blendEquation=t.blendEquation,this.blendSrcAlpha=t.blendSrcAlpha,this.blendDstAlpha=t.blendDstAlpha,this.blendEquationAlpha=t.blendEquationAlpha,this.blendColor.copy(t.blendColor),this.blendAlpha=t.blendAlpha,this.depthFunc=t.depthFunc,this.depthTest=t.depthTest,this.depthWrite=t.depthWrite,this.stencilWriteMask=t.stencilWriteMask,this.stencilFunc=t.stencilFunc,this.stencilRef=t.stencilRef,this.stencilFuncMask=t.stencilFuncMask,this.stencilFail=t.stencilFail,this.stencilZFail=t.stencilZFail,this.stencilZPass=t.stencilZPass,this.stencilWrite=t.stencilWrite;const e=t.clippingPlanes;let i=null;if(null!==e){const t=e.length;i=new Array(t);for(let s=0;s!==t;++s)i[s]=e[s].clone()}return this.clippingPlanes=i,this.clipIntersection=t.clipIntersection,this.clipShadows=t.clipShadows,this.shadowSide=t.shadowSide,this.colorWrite=t.colorWrite,this.precision=t.precision,this.polygonOffset=t.polygonOffset,this.polygonOffsetFactor=t.polygonOffsetFactor,this.polygonOffsetUnits=t.polygonOffsetUnits,this.dithering=t.dithering,this.alphaTest=t.alphaTest,this.alphaHash=t.alphaHash,this.alphaToCoverage=t.alphaToCoverage,this.premultipliedAlpha=t.premultipliedAlpha,this.forceSinglePass=t.forceSinglePass,this.allowOverride=t.allowOverride,this.visible=t.visible,this.toneMapped=t.toneMapped,this.userData=JSON.parse(JSON.stringify(t.userData)),this}dispose(){this.dispatchEvent({type:"dispose"})}set needsUpdate(t){!0===t&&this.version++}}class xn extends fn{constructor(t){super(),this.isMeshBasicMaterial=!0,this.type="MeshBasicMaterial",this.color=new mn(16777215),this.map=null,this.lightMap=null,this.lightMapIntensity=1,this.aoMap=null,this.aoMapIntensity=1,this.specularMap=null,this.alphaMap=null,this.envMap=null,this.envMapRotation=new kr,this.combine=0,this.reflectivity=1,this.refractionRatio=.98,this.wireframe=!1,this.wireframeLinewidth=1,this.wireframeLinecap="round",this.wireframeLinejoin="round",this.fog=!0,this.setValues(t)}copy(t){return super.copy(t),this.color.copy(t.color),this.map=t.map,this.lightMap=t.lightMap,this.lightMapIntensity=t.lightMapIntensity,this.aoMap=t.aoMap,this.aoMapIntensity=t.aoMapIntensity,this.specularMap=t.specularMap,this.alphaMap=t.alphaMap,this.envMap=t.envMap,this.envMapRotation.copy(t.envMapRotation),this.combine=t.combine,this.reflectivity=t.reflectivity,this.refractionRatio=t.refractionRatio,this.wireframe=t.wireframe,this.wireframeLinewidth=t.wireframeLinewidth,this.wireframeLinecap=t.wireframeLinecap,this.wireframeLinejoin=t.wireframeLinejoin,this.fog=t.fog,this}}const bn=vn();function vn(){const t=new ArrayBuffer(4),e=new Float32Array(t),i=new Uint32Array(t),s=new Uint32Array(512),r=new Uint32Array(512);for(let t=0;t<256;++t){const e=t-127;e<-27?(s[t]=0,s[256|t]=32768,r[t]=24,r[256|t]=24):e<-14?(s[t]=1024>>-e-14,s[256|t]=1024>>-e-14|32768,r[t]=-e-1,r[256|t]=-e-1):e<=15?(s[t]=e+15<<10,s[256|t]=e+15<<10|32768,r[t]=13,r[256|t]=13):e<128?(s[t]=31744,s[256|t]=64512,r[t]=24,r[256|t]=24):(s[t]=31744,s[256|t]=64512,r[t]=13,r[256|t]=13)}const n=new Uint32Array(2048),a=new Uint32Array(64),o=new Uint32Array(64);for(let t=1;t<1024;++t){let e=t<<13,i=0;for(;!(8388608&e);)e<<=1,i-=8388608;e&=-8388609,i+=947912704,n[t]=e|i}for(let t=1024;t<2048;++t)n[t]=939524096+(t-1024<<13);for(let t=1;t<31;++t)a[t]=t<<23;a[31]=1199570944,a[32]=2147483648;for(let t=33;t<63;++t)a[t]=2147483648+(t-32<<23);a[63]=3347054592;for(let t=1;t<64;++t)32!==t&&(o[t]=1024);return{floatView:e,uint32View:i,baseTable:s,shiftTable:r,mantissaTable:n,exponentTable:a,offsetTable:o}}function wn(t){Math.abs(t)>65504&&rs("DataUtils.toHalfFloat(): Value out of range."),t=ms(t,-65504,65504),bn.floatView[0]=t;const e=bn.uint32View[0],i=e>>23&511;return bn.baseTable[i]+((8388607&e)>>bn.shiftTable[i])}function Mn(t){const e=t>>10;return bn.uint32View[0]=bn.mantissaTable[bn.offsetTable[e]+(1023&t)]+bn.exponentTable[e],bn.floatView[0]}class Sn{static toHalfFloat(t){return wn(t)}static fromHalfFloat(t){return Mn(t)}}const _n=new Ms,An=new vs;let Tn=0;class zn{constructor(t,e,i=!1){if(Array.isArray(t))throw new TypeError("THREE.BufferAttribute: array should be a Typed Array.");this.isBufferAttribute=!0,Object.defineProperty(this,"id",{value:Tn++}),this.name="",this.array=t,this.itemSize=e,this.count=void 0!==t?t.length/e:0,this.normalized=i,this.usage=ki,this.updateRanges=[],this.gpuType=Ot,this.version=0}onUploadCallback(){}set needsUpdate(t){!0===t&&this.version++}setUsage(t){return this.usage=t,this}addUpdateRange(t,e){this.updateRanges.push({start:t,count:e})}clearUpdateRanges(){this.updateRanges.length=0}copy(t){return this.name=t.name,this.array=new t.array.constructor(t.array),this.itemSize=t.itemSize,this.count=t.count,this.normalized=t.normalized,this.usage=t.usage,this.gpuType=t.gpuType,this}copyAt(t,e,i){t*=this.itemSize,i*=e.itemSize;for(let s=0,r=this.itemSize;se.count&&rs("BufferGeometry: Buffer size too small for points data. Use .dispose() and create a new geometry."),e.needsUpdate=!0}return this}computeBoundingBox(){null===this.boundingBox&&(this.boundingBox=new Zs);const t=this.attributes.position,e=this.morphAttributes.position;if(t&&t.isGLBufferAttribute)return ns("BufferGeometry.computeBoundingBox(): GLBufferAttribute requires a manual bounding box.",this),void this.boundingBox.set(new Ms(-1/0,-1/0,-1/0),new Ms(1/0,1/0,1/0));if(void 0!==t){if(this.boundingBox.setFromBufferAttribute(t),e)for(let t=0,i=e.length;t0&&(t.userData=this.userData),void 0!==this.parameters){const e=this.parameters;for(const i in e)void 0!==e[i]&&(t[i]=e[i]);return t}t.data={attributes:{}};const e=this.index;null!==e&&(t.data.index={type:e.array.constructor.name,array:Array.prototype.slice.call(e.array)});const i=this.attributes;for(const e in i){const s=i[e];t.data.attributes[e]=s.toJSON(t.data)}const s={};let r=!1;for(const e in this.morphAttributes){const i=this.morphAttributes[e],n=[];for(let e=0,s=i.length;e0&&(s[e]=n,r=!0)}r&&(t.data.morphAttributes=s,t.data.morphTargetsRelative=this.morphTargetsRelative);const n=this.groups;n.length>0&&(t.data.groups=JSON.parse(JSON.stringify(n)));const a=this.boundingSphere;return null!==a&&(t.data.boundingSphere=a.toJSON()),t}clone(){return(new this.constructor).copy(this)}copy(t){this.index=null,this.attributes={},this.morphAttributes={},this.groups=[],this.boundingBox=null,this.boundingSphere=null;const e={};this.name=t.name;const i=t.index;null!==i&&this.setIndex(i.clone());const s=t.attributes;for(const t in s){const i=s[t];this.setAttribute(t,i.clone(e))}const r=t.morphAttributes;for(const t in r){const i=[],s=r[t];for(let t=0,r=s.length;t0){const i=t[e[0]];if(void 0!==i){this.morphTargetInfluences=[],this.morphTargetDictionary={};for(let t=0,e=i.length;t(t.far-t.near)**2)return}Jn.copy(r).invert(),Xn.copy(t.ray).applyMatrix4(Jn),null!==i.boundingBox&&!1===Xn.intersectsBox(i.boundingBox)||this._computeIntersections(t,e,Xn)}}_computeIntersections(t,e,i){let s;const r=this.geometry,n=this.material,a=r.index,o=r.attributes.position,h=r.attributes.uv,l=r.attributes.uv1,c=r.attributes.normal,u=r.groups,d=r.drawRange;if(null!==a)if(Array.isArray(n))for(let r=0,o=u.length;ri.far?null:{distance:l,point:ea.clone(),object:t}}(t,e,i,s,Hn,Gn,$n,ta);if(c){const t=new Ms;ln.getBarycoord(ta,Hn,Gn,$n,t),r&&(c.uv=ln.getInterpolatedAttribute(r,o,h,l,t,new vs)),n&&(c.uv1=ln.getInterpolatedAttribute(n,o,h,l,t,new vs)),a&&(c.normal=ln.getInterpolatedAttribute(a,o,h,l,t,new Ms),c.normal.dot(s.direction)>0&&c.normal.multiplyScalar(-1));const e={a:o,b:h,c:l,normal:new Ms,materialIndex:0};ln.getNormal(Hn,Gn,$n,e.normal),c.face=e,c.barycoord=t}return c}class ra extends qn{constructor(t=1,e=1,i=1,s=1,r=1,n=1){super(),this.type="BoxGeometry",this.parameters={width:t,height:e,depth:i,widthSegments:s,heightSegments:r,depthSegments:n};const a=this;s=Math.floor(s),r=Math.floor(r),n=Math.floor(n);const o=[],h=[],l=[],c=[];let u=0,d=0;function p(t,e,i,s,r,n,p,m,y,g,f){const x=n/y,b=p/g,v=n/2,w=p/2,M=m/2,S=y+1,_=g+1;let A=0,T=0;const z=new Ms;for(let n=0;n<_;n++){const a=n*b-w;for(let o=0;o0?1:-1,l.push(z.x,z.y,z.z),c.push(o/y),c.push(1-n/g),A+=1}}for(let t=0;t0&&(e.defines=this.defines),e.vertexShader=this.vertexShader,e.fragmentShader=this.fragmentShader,e.lights=this.lights,e.clipping=this.clipping;const i={};for(const t in this.extensions)!0===this.extensions[t]&&(i[t]=!0);return Object.keys(i).length>0&&(e.extensions=i),e}}class ca extends Zr{constructor(){super(),this.isCamera=!0,this.type="Camera",this.matrixWorldInverse=new wr,this.projectionMatrix=new wr,this.projectionMatrixInverse=new wr,this.coordinateSystem=Wi,this._reversedDepth=!1}get reversedDepth(){return this._reversedDepth}copy(t,e){return super.copy(t,e),this.matrixWorldInverse.copy(t.matrixWorldInverse),this.projectionMatrix.copy(t.projectionMatrix),this.projectionMatrixInverse.copy(t.projectionMatrixInverse),this.coordinateSystem=t.coordinateSystem,this}getWorldDirection(t){return super.getWorldDirection(t).negate()}updateMatrixWorld(t){super.updateMatrixWorld(t),this.matrixWorldInverse.copy(this.matrixWorld).invert()}updateWorldMatrix(t,e){super.updateWorldMatrix(t,e),this.matrixWorldInverse.copy(this.matrixWorld).invert()}clone(){return(new this.constructor).copy(this)}}const ua=new Ms,da=new vs,pa=new vs;class ma extends ca{constructor(t=50,e=1,i=.1,s=2e3){super(),this.isPerspectiveCamera=!0,this.type="PerspectiveCamera",this.fov=t,this.zoom=1,this.near=i,this.far=s,this.focus=10,this.aspect=e,this.view=null,this.filmGauge=35,this.filmOffset=0,this.updateProjectionMatrix()}copy(t,e){return super.copy(t,e),this.fov=t.fov,this.zoom=t.zoom,this.near=t.near,this.far=t.far,this.focus=t.focus,this.aspect=t.aspect,this.view=null===t.view?null:Object.assign({},t.view),this.filmGauge=t.filmGauge,this.filmOffset=t.filmOffset,this}setFocalLength(t){const e=.5*this.getFilmHeight()/t;this.fov=2*ds*Math.atan(e),this.updateProjectionMatrix()}getFocalLength(){const t=Math.tan(.5*us*this.fov);return.5*this.getFilmHeight()/t}getEffectiveFOV(){return 2*ds*Math.atan(Math.tan(.5*us*this.fov)/this.zoom)}getFilmWidth(){return this.filmGauge*Math.min(this.aspect,1)}getFilmHeight(){return this.filmGauge/Math.max(this.aspect,1)}getViewBounds(t,e,i){ua.set(-1,-1,.5).applyMatrix4(this.projectionMatrixInverse),e.set(ua.x,ua.y).multiplyScalar(-t/ua.z),ua.set(1,1,.5).applyMatrix4(this.projectionMatrixInverse),i.set(ua.x,ua.y).multiplyScalar(-t/ua.z)}getViewSize(t,e){return this.getViewBounds(t,da,pa),e.subVectors(pa,da)}setViewOffset(t,e,i,s,r,n){this.aspect=t/e,null===this.view&&(this.view={enabled:!0,fullWidth:1,fullHeight:1,offsetX:0,offsetY:0,width:1,height:1}),this.view.enabled=!0,this.view.fullWidth=t,this.view.fullHeight=e,this.view.offsetX=i,this.view.offsetY=s,this.view.width=r,this.view.height=n,this.updateProjectionMatrix()}clearViewOffset(){null!==this.view&&(this.view.enabled=!1),this.updateProjectionMatrix()}updateProjectionMatrix(){const t=this.near;let e=t*Math.tan(.5*us*this.fov)/this.zoom,i=2*e,s=this.aspect*i,r=-.5*s;const n=this.view;if(null!==this.view&&this.view.enabled){const t=n.fullWidth,a=n.fullHeight;r+=n.offsetX*s/t,e-=n.offsetY*i/a,s*=n.width/t,i*=n.height/a}const a=this.filmOffset;0!==a&&(r+=t*a/this.getFilmWidth()),this.projectionMatrix.makePerspective(r,r+s,e,e-i,t,this.far,this.coordinateSystem,this.reversedDepth),this.projectionMatrixInverse.copy(this.projectionMatrix).invert()}toJSON(t){const e=super.toJSON(t);return e.object.fov=this.fov,e.object.zoom=this.zoom,e.object.near=this.near,e.object.far=this.far,e.object.focus=this.focus,e.object.aspect=this.aspect,null!==this.view&&(e.object.view=Object.assign({},this.view)),e.object.filmGauge=this.filmGauge,e.object.filmOffset=this.filmOffset,e}}const ya=-90;class ga extends Zr{constructor(t,e,i){super(),this.type="CubeCamera",this.renderTarget=i,this.coordinateSystem=null,this.activeMipmapLevel=0;const s=new ma(ya,1,t,e);s.layers=this.layers,this.add(s);const r=new ma(ya,1,t,e);r.layers=this.layers,this.add(r);const n=new ma(ya,1,t,e);n.layers=this.layers,this.add(n);const a=new ma(ya,1,t,e);a.layers=this.layers,this.add(a);const o=new ma(ya,1,t,e);o.layers=this.layers,this.add(o);const h=new ma(ya,1,t,e);h.layers=this.layers,this.add(h)}updateCoordinateSystem(){const t=this.coordinateSystem,e=this.children.concat(),[i,s,r,n,a,o]=e;for(const t of e)this.remove(t);if(t===Wi)i.up.set(0,1,0),i.lookAt(1,0,0),s.up.set(0,1,0),s.lookAt(-1,0,0),r.up.set(0,0,-1),r.lookAt(0,1,0),n.up.set(0,0,1),n.lookAt(0,-1,0),a.up.set(0,1,0),a.lookAt(0,0,1),o.up.set(0,1,0),o.lookAt(0,0,-1);else{if(t!==Ui)throw new Error("THREE.CubeCamera.updateCoordinateSystem(): Invalid coordinate system: "+t);i.up.set(0,-1,0),i.lookAt(-1,0,0),s.up.set(0,-1,0),s.lookAt(1,0,0),r.up.set(0,0,1),r.lookAt(0,1,0),n.up.set(0,0,-1),n.lookAt(0,-1,0),a.up.set(0,-1,0),a.lookAt(0,0,1),o.up.set(0,-1,0),o.lookAt(0,0,-1)}for(const t of e)this.add(t),t.updateMatrixWorld()}update(t,e){null===this.parent&&this.updateMatrixWorld();const{renderTarget:i,activeMipmapLevel:s}=this;this.coordinateSystem!==t.coordinateSystem&&(this.coordinateSystem=t.coordinateSystem,this.updateCoordinateSystem());const[r,n,a,o,h,l]=this.children,c=t.getRenderTarget(),u=t.getActiveCubeFace(),d=t.getActiveMipmapLevel(),p=t.xr.enabled;t.xr.enabled=!1;const m=i.texture.generateMipmaps;i.texture.generateMipmaps=!1,t.setRenderTarget(i,0,s),t.render(e,r),t.setRenderTarget(i,1,s),t.render(e,n),t.setRenderTarget(i,2,s),t.render(e,a),t.setRenderTarget(i,3,s),t.render(e,o),t.setRenderTarget(i,4,s),t.render(e,h),i.texture.generateMipmaps=m,t.setRenderTarget(i,5,s),t.render(e,l),t.setRenderTarget(c,u,d),t.xr.enabled=p,i.texture.needsPMREMUpdate=!0}}class fa extends js{constructor(t=[],e=301,i,s,r,n,a,o,h,l){super(t,e,i,s,r,n,a,o,h,l),this.isCubeTexture=!0,this.flipY=!1}get images(){return this.image}set images(t){this.image=t}}class xa extends Us{constructor(t=1,e={}){super(t,t,e),this.isWebGLCubeRenderTarget=!0;const i={width:t,height:t,depth:1},s=[i,i,i,i,i,i];this.texture=new fa(s),this._setTextureOptions(e),this.texture.isRenderTargetTexture=!0}fromEquirectangularTexture(t,e){this.texture.type=e.type,this.texture.colorSpace=e.colorSpace,this.texture.generateMipmaps=e.generateMipmaps,this.texture.minFilter=e.minFilter,this.texture.magFilter=e.magFilter;const i={uniforms:{tEquirect:{value:null}},vertexShader:"\n\n\t\t\t\tvarying vec3 vWorldDirection;\n\n\t\t\t\tvec3 transformDirection( in vec3 dir, in mat4 matrix ) {\n\n\t\t\t\t\treturn normalize( ( matrix * vec4( dir, 0.0 ) ).xyz );\n\n\t\t\t\t}\n\n\t\t\t\tvoid main() {\n\n\t\t\t\t\tvWorldDirection = transformDirection( position, modelMatrix );\n\n\t\t\t\t\t#include \n\t\t\t\t\t#include \n\n\t\t\t\t}\n\t\t\t",fragmentShader:"\n\n\t\t\t\tuniform sampler2D tEquirect;\n\n\t\t\t\tvarying vec3 vWorldDirection;\n\n\t\t\t\t#include \n\n\t\t\t\tvoid main() {\n\n\t\t\t\t\tvec3 direction = normalize( vWorldDirection );\n\n\t\t\t\t\tvec2 sampleUV = equirectUv( direction );\n\n\t\t\t\t\tgl_FragColor = texture2D( tEquirect, sampleUV );\n\n\t\t\t\t}\n\t\t\t"},s=new ra(5,5,5),r=new la({name:"CubemapFromEquirect",uniforms:na(i.uniforms),vertexShader:i.vertexShader,fragmentShader:i.fragmentShader,side:1,blending:0});r.uniforms.tEquirect.value=e;const n=new ia(s,r),a=e.minFilter;e.minFilter===_t&&(e.minFilter=wt);return new ga(1,10,this).update(t,n),e.minFilter=a,n.geometry.dispose(),n.material.dispose(),this}clear(t,e=!0,i=!0,s=!0){const r=t.getRenderTarget();for(let r=0;r<6;r++)t.setRenderTarget(this,r),t.clear(e,i,s);t.setRenderTarget(r)}}class ba extends Zr{constructor(){super(),this.isGroup=!0,this.type="Group"}}const va={type:"move"};class wa{constructor(){this._targetRay=null,this._grip=null,this._hand=null}getHandSpace(){return null===this._hand&&(this._hand=new ba,this._hand.matrixAutoUpdate=!1,this._hand.visible=!1,this._hand.joints={},this._hand.inputState={pinching:!1}),this._hand}getTargetRaySpace(){return null===this._targetRay&&(this._targetRay=new ba,this._targetRay.matrixAutoUpdate=!1,this._targetRay.visible=!1,this._targetRay.hasLinearVelocity=!1,this._targetRay.linearVelocity=new Ms,this._targetRay.hasAngularVelocity=!1,this._targetRay.angularVelocity=new Ms),this._targetRay}getGripSpace(){return null===this._grip&&(this._grip=new ba,this._grip.matrixAutoUpdate=!1,this._grip.visible=!1,this._grip.hasLinearVelocity=!1,this._grip.linearVelocity=new Ms,this._grip.hasAngularVelocity=!1,this._grip.angularVelocity=new Ms),this._grip}dispatchEvent(t){return null!==this._targetRay&&this._targetRay.dispatchEvent(t),null!==this._grip&&this._grip.dispatchEvent(t),null!==this._hand&&this._hand.dispatchEvent(t),this}connect(t){if(t&&t.hand){const e=this._hand;if(e)for(const i of t.hand.values())this._getHandJoint(e,i)}return this.dispatchEvent({type:"connected",data:t}),this}disconnect(t){return this.dispatchEvent({type:"disconnected",data:t}),null!==this._targetRay&&(this._targetRay.visible=!1),null!==this._grip&&(this._grip.visible=!1),null!==this._hand&&(this._hand.visible=!1),this}update(t,e,i){let s=null,r=null,n=null;const a=this._targetRay,o=this._grip,h=this._hand;if(t&&"visible-blurred"!==e.session.visibilityState){if(h&&t.hand){n=!0;for(const s of t.hand.values()){const t=e.getJointPose(s,i),r=this._getHandJoint(h,s);null!==t&&(r.matrix.fromArray(t.transform.matrix),r.matrix.decompose(r.position,r.rotation,r.scale),r.matrixWorldNeedsUpdate=!0,r.jointRadius=t.radius),r.visible=null!==t}const s=h.joints["index-finger-tip"],r=h.joints["thumb-tip"],a=s.position.distanceTo(r.position),o=.02,l=.005;h.inputState.pinching&&a>o+l?(h.inputState.pinching=!1,this.dispatchEvent({type:"pinchend",handedness:t.handedness,target:this})):!h.inputState.pinching&&a<=o-l&&(h.inputState.pinching=!0,this.dispatchEvent({type:"pinchstart",handedness:t.handedness,target:this}))}else null!==o&&t.gripSpace&&(r=e.getPose(t.gripSpace,i),null!==r&&(o.matrix.fromArray(r.transform.matrix),o.matrix.decompose(o.position,o.rotation,o.scale),o.matrixWorldNeedsUpdate=!0,r.linearVelocity?(o.hasLinearVelocity=!0,o.linearVelocity.copy(r.linearVelocity)):o.hasLinearVelocity=!1,r.angularVelocity?(o.hasAngularVelocity=!0,o.angularVelocity.copy(r.angularVelocity)):o.hasAngularVelocity=!1));null!==a&&(s=e.getPose(t.targetRaySpace,i),null===s&&null!==r&&(s=r),null!==s&&(a.matrix.fromArray(s.transform.matrix),a.matrix.decompose(a.position,a.rotation,a.scale),a.matrixWorldNeedsUpdate=!0,s.linearVelocity?(a.hasLinearVelocity=!0,a.linearVelocity.copy(s.linearVelocity)):a.hasLinearVelocity=!1,s.angularVelocity?(a.hasAngularVelocity=!0,a.angularVelocity.copy(s.angularVelocity)):a.hasAngularVelocity=!1,this.dispatchEvent(va)))}return null!==a&&(a.visible=null!==s),null!==o&&(o.visible=null!==r),null!==h&&(h.visible=null!==n),this}_getHandJoint(t,e){if(void 0===t.joints[e.jointName]){const i=new ba;i.matrixAutoUpdate=!1,i.visible=!1,t.joints[e.jointName]=i,t.add(i)}return t.joints[e.jointName]}}class Ma{constructor(t,e=25e-5){this.isFogExp2=!0,this.name="",this.color=new mn(t),this.density=e}clone(){return new Ma(this.color,this.density)}toJSON(){return{type:"FogExp2",name:this.name,color:this.color.getHex(),density:this.density}}}class Sa{constructor(t,e=1,i=1e3){this.isFog=!0,this.name="",this.color=new mn(t),this.near=e,this.far=i}clone(){return new Sa(this.color,this.near,this.far)}toJSON(){return{type:"Fog",name:this.name,color:this.color.getHex(),near:this.near,far:this.far}}}class _a extends Zr{constructor(){super(),this.isScene=!0,this.type="Scene",this.background=null,this.environment=null,this.fog=null,this.backgroundBlurriness=0,this.backgroundIntensity=1,this.backgroundRotation=new kr,this.environmentIntensity=1,this.environmentRotation=new kr,this.overrideMaterial=null,"undefined"!=typeof __THREE_DEVTOOLS__&&__THREE_DEVTOOLS__.dispatchEvent(new CustomEvent("observe",{detail:this}))}copy(t,e){return super.copy(t,e),null!==t.background&&(this.background=t.background.clone()),null!==t.environment&&(this.environment=t.environment.clone()),null!==t.fog&&(this.fog=t.fog.clone()),this.backgroundBlurriness=t.backgroundBlurriness,this.backgroundIntensity=t.backgroundIntensity,this.backgroundRotation.copy(t.backgroundRotation),this.environmentIntensity=t.environmentIntensity,this.environmentRotation.copy(t.environmentRotation),null!==t.overrideMaterial&&(this.overrideMaterial=t.overrideMaterial.clone()),this.matrixAutoUpdate=t.matrixAutoUpdate,this}toJSON(t){const e=super.toJSON(t);return null!==this.fog&&(e.object.fog=this.fog.toJSON()),this.backgroundBlurriness>0&&(e.object.backgroundBlurriness=this.backgroundBlurriness),1!==this.backgroundIntensity&&(e.object.backgroundIntensity=this.backgroundIntensity),e.object.backgroundRotation=this.backgroundRotation.toArray(),1!==this.environmentIntensity&&(e.object.environmentIntensity=this.environmentIntensity),e.object.environmentRotation=this.environmentRotation.toArray(),e}}class Aa{constructor(t,e){this.isInterleavedBuffer=!0,this.array=t,this.stride=e,this.count=void 0!==t?t.length/e:0,this.usage=ki,this.updateRanges=[],this.version=0,this.uuid=ps()}onUploadCallback(){}set needsUpdate(t){!0===t&&this.version++}setUsage(t){return this.usage=t,this}addUpdateRange(t,e){this.updateRanges.push({start:t,count:e})}clearUpdateRanges(){this.updateRanges.length=0}copy(t){return this.array=new t.array.constructor(t.array),this.count=t.count,this.stride=t.stride,this.usage=t.usage,this}copyAt(t,e,i){t*=this.stride,i*=e.stride;for(let s=0,r=this.stride;st.far||e.push({distance:o,point:Ba.clone(),uv:ln.getInterpolation(Ba,Va,Fa,La,Ea,ja,Da,new vs),face:null,object:this})}copy(t,e){return super.copy(t,e),void 0!==t.center&&this.center.copy(t.center),this.material=t.material,this}}function Ua(t,e,i,s,r,n){Pa.subVectors(t,i).addScalar(.5).multiply(s),void 0!==r?(Ra.x=n*Pa.x-r*Pa.y,Ra.y=r*Pa.x+n*Pa.y):Ra.copy(Pa),t.copy(e),t.x+=Ra.x,t.y+=Ra.y,t.applyMatrix4(Na)}const qa=new Ms,Ja=new Ms;class Xa extends Zr{constructor(){super(),this.isLOD=!0,this._currentLevel=0,this.type="LOD",Object.defineProperties(this,{levels:{enumerable:!0,value:[]}}),this.autoUpdate=!0}copy(t){super.copy(t,!1);const e=t.levels;for(let t=0,i=e.length;t0){let i,s;for(i=1,s=e.length;i0){qa.setFromMatrixPosition(this.matrixWorld);const i=t.ray.origin.distanceTo(qa);this.getObjectForDistance(i).raycast(t,e)}}update(t){const e=this.levels;if(e.length>1){qa.setFromMatrixPosition(t.matrixWorld),Ja.setFromMatrixPosition(this.matrixWorld);const i=qa.distanceTo(Ja)/t.zoom;let s,r;for(e[0].object.visible=!0,s=1,r=e.length;s=t))break;e[s-1].object.visible=!1,e[s].object.visible=!0}for(this._currentLevel=s-1;s1?null:e.copy(t.start).addScaledVector(i,r)}intersectsLine(t){const e=this.distanceToPoint(t.start),i=this.distanceToPoint(t.end);return e<0&&i>0||i<0&&e>0}intersectsBox(t){return t.intersectsPlane(this)}intersectsSphere(t){return t.intersectsPlane(this)}coplanarPoint(t){return t.copy(this.normal).multiplyScalar(-this.constant)}applyMatrix4(t,e){const i=e||vo.getNormalMatrix(t),s=this.coplanarPoint(xo).applyMatrix4(t),r=this.normal.applyMatrix3(i).normalize();return this.constant=-s.dot(r),this}translate(t){return this.constant-=t.dot(this.normal),this}equals(t){return t.normal.equals(this.normal)&&t.constant===this.constant}clone(){return(new this.constructor).copy(this)}}const Mo=new dr,So=new vs(.5,.5),_o=new Ms;class Ao{constructor(t=new wo,e=new wo,i=new wo,s=new wo,r=new wo,n=new wo){this.planes=[t,e,i,s,r,n]}set(t,e,i,s,r,n){const a=this.planes;return a[0].copy(t),a[1].copy(e),a[2].copy(i),a[3].copy(s),a[4].copy(r),a[5].copy(n),this}copy(t){const e=this.planes;for(let i=0;i<6;i++)e[i].copy(t.planes[i]);return this}setFromProjectionMatrix(t,e=2e3,i=!1){const s=this.planes,r=t.elements,n=r[0],a=r[1],o=r[2],h=r[3],l=r[4],c=r[5],u=r[6],d=r[7],p=r[8],m=r[9],y=r[10],g=r[11],f=r[12],x=r[13],b=r[14],v=r[15];if(s[0].setComponents(h-n,d-l,g-p,v-f).normalize(),s[1].setComponents(h+n,d+l,g+p,v+f).normalize(),s[2].setComponents(h+a,d+c,g+m,v+x).normalize(),s[3].setComponents(h-a,d-c,g-m,v-x).normalize(),i)s[4].setComponents(o,u,y,b).normalize(),s[5].setComponents(h-o,d-u,g-y,v-b).normalize();else if(s[4].setComponents(h-o,d-u,g-y,v-b).normalize(),e===Wi)s[5].setComponents(h+o,d+u,g+y,v+b).normalize();else{if(e!==Ui)throw new Error("THREE.Frustum.setFromProjectionMatrix(): Invalid coordinate system: "+e);s[5].setComponents(o,u,y,b).normalize()}return this}intersectsObject(t){if(void 0!==t.boundingSphere)null===t.boundingSphere&&t.computeBoundingSphere(),Mo.copy(t.boundingSphere).applyMatrix4(t.matrixWorld);else{const e=t.geometry;null===e.boundingSphere&&e.computeBoundingSphere(),Mo.copy(e.boundingSphere).applyMatrix4(t.matrixWorld)}return this.intersectsSphere(Mo)}intersectsSprite(t){Mo.center.set(0,0,0);const e=So.distanceTo(t.center);return Mo.radius=.7071067811865476+e,Mo.applyMatrix4(t.matrixWorld),this.intersectsSphere(Mo)}intersectsSphere(t){const e=this.planes,i=t.center,s=-t.radius;for(let t=0;t<6;t++){if(e[t].distanceToPoint(i)0?t.max.x:t.min.x,_o.y=s.normal.y>0?t.max.y:t.min.y,_o.z=s.normal.z>0?t.max.z:t.min.z,s.distanceToPoint(_o)<0)return!1}return!0}containsPoint(t){const e=this.planes;for(let i=0;i<6;i++)if(e[i].distanceToPoint(t)<0)return!1;return!0}clone(){return(new this.constructor).copy(this)}}const To=new wr,zo=new Ao;class Co{constructor(){this.coordinateSystem=Wi}intersectsObject(t,e){if(!e.isArrayCamera||0===e.cameras.length)return!1;for(let i=0;i=r.length&&r.push({start:-1,count:-1,z:-1,index:-1});const a=r[this.index];n.push(a),this.index++,a.start=t,a.count=e,a.z=i,a.index=s}reset(){this.list.length=0,this.index=0}}const Po=new wr,Ro=new mn(1,1,1),No=new Ao,Vo=new Co,Fo=new Zs,Lo=new dr,Eo=new Ms,jo=new Ms,Do=new Ms,Wo=new Oo,Uo=new ia,qo=[];function Jo(t,e,i=0){const s=e.itemSize;if(t.isInterleavedBufferAttribute||t.array.constructor!==e.array.constructor){const r=t.count;for(let n=0;n65535?new Uint32Array(s):new Uint16Array(s);e.setIndex(new zn(t,1))}this._geometryInitialized=!0}}_validateGeometry(t){const e=this.geometry;if(Boolean(t.getIndex())!==Boolean(e.getIndex()))throw new Error('THREE.BatchedMesh: All geometries must consistently have "index".');for(const i in e.attributes){if(!t.hasAttribute(i))throw new Error(`THREE.BatchedMesh: Added geometry missing "${i}". All geometries must have consistent attributes.`);const s=t.getAttribute(i),r=e.getAttribute(i);if(s.itemSize!==r.itemSize||s.normalized!==r.normalized)throw new Error("THREE.BatchedMesh: All attributes must have a consistent itemSize and normalized value.")}}validateInstanceId(t){const e=this._instanceInfo;if(t<0||t>=e.length||!1===e[t].active)throw new Error(`THREE.BatchedMesh: Invalid instanceId ${t}. Instance is either out of range or has been deleted.`)}validateGeometryId(t){const e=this._geometryInfo;if(t<0||t>=e.length||!1===e[t].active)throw new Error(`THREE.BatchedMesh: Invalid geometryId ${t}. Geometry is either out of range or has been deleted.`)}setCustomSort(t){return this.customSort=t,this}computeBoundingBox(){null===this.boundingBox&&(this.boundingBox=new Zs);const t=this.boundingBox,e=this._instanceInfo;t.makeEmpty();for(let i=0,s=e.length;i=this.maxInstanceCount&&0===this._availableInstanceIds.length)throw new Error("THREE.BatchedMesh: Maximum item count reached.");const e={visible:!0,active:!0,geometryIndex:t};let i=null;this._availableInstanceIds.length>0?(this._availableInstanceIds.sort(Io),i=this._availableInstanceIds.shift(),this._instanceInfo[i]=e):(i=this._instanceInfo.length,this._instanceInfo.push(e));const s=this._matricesTexture;Po.identity().toArray(s.image.data,16*i),s.needsUpdate=!0;const r=this._colorsTexture;return r&&(Ro.toArray(r.image.data,4*i),r.needsUpdate=!0),this._visibilityChanged=!0,i}addGeometry(t,e=-1,i=-1){this._initializeGeometry(t),this._validateGeometry(t);const s={vertexStart:-1,vertexCount:-1,reservedVertexCount:-1,indexStart:-1,indexCount:-1,reservedIndexCount:-1,start:-1,count:-1,boundingBox:null,boundingSphere:null,active:!0},r=this._geometryInfo;s.vertexStart=this._nextVertexStart,s.reservedVertexCount=-1===e?t.getAttribute("position").count:e;const n=t.getIndex();if(null!==n&&(s.indexStart=this._nextIndexStart,s.reservedIndexCount=-1===i?n.count:i),-1!==s.indexStart&&s.indexStart+s.reservedIndexCount>this._maxIndexCount||s.vertexStart+s.reservedVertexCount>this._maxVertexCount)throw new Error("THREE.BatchedMesh: Reserved space request exceeds the maximum buffer size.");let a;return this._availableGeometryIds.length>0?(this._availableGeometryIds.sort(Io),a=this._availableGeometryIds.shift(),r[a]=s):(a=this._geometryCount,this._geometryCount++,r.push(s)),this.setGeometryAt(a,t),this._nextIndexStart=s.indexStart+s.reservedIndexCount,this._nextVertexStart=s.vertexStart+s.reservedVertexCount,a}setGeometryAt(t,e){if(t>=this._geometryCount)throw new Error("THREE.BatchedMesh: Maximum geometry count reached.");this._validateGeometry(e);const i=this.geometry,s=null!==i.getIndex(),r=i.getIndex(),n=e.getIndex(),a=this._geometryInfo[t];if(s&&n.count>a.reservedIndexCount||e.attributes.position.count>a.reservedVertexCount)throw new Error("THREE.BatchedMesh: Reserved space not large enough for provided geometry.");const o=a.vertexStart,h=a.reservedVertexCount;a.vertexCount=e.getAttribute("position").count;for(const t in i.attributes){const s=e.getAttribute(t),r=i.getAttribute(t);Jo(s,r,o);const n=s.itemSize;for(let t=s.count,e=h;t=e.length||!1===e[t].active)return this;const i=this._instanceInfo;for(let e=0,s=i.length;ee).sort((t,e)=>i[t].vertexStart-i[e].vertexStart),r=this.geometry;for(let n=0,a=i.length;n=this._geometryCount)return null;const i=this.geometry,s=this._geometryInfo[t];if(null===s.boundingBox){const t=new Zs,e=i.index,r=i.attributes.position;for(let i=s.start,n=s.start+s.count;i=this._geometryCount)return null;const i=this.geometry,s=this._geometryInfo[t];if(null===s.boundingSphere){const e=new dr;this.getBoundingBoxAt(t,Fo),Fo.getCenter(e.center);const r=i.index,n=i.attributes.position;let a=0;for(let t=s.start,i=s.start+s.count;tt.active);if(Math.max(...i.map(t=>t.vertexStart+t.reservedVertexCount))>t)throw new Error(`BatchedMesh: Geometry vertex values are being used outside the range ${e}. Cannot shrink further.`);if(this.geometry.index){if(Math.max(...i.map(t=>t.indexStart+t.reservedIndexCount))>e)throw new Error(`BatchedMesh: Geometry index values are being used outside the range ${e}. Cannot shrink further.`)}const s=this.geometry;s.dispose(),this._maxVertexCount=t,this._maxIndexCount=e,this._geometryInitialized&&(this._geometryInitialized=!1,this.geometry=new qn,this._initializeGeometry(s));const r=this.geometry;s.index&&Xo(s.index.array,r.index.array);for(const t in s.attributes)Xo(s.attributes[t].array,r.attributes[t].array)}raycast(t,e){const i=this._instanceInfo,s=this._geometryInfo,r=this.matrixWorld,n=this.geometry;Uo.material=this.material,Uo.geometry.index=n.index,Uo.geometry.attributes=n.attributes,null===Uo.geometry.boundingBox&&(Uo.geometry.boundingBox=new Zs),null===Uo.geometry.boundingSphere&&(Uo.geometry.boundingSphere=new dr);for(let n=0,a=i.length;n({...t,boundingBox:null!==t.boundingBox?t.boundingBox.clone():null,boundingSphere:null!==t.boundingSphere?t.boundingSphere.clone():null})),this._instanceInfo=t._instanceInfo.map(t=>({...t})),this._availableInstanceIds=t._availableInstanceIds.slice(),this._availableGeometryIds=t._availableGeometryIds.slice(),this._nextIndexStart=t._nextIndexStart,this._nextVertexStart=t._nextVertexStart,this._geometryCount=t._geometryCount,this._maxInstanceCount=t._maxInstanceCount,this._maxVertexCount=t._maxVertexCount,this._maxIndexCount=t._maxIndexCount,this._geometryInitialized=t._geometryInitialized,this._multiDrawCounts=t._multiDrawCounts.slice(),this._multiDrawStarts=t._multiDrawStarts.slice(),this._indirectTexture=t._indirectTexture.clone(),this._indirectTexture.image.data=this._indirectTexture.image.data.slice(),this._matricesTexture=t._matricesTexture.clone(),this._matricesTexture.image.data=this._matricesTexture.image.data.slice(),null!==this._colorsTexture&&(this._colorsTexture=t._colorsTexture.clone(),this._colorsTexture.image.data=this._colorsTexture.image.data.slice()),this}dispose(){this.geometry.dispose(),this._matricesTexture.dispose(),this._matricesTexture=null,this._indirectTexture.dispose(),this._indirectTexture=null,null!==this._colorsTexture&&(this._colorsTexture.dispose(),this._colorsTexture=null)}onBeforeRender(t,e,i,s,r){if(!this._visibilityChanged&&!this.perObjectFrustumCulled&&!this.sortObjects)return;const n=s.getIndex(),a=null===n?1:n.array.BYTES_PER_ELEMENT,o=this._instanceInfo,h=this._multiDrawStarts,l=this._multiDrawCounts,c=this._geometryInfo,u=this.perObjectFrustumCulled,d=this._indirectTexture,p=d.image.data,m=i.isArrayCamera?Vo:No;u&&!i.isArrayCamera&&(Po.multiplyMatrices(i.projectionMatrix,i.matrixWorldInverse).multiply(this.matrixWorld),No.setFromProjectionMatrix(Po,i.coordinateSystem,i.reversedDepth));let y=0;if(this.sortObjects){Po.copy(this.matrixWorld).invert(),Eo.setFromMatrixPosition(i.matrixWorld).applyMatrix4(Po),jo.set(0,0,-1).transformDirection(i.matrixWorld).transformDirection(Po);for(let t=0,e=o.length;t0){const i=t[e[0]];if(void 0!==i){this.morphTargetInfluences=[],this.morphTargetDictionary={};for(let t=0,e=i.length;ts)return;th.applyMatrix4(t.matrixWorld);const h=e.ray.origin.distanceTo(th);return he.far?void 0:{distance:h,point:eh.clone().applyMatrix4(t.matrixWorld),index:a,face:null,faceIndex:null,barycoord:null,object:t}}const rh=new Ms,nh=new Ms;class ah extends ih{constructor(t,e){super(t,e),this.isLineSegments=!0,this.type="LineSegments"}computeLineDistances(){const t=this.geometry;if(null===t.index){const e=t.attributes.position,i=[];for(let t=0,s=e.count;t0){const i=t[e[0]];if(void 0!==i){this.morphTargetInfluences=[],this.morphTargetDictionary={};for(let t=0,e=i.length;tr.far)return;n.push({distance:h,distanceToRay:Math.sqrt(o),point:i,index:e,face:null,faceIndex:null,barycoord:null,object:a})}}class yh extends js{constructor(t,e,i,s,r=1006,n=1006,a,o,h){super(t,e,i,s,r,n,a,o,h),this.isVideoTexture=!0,this.generateMipmaps=!1,this._requestVideoFrameCallbackId=0;const l=this;"requestVideoFrameCallback"in t&&(this._requestVideoFrameCallbackId=t.requestVideoFrameCallback(function e(){l.needsUpdate=!0,l._requestVideoFrameCallbackId=t.requestVideoFrameCallback(e)}))}clone(){return new this.constructor(this.image).copy(this)}update(){const t=this.image;!1==="requestVideoFrameCallback"in t&&t.readyState>=t.HAVE_CURRENT_DATA&&(this.needsUpdate=!0)}dispose(){0!==this._requestVideoFrameCallbackId&&(this.source.data.cancelVideoFrameCallback(this._requestVideoFrameCallbackId),this._requestVideoFrameCallbackId=0),super.dispose()}}class gh extends yh{constructor(t,e,i,s,r,n,a,o){super({},t,e,i,s,r,n,a,o),this.isVideoFrameTexture=!0}update(){}clone(){return(new this.constructor).copy(this)}setFrame(t){this.image=t,this.needsUpdate=!0}}class fh extends js{constructor(t,e){super({width:t,height:e}),this.isFramebufferTexture=!0,this.magFilter=gt,this.minFilter=gt,this.generateMipmaps=!1,this.needsUpdate=!0}}class xh extends js{constructor(t,e,i,s,r,n,a,o,h,l,c,u){super(null,n,a,o,h,l,s,r,c,u),this.isCompressedTexture=!0,this.image={width:e,height:i},this.mipmaps=t,this.flipY=!1,this.generateMipmaps=!1}}class bh extends xh{constructor(t,e,i,s,r,n){super(t,e,i,r,n),this.isCompressedArrayTexture=!0,this.image.depth=s,this.wrapR=mt,this.layerUpdates=new Set}addLayerUpdate(t){this.layerUpdates.add(t)}clearLayerUpdates(){this.layerUpdates.clear()}}class vh extends xh{constructor(t,e,i){super(void 0,t[0].width,t[0].height,e,i,ht),this.isCompressedCubeTexture=!0,this.isCubeTexture=!0,this.image=t}}class wh extends js{constructor(t,e,i,s,r,n,a,o,h){super(t,e,i,s,r,n,a,o,h),this.isCanvasTexture=!0,this.needsUpdate=!0}}class Mh extends js{constructor(t,e,i=1014,s,r,n,a=1003,o=1003,h,l=1026,c=1){if(l!==Wt&&1027!==l)throw new Error("DepthTexture format must be either THREE.DepthFormat or THREE.DepthStencilFormat");super({width:t,height:e,depth:c},s,r,n,a,o,l,i,h),this.isDepthTexture=!0,this.flipY=!1,this.generateMipmaps=!1,this.compareFunction=null}copy(t){return super.copy(t),this.source=new Vs(Object.assign({},t.image)),this.compareFunction=t.compareFunction,this}toJSON(t){const e=super.toJSON(t);return null!==this.compareFunction&&(e.compareFunction=this.compareFunction),e}}class Sh extends Mh{constructor(t,e=1014,i=301,s,r,n=1003,a=1003,o,h=1026){const l={width:t,height:t,depth:1},c=[l,l,l,l,l,l];super(t,t,e,i,s,r,n,a,o,h),this.image=c,this.isCubeDepthTexture=!0,this.isCubeTexture=!0}get images(){return this.image}set images(t){this.image=t}}class _h extends js{constructor(t=null){super(),this.sourceTexture=t,this.isExternalTexture=!0}copy(t){return super.copy(t),this.sourceTexture=t.sourceTexture,this}}class Ah extends qn{constructor(t=1,e=1,i=4,s=8,r=1){super(),this.type="CapsuleGeometry",this.parameters={radius:t,height:e,capSegments:i,radialSegments:s,heightSegments:r},e=Math.max(0,e),i=Math.max(1,Math.floor(i)),s=Math.max(3,Math.floor(s)),r=Math.max(1,Math.floor(r));const n=[],a=[],o=[],h=[],l=e/2,c=Math.PI/2*t,u=e,d=2*c+u,p=2*i+r,m=s+1,y=new Ms,g=new Ms;for(let f=0;f<=p;f++){let x=0,b=0,v=0,w=0;if(f<=i){const e=f/i,s=e*Math.PI/2;b=-l-t*Math.cos(s),v=t*Math.sin(s),w=-t*Math.cos(s),x=e*c}else if(f<=i+r){const s=(f-i)/r;b=s*e-l,v=t,w=0,x=c+s*u}else{const e=(f-i-r)/i,s=e*Math.PI/2;b=l+t*Math.sin(s),v=t*Math.cos(s),w=t*Math.sin(s),x=c+u+e*c}const M=Math.max(0,Math.min(1,x/d));let S=0;0===f?S=.5/s:f===p&&(S=-.5/s);for(let t=0;t<=s;t++){const e=t/s,i=e*Math.PI*2,r=Math.sin(i),n=Math.cos(i);g.x=-v*n,g.y=b,g.z=v*r,a.push(g.x,g.y,g.z),y.set(-v*n,w,v*r),y.normalize(),o.push(y.x,y.y,y.z),h.push(e+S,M)}if(f>0){const t=(f-1)*m;for(let e=0;e0||0!==s)&&(l.push(n,a,h),x+=3),(e>0||s!==r-1)&&(l.push(a,o,h),x+=3)}h.addGroup(g,x,0),g+=x}(),!1===n&&(t>0&&f(!0),e>0&&f(!1)),this.setIndex(l),this.setAttribute("position",new Vn(c,3)),this.setAttribute("normal",new Vn(u,3)),this.setAttribute("uv",new Vn(d,2))}copy(t){return super.copy(t),this.parameters=Object.assign({},t.parameters),this}static fromJSON(t){return new zh(t.radiusTop,t.radiusBottom,t.height,t.radialSegments,t.heightSegments,t.openEnded,t.thetaStart,t.thetaLength)}}class Ch extends zh{constructor(t=1,e=1,i=32,s=1,r=!1,n=0,a=2*Math.PI){super(0,t,e,i,s,r,n,a),this.type="ConeGeometry",this.parameters={radius:t,height:e,radialSegments:i,heightSegments:s,openEnded:r,thetaStart:n,thetaLength:a}}static fromJSON(t){return new Ch(t.radius,t.height,t.radialSegments,t.heightSegments,t.openEnded,t.thetaStart,t.thetaLength)}}class Ih extends qn{constructor(t=[],e=[],i=1,s=0){super(),this.type="PolyhedronGeometry",this.parameters={vertices:t,indices:e,radius:i,detail:s};const r=[],n=[];function a(t,e,i,s){const r=s+1,n=[];for(let s=0;s<=r;s++){n[s]=[];const a=t.clone().lerp(i,s/r),o=e.clone().lerp(i,s/r),h=r-s;for(let t=0;t<=h;t++)n[s][t]=0===t&&s===r?a:a.clone().lerp(o,t/h)}for(let t=0;t.9&&a<.1&&(e<.2&&(n[t+0]+=1),i<.2&&(n[t+2]+=1),s<.2&&(n[t+4]+=1))}}()}(),this.setAttribute("position",new Vn(r,3)),this.setAttribute("normal",new Vn(r.slice(),3)),this.setAttribute("uv",new Vn(n,2)),0===s?this.computeVertexNormals():this.normalizeNormals()}copy(t){return super.copy(t),this.parameters=Object.assign({},t.parameters),this}static fromJSON(t){return new Ih(t.vertices,t.indices,t.radius,t.details)}}class Bh extends Ih{constructor(t=1,e=0){const i=(1+Math.sqrt(5))/2,s=1/i;super([-1,-1,-1,-1,-1,1,-1,1,-1,-1,1,1,1,-1,-1,1,-1,1,1,1,-1,1,1,1,0,-s,-i,0,-s,i,0,s,-i,0,s,i,-s,-i,0,-s,i,0,s,-i,0,s,i,0,-i,0,-s,i,0,-s,-i,0,s,i,0,s],[3,11,7,3,7,15,3,15,13,7,19,17,7,17,6,7,6,15,17,4,8,17,8,10,17,10,6,8,0,16,8,16,2,8,2,10,0,12,1,0,1,18,0,18,16,6,10,2,6,2,13,6,13,15,2,16,18,2,18,3,2,3,13,18,1,9,18,9,11,18,11,3,4,14,12,4,12,0,4,0,8,11,9,5,11,5,19,11,19,7,19,5,14,19,14,4,19,4,17,1,12,14,1,14,5,1,5,9],t,e),this.type="DodecahedronGeometry",this.parameters={radius:t,detail:e}}static fromJSON(t){return new Bh(t.radius,t.detail)}}const kh=new Ms,Oh=new Ms,Ph=new Ms,Rh=new ln;class Nh extends qn{constructor(t=null,e=1){if(super(),this.type="EdgesGeometry",this.parameters={geometry:t,thresholdAngle:e},null!==t){const i=4,s=Math.pow(10,i),r=Math.cos(us*e),n=t.getIndex(),a=t.getAttribute("position"),o=n?n.count:a.count,h=[0,0,0],l=["a","b","c"],c=new Array(3),u={},d=[];for(let t=0;t0)){h=s;break}h=s-1}if(s=h,i[s]===n)return s/(r-1);const l=i[s];return(s+(n-l)/(i[s+1]-l))/(r-1)}getTangent(t,e){const i=1e-4;let s=t-i,r=t+i;s<0&&(s=0),r>1&&(r=1);const n=this.getPoint(s),a=this.getPoint(r),o=e||(n.isVector2?new vs:new Ms);return o.copy(a).sub(n).normalize(),o}getTangentAt(t,e){const i=this.getUtoTmapping(t);return this.getTangent(i,e)}computeFrenetFrames(t,e=!1){const i=new Ms,s=[],r=[],n=[],a=new Ms,o=new wr;for(let e=0;e<=t;e++){const i=e/t;s[e]=this.getTangentAt(i,new Ms)}r[0]=new Ms,n[0]=new Ms;let h=Number.MAX_VALUE;const l=Math.abs(s[0].x),c=Math.abs(s[0].y),u=Math.abs(s[0].z);l<=h&&(h=l,i.set(1,0,0)),c<=h&&(h=c,i.set(0,1,0)),u<=h&&i.set(0,0,1),a.crossVectors(s[0],i).normalize(),r[0].crossVectors(s[0],a),n[0].crossVectors(s[0],r[0]);for(let e=1;e<=t;e++){if(r[e]=r[e-1].clone(),n[e]=n[e-1].clone(),a.crossVectors(s[e-1],s[e]),a.length()>Number.EPSILON){a.normalize();const t=Math.acos(ms(s[e-1].dot(s[e]),-1,1));r[e].applyMatrix4(o.makeRotationAxis(a,t))}n[e].crossVectors(s[e],r[e])}if(!0===e){let e=Math.acos(ms(r[0].dot(r[t]),-1,1));e/=t,s[0].dot(a.crossVectors(r[0],r[t]))>0&&(e=-e);for(let i=1;i<=t;i++)r[i].applyMatrix4(o.makeRotationAxis(s[i],e*i)),n[i].crossVectors(s[i],r[i])}return{tangents:s,normals:r,binormals:n}}clone(){return(new this.constructor).copy(this)}copy(t){return this.arcLengthDivisions=t.arcLengthDivisions,this}toJSON(){const t={metadata:{version:4.7,type:"Curve",generator:"Curve.toJSON"}};return t.arcLengthDivisions=this.arcLengthDivisions,t.type=this.type,t}fromJSON(t){return this.arcLengthDivisions=t.arcLengthDivisions,this}}class Fh extends Vh{constructor(t=0,e=0,i=1,s=1,r=0,n=2*Math.PI,a=!1,o=0){super(),this.isEllipseCurve=!0,this.type="EllipseCurve",this.aX=t,this.aY=e,this.xRadius=i,this.yRadius=s,this.aStartAngle=r,this.aEndAngle=n,this.aClockwise=a,this.aRotation=o}getPoint(t,e=new vs){const i=e,s=2*Math.PI;let r=this.aEndAngle-this.aStartAngle;const n=Math.abs(r)s;)r-=s;r0?0:(Math.floor(Math.abs(h)/r)+1)*r:0===l&&h===r-1&&(h=r-2,l=1),this.closed||h>0?a=s[(h-1)%r]:(jh.subVectors(s[0],s[1]).add(s[0]),a=jh);const c=s[h%r],u=s[(h+1)%r];if(this.closed||h+2s.length-2?s.length-1:n+1],c=s[n>s.length-3?s.length-1:n+2];return i.set(Jh(a,o.x,h.x,l.x,c.x),Jh(a,o.y,h.y,l.y,c.y)),i}copy(t){super.copy(t),this.points=[];for(let e=0,i=t.points.length;e=i){const t=s[r]-i,n=this.curves[r],a=n.getLength(),o=0===a?0:1-t/a;return n.getPointAt(o,e)}r++}return null}getLength(){const t=this.getCurveLengths();return t[t.length-1]}updateArcLengths(){this.needsUpdate=!0,this.cacheLengths=null,this.getCurveLengths()}getCurveLengths(){if(this.cacheLengths&&this.cacheLengths.length===this.curves.length)return this.cacheLengths;const t=[];let e=0;for(let i=0,s=this.curves.length;i1&&!e[e.length-1].equals(e[0])&&e.push(e[0]),e}copy(t){super.copy(t),this.curves=[];for(let e=0,i=t.curves.length;e0){const t=h.getPoint(0);t.equals(this.currentPoint)||this.lineTo(t.x,t.y)}this.curves.push(h);const l=h.getPoint(1);return this.currentPoint.copy(l),this}copy(t){return super.copy(t),this.currentPoint.copy(t.currentPoint),this}toJSON(){const t=super.toJSON();return t.currentPoint=this.currentPoint.toArray(),t}fromJSON(t){return super.fromJSON(t),this.currentPoint.fromArray(t.currentPoint),this}}class rl extends sl{constructor(t){super(t),this.uuid=ps(),this.type="Shape",this.holes=[]}getPointsHoles(t){const e=[];for(let i=0,s=this.holes.length;i80*i){o=t[0],h=t[1];let e=o,s=h;for(let n=i;ne&&(e=i),r>s&&(s=r)}l=Math.max(e-o,s-h),l=0!==l?32767/l:0}return hl(n,a,i,o,h,l,0),a}function al(t,e,i,s,r){let n;if(r===function(t,e,i,s){let r=0;for(let n=e,a=i-s;n0)for(let r=e;r=e;r-=s)n=Cl(r/s|0,t[r],t[r+1],n);return n&&Ml(n,n.next)&&(Il(n),n=n.next),n}function ol(t,e){if(!t)return t;e||(e=t);let i,s=t;do{if(i=!1,s.steiner||!Ml(s,s.next)&&0!==wl(s.prev,s,s.next))s=s.next;else{if(Il(s),s=e=s.prev,s===s.next)break;i=!0}}while(i||s!==e);return e}function hl(t,e,i,s,r,n,a){if(!t)return;!a&&n&&function(t,e,i,s){let r=t;do{0===r.z&&(r.z=gl(r.x,r.y,e,i,s)),r.prevZ=r.prev,r.nextZ=r.next,r=r.next}while(r!==t);r.prevZ.nextZ=null,r.prevZ=null,function(t){let e,i=1;do{let s,r=t;t=null;let n=null;for(e=0;r;){e++;let a=r,o=0;for(let t=0;t0||h>0&&a;)0!==o&&(0===h||!a||r.z<=a.z)?(s=r,r=r.nextZ,o--):(s=a,a=a.nextZ,h--),n?n.nextZ=s:t=s,s.prevZ=n,n=s;r=a}n.nextZ=null,i*=2}while(e>1)}(r)}(t,s,r,n);let o=t;for(;t.prev!==t.next;){const h=t.prev,l=t.next;if(n?cl(t,s,r,n):ll(t))e.push(h.i,t.i,l.i),Il(t),t=l.next,o=l.next;else if((t=l)===o){a?1===a?hl(t=ul(ol(t),e),e,i,s,r,n,2):2===a&&dl(t,e,i,s,r,n):hl(ol(t),e,i,s,r,n,1);break}}}function ll(t){const e=t.prev,i=t,s=t.next;if(wl(e,i,s)>=0)return!1;const r=e.x,n=i.x,a=s.x,o=e.y,h=i.y,l=s.y,c=Math.min(r,n,a),u=Math.min(o,h,l),d=Math.max(r,n,a),p=Math.max(o,h,l);let m=s.next;for(;m!==e;){if(m.x>=c&&m.x<=d&&m.y>=u&&m.y<=p&&bl(r,o,n,h,a,l,m.x,m.y)&&wl(m.prev,m,m.next)>=0)return!1;m=m.next}return!0}function cl(t,e,i,s){const r=t.prev,n=t,a=t.next;if(wl(r,n,a)>=0)return!1;const o=r.x,h=n.x,l=a.x,c=r.y,u=n.y,d=a.y,p=Math.min(o,h,l),m=Math.min(c,u,d),y=Math.max(o,h,l),g=Math.max(c,u,d),f=gl(p,m,e,i,s),x=gl(y,g,e,i,s);let b=t.prevZ,v=t.nextZ;for(;b&&b.z>=f&&v&&v.z<=x;){if(b.x>=p&&b.x<=y&&b.y>=m&&b.y<=g&&b!==r&&b!==a&&bl(o,c,h,u,l,d,b.x,b.y)&&wl(b.prev,b,b.next)>=0)return!1;if(b=b.prevZ,v.x>=p&&v.x<=y&&v.y>=m&&v.y<=g&&v!==r&&v!==a&&bl(o,c,h,u,l,d,v.x,v.y)&&wl(v.prev,v,v.next)>=0)return!1;v=v.nextZ}for(;b&&b.z>=f;){if(b.x>=p&&b.x<=y&&b.y>=m&&b.y<=g&&b!==r&&b!==a&&bl(o,c,h,u,l,d,b.x,b.y)&&wl(b.prev,b,b.next)>=0)return!1;b=b.prevZ}for(;v&&v.z<=x;){if(v.x>=p&&v.x<=y&&v.y>=m&&v.y<=g&&v!==r&&v!==a&&bl(o,c,h,u,l,d,v.x,v.y)&&wl(v.prev,v,v.next)>=0)return!1;v=v.nextZ}return!0}function ul(t,e){let i=t;do{const s=i.prev,r=i.next.next;!Ml(s,r)&&Sl(s,i,i.next,r)&&Tl(s,r)&&Tl(r,s)&&(e.push(s.i,i.i,r.i),Il(i),Il(i.next),i=t=r),i=i.next}while(i!==t);return ol(i)}function dl(t,e,i,s,r,n){let a=t;do{let t=a.next.next;for(;t!==a.prev;){if(a.i!==t.i&&vl(a,t)){let o=zl(a,t);return a=ol(a,a.next),o=ol(o,o.next),hl(a,e,i,s,r,n,0),void hl(o,e,i,s,r,n,0)}t=t.next}a=a.next}while(a!==t)}function pl(t,e){let i=t.x-e.x;if(0===i&&(i=t.y-e.y,0===i)){i=(t.next.y-t.y)/(t.next.x-t.x)-(e.next.y-e.y)/(e.next.x-e.x)}return i}function ml(t,e){const i=function(t,e){let i=e;const s=t.x,r=t.y;let n,a=-1/0;if(Ml(t,i))return i;do{if(Ml(t,i.next))return i.next;if(r<=i.y&&r>=i.next.y&&i.next.y!==i.y){const t=i.x+(r-i.y)*(i.next.x-i.x)/(i.next.y-i.y);if(t<=s&&t>a&&(a=t,n=i.x=i.x&&i.x>=h&&s!==i.x&&xl(rn.x||i.x===n.x&&yl(n,i)))&&(n=i,c=e)}i=i.next}while(i!==o);return n}(t,e);if(!i)return e;const s=zl(i,t);return ol(s,s.next),ol(i,i.next)}function yl(t,e){return wl(t.prev,t,e.prev)<0&&wl(e.next,t,t.next)<0}function gl(t,e,i,s,r){return(t=1431655765&((t=858993459&((t=252645135&((t=16711935&((t=(t-i)*r|0)|t<<8))|t<<4))|t<<2))|t<<1))|(e=1431655765&((e=858993459&((e=252645135&((e=16711935&((e=(e-s)*r|0)|e<<8))|e<<4))|e<<2))|e<<1))<<1}function fl(t){let e=t,i=t;do{(e.x=(t-a)*(n-o)&&(t-a)*(s-o)>=(i-a)*(e-o)&&(i-a)*(n-o)>=(r-a)*(s-o)}function bl(t,e,i,s,r,n,a,o){return!(t===a&&e===o)&&xl(t,e,i,s,r,n,a,o)}function vl(t,e){return t.next.i!==e.i&&t.prev.i!==e.i&&!function(t,e){let i=t;do{if(i.i!==t.i&&i.next.i!==t.i&&i.i!==e.i&&i.next.i!==e.i&&Sl(i,i.next,t,e))return!0;i=i.next}while(i!==t);return!1}(t,e)&&(Tl(t,e)&&Tl(e,t)&&function(t,e){let i=t,s=!1;const r=(t.x+e.x)/2,n=(t.y+e.y)/2;do{i.y>n!=i.next.y>n&&i.next.y!==i.y&&r<(i.next.x-i.x)*(n-i.y)/(i.next.y-i.y)+i.x&&(s=!s),i=i.next}while(i!==t);return s}(t,e)&&(wl(t.prev,t,e.prev)||wl(t,e.prev,e))||Ml(t,e)&&wl(t.prev,t,t.next)>0&&wl(e.prev,e,e.next)>0)}function wl(t,e,i){return(e.y-t.y)*(i.x-e.x)-(e.x-t.x)*(i.y-e.y)}function Ml(t,e){return t.x===e.x&&t.y===e.y}function Sl(t,e,i,s){const r=Al(wl(t,e,i)),n=Al(wl(t,e,s)),a=Al(wl(i,s,t)),o=Al(wl(i,s,e));return r!==n&&a!==o||(!(0!==r||!_l(t,i,e))||(!(0!==n||!_l(t,s,e))||(!(0!==a||!_l(i,t,s))||!(0!==o||!_l(i,e,s)))))}function _l(t,e,i){return e.x<=Math.max(t.x,i.x)&&e.x>=Math.min(t.x,i.x)&&e.y<=Math.max(t.y,i.y)&&e.y>=Math.min(t.y,i.y)}function Al(t){return t>0?1:t<0?-1:0}function Tl(t,e){return wl(t.prev,t,t.next)<0?wl(t,e,t.next)>=0&&wl(t,t.prev,e)>=0:wl(t,e,t.prev)<0||wl(t,t.next,e)<0}function zl(t,e){const i=Bl(t.i,t.x,t.y),s=Bl(e.i,e.x,e.y),r=t.next,n=e.prev;return t.next=e,e.prev=t,i.next=r,r.prev=i,s.next=i,i.prev=s,n.next=s,s.prev=n,s}function Cl(t,e,i,s){const r=Bl(t,e,i);return s?(r.next=s.next,r.prev=s,s.next.prev=r,s.next=r):(r.prev=r,r.next=r),r}function Il(t){t.next.prev=t.prev,t.prev.next=t.next,t.prevZ&&(t.prevZ.nextZ=t.nextZ),t.nextZ&&(t.nextZ.prevZ=t.prevZ)}function Bl(t,e,i){return{i:t,x:e,y:i,prev:null,next:null,z:0,prevZ:null,nextZ:null,steiner:!1}}class kl{static triangulate(t,e,i=2){return nl(t,e,i)}}class Ol{static area(t){const e=t.length;let i=0;for(let s=e-1,r=0;r2&&t[e-1].equals(t[0])&&t.pop()}function Rl(t,e){for(let i=0;iNumber.EPSILON){const u=Math.sqrt(c),d=Math.sqrt(h*h+l*l),p=e.x-o/u,m=e.y+a/u,y=((i.x-l/d-p)*l-(i.y+h/d-m)*h)/(a*l-o*h);s=p+a*y-t.x,r=m+o*y-t.y;const g=s*s+r*r;if(g<=2)return new vs(s,r);n=Math.sqrt(g/2)}else{let t=!1;a>Number.EPSILON?h>Number.EPSILON&&(t=!0):a<-Number.EPSILON?h<-Number.EPSILON&&(t=!0):Math.sign(o)===Math.sign(l)&&(t=!0),t?(s=-o,r=a,n=Math.sqrt(c)):(s=a,r=o,n=Math.sqrt(c/2))}return new vs(s/n,r/n)}const k=[];for(let t=0,e=z.length,i=e-1,s=t+1;t=0;t--){const e=t/p,i=c*Math.cos(e*Math.PI/2),s=u*Math.sin(e*Math.PI/2)+d;for(let t=0,e=z.length;t=0;){const s=i;let r=i-1;r<0&&(r=t.length-1);for(let t=0,i=o+2*p;t0)&&d.push(e,r,h),(t!==i-1||o0!=t>0&&this.version++,this._anisotropy=t}get clearcoat(){return this._clearcoat}set clearcoat(t){this._clearcoat>0!=t>0&&this.version++,this._clearcoat=t}get iridescence(){return this._iridescence}set iridescence(t){this._iridescence>0!=t>0&&this.version++,this._iridescence=t}get dispersion(){return this._dispersion}set dispersion(t){this._dispersion>0!=t>0&&this.version++,this._dispersion=t}get sheen(){return this._sheen}set sheen(t){this._sheen>0!=t>0&&this.version++,this._sheen=t}get transmission(){return this._transmission}set transmission(t){this._transmission>0!=t>0&&this.version++,this._transmission=t}copy(t){return super.copy(t),this.defines={STANDARD:"",PHYSICAL:""},this.anisotropy=t.anisotropy,this.anisotropyRotation=t.anisotropyRotation,this.anisotropyMap=t.anisotropyMap,this.clearcoat=t.clearcoat,this.clearcoatMap=t.clearcoatMap,this.clearcoatRoughness=t.clearcoatRoughness,this.clearcoatRoughnessMap=t.clearcoatRoughnessMap,this.clearcoatNormalMap=t.clearcoatNormalMap,this.clearcoatNormalScale.copy(t.clearcoatNormalScale),this.dispersion=t.dispersion,this.ior=t.ior,this.iridescence=t.iridescence,this.iridescenceMap=t.iridescenceMap,this.iridescenceIOR=t.iridescenceIOR,this.iridescenceThicknessRange=[...t.iridescenceThicknessRange],this.iridescenceThicknessMap=t.iridescenceThicknessMap,this.sheen=t.sheen,this.sheenColor.copy(t.sheenColor),this.sheenColorMap=t.sheenColorMap,this.sheenRoughness=t.sheenRoughness,this.sheenRoughnessMap=t.sheenRoughnessMap,this.transmission=t.transmission,this.transmissionMap=t.transmissionMap,this.thickness=t.thickness,this.thicknessMap=t.thicknessMap,this.attenuationDistance=t.attenuationDistance,this.attenuationColor.copy(t.attenuationColor),this.specularIntensity=t.specularIntensity,this.specularIntensityMap=t.specularIntensityMap,this.specularColor.copy(t.specularColor),this.specularColorMap=t.specularColorMap,this}}class ec extends fn{constructor(t){super(),this.isMeshPhongMaterial=!0,this.type="MeshPhongMaterial",this.color=new mn(16777215),this.specular=new mn(1118481),this.shininess=30,this.map=null,this.lightMap=null,this.lightMapIntensity=1,this.aoMap=null,this.aoMapIntensity=1,this.emissive=new mn(0),this.emissiveIntensity=1,this.emissiveMap=null,this.bumpMap=null,this.bumpScale=1,this.normalMap=null,this.normalMapType=0,this.normalScale=new vs(1,1),this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.specularMap=null,this.alphaMap=null,this.envMap=null,this.envMapRotation=new kr,this.combine=0,this.reflectivity=1,this.refractionRatio=.98,this.wireframe=!1,this.wireframeLinewidth=1,this.wireframeLinecap="round",this.wireframeLinejoin="round",this.flatShading=!1,this.fog=!0,this.setValues(t)}copy(t){return super.copy(t),this.color.copy(t.color),this.specular.copy(t.specular),this.shininess=t.shininess,this.map=t.map,this.lightMap=t.lightMap,this.lightMapIntensity=t.lightMapIntensity,this.aoMap=t.aoMap,this.aoMapIntensity=t.aoMapIntensity,this.emissive.copy(t.emissive),this.emissiveMap=t.emissiveMap,this.emissiveIntensity=t.emissiveIntensity,this.bumpMap=t.bumpMap,this.bumpScale=t.bumpScale,this.normalMap=t.normalMap,this.normalMapType=t.normalMapType,this.normalScale.copy(t.normalScale),this.displacementMap=t.displacementMap,this.displacementScale=t.displacementScale,this.displacementBias=t.displacementBias,this.specularMap=t.specularMap,this.alphaMap=t.alphaMap,this.envMap=t.envMap,this.envMapRotation.copy(t.envMapRotation),this.combine=t.combine,this.reflectivity=t.reflectivity,this.refractionRatio=t.refractionRatio,this.wireframe=t.wireframe,this.wireframeLinewidth=t.wireframeLinewidth,this.wireframeLinecap=t.wireframeLinecap,this.wireframeLinejoin=t.wireframeLinejoin,this.flatShading=t.flatShading,this.fog=t.fog,this}}class ic extends fn{constructor(t){super(),this.isMeshToonMaterial=!0,this.defines={TOON:""},this.type="MeshToonMaterial",this.color=new mn(16777215),this.map=null,this.gradientMap=null,this.lightMap=null,this.lightMapIntensity=1,this.aoMap=null,this.aoMapIntensity=1,this.emissive=new mn(0),this.emissiveIntensity=1,this.emissiveMap=null,this.bumpMap=null,this.bumpScale=1,this.normalMap=null,this.normalMapType=0,this.normalScale=new vs(1,1),this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.alphaMap=null,this.wireframe=!1,this.wireframeLinewidth=1,this.wireframeLinecap="round",this.wireframeLinejoin="round",this.fog=!0,this.setValues(t)}copy(t){return super.copy(t),this.color.copy(t.color),this.map=t.map,this.gradientMap=t.gradientMap,this.lightMap=t.lightMap,this.lightMapIntensity=t.lightMapIntensity,this.aoMap=t.aoMap,this.aoMapIntensity=t.aoMapIntensity,this.emissive.copy(t.emissive),this.emissiveMap=t.emissiveMap,this.emissiveIntensity=t.emissiveIntensity,this.bumpMap=t.bumpMap,this.bumpScale=t.bumpScale,this.normalMap=t.normalMap,this.normalMapType=t.normalMapType,this.normalScale.copy(t.normalScale),this.displacementMap=t.displacementMap,this.displacementScale=t.displacementScale,this.displacementBias=t.displacementBias,this.alphaMap=t.alphaMap,this.wireframe=t.wireframe,this.wireframeLinewidth=t.wireframeLinewidth,this.wireframeLinecap=t.wireframeLinecap,this.wireframeLinejoin=t.wireframeLinejoin,this.fog=t.fog,this}}class sc extends fn{constructor(t){super(),this.isMeshNormalMaterial=!0,this.type="MeshNormalMaterial",this.bumpMap=null,this.bumpScale=1,this.normalMap=null,this.normalMapType=0,this.normalScale=new vs(1,1),this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.wireframe=!1,this.wireframeLinewidth=1,this.flatShading=!1,this.setValues(t)}copy(t){return super.copy(t),this.bumpMap=t.bumpMap,this.bumpScale=t.bumpScale,this.normalMap=t.normalMap,this.normalMapType=t.normalMapType,this.normalScale.copy(t.normalScale),this.displacementMap=t.displacementMap,this.displacementScale=t.displacementScale,this.displacementBias=t.displacementBias,this.wireframe=t.wireframe,this.wireframeLinewidth=t.wireframeLinewidth,this.flatShading=t.flatShading,this}}class rc extends fn{constructor(t){super(),this.isMeshLambertMaterial=!0,this.type="MeshLambertMaterial",this.color=new mn(16777215),this.map=null,this.lightMap=null,this.lightMapIntensity=1,this.aoMap=null,this.aoMapIntensity=1,this.emissive=new mn(0),this.emissiveIntensity=1,this.emissiveMap=null,this.bumpMap=null,this.bumpScale=1,this.normalMap=null,this.normalMapType=0,this.normalScale=new vs(1,1),this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.specularMap=null,this.alphaMap=null,this.envMap=null,this.envMapRotation=new kr,this.combine=0,this.reflectivity=1,this.refractionRatio=.98,this.wireframe=!1,this.wireframeLinewidth=1,this.wireframeLinecap="round",this.wireframeLinejoin="round",this.flatShading=!1,this.fog=!0,this.setValues(t)}copy(t){return super.copy(t),this.color.copy(t.color),this.map=t.map,this.lightMap=t.lightMap,this.lightMapIntensity=t.lightMapIntensity,this.aoMap=t.aoMap,this.aoMapIntensity=t.aoMapIntensity,this.emissive.copy(t.emissive),this.emissiveMap=t.emissiveMap,this.emissiveIntensity=t.emissiveIntensity,this.bumpMap=t.bumpMap,this.bumpScale=t.bumpScale,this.normalMap=t.normalMap,this.normalMapType=t.normalMapType,this.normalScale.copy(t.normalScale),this.displacementMap=t.displacementMap,this.displacementScale=t.displacementScale,this.displacementBias=t.displacementBias,this.specularMap=t.specularMap,this.alphaMap=t.alphaMap,this.envMap=t.envMap,this.envMapRotation.copy(t.envMapRotation),this.combine=t.combine,this.reflectivity=t.reflectivity,this.refractionRatio=t.refractionRatio,this.wireframe=t.wireframe,this.wireframeLinewidth=t.wireframeLinewidth,this.wireframeLinecap=t.wireframeLinecap,this.wireframeLinejoin=t.wireframeLinejoin,this.flatShading=t.flatShading,this.fog=t.fog,this}}class nc extends fn{constructor(t){super(),this.isMeshDepthMaterial=!0,this.type="MeshDepthMaterial",this.depthPacking=3200,this.map=null,this.alphaMap=null,this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.wireframe=!1,this.wireframeLinewidth=1,this.setValues(t)}copy(t){return super.copy(t),this.depthPacking=t.depthPacking,this.map=t.map,this.alphaMap=t.alphaMap,this.displacementMap=t.displacementMap,this.displacementScale=t.displacementScale,this.displacementBias=t.displacementBias,this.wireframe=t.wireframe,this.wireframeLinewidth=t.wireframeLinewidth,this}}class ac extends fn{constructor(t){super(),this.isMeshDistanceMaterial=!0,this.type="MeshDistanceMaterial",this.map=null,this.alphaMap=null,this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.setValues(t)}copy(t){return super.copy(t),this.map=t.map,this.alphaMap=t.alphaMap,this.displacementMap=t.displacementMap,this.displacementScale=t.displacementScale,this.displacementBias=t.displacementBias,this}}class oc extends fn{constructor(t){super(),this.isMeshMatcapMaterial=!0,this.defines={MATCAP:""},this.type="MeshMatcapMaterial",this.color=new mn(16777215),this.matcap=null,this.map=null,this.bumpMap=null,this.bumpScale=1,this.normalMap=null,this.normalMapType=0,this.normalScale=new vs(1,1),this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.alphaMap=null,this.wireframe=!1,this.wireframeLinewidth=1,this.flatShading=!1,this.fog=!0,this.setValues(t)}copy(t){return super.copy(t),this.defines={MATCAP:""},this.color.copy(t.color),this.matcap=t.matcap,this.map=t.map,this.bumpMap=t.bumpMap,this.bumpScale=t.bumpScale,this.normalMap=t.normalMap,this.normalMapType=t.normalMapType,this.normalScale.copy(t.normalScale),this.displacementMap=t.displacementMap,this.displacementScale=t.displacementScale,this.displacementBias=t.displacementBias,this.alphaMap=t.alphaMap,this.wireframe=t.wireframe,this.wireframeLinewidth=t.wireframeLinewidth,this.flatShading=t.flatShading,this.fog=t.fog,this}}class hc extends Zo{constructor(t){super(),this.isLineDashedMaterial=!0,this.type="LineDashedMaterial",this.scale=1,this.dashSize=3,this.gapSize=1,this.setValues(t)}copy(t){return super.copy(t),this.scale=t.scale,this.dashSize=t.dashSize,this.gapSize=t.gapSize,this}}function lc(t,e){return t&&t.constructor!==e?"number"==typeof e.BYTES_PER_ELEMENT?new e(t):Array.prototype.slice.call(t):t}function cc(t){const e=t.length,i=new Array(e);for(let t=0;t!==e;++t)i[t]=t;return i.sort(function(e,i){return t[e]-t[i]}),i}function uc(t,e,i){const s=t.length,r=new t.constructor(s);for(let n=0,a=0;a!==s;++n){const s=i[n]*e;for(let i=0;i!==e;++i)r[a++]=t[s+i]}return r}function dc(t,e,i,s){let r=1,n=t[0];for(;void 0!==n&&void 0===n[s];)n=t[r++];if(void 0===n)return;let a=n[s];if(void 0!==a)if(Array.isArray(a))do{a=n[s],void 0!==a&&(e.push(n.time),i.push(...a)),n=t[r++]}while(void 0!==n);else if(void 0!==a.toArray)do{a=n[s],void 0!==a&&(e.push(n.time),a.toArray(i,i.length)),n=t[r++]}while(void 0!==n);else do{a=n[s],void 0!==a&&(e.push(n.time),i.push(a)),n=t[r++]}while(void 0!==n)}class pc{static convertArray(t,e){return lc(t,e)}static isTypedArray(t){return Gi(t)}static getKeyframeOrder(t){return cc(t)}static sortedArray(t,e,i){return uc(t,e,i)}static flattenJSON(t,e,i,s){dc(t,e,i,s)}static subclip(t,e,i,s,r=30){return function(t,e,i,s,r=30){const n=t.clone();n.name=e;const a=[];for(let t=0;t=s)){h.push(e.times[t]);for(let i=0;in.tracks[t].times[0]&&(o=n.tracks[t].times[0]);for(let t=0;t=s.times[u]){const t=u*h+o,e=t+h-o;d=s.values.slice(t,e)}else{const t=s.createInterpolant(),e=o,i=h-o;t.evaluate(n),d=t.resultBuffer.slice(e,i)}"quaternion"===r&&(new ws).fromArray(d).normalize().conjugate().toArray(d);const p=a.times.length;for(let t=0;t=r)){const a=e[1];t=r)break e}n=i,i=0;break i}break t}for(;i>>1;te;)--n;if(++n,0!==r||n!==s){r>=n&&(n=Math.max(n,1),r=n-1);const t=this.getValueSize();this.times=i.slice(r,n),this.values=this.values.slice(r*t,n*t)}return this}validate(){let t=!0;const e=this.getValueSize();e-Math.floor(e)!==0&&(ns("KeyframeTrack: Invalid value size in track.",this),t=!1);const i=this.times,s=this.values,r=i.length;0===r&&(ns("KeyframeTrack: Track is empty.",this),t=!1);let n=null;for(let e=0;e!==r;e++){const s=i[e];if("number"==typeof s&&isNaN(s)){ns("KeyframeTrack: Time is not a valid number.",this,e,s),t=!1;break}if(null!==n&&n>s){ns("KeyframeTrack: Out of order keys.",this,e,s,n),t=!1;break}n=s}if(void 0!==s&&Gi(s))for(let e=0,i=s.length;e!==i;++e){const i=s[e];if(isNaN(i)){ns("KeyframeTrack: Value is not a valid number.",this,e,i),t=!1;break}}return t}optimize(){const t=this.times.slice(),e=this.values.slice(),i=this.getValueSize(),s=this.getInterpolation()===Fe,r=t.length-1;let n=1;for(let a=1;a0){t[n]=t[r];for(let t=r*i,s=n*i,a=0;a!==i;++a)e[s+a]=e[t+a];++n}return n!==t.length?(this.times=t.slice(0,n),this.values=e.slice(0,n*i)):(this.times=t,this.values=e),this}clone(){const t=this.times.slice(),e=this.values.slice(),i=new(0,this.constructor)(this.name,t,e);return i.createInterpolant=this.createInterpolant,i}}xc.prototype.ValueTypeName="",xc.prototype.TimeBufferType=Float32Array,xc.prototype.ValueBufferType=Float32Array,xc.prototype.DefaultInterpolation=Ve;class bc extends xc{constructor(t,e,i){super(t,e,i)}}bc.prototype.ValueTypeName="bool",bc.prototype.ValueBufferType=Array,bc.prototype.DefaultInterpolation=Ne,bc.prototype.InterpolantFactoryMethodLinear=void 0,bc.prototype.InterpolantFactoryMethodSmooth=void 0;class vc extends xc{constructor(t,e,i,s){super(t,e,i,s)}}vc.prototype.ValueTypeName="color";class wc extends xc{constructor(t,e,i,s){super(t,e,i,s)}}wc.prototype.ValueTypeName="number";class Mc extends mc{constructor(t,e,i,s){super(t,e,i,s)}interpolate_(t,e,i,s){const r=this.resultBuffer,n=this.sampleValues,a=this.valueSize,o=(i-e)/(s-e);let h=t*a;for(let t=h+a;h!==t;h+=4)ws.slerpFlat(r,0,n,h-a,n,h,o);return r}}class Sc extends xc{constructor(t,e,i,s){super(t,e,i,s)}InterpolantFactoryMethodLinear(t){return new Mc(this.times,this.values,this.getValueSize(),t)}}Sc.prototype.ValueTypeName="quaternion",Sc.prototype.InterpolantFactoryMethodSmooth=void 0;class _c extends xc{constructor(t,e,i){super(t,e,i)}}_c.prototype.ValueTypeName="string",_c.prototype.ValueBufferType=Array,_c.prototype.DefaultInterpolation=Ne,_c.prototype.InterpolantFactoryMethodLinear=void 0,_c.prototype.InterpolantFactoryMethodSmooth=void 0;class Ac extends xc{constructor(t,e,i,s){super(t,e,i,s)}}Ac.prototype.ValueTypeName="vector";class Tc{constructor(t="",e=-1,i=[],s=2500){this.name=t,this.tracks=i,this.duration=e,this.blendMode=s,this.uuid=ps(),this.userData={},this.duration<0&&this.resetDuration()}static parse(t){const e=[],i=t.tracks,s=1/(t.fps||1);for(let t=0,r=i.length;t!==r;++t)e.push(zc(i[t]).scale(s));const r=new this(t.name,t.duration,e,t.blendMode);return r.uuid=t.uuid,r.userData=JSON.parse(t.userData||"{}"),r}static toJSON(t){const e=[],i=t.tracks,s={name:t.name,duration:t.duration,tracks:e,uuid:t.uuid,blendMode:t.blendMode,userData:JSON.stringify(t.userData)};for(let t=0,s=i.length;t!==s;++t)e.push(xc.toJSON(i[t]));return s}static CreateFromMorphTargetSequence(t,e,i,s){const r=e.length,n=[];for(let t=0;t1){const t=n[1];let e=s[t];e||(s[t]=e=[]),e.push(i)}}const n=[];for(const t in s)n.push(this.CreateFromMorphTargetSequence(t,s[t],e,i));return n}static parseAnimation(t,e){if(rs("AnimationClip: parseAnimation() is deprecated and will be removed with r185"),!t)return ns("AnimationClip: No animation in JSONLoader data."),null;const i=function(t,e,i,s,r){if(0!==i.length){const n=[],a=[];dc(i,n,a,s),0!==n.length&&r.push(new t(e,n,a))}},s=[],r=t.name||"default",n=t.fps||30,a=t.blendMode;let o=t.length||-1;const h=t.hierarchy||[];for(let t=0;t{e&&e(r),this.manager.itemEnd(t)},0),r;if(void 0!==Oc[t])return void Oc[t].push({onLoad:e,onProgress:i,onError:s});Oc[t]=[],Oc[t].push({onLoad:e,onProgress:i,onError:s});const n=new Request(t,{headers:new Headers(this.requestHeader),credentials:this.withCredentials?"include":"same-origin",signal:"function"==typeof AbortSignal.any?AbortSignal.any([this._abortController.signal,this.manager.abortController.signal]):this._abortController.signal}),a=this.mimeType,o=this.responseType;fetch(n).then(e=>{if(200===e.status||0===e.status){if(0===e.status&&rs("FileLoader: HTTP Status 0 received."),"undefined"==typeof ReadableStream||void 0===e.body||void 0===e.body.getReader)return e;const i=Oc[t],s=e.body.getReader(),r=e.headers.get("X-File-Size")||e.headers.get("Content-Length"),n=r?parseInt(r):0,a=0!==n;let o=0;const h=new ReadableStream({start(t){!function e(){s.read().then(({done:s,value:r})=>{if(s)t.close();else{o+=r.byteLength;const s=new ProgressEvent("progress",{lengthComputable:a,loaded:o,total:n});for(let t=0,e=i.length;t{t.error(e)})}()}});return new Response(h)}throw new Pc(`fetch for "${e.url}" responded with ${e.status}: ${e.statusText}`,e)}).then(t=>{switch(o){case"arraybuffer":return t.arrayBuffer();case"blob":return t.blob();case"document":return t.text().then(t=>(new DOMParser).parseFromString(t,a));case"json":return t.json();default:if(""===a)return t.text();{const e=/charset="?([^;"\s]*)"?/i.exec(a),i=e&&e[1]?e[1].toLowerCase():void 0,s=new TextDecoder(i);return t.arrayBuffer().then(t=>s.decode(t))}}}).then(e=>{Cc.add(`file:${t}`,e);const i=Oc[t];delete Oc[t];for(let t=0,s=i.length;t{const i=Oc[t];if(void 0===i)throw this.manager.itemError(t),e;delete Oc[t];for(let t=0,s=i.length;t{this.manager.itemEnd(t)}),this.manager.itemStart(t)}setResponseType(t){return this.responseType=t,this}setMimeType(t){return this.mimeType=t,this}abort(){return this._abortController.abort(),this._abortController=new AbortController,this}}class Nc extends kc{constructor(t){super(t)}load(t,e,i,s){const r=this,n=new Rc(this.manager);n.setPath(this.path),n.setRequestHeader(this.requestHeader),n.setWithCredentials(this.withCredentials),n.load(t,function(i){try{e(r.parse(JSON.parse(i)))}catch(e){s?s(e):ns(e),r.manager.itemError(t)}},i,s)}parse(t){const e=[];for(let i=0;i0:s.vertexColors=t.vertexColors),void 0!==t.uniforms)for(const e in t.uniforms){const r=t.uniforms[e];switch(s.uniforms[e]={},r.type){case"t":s.uniforms[e].value=i(r.value);break;case"c":s.uniforms[e].value=(new mn).setHex(r.value);break;case"v2":s.uniforms[e].value=(new vs).fromArray(r.value);break;case"v3":s.uniforms[e].value=(new Ms).fromArray(r.value);break;case"v4":s.uniforms[e].value=(new Ds).fromArray(r.value);break;case"m3":s.uniforms[e].value=(new As).fromArray(r.value);break;case"m4":s.uniforms[e].value=(new wr).fromArray(r.value);break;default:s.uniforms[e].value=r.value}}if(void 0!==t.defines&&(s.defines=t.defines),void 0!==t.vertexShader&&(s.vertexShader=t.vertexShader),void 0!==t.fragmentShader&&(s.fragmentShader=t.fragmentShader),void 0!==t.glslVersion&&(s.glslVersion=t.glslVersion),void 0!==t.extensions)for(const e in t.extensions)s.extensions[e]=t.extensions[e];if(void 0!==t.lights&&(s.lights=t.lights),void 0!==t.clipping&&(s.clipping=t.clipping),void 0!==t.size&&(s.size=t.size),void 0!==t.sizeAttenuation&&(s.sizeAttenuation=t.sizeAttenuation),void 0!==t.map&&(s.map=i(t.map)),void 0!==t.matcap&&(s.matcap=i(t.matcap)),void 0!==t.alphaMap&&(s.alphaMap=i(t.alphaMap)),void 0!==t.bumpMap&&(s.bumpMap=i(t.bumpMap)),void 0!==t.bumpScale&&(s.bumpScale=t.bumpScale),void 0!==t.normalMap&&(s.normalMap=i(t.normalMap)),void 0!==t.normalMapType&&(s.normalMapType=t.normalMapType),void 0!==t.normalScale){let e=t.normalScale;!1===Array.isArray(e)&&(e=[e,e]),s.normalScale=(new vs).fromArray(e)}return void 0!==t.displacementMap&&(s.displacementMap=i(t.displacementMap)),void 0!==t.displacementScale&&(s.displacementScale=t.displacementScale),void 0!==t.displacementBias&&(s.displacementBias=t.displacementBias),void 0!==t.roughnessMap&&(s.roughnessMap=i(t.roughnessMap)),void 0!==t.metalnessMap&&(s.metalnessMap=i(t.metalnessMap)),void 0!==t.emissiveMap&&(s.emissiveMap=i(t.emissiveMap)),void 0!==t.emissiveIntensity&&(s.emissiveIntensity=t.emissiveIntensity),void 0!==t.specularMap&&(s.specularMap=i(t.specularMap)),void 0!==t.specularIntensityMap&&(s.specularIntensityMap=i(t.specularIntensityMap)),void 0!==t.specularColorMap&&(s.specularColorMap=i(t.specularColorMap)),void 0!==t.envMap&&(s.envMap=i(t.envMap)),void 0!==t.envMapRotation&&s.envMapRotation.fromArray(t.envMapRotation),void 0!==t.envMapIntensity&&(s.envMapIntensity=t.envMapIntensity),void 0!==t.reflectivity&&(s.reflectivity=t.reflectivity),void 0!==t.refractionRatio&&(s.refractionRatio=t.refractionRatio),void 0!==t.lightMap&&(s.lightMap=i(t.lightMap)),void 0!==t.lightMapIntensity&&(s.lightMapIntensity=t.lightMapIntensity),void 0!==t.aoMap&&(s.aoMap=i(t.aoMap)),void 0!==t.aoMapIntensity&&(s.aoMapIntensity=t.aoMapIntensity),void 0!==t.gradientMap&&(s.gradientMap=i(t.gradientMap)),void 0!==t.clearcoatMap&&(s.clearcoatMap=i(t.clearcoatMap)),void 0!==t.clearcoatRoughnessMap&&(s.clearcoatRoughnessMap=i(t.clearcoatRoughnessMap)),void 0!==t.clearcoatNormalMap&&(s.clearcoatNormalMap=i(t.clearcoatNormalMap)),void 0!==t.clearcoatNormalScale&&(s.clearcoatNormalScale=(new vs).fromArray(t.clearcoatNormalScale)),void 0!==t.iridescenceMap&&(s.iridescenceMap=i(t.iridescenceMap)),void 0!==t.iridescenceThicknessMap&&(s.iridescenceThicknessMap=i(t.iridescenceThicknessMap)),void 0!==t.transmissionMap&&(s.transmissionMap=i(t.transmissionMap)),void 0!==t.thicknessMap&&(s.thicknessMap=i(t.thicknessMap)),void 0!==t.anisotropyMap&&(s.anisotropyMap=i(t.anisotropyMap)),void 0!==t.sheenColorMap&&(s.sheenColorMap=i(t.sheenColorMap)),void 0!==t.sheenRoughnessMap&&(s.sheenRoughnessMap=i(t.sheenRoughnessMap)),s}setTextures(t){return this.textures=t,this}createMaterialFromType(t){return hu.createMaterialFromType(t)}static createMaterialFromType(t){return new{ShadowMaterial:$l,SpriteMaterial:Ca,RawShaderMaterial:Ql,ShaderMaterial:la,PointsMaterial:hh,MeshPhysicalMaterial:tc,MeshStandardMaterial:Kl,MeshPhongMaterial:ec,MeshToonMaterial:ic,MeshNormalMaterial:sc,MeshLambertMaterial:rc,MeshDepthMaterial:nc,MeshDistanceMaterial:ac,MeshBasicMaterial:xn,MeshMatcapMaterial:oc,LineDashedMaterial:hc,LineBasicMaterial:Zo,Material:fn}[t]}}class lu{static extractUrlBase(t){const e=t.lastIndexOf("/");return-1===e?"./":t.slice(0,e+1)}static resolveURL(t,e){return"string"!=typeof t||""===t?"":(/^https?:\/\//i.test(e)&&/^\//.test(t)&&(e=e.replace(/(^https?:\/\/[^\/]+).*/i,"$1")),/^(https?:)?\/\//i.test(t)||/^data:.*,.*$/i.test(t)||/^blob:.*$/i.test(t)?t:e+t)}}class cu extends qn{constructor(){super(),this.isInstancedBufferGeometry=!0,this.type="InstancedBufferGeometry",this.instanceCount=1/0}copy(t){return super.copy(t),this.instanceCount=t.instanceCount,this}toJSON(){const t=super.toJSON();return t.instanceCount=this.instanceCount,t.isInstancedBufferGeometry=!0,t}}class uu extends kc{constructor(t){super(t)}load(t,e,i,s){const r=this,n=new Rc(r.manager);n.setPath(r.path),n.setRequestHeader(r.requestHeader),n.setWithCredentials(r.withCredentials),n.load(t,function(i){try{e(r.parse(JSON.parse(i)))}catch(e){s?s(e):ns(e),r.manager.itemError(t)}},i,s)}parse(t){const e={},i={};function s(t,s){if(void 0!==e[s])return e[s];const r=t.interleavedBuffers[s],n=function(t,e){if(void 0!==i[e])return i[e];const s=t.arrayBuffers,r=s[e],n=new Uint32Array(r).buffer;return i[e]=n,n}(t,r.buffer),a=Hi(r.type,n),o=new Aa(a,r.stride);return o.uuid=r.uuid,e[s]=o,o}const r=t.isInstancedBufferGeometry?new cu:new qn,n=t.data.index;if(void 0!==n){const t=Hi(n.type,n.array);r.setIndex(new zn(t,1))}const a=t.data.attributes;for(const e in a){const i=a[e];let n;if(i.isInterleavedBufferAttribute){const e=s(t.data,i.data);n=new za(e,i.itemSize,i.offset,i.normalized)}else{const t=Hi(i.type,i.array);n=new(i.isInstancedBufferAttribute?ho:zn)(t,i.itemSize,i.normalized)}void 0!==i.name&&(n.name=i.name),void 0!==i.usage&&n.setUsage(i.usage),r.setAttribute(e,n)}const o=t.data.morphAttributes;if(o)for(const e in o){const i=o[e],n=[];for(let e=0,r=i.length;e0){const i=new Ic(e);r=new Lc(i),r.setCrossOrigin(this.crossOrigin);for(let e=0,i=t.length;e0){s=new Lc(this.manager),s.setCrossOrigin(this.crossOrigin);for(let e=0,s=t.length;e{let e=null,i=null;return void 0!==t.boundingBox&&(e=(new Zs).fromJSON(t.boundingBox)),void 0!==t.boundingSphere&&(i=(new dr).fromJSON(t.boundingSphere)),{...t,boundingBox:e,boundingSphere:i}}),n._instanceInfo=t.instanceInfo,n._availableInstanceIds=t._availableInstanceIds,n._availableGeometryIds=t._availableGeometryIds,n._nextIndexStart=t.nextIndexStart,n._nextVertexStart=t.nextVertexStart,n._geometryCount=t.geometryCount,n._maxInstanceCount=t.maxInstanceCount,n._maxVertexCount=t.maxVertexCount,n._maxIndexCount=t.maxIndexCount,n._geometryInitialized=t.geometryInitialized,n._matricesTexture=c(t.matricesTexture.uuid),n._indirectTexture=c(t.indirectTexture.uuid),void 0!==t.colorsTexture&&(n._colorsTexture=c(t.colorsTexture.uuid)),void 0!==t.boundingSphere&&(n.boundingSphere=(new dr).fromJSON(t.boundingSphere)),void 0!==t.boundingBox&&(n.boundingBox=(new Zs).fromJSON(t.boundingBox));break;case"LOD":n=new Xa;break;case"Line":n=new ih(h(t.geometry),l(t.material));break;case"LineLoop":n=new oh(h(t.geometry),l(t.material));break;case"LineSegments":n=new ah(h(t.geometry),l(t.material));break;case"PointCloud":case"Points":n=new ph(h(t.geometry),l(t.material));break;case"Sprite":n=new Wa(l(t.material));break;case"Group":n=new ba;break;case"Bone":n=new so;break;default:n=new Zr}if(n.uuid=t.uuid,void 0!==t.name&&(n.name=t.name),void 0!==t.matrix?(n.matrix.fromArray(t.matrix),void 0!==t.matrixAutoUpdate&&(n.matrixAutoUpdate=t.matrixAutoUpdate),n.matrixAutoUpdate&&n.matrix.decompose(n.position,n.quaternion,n.scale)):(void 0!==t.position&&n.position.fromArray(t.position),void 0!==t.rotation&&n.rotation.fromArray(t.rotation),void 0!==t.quaternion&&n.quaternion.fromArray(t.quaternion),void 0!==t.scale&&n.scale.fromArray(t.scale)),void 0!==t.up&&n.up.fromArray(t.up),void 0!==t.castShadow&&(n.castShadow=t.castShadow),void 0!==t.receiveShadow&&(n.receiveShadow=t.receiveShadow),t.shadow&&(void 0!==t.shadow.intensity&&(n.shadow.intensity=t.shadow.intensity),void 0!==t.shadow.bias&&(n.shadow.bias=t.shadow.bias),void 0!==t.shadow.normalBias&&(n.shadow.normalBias=t.shadow.normalBias),void 0!==t.shadow.radius&&(n.shadow.radius=t.shadow.radius),void 0!==t.shadow.mapSize&&n.shadow.mapSize.fromArray(t.shadow.mapSize),void 0!==t.shadow.camera&&(n.shadow.camera=this.parseObject(t.shadow.camera))),void 0!==t.visible&&(n.visible=t.visible),void 0!==t.frustumCulled&&(n.frustumCulled=t.frustumCulled),void 0!==t.renderOrder&&(n.renderOrder=t.renderOrder),void 0!==t.userData&&(n.userData=t.userData),void 0!==t.layers&&(n.layers.mask=t.layers),void 0!==t.children){const a=t.children;for(let t=0;t{if(!0!==gu.has(n))return e&&e(i),r.manager.itemEnd(t),i;s&&s(gu.get(n)),r.manager.itemError(t),r.manager.itemEnd(t)}):(setTimeout(function(){e&&e(n),r.manager.itemEnd(t)},0),n);const a={};a.credentials="anonymous"===this.crossOrigin?"same-origin":"include",a.headers=this.requestHeader,a.signal="function"==typeof AbortSignal.any?AbortSignal.any([this._abortController.signal,this.manager.abortController.signal]):this._abortController.signal;const o=fetch(t,a).then(function(t){return t.blob()}).then(function(t){return createImageBitmap(t,Object.assign(r.options,{colorSpaceConversion:"none"}))}).then(function(i){return Cc.add(`image-bitmap:${t}`,i),e&&e(i),r.manager.itemEnd(t),i}).catch(function(e){s&&s(e),gu.set(o,e),Cc.remove(`image-bitmap:${t}`),r.manager.itemError(t),r.manager.itemEnd(t)});Cc.add(`image-bitmap:${t}`,o),r.manager.itemStart(t)}abort(){return this._abortController.abort(),this._abortController=new AbortController,this}}let xu;class bu{static getContext(){return void 0===xu&&(xu=new(window.AudioContext||window.webkitAudioContext)),xu}static setContext(t){xu=t}}class vu extends kc{constructor(t){super(t)}load(t,e,i,s){const r=this,n=new Rc(this.manager);function a(e){s?s(e):ns(e),r.manager.itemError(t)}n.setResponseType("arraybuffer"),n.setPath(this.path),n.setRequestHeader(this.requestHeader),n.setWithCredentials(this.withCredentials),n.load(t,function(t){try{const i=t.slice(0);bu.getContext().decodeAudioData(i,function(t){e(t)}).catch(a)}catch(t){a(t)}},i,s)}}const wu=new wr,Mu=new wr,Su=new wr;class _u{constructor(){this.type="StereoCamera",this.aspect=1,this.eyeSep=.064,this.cameraL=new ma,this.cameraL.layers.enable(1),this.cameraL.matrixAutoUpdate=!1,this.cameraR=new ma,this.cameraR.layers.enable(2),this.cameraR.matrixAutoUpdate=!1,this._cache={focus:null,fov:null,aspect:null,near:null,far:null,zoom:null,eyeSep:null}}update(t){const e=this._cache;if(e.focus!==t.focus||e.fov!==t.fov||e.aspect!==t.aspect*this.aspect||e.near!==t.near||e.far!==t.far||e.zoom!==t.zoom||e.eyeSep!==this.eyeSep){e.focus=t.focus,e.fov=t.fov,e.aspect=t.aspect*this.aspect,e.near=t.near,e.far=t.far,e.zoom=t.zoom,e.eyeSep=this.eyeSep,Su.copy(t.projectionMatrix);const i=e.eyeSep/2,s=i*e.near/e.focus,r=e.near*Math.tan(us*e.fov*.5)/e.zoom;let n,a;Mu.elements[12]=-i,wu.elements[12]=i,n=-r*e.aspect+s,a=r*e.aspect+s,Su.elements[0]=2*e.near/(a-n),Su.elements[8]=(a+n)/(a-n),this.cameraL.projectionMatrix.copy(Su),n=-r*e.aspect-s,a=r*e.aspect-s,Su.elements[0]=2*e.near/(a-n),Su.elements[8]=(a+n)/(a-n),this.cameraR.projectionMatrix.copy(Su)}this.cameraL.matrixWorld.copy(t.matrixWorld).multiply(Mu),this.cameraR.matrixWorld.copy(t.matrixWorld).multiply(wu)}}class Au extends ma{constructor(t=[]){super(),this.isArrayCamera=!0,this.isMultiViewCamera=!1,this.cameras=t}}class Tu{constructor(t=!0){this.autoStart=t,this.startTime=0,this.oldTime=0,this.elapsedTime=0,this.running=!1}start(){this.startTime=performance.now(),this.oldTime=this.startTime,this.elapsedTime=0,this.running=!0}stop(){this.getElapsedTime(),this.running=!1,this.autoStart=!1}getElapsedTime(){return this.getDelta(),this.elapsedTime}getDelta(){let t=0;if(this.autoStart&&!this.running)return this.start(),0;if(this.running){const e=performance.now();t=(e-this.oldTime)/1e3,this.oldTime=e,this.elapsedTime+=t}return t}}const zu=new Ms,Cu=new ws,Iu=new Ms,Bu=new Ms,ku=new Ms;class Ou extends Zr{constructor(){super(),this.type="AudioListener",this.context=bu.getContext(),this.gain=this.context.createGain(),this.gain.connect(this.context.destination),this.filter=null,this.timeDelta=0,this._clock=new Tu}getInput(){return this.gain}removeFilter(){return null!==this.filter&&(this.gain.disconnect(this.filter),this.filter.disconnect(this.context.destination),this.gain.connect(this.context.destination),this.filter=null),this}getFilter(){return this.filter}setFilter(t){return null!==this.filter?(this.gain.disconnect(this.filter),this.filter.disconnect(this.context.destination)):this.gain.disconnect(this.context.destination),this.filter=t,this.gain.connect(this.filter),this.filter.connect(this.context.destination),this}getMasterVolume(){return this.gain.gain.value}setMasterVolume(t){return this.gain.gain.setTargetAtTime(t,this.context.currentTime,.01),this}updateMatrixWorld(t){super.updateMatrixWorld(t);const e=this.context.listener;if(this.timeDelta=this._clock.getDelta(),this.matrixWorld.decompose(zu,Cu,Iu),Bu.set(0,0,-1).applyQuaternion(Cu),ku.set(0,1,0).applyQuaternion(Cu),e.positionX){const t=this.context.currentTime+this.timeDelta;e.positionX.linearRampToValueAtTime(zu.x,t),e.positionY.linearRampToValueAtTime(zu.y,t),e.positionZ.linearRampToValueAtTime(zu.z,t),e.forwardX.linearRampToValueAtTime(Bu.x,t),e.forwardY.linearRampToValueAtTime(Bu.y,t),e.forwardZ.linearRampToValueAtTime(Bu.z,t),e.upX.linearRampToValueAtTime(ku.x,t),e.upY.linearRampToValueAtTime(ku.y,t),e.upZ.linearRampToValueAtTime(ku.z,t)}else e.setPosition(zu.x,zu.y,zu.z),e.setOrientation(Bu.x,Bu.y,Bu.z,ku.x,ku.y,ku.z)}}class Pu extends Zr{constructor(t){super(),this.type="Audio",this.listener=t,this.context=t.context,this.gain=this.context.createGain(),this.gain.connect(t.getInput()),this.autoplay=!1,this.buffer=null,this.detune=0,this.loop=!1,this.loopStart=0,this.loopEnd=0,this.offset=0,this.duration=void 0,this.playbackRate=1,this.isPlaying=!1,this.hasPlaybackControl=!0,this.source=null,this.sourceType="empty",this._startedAt=0,this._progress=0,this._connected=!1,this.filters=[]}getOutput(){return this.gain}setNodeSource(t){return this.hasPlaybackControl=!1,this.sourceType="audioNode",this.source=t,this.connect(),this}setMediaElementSource(t){return this.hasPlaybackControl=!1,this.sourceType="mediaNode",this.source=this.context.createMediaElementSource(t),this.connect(),this}setMediaStreamSource(t){return this.hasPlaybackControl=!1,this.sourceType="mediaStreamNode",this.source=this.context.createMediaStreamSource(t),this.connect(),this}setBuffer(t){return this.buffer=t,this.sourceType="buffer",this.autoplay&&this.play(),this}play(t=0){if(!0===this.isPlaying)return void rs("Audio: Audio is already playing.");if(!1===this.hasPlaybackControl)return void rs("Audio: this Audio has no playback control.");this._startedAt=this.context.currentTime+t;const e=this.context.createBufferSource();return e.buffer=this.buffer,e.loop=this.loop,e.loopStart=this.loopStart,e.loopEnd=this.loopEnd,e.onended=this.onEnded.bind(this),e.start(this._startedAt,this._progress+this.offset,this.duration),this.isPlaying=!0,this.source=e,this.setDetune(this.detune),this.setPlaybackRate(this.playbackRate),this.connect()}pause(){if(!1!==this.hasPlaybackControl)return!0===this.isPlaying&&(this._progress+=Math.max(this.context.currentTime-this._startedAt,0)*this.playbackRate,!0===this.loop&&(this._progress=this._progress%(this.duration||this.buffer.duration)),this.source.stop(),this.source.onended=null,this.isPlaying=!1),this;rs("Audio: this Audio has no playback control.")}stop(t=0){if(!1!==this.hasPlaybackControl)return this._progress=0,null!==this.source&&(this.source.stop(this.context.currentTime+t),this.source.onended=null),this.isPlaying=!1,this;rs("Audio: this Audio has no playback control.")}connect(){if(this.filters.length>0){this.source.connect(this.filters[0]);for(let t=1,e=this.filters.length;t0){this.source.disconnect(this.filters[0]);for(let t=1,e=this.filters.length;t0&&this._mixBufferRegionAdditive(i,s,this._addIndex*e,1,e);for(let t=e,r=e+e;t!==r;++t)if(i[t]!==i[t+e]){a.setValue(i,s);break}}saveOriginalState(){const t=this.binding,e=this.buffer,i=this.valueSize,s=i*this._origIndex;t.getValue(e,s);for(let t=i,r=s;t!==r;++t)e[t]=e[s+t%i];this._setIdentity(),this.cumulativeWeight=0,this.cumulativeWeightAdditive=0}restoreOriginalState(){const t=3*this.valueSize;this.binding.setValue(this.buffer,t)}_setAdditiveIdentityNumeric(){const t=this._addIndex*this.valueSize,e=t+this.valueSize;for(let i=t;i=.5)for(let s=0;s!==r;++s)t[e+s]=t[i+s]}_slerp(t,e,i,s){ws.slerpFlat(t,e,t,e,t,i,s)}_slerpAdditive(t,e,i,s,r){const n=this._workIndex*r;ws.multiplyQuaternionsFlat(t,n,t,e,t,i),ws.slerpFlat(t,e,t,e,t,n,s)}_lerp(t,e,i,s,r){const n=1-s;for(let a=0;a!==r;++a){const r=e+a;t[r]=t[r]*n+t[i+a]*s}}_lerpAdditive(t,e,i,s,r){for(let n=0;n!==r;++n){const r=e+n;t[r]=t[r]+t[i+n]*s}}}const Du="\\[\\]\\.:\\/",Wu=new RegExp("["+Du+"]","g"),Uu="[^"+Du+"]",qu="[^"+Du.replace("\\.","")+"]",Ju=new RegExp("^"+/((?:WC+[\/:])*)/.source.replace("WC",Uu)+/(WCOD+)?/.source.replace("WCOD",qu)+/(?:\.(WC+)(?:\[(.+)\])?)?/.source.replace("WC",Uu)+/\.(WC+)(?:\[(.+)\])?/.source.replace("WC",Uu)+"$"),Xu=["material","materials","bones","map"];class Yu{constructor(t,e,i){this.path=e,this.parsedPath=i||Yu.parseTrackName(e),this.node=Yu.findNode(t,this.parsedPath.nodeName),this.rootNode=t,this.getValue=this._getValue_unbound,this.setValue=this._setValue_unbound}static create(t,e,i){return t&&t.isAnimationObjectGroup?new Yu.Composite(t,e,i):new Yu(t,e,i)}static sanitizeNodeName(t){return t.replace(/\s/g,"_").replace(Wu,"")}static parseTrackName(t){const e=Ju.exec(t);if(null===e)throw new Error("PropertyBinding: Cannot parse trackName: "+t);const i={nodeName:e[2],objectName:e[3],objectIndex:e[4],propertyName:e[5],propertyIndex:e[6]},s=i.nodeName&&i.nodeName.lastIndexOf(".");if(void 0!==s&&-1!==s){const t=i.nodeName.substring(s+1);-1!==Xu.indexOf(t)&&(i.nodeName=i.nodeName.substring(0,s),i.objectName=t)}if(null===i.propertyName||0===i.propertyName.length)throw new Error("PropertyBinding: can not parse propertyName from trackName: "+t);return i}static findNode(t,e){if(void 0===e||""===e||"."===e||-1===e||e===t.name||e===t.uuid)return t;if(t.skeleton){const i=t.skeleton.getBoneByName(e);if(void 0!==i)return i}if(t.children){const i=function(t){for(let s=0;s=r){const n=r++,l=t[n];e[l.uuid]=h,t[h]=l,e[o]=n,t[n]=a;for(let t=0,e=s;t!==e;++t){const e=i[t],s=e[n],r=e[h];e[h]=s,e[n]=r}}}this.nCachedObjects_=r}uncache(){const t=this._objects,e=this._indicesByUUID,i=this._bindings,s=i.length;let r=this.nCachedObjects_,n=t.length;for(let a=0,o=arguments.length;a!==o;++a){const o=arguments[a].uuid,h=e[o];if(void 0!==h)if(delete e[o],h0&&(e[a.uuid]=h),t[h]=a,t.pop();for(let t=0,e=s;t!==e;++t){const e=i[t];e[h]=e[r],e.pop()}}}this.nCachedObjects_=r}subscribe_(t,e){const i=this._bindingsIndicesByPath;let s=i[t];const r=this._bindings;if(void 0!==s)return r[s];const n=this._paths,a=this._parsedPaths,o=this._objects,h=o.length,l=this.nCachedObjects_,c=new Array(h);s=r.length,i[t]=s,n.push(t),a.push(e),r.push(c);for(let i=l,s=o.length;i!==s;++i){const s=o[i];c[i]=new Yu(s,t,e)}return c}unsubscribe_(t){const e=this._bindingsIndicesByPath,i=e[t];if(void 0!==i){const s=this._paths,r=this._parsedPaths,n=this._bindings,a=n.length-1,o=n[a];e[t[a]]=i,n[i]=o,n.pop(),r[i]=r[a],r.pop(),s[i]=s[a],s.pop()}}}class Hu{constructor(t,e,i=null,s=e.blendMode){this._mixer=t,this._clip=e,this._localRoot=i,this.blendMode=s;const r=e.tracks,n=r.length,a=new Array(n),o={endingStart:Le,endingEnd:Le};for(let t=0;t!==n;++t){const e=r[t].createInterpolant(null);a[t]=e,e.settings=o}this._interpolantSettings=o,this._interpolants=a,this._propertyBindings=new Array(n),this._cacheIndex=null,this._byClipCacheIndex=null,this._timeScaleInterpolant=null,this._weightInterpolant=null,this.loop=2201,this._loopCount=-1,this._startTime=null,this.time=0,this.timeScale=1,this._effectiveTimeScale=1,this.weight=1,this._effectiveWeight=1,this.repetitions=1/0,this.paused=!1,this.enabled=!0,this.clampWhenFinished=!1,this.zeroSlopeAtStart=!0,this.zeroSlopeAtEnd=!0}play(){return this._mixer._activateAction(this),this}stop(){return this._mixer._deactivateAction(this),this.reset()}reset(){return this.paused=!1,this.enabled=!0,this.time=0,this._loopCount=-1,this._startTime=null,this.stopFading().stopWarping()}isRunning(){return this.enabled&&!this.paused&&0!==this.timeScale&&null===this._startTime&&this._mixer._isActiveAction(this)}isScheduled(){return this._mixer._isActiveAction(this)}startAt(t){return this._startTime=t,this}setLoop(t,e){return this.loop=t,this.repetitions=e,this}setEffectiveWeight(t){return this.weight=t,this._effectiveWeight=this.enabled?t:0,this.stopFading()}getEffectiveWeight(){return this._effectiveWeight}fadeIn(t){return this._scheduleFading(t,0,1)}fadeOut(t){return this._scheduleFading(t,1,0)}crossFadeFrom(t,e,i=!1){if(t.fadeOut(e),this.fadeIn(e),!0===i){const i=this._clip.duration,s=t._clip.duration,r=s/i,n=i/s;t.warp(1,r,e),this.warp(n,1,e)}return this}crossFadeTo(t,e,i=!1){return t.crossFadeFrom(this,e,i)}stopFading(){const t=this._weightInterpolant;return null!==t&&(this._weightInterpolant=null,this._mixer._takeBackControlInterpolant(t)),this}setEffectiveTimeScale(t){return this.timeScale=t,this._effectiveTimeScale=this.paused?0:t,this.stopWarping()}getEffectiveTimeScale(){return this._effectiveTimeScale}setDuration(t){return this.timeScale=this._clip.duration/t,this.stopWarping()}syncWith(t){return this.time=t.time,this.timeScale=t.timeScale,this.stopWarping()}halt(t){return this.warp(this._effectiveTimeScale,0,t)}warp(t,e,i){const s=this._mixer,r=s.time,n=this.timeScale;let a=this._timeScaleInterpolant;null===a&&(a=s._lendControlInterpolant(),this._timeScaleInterpolant=a);const o=a.parameterPositions,h=a.sampleValues;return o[0]=r,o[1]=r+i,h[0]=t/n,h[1]=e/n,this}stopWarping(){const t=this._timeScaleInterpolant;return null!==t&&(this._timeScaleInterpolant=null,this._mixer._takeBackControlInterpolant(t)),this}getMixer(){return this._mixer}getClip(){return this._clip}getRoot(){return this._localRoot||this._mixer._root}_update(t,e,i,s){if(!this.enabled)return void this._updateWeight(t);const r=this._startTime;if(null!==r){const s=(t-r)*i;s<0||0===i?e=0:(this._startTime=null,e=i*s)}e*=this._updateTimeScale(t);const n=this._updateTime(e),a=this._updateWeight(t);if(a>0){const t=this._interpolants,e=this._propertyBindings;if(this.blendMode===We)for(let i=0,s=t.length;i!==s;++i)t[i].evaluate(n),e[i].accumulateAdditive(a);else for(let i=0,r=t.length;i!==r;++i)t[i].evaluate(n),e[i].accumulate(s,a)}}_updateWeight(t){let e=0;if(this.enabled){e=this.weight;const i=this._weightInterpolant;if(null!==i){const s=i.evaluate(t)[0];e*=s,t>i.parameterPositions[1]&&(this.stopFading(),0===s&&(this.enabled=!1))}}return this._effectiveWeight=e,e}_updateTimeScale(t){let e=0;if(!this.paused){e=this.timeScale;const i=this._timeScaleInterpolant;if(null!==i){e*=i.evaluate(t)[0],t>i.parameterPositions[1]&&(this.stopWarping(),0===e?this.paused=!0:this.timeScale=e)}}return this._effectiveTimeScale=e,e}_updateTime(t){const e=this._clip.duration,i=this.loop;let s=this.time+t,r=this._loopCount;const n=2202===i;if(0===t)return-1===r||!n||1&~r?s:e-s;if(2200===i){-1===r&&(this._loopCount=0,this._setEndings(!0,!0,!1));t:{if(s>=e)s=e;else{if(!(s<0)){this.time=s;break t}s=0}this.clampWhenFinished?this.paused=!0:this.enabled=!1,this.time=s,this._mixer.dispatchEvent({type:"finished",action:this,direction:t<0?-1:1})}}else{if(-1===r&&(t>=0?(r=0,this._setEndings(!0,0===this.repetitions,n)):this._setEndings(0===this.repetitions,!0,n)),s>=e||s<0){const i=Math.floor(s/e);s-=e*i,r+=Math.abs(i);const a=this.repetitions-r;if(a<=0)this.clampWhenFinished?this.paused=!0:this.enabled=!1,s=t>0?e:0,this.time=s,this._mixer.dispatchEvent({type:"finished",action:this,direction:t>0?1:-1});else{if(1===a){const e=t<0;this._setEndings(e,!e,n)}else this._setEndings(!1,!1,n);this._loopCount=r,this.time=s,this._mixer.dispatchEvent({type:"loop",action:this,loopDelta:i})}}else this.time=s;if(n&&!(1&~r))return e-s}return s}_setEndings(t,e,i){const s=this._interpolantSettings;i?(s.endingStart=Ee,s.endingEnd=Ee):(s.endingStart=t?this.zeroSlopeAtStart?Ee:Le:je,s.endingEnd=e?this.zeroSlopeAtEnd?Ee:Le:je)}_scheduleFading(t,e,i){const s=this._mixer,r=s.time;let n=this._weightInterpolant;null===n&&(n=s._lendControlInterpolant(),this._weightInterpolant=n);const a=n.parameterPositions,o=n.sampleValues;return a[0]=r,o[0]=e,a[1]=r+t,o[1]=i,this}}const Gu=new Float32Array(1);class $u extends hs{constructor(t){super(),this._root=t,this._initMemoryManager(),this._accuIndex=0,this.time=0,this.timeScale=1}_bindAction(t,e){const i=t._localRoot||this._root,s=t._clip.tracks,r=s.length,n=t._propertyBindings,a=t._interpolants,o=i.uuid,h=this._bindingsByRootAndName;let l=h[o];void 0===l&&(l={},h[o]=l);for(let t=0;t!==r;++t){const r=s[t],h=r.name;let c=l[h];if(void 0!==c)++c.referenceCount,n[t]=c;else{if(c=n[t],void 0!==c){null===c._cacheIndex&&(++c.referenceCount,this._addInactiveBinding(c,o,h));continue}const s=e&&e._propertyBindings[t].binding.parsedPath;c=new ju(Yu.create(i,h,s),r.ValueTypeName,r.getValueSize()),++c.referenceCount,this._addInactiveBinding(c,o,h),n[t]=c}a[t].resultBuffer=c.buffer}}_activateAction(t){if(!this._isActiveAction(t)){if(null===t._cacheIndex){const e=(t._localRoot||this._root).uuid,i=t._clip.uuid,s=this._actionsByClip[i];this._bindAction(t,s&&s.knownActions[0]),this._addInactiveAction(t,i,e)}const e=t._propertyBindings;for(let t=0,i=e.length;t!==i;++t){const i=e[t];0===i.useCount++&&(this._lendBinding(i),i.saveOriginalState())}this._lendAction(t)}}_deactivateAction(t){if(this._isActiveAction(t)){const e=t._propertyBindings;for(let t=0,i=e.length;t!==i;++t){const i=e[t];0===--i.useCount&&(i.restoreOriginalState(),this._takeBackBinding(i))}this._takeBackAction(t)}}_initMemoryManager(){this._actions=[],this._nActiveActions=0,this._actionsByClip={},this._bindings=[],this._nActiveBindings=0,this._bindingsByRootAndName={},this._controlInterpolants=[],this._nActiveControlInterpolants=0;const t=this;this.stats={actions:{get total(){return t._actions.length},get inUse(){return t._nActiveActions}},bindings:{get total(){return t._bindings.length},get inUse(){return t._nActiveBindings}},controlInterpolants:{get total(){return t._controlInterpolants.length},get inUse(){return t._nActiveControlInterpolants}}}}_isActiveAction(t){const e=t._cacheIndex;return null!==e&&e=0;--e)t[e].stop();return this}update(t){t*=this.timeScale;const e=this._actions,i=this._nActiveActions,s=this.time+=t,r=Math.sign(t),n=this._accuIndex^=1;for(let a=0;a!==i;++a){e[a]._update(s,t,r,n)}const a=this._bindings,o=this._nActiveBindings;for(let t=0;t!==o;++t)a[t].apply(n);return this}setTime(t){this.time=0;for(let t=0;t=this.min.x&&t.x<=this.max.x&&t.y>=this.min.y&&t.y<=this.max.y}containsBox(t){return this.min.x<=t.min.x&&t.max.x<=this.max.x&&this.min.y<=t.min.y&&t.max.y<=this.max.y}getParameter(t,e){return e.set((t.x-this.min.x)/(this.max.x-this.min.x),(t.y-this.min.y)/(this.max.y-this.min.y))}intersectsBox(t){return t.max.x>=this.min.x&&t.min.x<=this.max.x&&t.max.y>=this.min.y&&t.min.y<=this.max.y}clampPoint(t,e){return e.copy(t).clamp(this.min,this.max)}distanceToPoint(t){return this.clampPoint(t,pd).distanceTo(t)}intersect(t){return this.min.max(t.min),this.max.min(t.max),this.isEmpty()&&this.makeEmpty(),this}union(t){return this.min.min(t.min),this.max.max(t.max),this}translate(t){return this.min.add(t),this.max.add(t),this}equals(t){return t.min.equals(this.min)&&t.max.equals(this.max)}}const yd=new Ms,gd=new Ms,fd=new Ms,xd=new Ms,bd=new Ms,vd=new Ms,wd=new Ms;class Md{constructor(t=new Ms,e=new Ms){this.start=t,this.end=e}set(t,e){return this.start.copy(t),this.end.copy(e),this}copy(t){return this.start.copy(t.start),this.end.copy(t.end),this}getCenter(t){return t.addVectors(this.start,this.end).multiplyScalar(.5)}delta(t){return t.subVectors(this.end,this.start)}distanceSq(){return this.start.distanceToSquared(this.end)}distance(){return this.start.distanceTo(this.end)}at(t,e){return this.delta(e).multiplyScalar(t).add(this.start)}closestPointToPointParameter(t,e){yd.subVectors(t,this.start),gd.subVectors(this.end,this.start);const i=gd.dot(gd);let s=gd.dot(yd)/i;return e&&(s=ms(s,0,1)),s}closestPointToPoint(t,e,i){const s=this.closestPointToPointParameter(t,e);return this.delta(i).multiplyScalar(s).add(this.start)}distanceSqToLine3(t,e=vd,i=wd){const s=1e-8*1e-8;let r,n;const a=this.start,o=t.start,h=this.end,l=t.end;fd.subVectors(h,a),xd.subVectors(l,o),bd.subVectors(a,o);const c=fd.dot(fd),u=xd.dot(xd),d=xd.dot(bd);if(c<=s&&u<=s)return e.copy(a),i.copy(o),e.sub(i),e.dot(e);if(c<=s)r=0,n=d/u,n=ms(n,0,1);else{const t=fd.dot(bd);if(u<=s)n=0,r=ms(-t/c,0,1);else{const e=fd.dot(xd),i=c*u-e*e;r=0!==i?ms((e*d-t*u)/i,0,1):0,n=(e*r+d)/u,n<0?(n=0,r=ms(-t/c,0,1)):n>1&&(n=1,r=ms((e-t)/c,0,1))}}return e.copy(a).add(fd.multiplyScalar(r)),i.copy(o).add(xd.multiplyScalar(n)),e.sub(i),e.dot(e)}applyMatrix4(t){return this.start.applyMatrix4(t),this.end.applyMatrix4(t),this}equals(t){return t.start.equals(this.start)&&t.end.equals(this.end)}clone(){return(new this.constructor).copy(this)}}const Sd=new Ms;class _d extends Zr{constructor(t,e){super(),this.light=t,this.matrixAutoUpdate=!1,this.color=e,this.type="SpotLightHelper";const i=new qn,s=[0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,-1,0,1,0,0,0,0,1,1,0,0,0,0,-1,1];for(let t=0,e=1,i=32;t1)for(let i=0;i.99999)this.quaternion.set(0,0,0,1);else if(t.y<-.99999)this.quaternion.set(1,0,0,0);else{Hd.set(t.z,0,-t.x).normalize();const e=Math.acos(t.y);this.quaternion.setFromAxisAngle(Hd,e)}}setLength(t,e=.2*t,i=.2*e){this.line.scale.set(1,Math.max(1e-4,t-e),1),this.line.updateMatrix(),this.cone.scale.set(i,e,i),this.cone.position.y=t,this.cone.updateMatrix()}setColor(t){this.line.material.color.set(t),this.cone.material.color.set(t)}copy(t){return super.copy(t,!1),this.line.copy(t.line),this.cone.copy(t.cone),this}dispose(){this.line.geometry.dispose(),this.line.material.dispose(),this.cone.geometry.dispose(),this.cone.material.dispose()}}class Kd extends ah{constructor(t=1){const e=[0,0,0,t,0,0,0,0,0,0,t,0,0,0,0,0,0,t],i=new qn;i.setAttribute("position",new Vn(e,3)),i.setAttribute("color",new Vn([1,0,0,1,.6,0,0,1,0,.6,1,0,0,0,1,0,.6,1],3));super(i,new Zo({vertexColors:!0,toneMapped:!1})),this.type="AxesHelper"}setColors(t,e,i){const s=new mn,r=this.geometry.attributes.color.array;return s.set(t),s.toArray(r,0),s.toArray(r,3),s.set(e),s.toArray(r,6),s.toArray(r,9),s.set(i),s.toArray(r,12),s.toArray(r,15),this.geometry.attributes.color.needsUpdate=!0,this}dispose(){this.geometry.dispose(),this.material.dispose()}}class tp{constructor(){this.type="ShapePath",this.color=new mn,this.subPaths=[],this.currentPath=null}moveTo(t,e){return this.currentPath=new sl,this.subPaths.push(this.currentPath),this.currentPath.moveTo(t,e),this}lineTo(t,e){return this.currentPath.lineTo(t,e),this}quadraticCurveTo(t,e,i,s){return this.currentPath.quadraticCurveTo(t,e,i,s),this}bezierCurveTo(t,e,i,s,r,n){return this.currentPath.bezierCurveTo(t,e,i,s,r,n),this}splineThru(t){return this.currentPath.splineThru(t),this}toShapes(t){function e(t,e){const i=e.length;let s=!1;for(let r=i-1,n=0;nNumber.EPSILON){if(h<0&&(i=e[n],o=-o,a=e[r],h=-h),t.ya.y)continue;if(t.y===i.y){if(t.x===i.x)return!0}else{const e=h*(t.x-i.x)-o*(t.y-i.y);if(0===e)return!0;if(e<0)continue;s=!s}}else{if(t.y!==i.y)continue;if(a.x<=t.x&&t.x<=i.x||i.x<=t.x&&t.x<=a.x)return!0}}return s}const i=Ol.isClockWise,s=this.subPaths;if(0===s.length)return[];let r,n,a;const o=[];if(1===s.length)return n=s[0],a=new rl,a.curves=n.curves,o.push(a),o;let h=!i(s[0].getPoints());h=t?!h:h;const l=[],c=[];let u,d,p=[],m=0;c[m]=void 0,p[m]=[];for(let e=0,a=s.length;e1){let t=!1,i=0;for(let t=0,e=c.length;t0&&!1===t&&(p=l)}for(let t=0,e=c.length;te?(t.repeat.x=1,t.repeat.y=i/e,t.offset.x=0,t.offset.y=(1-t.repeat.y)/2):(t.repeat.x=e/i,t.repeat.y=1,t.offset.x=(1-t.repeat.x)/2,t.offset.y=0),t}(t,e)}static cover(t,e){return function(t,e){const i=t.image&&t.image.width?t.image.width/t.image.height:1;return i>e?(t.repeat.x=e/i,t.repeat.y=1,t.offset.x=(1-t.repeat.x)/2,t.offset.y=0):(t.repeat.x=1,t.repeat.y=i/e,t.offset.x=0,t.offset.y=(1-t.repeat.y)/2),t}(t,e)}static fill(t){return function(t){return t.repeat.x=1,t.repeat.y=1,t.offset.x=0,t.offset.y=0,t}(t)}static getByteLength(t,e,i,s){return ip(t,e,i,s)}}"undefined"!=typeof __THREE_DEVTOOLS__&&__THREE_DEVTOOLS__.dispatchEvent(new CustomEvent("register",{detail:{revision:t}})),"undefined"!=typeof window&&(window.__THREE__?rs("WARNING: Multiple instances of Three.js being imported."):window.__THREE__=t);export{et as ACESFilmicToneMapping,v as AddEquation,G as AddOperation,We as AdditiveAnimationBlendMode,g as AdditiveBlending,st as AgXToneMapping,Et as AlphaFormat,Bi as AlwaysCompare,D as AlwaysDepth,Mi as AlwaysStencilFunc,ru as AmbientLight,Hu as AnimationAction,Tc as AnimationClip,Nc as AnimationLoader,$u as AnimationMixer,Zu as AnimationObjectGroup,pc as AnimationUtils,Lh as ArcCurve,Au as ArrayCamera,Qd as ArrowHelper,nt as AttachedBindMode,Pu as Audio,Eu as AudioAnalyser,bu as AudioContext,Ou as AudioListener,vu as AudioLoader,Kd as AxesHelper,d as BackSide,Xe as BasicDepthPacking,o as BasicShadowMap,Yo as BatchedMesh,so as Bone,bc as BooleanKeyframeTrack,md as Box2,Zs as Box3,Yd as Box3Helper,ra as BoxGeometry,Xd as BoxHelper,zn as BufferAttribute,qn as BufferGeometry,uu as BufferGeometryLoader,zt as ByteType,Cc as Cache,ca as Camera,Ud as CameraHelper,wh as CanvasTexture,Ah as CapsuleGeometry,qh as CatmullRomCurve3,tt as CineonToneMapping,Th as CircleGeometry,mt as ClampToEdgeWrapping,Tu as Clock,mn as Color,vc as ColorKeyframeTrack,Bs as ColorManagement,bh as CompressedArrayTexture,vh as CompressedCubeTexture,xh as CompressedTexture,Vc as CompressedTextureLoader,Ch as ConeGeometry,L as ConstantAlphaFactor,V as ConstantColorFactor,ep as Controls,ga as CubeCamera,Sh as CubeDepthTexture,ht as CubeReflectionMapping,lt as CubeRefractionMapping,fa as CubeTexture,Ec as CubeTextureLoader,dt as CubeUVReflectionMapping,Zh as CubicBezierCurve,Hh as CubicBezierCurve3,yc as CubicInterpolant,r as CullFaceBack,n as CullFaceFront,a as CullFaceFrontBack,s as CullFaceNone,Vh as Curve,il as CurvePath,b as CustomBlending,it as CustomToneMapping,zh as CylinderGeometry,ud as Cylindrical,Xs as Data3DTexture,qs as DataArrayTexture,ro as DataTexture,jc as DataTextureLoader,Sn as DataUtils,ui as DecrementStencilOp,pi as DecrementWrapStencilOp,Bc as DefaultLoadingManager,Wt as DepthFormat,Ut as DepthStencilFormat,Mh as DepthTexture,at as DetachedBindMode,su as DirectionalLight,jd as DirectionalLightHelper,fc as DiscreteInterpolant,Bh as DodecahedronGeometry,p as DoubleSide,k as DstAlphaFactor,P as DstColorFactor,Li as DynamicCopyUsage,Oi as DynamicDrawUsage,Ni as DynamicReadUsage,Nh as EdgesGeometry,Fh as EllipseCurve,Ai as EqualCompare,q as EqualDepth,fi as EqualStencilFunc,ct as EquirectangularReflectionMapping,ut as EquirectangularRefractionMapping,kr as Euler,hs as EventDispatcher,_h as ExternalTexture,Nl as ExtrudeGeometry,Rc as FileLoader,Nn as Float16BufferAttribute,Vn as Float32BufferAttribute,Ot as FloatType,Sa as Fog,Ma as FogExp2,fh as FramebufferTexture,u as FrontSide,Ao as Frustum,Co as FrustumArray,sd as GLBufferAttribute,ji as GLSL1,Di as GLSL3,zi as GreaterCompare,X as GreaterDepth,Ii as GreaterEqualCompare,J as GreaterEqualDepth,wi as GreaterEqualStencilFunc,bi as GreaterStencilFunc,Nd as GridHelper,ba as Group,Pt as HalfFloatType,Uc as HemisphereLight,Rd as HemisphereLightHelper,Fl as IcosahedronGeometry,Ge as IdentityDepthPacking,fu as ImageBitmapLoader,Lc as ImageLoader,Rs as ImageUtils,ci as IncrementStencilOp,di as IncrementWrapStencilOp,ho as InstancedBufferAttribute,cu as InstancedBufferGeometry,id as InstancedInterleavedBuffer,fo as InstancedMesh,kn as Int16BufferAttribute,Pn as Int32BufferAttribute,Cn as Int8BufferAttribute,Bt as IntType,Aa as InterleavedBuffer,za as InterleavedBufferAttribute,mc as Interpolant,Ne as InterpolateDiscrete,Ve as InterpolateLinear,Fe as InterpolateSmooth,Xi as InterpolationSamplingMode,Ji as InterpolationSamplingType,mi as InvertStencilOp,hi as KeepStencilOp,xc as KeyframeTrack,Xa as LOD,Ll as LatheGeometry,Or as Layers,_i as LessCompare,W as LessDepth,Ti as LessEqualCompare,U as LessEqualDepth,xi as LessEqualStencilFunc,gi as LessStencilFunc,Wc as Light,ou as LightProbe,ih as Line,Md as Line3,Zo as LineBasicMaterial,Gh as LineCurve,$h as LineCurve3,hc as LineDashedMaterial,oh as LineLoop,ah as LineSegments,wt as LinearFilter,gc as LinearInterpolant,At as LinearMipMapLinearFilter,St as LinearMipMapNearestFilter,_t as LinearMipmapLinearFilter,Mt as LinearMipmapNearestFilter,ei as LinearSRGBColorSpace,Q as LinearToneMapping,ii as LinearTransfer,kc as Loader,lu as LoaderUtils,Ic as LoadingManager,Oe as LoopOnce,Re as LoopPingPong,Pe as LoopRepeat,e as MOUSE,fn as Material,hu as MaterialLoader,bs as MathUtils,dd as Matrix2,As as Matrix3,wr as Matrix4,_ as MaxEquation,ia as Mesh,xn as MeshBasicMaterial,nc as MeshDepthMaterial,ac as MeshDistanceMaterial,rc as MeshLambertMaterial,oc as MeshMatcapMaterial,sc as MeshNormalMaterial,ec as MeshPhongMaterial,tc as MeshPhysicalMaterial,Kl as MeshStandardMaterial,ic as MeshToonMaterial,S as MinEquation,yt as MirroredRepeatWrapping,H as MixOperation,x as MultiplyBlending,Z as MultiplyOperation,gt as NearestFilter,vt as NearestMipMapLinearFilter,xt as NearestMipMapNearestFilter,bt as NearestMipmapLinearFilter,ft as NearestMipmapNearestFilter,rt as NeutralToneMapping,Si as NeverCompare,j as NeverDepth,yi as NeverStencilFunc,m as NoBlending,Ke as NoColorSpace,ri as NoNormalPacking,$ as NoToneMapping,De as NormalAnimationBlendMode,y as NormalBlending,ai as NormalGAPacking,ni as NormalRGPacking,Ci as NotEqualCompare,Y as NotEqualDepth,vi as NotEqualStencilFunc,wc as NumberKeyframeTrack,Zr as Object3D,du as ObjectLoader,Qe as ObjectSpaceNormalMap,El as OctahedronGeometry,T as OneFactor,E as OneMinusConstantAlphaFactor,F as OneMinusConstantColorFactor,O as OneMinusDstAlphaFactor,R as OneMinusDstColorFactor,B as OneMinusSrcAlphaFactor,C as OneMinusSrcColorFactor,eu as OrthographicCamera,h as PCFShadowMap,l as PCFSoftShadowMap,sl as Path,ma as PerspectiveCamera,wo as Plane,jl as PlaneGeometry,Zd as PlaneHelper,tu as PointLight,Bd as PointLightHelper,ph as Points,hh as PointsMaterial,Vd as PolarGridHelper,Ih as PolyhedronGeometry,Lu as PositionalAudio,Yu as PropertyBinding,ju as PropertyMixer,Qh as QuadraticBezierCurve,Kh as QuadraticBezierCurve3,ws as Quaternion,Sc as QuaternionKeyframeTrack,Mc as QuaternionLinearInterpolant,oe as R11_EAC_Format,ds as RAD2DEG,Be as RED_GREEN_RGTC2_Format,Ce as RED_RGTC1_Format,t as REVISION,le as RG11_EAC_Format,Ye as RGBADepthPacking,Dt as RGBAFormat,Ht as RGBAIntegerFormat,Me as RGBA_ASTC_10x10_Format,be as RGBA_ASTC_10x5_Format,ve as RGBA_ASTC_10x6_Format,we as RGBA_ASTC_10x8_Format,Se as RGBA_ASTC_12x10_Format,_e as RGBA_ASTC_12x12_Format,ue as RGBA_ASTC_4x4_Format,de as RGBA_ASTC_5x4_Format,pe as RGBA_ASTC_5x5_Format,me as RGBA_ASTC_6x5_Format,ye as RGBA_ASTC_6x6_Format,ge as RGBA_ASTC_8x5_Format,fe as RGBA_ASTC_8x6_Format,xe as RGBA_ASTC_8x8_Format,Ae as RGBA_BPTC_Format,ae as RGBA_ETC2_EAC_Format,se as RGBA_PVRTC_2BPPV1_Format,ie as RGBA_PVRTC_4BPPV1_Format,$t as RGBA_S3TC_DXT1_Format,Qt as RGBA_S3TC_DXT3_Format,Kt as RGBA_S3TC_DXT5_Format,Ze as RGBDepthPacking,jt as RGBFormat,Zt as RGBIntegerFormat,Te as RGB_BPTC_SIGNED_Format,ze as RGB_BPTC_UNSIGNED_Format,re as RGB_ETC1_Format,ne as RGB_ETC2_Format,ee as RGB_PVRTC_2BPPV1_Format,te as RGB_PVRTC_4BPPV1_Format,Gt as RGB_S3TC_DXT1_Format,He as RGDepthPacking,Xt as RGFormat,Yt as RGIntegerFormat,Ql as RawShaderMaterial,vr as Ray,nd as Raycaster,nu as RectAreaLight,qt as RedFormat,Jt as RedIntegerFormat,K as ReinhardToneMapping,Ws as RenderTarget,Qu as RenderTarget3D,pt as RepeatWrapping,li as ReplaceStencilOp,M as ReverseSubtractEquation,Dl as RingGeometry,he as SIGNED_R11_EAC_Format,ke as SIGNED_RED_GREEN_RGTC2_Format,Ie as SIGNED_RED_RGTC1_Format,ce as SIGNED_RG11_EAC_Format,ti as SRGBColorSpace,si as SRGBTransfer,_a as Scene,la as ShaderMaterial,$l as ShadowMaterial,rl as Shape,Wl as ShapeGeometry,tp as ShapePath,Ol as ShapeUtils,Ct as ShortType,oo as Skeleton,Cd as SkeletonHelper,io as SkinnedMesh,Vs as Source,dr as Sphere,Ul as SphereGeometry,cd as Spherical,au as SphericalHarmonics3,tl as SplineCurve,Hc as SpotLight,_d as SpotLightHelper,Wa as Sprite,Ca as SpriteMaterial,I as SrcAlphaFactor,N as SrcAlphaSaturateFactor,z as SrcColorFactor,Fi as StaticCopyUsage,ki as StaticDrawUsage,Ri as StaticReadUsage,_u as StereoCamera,Ei as StreamCopyUsage,Pi as StreamDrawUsage,Vi as StreamReadUsage,_c as StringKeyframeTrack,w as SubtractEquation,f as SubtractiveBlending,i as TOUCH,$e as TangentSpaceNormalMap,ql as TetrahedronGeometry,js as Texture,Dc as TextureLoader,sp as TextureUtils,hd as Timer,qi as TimestampQuery,Jl as TorusGeometry,Xl as TorusKnotGeometry,ln as Triangle,Je as TriangleFanDrawMode,qe as TriangleStripDrawMode,Ue as TrianglesDrawMode,Yl as TubeGeometry,ot as UVMapping,On as Uint16BufferAttribute,Rn as Uint32BufferAttribute,In as Uint8BufferAttribute,Bn as Uint8ClampedBufferAttribute,Ku as Uniform,ed as UniformsGroup,ha as UniformsUtils,Tt as UnsignedByteType,Lt as UnsignedInt101111Type,Vt as UnsignedInt248Type,Ft as UnsignedInt5999Type,kt as UnsignedIntType,Rt as UnsignedShort4444Type,Nt as UnsignedShort5551Type,It as UnsignedShortType,c as VSMShadowMap,vs as Vector2,Ms as Vector3,Ds as Vector4,Ac as VectorKeyframeTrack,gh as VideoFrameTexture,yh as VideoTexture,Ys as WebGL3DRenderTarget,Js as WebGLArrayRenderTarget,Wi as WebGLCoordinateSystem,xa as WebGLCubeRenderTarget,Us as WebGLRenderTarget,Ui as WebGPUCoordinateSystem,wa as WebXRController,Zl as WireframeGeometry,je as WrapAroundEnding,Le as ZeroCurvatureEnding,A as ZeroFactor,Ee as ZeroSlopeEnding,oi as ZeroStencilOp,Yi as arrayNeedsUint32,na as cloneUniforms,Qi as createCanvasElement,$i as createElementNS,ns as error,ip as getByteLength,is as getConsoleFunction,oa as getUnlitUniformColorSpace,Gi as isTypedArray,ss as log,aa as mergeUniforms,os as probeAsync,es as setConsoleFunction,rs as warn,as as warnOnce}; +const t="182dev",e={LEFT:0,MIDDLE:1,RIGHT:2,ROTATE:0,DOLLY:1,PAN:2},i={ROTATE:0,PAN:1,DOLLY_PAN:2,DOLLY_ROTATE:3},s=0,r=1,n=2,a=3,o=0,h=1,l=2,c=3,u=0,d=1,p=2,m=0,y=1,g=2,f=3,x=4,b=5,v=100,w=101,M=102,S=103,_=104,A=200,T=201,z=202,C=203,I=204,B=205,k=206,O=207,P=208,R=209,N=210,V=211,F=212,L=213,E=214,j=0,D=1,W=2,U=3,q=4,J=5,X=6,Y=7,Z=0,H=1,G=2,$=0,Q=1,K=2,tt=3,et=4,it=5,st=6,rt=7,nt="attached",at="detached",ot=300,ht=301,lt=302,ct=303,ut=304,dt=306,pt=1e3,mt=1001,yt=1002,gt=1003,ft=1004,xt=1004,bt=1005,vt=1005,wt=1006,Mt=1007,St=1007,_t=1008,At=1008,Tt=1009,zt=1010,Ct=1011,It=1012,Bt=1013,kt=1014,Ot=1015,Pt=1016,Rt=1017,Nt=1018,Vt=1020,Ft=35902,Lt=35899,Et=1021,jt=1022,Dt=1023,Wt=1026,Ut=1027,qt=1028,Jt=1029,Xt=1030,Yt=1031,Zt=1032,Ht=1033,Gt=33776,$t=33777,Qt=33778,Kt=33779,te=35840,ee=35841,ie=35842,se=35843,re=36196,ne=37492,ae=37496,oe=37488,he=37489,le=37490,ce=37491,ue=37808,de=37809,pe=37810,me=37811,ye=37812,ge=37813,fe=37814,xe=37815,be=37816,ve=37817,we=37818,Me=37819,Se=37820,_e=37821,Ae=36492,Te=36494,ze=36495,Ce=36283,Ie=36284,Be=36285,ke=36286,Oe=2200,Pe=2201,Re=2202,Ne=2300,Ve=2301,Fe=2302,Le=2400,Ee=2401,je=2402,De=2500,We=2501,Ue=0,qe=1,Je=2,Xe=3200,Ye=3201,Ze=3202,He=3203,Ge=3204,$e=0,Qe=1,Ke="",ti="srgb",ei="srgb-linear",ii="linear",si="srgb",ri="",ni="rg",ai="ga",oi=0,hi=7680,li=7681,ci=7682,ui=7683,di=34055,pi=34056,mi=5386,yi=512,gi=513,fi=514,xi=515,bi=516,vi=517,wi=518,Mi=519,Si=512,_i=513,Ai=514,Ti=515,zi=516,Ci=517,Ii=518,Bi=519,ki=35044,Oi=35048,Pi=35040,Ri=35045,Ni=35049,Vi=35041,Fi=35046,Li=35050,Ei=35042,ji="100",Di="300 es",Wi=2e3,Ui=2001,qi={COMPUTE:"compute",RENDER:"render"},Ji={PERSPECTIVE:"perspective",LINEAR:"linear",FLAT:"flat"},Xi={NORMAL:"normal",CENTROID:"centroid",SAMPLE:"sample",FIRST:"first",EITHER:"either"};function Yi(t){for(let e=t.length-1;e>=0;--e)if(t[e]>=65535)return!0;return!1}const Zi={Int8Array:Int8Array,Uint8Array:Uint8Array,Uint8ClampedArray:Uint8ClampedArray,Int16Array:Int16Array,Uint16Array:Uint16Array,Int32Array:Int32Array,Uint32Array:Uint32Array,Float32Array:Float32Array,Float64Array:Float64Array};function Hi(t,e){return new Zi[t](e)}function Gi(t){return ArrayBuffer.isView(t)&&!(t instanceof DataView)}function $i(t){return document.createElementNS("http://www.w3.org/1999/xhtml",t)}function Qi(){const t=$i("canvas");return t.style.display="block",t}const Ki={};let ts=null;function es(t){ts=t}function is(){return ts}function ss(...t){const e="THREE."+t.shift();ts?ts("log",e,...t):console.log(e,...t)}function rs(...t){const e="THREE."+t.shift();ts?ts("warn",e,...t):console.warn(e,...t)}function ns(...t){const e="THREE."+t.shift();ts?ts("error",e,...t):console.error(e,...t)}function as(...t){const e=t.join(" ");e in Ki||(Ki[e]=!0,rs(...t))}function os(t,e,i){return new Promise(function(s,r){setTimeout(function n(){switch(t.clientWaitSync(e,t.SYNC_FLUSH_COMMANDS_BIT,0)){case t.WAIT_FAILED:r();break;case t.TIMEOUT_EXPIRED:setTimeout(n,i);break;default:s()}},i)})}class hs{addEventListener(t,e){void 0===this._listeners&&(this._listeners={});const i=this._listeners;void 0===i[t]&&(i[t]=[]),-1===i[t].indexOf(e)&&i[t].push(e)}hasEventListener(t,e){const i=this._listeners;return void 0!==i&&(void 0!==i[t]&&-1!==i[t].indexOf(e))}removeEventListener(t,e){const i=this._listeners;if(void 0===i)return;const s=i[t];if(void 0!==s){const t=s.indexOf(e);-1!==t&&s.splice(t,1)}}dispatchEvent(t){const e=this._listeners;if(void 0===e)return;const i=e[t.type];if(void 0!==i){t.target=this;const e=i.slice(0);for(let i=0,s=e.length;i>8&255]+ls[t>>16&255]+ls[t>>24&255]+"-"+ls[255&e]+ls[e>>8&255]+"-"+ls[e>>16&15|64]+ls[e>>24&255]+"-"+ls[63&i|128]+ls[i>>8&255]+"-"+ls[i>>16&255]+ls[i>>24&255]+ls[255&s]+ls[s>>8&255]+ls[s>>16&255]+ls[s>>24&255]).toLowerCase()}function ms(t,e,i){return Math.max(e,Math.min(i,t))}function ys(t,e){return(t%e+e)%e}function gs(t,e,i){return(1-i)*t+i*e}function fs(t,e){switch(e.constructor){case Float32Array:return t;case Uint32Array:return t/4294967295;case Uint16Array:return t/65535;case Uint8Array:return t/255;case Int32Array:return Math.max(t/2147483647,-1);case Int16Array:return Math.max(t/32767,-1);case Int8Array:return Math.max(t/127,-1);default:throw new Error("Invalid component type.")}}function xs(t,e){switch(e.constructor){case Float32Array:return t;case Uint32Array:return Math.round(4294967295*t);case Uint16Array:return Math.round(65535*t);case Uint8Array:return Math.round(255*t);case Int32Array:return Math.round(2147483647*t);case Int16Array:return Math.round(32767*t);case Int8Array:return Math.round(127*t);default:throw new Error("Invalid component type.")}}const bs={DEG2RAD:us,RAD2DEG:ds,generateUUID:ps,clamp:ms,euclideanModulo:ys,mapLinear:function(t,e,i,s,r){return s+(t-e)*(r-s)/(i-e)},inverseLerp:function(t,e,i){return t!==e?(i-t)/(e-t):0},lerp:gs,damp:function(t,e,i,s){return gs(t,e,1-Math.exp(-i*s))},pingpong:function(t,e=1){return e-Math.abs(ys(t,2*e)-e)},smoothstep:function(t,e,i){return t<=e?0:t>=i?1:(t=(t-e)/(i-e))*t*(3-2*t)},smootherstep:function(t,e,i){return t<=e?0:t>=i?1:(t=(t-e)/(i-e))*t*t*(t*(6*t-15)+10)},randInt:function(t,e){return t+Math.floor(Math.random()*(e-t+1))},randFloat:function(t,e){return t+Math.random()*(e-t)},randFloatSpread:function(t){return t*(.5-Math.random())},seededRandom:function(t){void 0!==t&&(cs=t);let e=cs+=1831565813;return e=Math.imul(e^e>>>15,1|e),e^=e+Math.imul(e^e>>>7,61|e),((e^e>>>14)>>>0)/4294967296},degToRad:function(t){return t*us},radToDeg:function(t){return t*ds},isPowerOfTwo:function(t){return!(t&t-1)&&0!==t},ceilPowerOfTwo:function(t){return Math.pow(2,Math.ceil(Math.log(t)/Math.LN2))},floorPowerOfTwo:function(t){return Math.pow(2,Math.floor(Math.log(t)/Math.LN2))},setQuaternionFromProperEuler:function(t,e,i,s,r){const n=Math.cos,a=Math.sin,o=n(i/2),h=a(i/2),l=n((e+s)/2),c=a((e+s)/2),u=n((e-s)/2),d=a((e-s)/2),p=n((s-e)/2),m=a((s-e)/2);switch(r){case"XYX":t.set(o*c,h*u,h*d,o*l);break;case"YZY":t.set(h*d,o*c,h*u,o*l);break;case"ZXZ":t.set(h*u,h*d,o*c,o*l);break;case"XZX":t.set(o*c,h*m,h*p,o*l);break;case"YXY":t.set(h*p,o*c,h*m,o*l);break;case"ZYZ":t.set(h*m,h*p,o*c,o*l);break;default:rs("MathUtils: .setQuaternionFromProperEuler() encountered an unknown order: "+r)}},normalize:xs,denormalize:fs};class vs{constructor(t=0,e=0){vs.prototype.isVector2=!0,this.x=t,this.y=e}get width(){return this.x}set width(t){this.x=t}get height(){return this.y}set height(t){this.y=t}set(t,e){return this.x=t,this.y=e,this}setScalar(t){return this.x=t,this.y=t,this}setX(t){return this.x=t,this}setY(t){return this.y=t,this}setComponent(t,e){switch(t){case 0:this.x=e;break;case 1:this.y=e;break;default:throw new Error("index is out of range: "+t)}return this}getComponent(t){switch(t){case 0:return this.x;case 1:return this.y;default:throw new Error("index is out of range: "+t)}}clone(){return new this.constructor(this.x,this.y)}copy(t){return this.x=t.x,this.y=t.y,this}add(t){return this.x+=t.x,this.y+=t.y,this}addScalar(t){return this.x+=t,this.y+=t,this}addVectors(t,e){return this.x=t.x+e.x,this.y=t.y+e.y,this}addScaledVector(t,e){return this.x+=t.x*e,this.y+=t.y*e,this}sub(t){return this.x-=t.x,this.y-=t.y,this}subScalar(t){return this.x-=t,this.y-=t,this}subVectors(t,e){return this.x=t.x-e.x,this.y=t.y-e.y,this}multiply(t){return this.x*=t.x,this.y*=t.y,this}multiplyScalar(t){return this.x*=t,this.y*=t,this}divide(t){return this.x/=t.x,this.y/=t.y,this}divideScalar(t){return this.multiplyScalar(1/t)}applyMatrix3(t){const e=this.x,i=this.y,s=t.elements;return this.x=s[0]*e+s[3]*i+s[6],this.y=s[1]*e+s[4]*i+s[7],this}min(t){return this.x=Math.min(this.x,t.x),this.y=Math.min(this.y,t.y),this}max(t){return this.x=Math.max(this.x,t.x),this.y=Math.max(this.y,t.y),this}clamp(t,e){return this.x=ms(this.x,t.x,e.x),this.y=ms(this.y,t.y,e.y),this}clampScalar(t,e){return this.x=ms(this.x,t,e),this.y=ms(this.y,t,e),this}clampLength(t,e){const i=this.length();return this.divideScalar(i||1).multiplyScalar(ms(i,t,e))}floor(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this}ceil(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this}round(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this}roundToZero(){return this.x=Math.trunc(this.x),this.y=Math.trunc(this.y),this}negate(){return this.x=-this.x,this.y=-this.y,this}dot(t){return this.x*t.x+this.y*t.y}cross(t){return this.x*t.y-this.y*t.x}lengthSq(){return this.x*this.x+this.y*this.y}length(){return Math.sqrt(this.x*this.x+this.y*this.y)}manhattanLength(){return Math.abs(this.x)+Math.abs(this.y)}normalize(){return this.divideScalar(this.length()||1)}angle(){return Math.atan2(-this.y,-this.x)+Math.PI}angleTo(t){const e=Math.sqrt(this.lengthSq()*t.lengthSq());if(0===e)return Math.PI/2;const i=this.dot(t)/e;return Math.acos(ms(i,-1,1))}distanceTo(t){return Math.sqrt(this.distanceToSquared(t))}distanceToSquared(t){const e=this.x-t.x,i=this.y-t.y;return e*e+i*i}manhattanDistanceTo(t){return Math.abs(this.x-t.x)+Math.abs(this.y-t.y)}setLength(t){return this.normalize().multiplyScalar(t)}lerp(t,e){return this.x+=(t.x-this.x)*e,this.y+=(t.y-this.y)*e,this}lerpVectors(t,e,i){return this.x=t.x+(e.x-t.x)*i,this.y=t.y+(e.y-t.y)*i,this}equals(t){return t.x===this.x&&t.y===this.y}fromArray(t,e=0){return this.x=t[e],this.y=t[e+1],this}toArray(t=[],e=0){return t[e]=this.x,t[e+1]=this.y,t}fromBufferAttribute(t,e){return this.x=t.getX(e),this.y=t.getY(e),this}rotateAround(t,e){const i=Math.cos(e),s=Math.sin(e),r=this.x-t.x,n=this.y-t.y;return this.x=r*i-n*s+t.x,this.y=r*s+n*i+t.y,this}random(){return this.x=Math.random(),this.y=Math.random(),this}*[Symbol.iterator](){yield this.x,yield this.y}}class ws{constructor(t=0,e=0,i=0,s=1){this.isQuaternion=!0,this._x=t,this._y=e,this._z=i,this._w=s}static slerpFlat(t,e,i,s,r,n,a){let o=i[s+0],h=i[s+1],l=i[s+2],c=i[s+3],u=r[n+0],d=r[n+1],p=r[n+2],m=r[n+3];if(a<=0)return t[e+0]=o,t[e+1]=h,t[e+2]=l,void(t[e+3]=c);if(a>=1)return t[e+0]=u,t[e+1]=d,t[e+2]=p,void(t[e+3]=m);if(c!==m||o!==u||h!==d||l!==p){let t=o*u+h*d+l*p+c*m;t<0&&(u=-u,d=-d,p=-p,m=-m,t=-t);let e=1-a;if(t<.9995){const i=Math.acos(t),s=Math.sin(i);e=Math.sin(e*i)/s,o=o*e+u*(a=Math.sin(a*i)/s),h=h*e+d*a,l=l*e+p*a,c=c*e+m*a}else{o=o*e+u*a,h=h*e+d*a,l=l*e+p*a,c=c*e+m*a;const t=1/Math.sqrt(o*o+h*h+l*l+c*c);o*=t,h*=t,l*=t,c*=t}}t[e]=o,t[e+1]=h,t[e+2]=l,t[e+3]=c}static multiplyQuaternionsFlat(t,e,i,s,r,n){const a=i[s],o=i[s+1],h=i[s+2],l=i[s+3],c=r[n],u=r[n+1],d=r[n+2],p=r[n+3];return t[e]=a*p+l*c+o*d-h*u,t[e+1]=o*p+l*u+h*c-a*d,t[e+2]=h*p+l*d+a*u-o*c,t[e+3]=l*p-a*c-o*u-h*d,t}get x(){return this._x}set x(t){this._x=t,this._onChangeCallback()}get y(){return this._y}set y(t){this._y=t,this._onChangeCallback()}get z(){return this._z}set z(t){this._z=t,this._onChangeCallback()}get w(){return this._w}set w(t){this._w=t,this._onChangeCallback()}set(t,e,i,s){return this._x=t,this._y=e,this._z=i,this._w=s,this._onChangeCallback(),this}clone(){return new this.constructor(this._x,this._y,this._z,this._w)}copy(t){return this._x=t.x,this._y=t.y,this._z=t.z,this._w=t.w,this._onChangeCallback(),this}setFromEuler(t,e=!0){const i=t._x,s=t._y,r=t._z,n=t._order,a=Math.cos,o=Math.sin,h=a(i/2),l=a(s/2),c=a(r/2),u=o(i/2),d=o(s/2),p=o(r/2);switch(n){case"XYZ":this._x=u*l*c+h*d*p,this._y=h*d*c-u*l*p,this._z=h*l*p+u*d*c,this._w=h*l*c-u*d*p;break;case"YXZ":this._x=u*l*c+h*d*p,this._y=h*d*c-u*l*p,this._z=h*l*p-u*d*c,this._w=h*l*c+u*d*p;break;case"ZXY":this._x=u*l*c-h*d*p,this._y=h*d*c+u*l*p,this._z=h*l*p+u*d*c,this._w=h*l*c-u*d*p;break;case"ZYX":this._x=u*l*c-h*d*p,this._y=h*d*c+u*l*p,this._z=h*l*p-u*d*c,this._w=h*l*c+u*d*p;break;case"YZX":this._x=u*l*c+h*d*p,this._y=h*d*c+u*l*p,this._z=h*l*p-u*d*c,this._w=h*l*c-u*d*p;break;case"XZY":this._x=u*l*c-h*d*p,this._y=h*d*c-u*l*p,this._z=h*l*p+u*d*c,this._w=h*l*c+u*d*p;break;default:rs("Quaternion: .setFromEuler() encountered an unknown order: "+n)}return!0===e&&this._onChangeCallback(),this}setFromAxisAngle(t,e){const i=e/2,s=Math.sin(i);return this._x=t.x*s,this._y=t.y*s,this._z=t.z*s,this._w=Math.cos(i),this._onChangeCallback(),this}setFromRotationMatrix(t){const e=t.elements,i=e[0],s=e[4],r=e[8],n=e[1],a=e[5],o=e[9],h=e[2],l=e[6],c=e[10],u=i+a+c;if(u>0){const t=.5/Math.sqrt(u+1);this._w=.25/t,this._x=(l-o)*t,this._y=(r-h)*t,this._z=(n-s)*t}else if(i>a&&i>c){const t=2*Math.sqrt(1+i-a-c);this._w=(l-o)/t,this._x=.25*t,this._y=(s+n)/t,this._z=(r+h)/t}else if(a>c){const t=2*Math.sqrt(1+a-i-c);this._w=(r-h)/t,this._x=(s+n)/t,this._y=.25*t,this._z=(o+l)/t}else{const t=2*Math.sqrt(1+c-i-a);this._w=(n-s)/t,this._x=(r+h)/t,this._y=(o+l)/t,this._z=.25*t}return this._onChangeCallback(),this}setFromUnitVectors(t,e){let i=t.dot(e)+1;return i<1e-8?(i=0,Math.abs(t.x)>Math.abs(t.z)?(this._x=-t.y,this._y=t.x,this._z=0,this._w=i):(this._x=0,this._y=-t.z,this._z=t.y,this._w=i)):(this._x=t.y*e.z-t.z*e.y,this._y=t.z*e.x-t.x*e.z,this._z=t.x*e.y-t.y*e.x,this._w=i),this.normalize()}angleTo(t){return 2*Math.acos(Math.abs(ms(this.dot(t),-1,1)))}rotateTowards(t,e){const i=this.angleTo(t);if(0===i)return this;const s=Math.min(1,e/i);return this.slerp(t,s),this}identity(){return this.set(0,0,0,1)}invert(){return this.conjugate()}conjugate(){return this._x*=-1,this._y*=-1,this._z*=-1,this._onChangeCallback(),this}dot(t){return this._x*t._x+this._y*t._y+this._z*t._z+this._w*t._w}lengthSq(){return this._x*this._x+this._y*this._y+this._z*this._z+this._w*this._w}length(){return Math.sqrt(this._x*this._x+this._y*this._y+this._z*this._z+this._w*this._w)}normalize(){let t=this.length();return 0===t?(this._x=0,this._y=0,this._z=0,this._w=1):(t=1/t,this._x=this._x*t,this._y=this._y*t,this._z=this._z*t,this._w=this._w*t),this._onChangeCallback(),this}multiply(t){return this.multiplyQuaternions(this,t)}premultiply(t){return this.multiplyQuaternions(t,this)}multiplyQuaternions(t,e){const i=t._x,s=t._y,r=t._z,n=t._w,a=e._x,o=e._y,h=e._z,l=e._w;return this._x=i*l+n*a+s*h-r*o,this._y=s*l+n*o+r*a-i*h,this._z=r*l+n*h+i*o-s*a,this._w=n*l-i*a-s*o-r*h,this._onChangeCallback(),this}slerp(t,e){if(e<=0)return this;if(e>=1)return this.copy(t);let i=t._x,s=t._y,r=t._z,n=t._w,a=this.dot(t);a<0&&(i=-i,s=-s,r=-r,n=-n,a=-a);let o=1-e;if(a<.9995){const t=Math.acos(a),h=Math.sin(t);o=Math.sin(o*t)/h,e=Math.sin(e*t)/h,this._x=this._x*o+i*e,this._y=this._y*o+s*e,this._z=this._z*o+r*e,this._w=this._w*o+n*e,this._onChangeCallback()}else this._x=this._x*o+i*e,this._y=this._y*o+s*e,this._z=this._z*o+r*e,this._w=this._w*o+n*e,this.normalize();return this}slerpQuaternions(t,e,i){return this.copy(t).slerp(e,i)}random(){const t=2*Math.PI*Math.random(),e=2*Math.PI*Math.random(),i=Math.random(),s=Math.sqrt(1-i),r=Math.sqrt(i);return this.set(s*Math.sin(t),s*Math.cos(t),r*Math.sin(e),r*Math.cos(e))}equals(t){return t._x===this._x&&t._y===this._y&&t._z===this._z&&t._w===this._w}fromArray(t,e=0){return this._x=t[e],this._y=t[e+1],this._z=t[e+2],this._w=t[e+3],this._onChangeCallback(),this}toArray(t=[],e=0){return t[e]=this._x,t[e+1]=this._y,t[e+2]=this._z,t[e+3]=this._w,t}fromBufferAttribute(t,e){return this._x=t.getX(e),this._y=t.getY(e),this._z=t.getZ(e),this._w=t.getW(e),this._onChangeCallback(),this}toJSON(){return this.toArray()}_onChange(t){return this._onChangeCallback=t,this}_onChangeCallback(){}*[Symbol.iterator](){yield this._x,yield this._y,yield this._z,yield this._w}}class Ms{constructor(t=0,e=0,i=0){Ms.prototype.isVector3=!0,this.x=t,this.y=e,this.z=i}set(t,e,i){return void 0===i&&(i=this.z),this.x=t,this.y=e,this.z=i,this}setScalar(t){return this.x=t,this.y=t,this.z=t,this}setX(t){return this.x=t,this}setY(t){return this.y=t,this}setZ(t){return this.z=t,this}setComponent(t,e){switch(t){case 0:this.x=e;break;case 1:this.y=e;break;case 2:this.z=e;break;default:throw new Error("index is out of range: "+t)}return this}getComponent(t){switch(t){case 0:return this.x;case 1:return this.y;case 2:return this.z;default:throw new Error("index is out of range: "+t)}}clone(){return new this.constructor(this.x,this.y,this.z)}copy(t){return this.x=t.x,this.y=t.y,this.z=t.z,this}add(t){return this.x+=t.x,this.y+=t.y,this.z+=t.z,this}addScalar(t){return this.x+=t,this.y+=t,this.z+=t,this}addVectors(t,e){return this.x=t.x+e.x,this.y=t.y+e.y,this.z=t.z+e.z,this}addScaledVector(t,e){return this.x+=t.x*e,this.y+=t.y*e,this.z+=t.z*e,this}sub(t){return this.x-=t.x,this.y-=t.y,this.z-=t.z,this}subScalar(t){return this.x-=t,this.y-=t,this.z-=t,this}subVectors(t,e){return this.x=t.x-e.x,this.y=t.y-e.y,this.z=t.z-e.z,this}multiply(t){return this.x*=t.x,this.y*=t.y,this.z*=t.z,this}multiplyScalar(t){return this.x*=t,this.y*=t,this.z*=t,this}multiplyVectors(t,e){return this.x=t.x*e.x,this.y=t.y*e.y,this.z=t.z*e.z,this}applyEuler(t){return this.applyQuaternion(_s.setFromEuler(t))}applyAxisAngle(t,e){return this.applyQuaternion(_s.setFromAxisAngle(t,e))}applyMatrix3(t){const e=this.x,i=this.y,s=this.z,r=t.elements;return this.x=r[0]*e+r[3]*i+r[6]*s,this.y=r[1]*e+r[4]*i+r[7]*s,this.z=r[2]*e+r[5]*i+r[8]*s,this}applyNormalMatrix(t){return this.applyMatrix3(t).normalize()}applyMatrix4(t){const e=this.x,i=this.y,s=this.z,r=t.elements,n=1/(r[3]*e+r[7]*i+r[11]*s+r[15]);return this.x=(r[0]*e+r[4]*i+r[8]*s+r[12])*n,this.y=(r[1]*e+r[5]*i+r[9]*s+r[13])*n,this.z=(r[2]*e+r[6]*i+r[10]*s+r[14])*n,this}applyQuaternion(t){const e=this.x,i=this.y,s=this.z,r=t.x,n=t.y,a=t.z,o=t.w,h=2*(n*s-a*i),l=2*(a*e-r*s),c=2*(r*i-n*e);return this.x=e+o*h+n*c-a*l,this.y=i+o*l+a*h-r*c,this.z=s+o*c+r*l-n*h,this}project(t){return this.applyMatrix4(t.matrixWorldInverse).applyMatrix4(t.projectionMatrix)}unproject(t){return this.applyMatrix4(t.projectionMatrixInverse).applyMatrix4(t.matrixWorld)}transformDirection(t){const e=this.x,i=this.y,s=this.z,r=t.elements;return this.x=r[0]*e+r[4]*i+r[8]*s,this.y=r[1]*e+r[5]*i+r[9]*s,this.z=r[2]*e+r[6]*i+r[10]*s,this.normalize()}divide(t){return this.x/=t.x,this.y/=t.y,this.z/=t.z,this}divideScalar(t){return this.multiplyScalar(1/t)}min(t){return this.x=Math.min(this.x,t.x),this.y=Math.min(this.y,t.y),this.z=Math.min(this.z,t.z),this}max(t){return this.x=Math.max(this.x,t.x),this.y=Math.max(this.y,t.y),this.z=Math.max(this.z,t.z),this}clamp(t,e){return this.x=ms(this.x,t.x,e.x),this.y=ms(this.y,t.y,e.y),this.z=ms(this.z,t.z,e.z),this}clampScalar(t,e){return this.x=ms(this.x,t,e),this.y=ms(this.y,t,e),this.z=ms(this.z,t,e),this}clampLength(t,e){const i=this.length();return this.divideScalar(i||1).multiplyScalar(ms(i,t,e))}floor(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this.z=Math.floor(this.z),this}ceil(){return this.x=Math.ceil(this.x),this.y=Math.ceil(this.y),this.z=Math.ceil(this.z),this}round(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this.z=Math.round(this.z),this}roundToZero(){return this.x=Math.trunc(this.x),this.y=Math.trunc(this.y),this.z=Math.trunc(this.z),this}negate(){return this.x=-this.x,this.y=-this.y,this.z=-this.z,this}dot(t){return this.x*t.x+this.y*t.y+this.z*t.z}lengthSq(){return this.x*this.x+this.y*this.y+this.z*this.z}length(){return Math.sqrt(this.x*this.x+this.y*this.y+this.z*this.z)}manhattanLength(){return Math.abs(this.x)+Math.abs(this.y)+Math.abs(this.z)}normalize(){return this.divideScalar(this.length()||1)}setLength(t){return this.normalize().multiplyScalar(t)}lerp(t,e){return this.x+=(t.x-this.x)*e,this.y+=(t.y-this.y)*e,this.z+=(t.z-this.z)*e,this}lerpVectors(t,e,i){return this.x=t.x+(e.x-t.x)*i,this.y=t.y+(e.y-t.y)*i,this.z=t.z+(e.z-t.z)*i,this}cross(t){return this.crossVectors(this,t)}crossVectors(t,e){const i=t.x,s=t.y,r=t.z,n=e.x,a=e.y,o=e.z;return this.x=s*o-r*a,this.y=r*n-i*o,this.z=i*a-s*n,this}projectOnVector(t){const e=t.lengthSq();if(0===e)return this.set(0,0,0);const i=t.dot(this)/e;return this.copy(t).multiplyScalar(i)}projectOnPlane(t){return Ss.copy(this).projectOnVector(t),this.sub(Ss)}reflect(t){return this.sub(Ss.copy(t).multiplyScalar(2*this.dot(t)))}angleTo(t){const e=Math.sqrt(this.lengthSq()*t.lengthSq());if(0===e)return Math.PI/2;const i=this.dot(t)/e;return Math.acos(ms(i,-1,1))}distanceTo(t){return Math.sqrt(this.distanceToSquared(t))}distanceToSquared(t){const e=this.x-t.x,i=this.y-t.y,s=this.z-t.z;return e*e+i*i+s*s}manhattanDistanceTo(t){return Math.abs(this.x-t.x)+Math.abs(this.y-t.y)+Math.abs(this.z-t.z)}setFromSpherical(t){return this.setFromSphericalCoords(t.radius,t.phi,t.theta)}setFromSphericalCoords(t,e,i){const s=Math.sin(e)*t;return this.x=s*Math.sin(i),this.y=Math.cos(e)*t,this.z=s*Math.cos(i),this}setFromCylindrical(t){return this.setFromCylindricalCoords(t.radius,t.theta,t.y)}setFromCylindricalCoords(t,e,i){return this.x=t*Math.sin(e),this.y=i,this.z=t*Math.cos(e),this}setFromMatrixPosition(t){const e=t.elements;return this.x=e[12],this.y=e[13],this.z=e[14],this}setFromMatrixScale(t){const e=this.setFromMatrixColumn(t,0).length(),i=this.setFromMatrixColumn(t,1).length(),s=this.setFromMatrixColumn(t,2).length();return this.x=e,this.y=i,this.z=s,this}setFromMatrixColumn(t,e){return this.fromArray(t.elements,4*e)}setFromMatrix3Column(t,e){return this.fromArray(t.elements,3*e)}setFromEuler(t){return this.x=t._x,this.y=t._y,this.z=t._z,this}setFromColor(t){return this.x=t.r,this.y=t.g,this.z=t.b,this}equals(t){return t.x===this.x&&t.y===this.y&&t.z===this.z}fromArray(t,e=0){return this.x=t[e],this.y=t[e+1],this.z=t[e+2],this}toArray(t=[],e=0){return t[e]=this.x,t[e+1]=this.y,t[e+2]=this.z,t}fromBufferAttribute(t,e){return this.x=t.getX(e),this.y=t.getY(e),this.z=t.getZ(e),this}random(){return this.x=Math.random(),this.y=Math.random(),this.z=Math.random(),this}randomDirection(){const t=Math.random()*Math.PI*2,e=2*Math.random()-1,i=Math.sqrt(1-e*e);return this.x=i*Math.cos(t),this.y=e,this.z=i*Math.sin(t),this}*[Symbol.iterator](){yield this.x,yield this.y,yield this.z}}const Ss=new Ms,_s=new ws;class As{constructor(t,e,i,s,r,n,a,o,h){As.prototype.isMatrix3=!0,this.elements=[1,0,0,0,1,0,0,0,1],void 0!==t&&this.set(t,e,i,s,r,n,a,o,h)}set(t,e,i,s,r,n,a,o,h){const l=this.elements;return l[0]=t,l[1]=s,l[2]=a,l[3]=e,l[4]=r,l[5]=o,l[6]=i,l[7]=n,l[8]=h,this}identity(){return this.set(1,0,0,0,1,0,0,0,1),this}copy(t){const e=this.elements,i=t.elements;return e[0]=i[0],e[1]=i[1],e[2]=i[2],e[3]=i[3],e[4]=i[4],e[5]=i[5],e[6]=i[6],e[7]=i[7],e[8]=i[8],this}extractBasis(t,e,i){return t.setFromMatrix3Column(this,0),e.setFromMatrix3Column(this,1),i.setFromMatrix3Column(this,2),this}setFromMatrix4(t){const e=t.elements;return this.set(e[0],e[4],e[8],e[1],e[5],e[9],e[2],e[6],e[10]),this}multiply(t){return this.multiplyMatrices(this,t)}premultiply(t){return this.multiplyMatrices(t,this)}multiplyMatrices(t,e){const i=t.elements,s=e.elements,r=this.elements,n=i[0],a=i[3],o=i[6],h=i[1],l=i[4],c=i[7],u=i[2],d=i[5],p=i[8],m=s[0],y=s[3],g=s[6],f=s[1],x=s[4],b=s[7],v=s[2],w=s[5],M=s[8];return r[0]=n*m+a*f+o*v,r[3]=n*y+a*x+o*w,r[6]=n*g+a*b+o*M,r[1]=h*m+l*f+c*v,r[4]=h*y+l*x+c*w,r[7]=h*g+l*b+c*M,r[2]=u*m+d*f+p*v,r[5]=u*y+d*x+p*w,r[8]=u*g+d*b+p*M,this}multiplyScalar(t){const e=this.elements;return e[0]*=t,e[3]*=t,e[6]*=t,e[1]*=t,e[4]*=t,e[7]*=t,e[2]*=t,e[5]*=t,e[8]*=t,this}determinant(){const t=this.elements,e=t[0],i=t[1],s=t[2],r=t[3],n=t[4],a=t[5],o=t[6],h=t[7],l=t[8];return e*n*l-e*a*h-i*r*l+i*a*o+s*r*h-s*n*o}invert(){const t=this.elements,e=t[0],i=t[1],s=t[2],r=t[3],n=t[4],a=t[5],o=t[6],h=t[7],l=t[8],c=l*n-a*h,u=a*o-l*r,d=h*r-n*o,p=e*c+i*u+s*d;if(0===p)return this.set(0,0,0,0,0,0,0,0,0);const m=1/p;return t[0]=c*m,t[1]=(s*h-l*i)*m,t[2]=(a*i-s*n)*m,t[3]=u*m,t[4]=(l*e-s*o)*m,t[5]=(s*r-a*e)*m,t[6]=d*m,t[7]=(i*o-h*e)*m,t[8]=(n*e-i*r)*m,this}transpose(){let t;const e=this.elements;return t=e[1],e[1]=e[3],e[3]=t,t=e[2],e[2]=e[6],e[6]=t,t=e[5],e[5]=e[7],e[7]=t,this}getNormalMatrix(t){return this.setFromMatrix4(t).invert().transpose()}transposeIntoArray(t){const e=this.elements;return t[0]=e[0],t[1]=e[3],t[2]=e[6],t[3]=e[1],t[4]=e[4],t[5]=e[7],t[6]=e[2],t[7]=e[5],t[8]=e[8],this}setUvTransform(t,e,i,s,r,n,a){const o=Math.cos(r),h=Math.sin(r);return this.set(i*o,i*h,-i*(o*n+h*a)+n+t,-s*h,s*o,-s*(-h*n+o*a)+a+e,0,0,1),this}scale(t,e){return this.premultiply(Ts.makeScale(t,e)),this}rotate(t){return this.premultiply(Ts.makeRotation(-t)),this}translate(t,e){return this.premultiply(Ts.makeTranslation(t,e)),this}makeTranslation(t,e){return t.isVector2?this.set(1,0,t.x,0,1,t.y,0,0,1):this.set(1,0,t,0,1,e,0,0,1),this}makeRotation(t){const e=Math.cos(t),i=Math.sin(t);return this.set(e,-i,0,i,e,0,0,0,1),this}makeScale(t,e){return this.set(t,0,0,0,e,0,0,0,1),this}equals(t){const e=this.elements,i=t.elements;for(let t=0;t<9;t++)if(e[t]!==i[t])return!1;return!0}fromArray(t,e=0){for(let i=0;i<9;i++)this.elements[i]=t[i+e];return this}toArray(t=[],e=0){const i=this.elements;return t[e]=i[0],t[e+1]=i[1],t[e+2]=i[2],t[e+3]=i[3],t[e+4]=i[4],t[e+5]=i[5],t[e+6]=i[6],t[e+7]=i[7],t[e+8]=i[8],t}clone(){return(new this.constructor).fromArray(this.elements)}}const Ts=new As,zs=(new As).set(.4123908,.3575843,.1804808,.212639,.7151687,.0721923,.0193308,.1191948,.9505322),Cs=(new As).set(3.2409699,-1.5373832,-.4986108,-.9692436,1.8759675,.0415551,.0556301,-.203977,1.0569715);function Is(){const t={enabled:!0,workingColorSpace:ei,spaces:{},convert:function(t,e,i){return!1!==this.enabled&&e!==i&&e&&i?(this.spaces[e].transfer===si&&(t.r=ks(t.r),t.g=ks(t.g),t.b=ks(t.b)),this.spaces[e].primaries!==this.spaces[i].primaries&&(t.applyMatrix3(this.spaces[e].toXYZ),t.applyMatrix3(this.spaces[i].fromXYZ)),this.spaces[i].transfer===si&&(t.r=Os(t.r),t.g=Os(t.g),t.b=Os(t.b)),t):t},workingToColorSpace:function(t,e){return this.convert(t,this.workingColorSpace,e)},colorSpaceToWorking:function(t,e){return this.convert(t,e,this.workingColorSpace)},getPrimaries:function(t){return this.spaces[t].primaries},getTransfer:function(t){return""===t?ii:this.spaces[t].transfer},getToneMappingMode:function(t){return this.spaces[t].outputColorSpaceConfig.toneMappingMode||"standard"},getLuminanceCoefficients:function(t,e=this.workingColorSpace){return t.fromArray(this.spaces[e].luminanceCoefficients)},define:function(t){Object.assign(this.spaces,t)},_getMatrix:function(t,e,i){return t.copy(this.spaces[e].toXYZ).multiply(this.spaces[i].fromXYZ)},_getDrawingBufferColorSpace:function(t){return this.spaces[t].outputColorSpaceConfig.drawingBufferColorSpace},_getUnpackColorSpace:function(t=this.workingColorSpace){return this.spaces[t].workingColorSpaceConfig.unpackColorSpace},fromWorkingColorSpace:function(e,i){return as("ColorManagement: .fromWorkingColorSpace() has been renamed to .workingToColorSpace()."),t.workingToColorSpace(e,i)},toWorkingColorSpace:function(e,i){return as("ColorManagement: .toWorkingColorSpace() has been renamed to .colorSpaceToWorking()."),t.colorSpaceToWorking(e,i)}},e=[.64,.33,.3,.6,.15,.06],i=[.2126,.7152,.0722],s=[.3127,.329];return t.define({[ei]:{primaries:e,whitePoint:s,transfer:ii,toXYZ:zs,fromXYZ:Cs,luminanceCoefficients:i,workingColorSpaceConfig:{unpackColorSpace:ti},outputColorSpaceConfig:{drawingBufferColorSpace:ti}},[ti]:{primaries:e,whitePoint:s,transfer:si,toXYZ:zs,fromXYZ:Cs,luminanceCoefficients:i,outputColorSpaceConfig:{drawingBufferColorSpace:ti}}}),t}const Bs=Is();function ks(t){return t<.04045?.0773993808*t:Math.pow(.9478672986*t+.0521327014,2.4)}function Os(t){return t<.0031308?12.92*t:1.055*Math.pow(t,.41666)-.055}let Ps;class Rs{static getDataURL(t,e="image/png"){if(/^data:/i.test(t.src))return t.src;if("undefined"==typeof HTMLCanvasElement)return t.src;let i;if(t instanceof HTMLCanvasElement)i=t;else{void 0===Ps&&(Ps=$i("canvas")),Ps.width=t.width,Ps.height=t.height;const e=Ps.getContext("2d");t instanceof ImageData?e.putImageData(t,0,0):e.drawImage(t,0,0,t.width,t.height),i=Ps}return i.toDataURL(e)}static sRGBToLinear(t){if("undefined"!=typeof HTMLImageElement&&t instanceof HTMLImageElement||"undefined"!=typeof HTMLCanvasElement&&t instanceof HTMLCanvasElement||"undefined"!=typeof ImageBitmap&&t instanceof ImageBitmap){const e=$i("canvas");e.width=t.width,e.height=t.height;const i=e.getContext("2d");i.drawImage(t,0,0,t.width,t.height);const s=i.getImageData(0,0,t.width,t.height),r=s.data;for(let t=0;t1),this.pmremVersion=0}get width(){return this.source.getSize(Es).x}get height(){return this.source.getSize(Es).y}get depth(){return this.source.getSize(Es).z}get image(){return this.source.data}set image(t=null){this.source.data=t}updateMatrix(){this.matrix.setUvTransform(this.offset.x,this.offset.y,this.repeat.x,this.repeat.y,this.rotation,this.center.x,this.center.y)}addUpdateRange(t,e){this.updateRanges.push({start:t,count:e})}clearUpdateRanges(){this.updateRanges.length=0}clone(){return(new this.constructor).copy(this)}copy(t){return this.name=t.name,this.source=t.source,this.mipmaps=t.mipmaps.slice(0),this.mapping=t.mapping,this.channel=t.channel,this.wrapS=t.wrapS,this.wrapT=t.wrapT,this.magFilter=t.magFilter,this.minFilter=t.minFilter,this.anisotropy=t.anisotropy,this.format=t.format,this.internalFormat=t.internalFormat,this.type=t.type,this.offset.copy(t.offset),this.repeat.copy(t.repeat),this.center.copy(t.center),this.rotation=t.rotation,this.matrixAutoUpdate=t.matrixAutoUpdate,this.matrix.copy(t.matrix),this.generateMipmaps=t.generateMipmaps,this.premultiplyAlpha=t.premultiplyAlpha,this.flipY=t.flipY,this.unpackAlignment=t.unpackAlignment,this.colorSpace=t.colorSpace,this.renderTarget=t.renderTarget,this.isRenderTargetTexture=t.isRenderTargetTexture,this.isArrayTexture=t.isArrayTexture,this.userData=JSON.parse(JSON.stringify(t.userData)),this.needsUpdate=!0,this}setValues(t){for(const e in t){const i=t[e];if(void 0===i){rs(`Texture.setValues(): parameter '${e}' has value of undefined.`);continue}const s=this[e];void 0!==s?s&&i&&s.isVector2&&i.isVector2||s&&i&&s.isVector3&&i.isVector3||s&&i&&s.isMatrix3&&i.isMatrix3?s.copy(i):this[e]=i:rs(`Texture.setValues(): property '${e}' does not exist.`)}}toJSON(t){const e=void 0===t||"string"==typeof t;if(!e&&void 0!==t.textures[this.uuid])return t.textures[this.uuid];const i={metadata:{version:4.7,type:"Texture",generator:"Texture.toJSON"},uuid:this.uuid,name:this.name,image:this.source.toJSON(t).uuid,mapping:this.mapping,channel:this.channel,repeat:[this.repeat.x,this.repeat.y],offset:[this.offset.x,this.offset.y],center:[this.center.x,this.center.y],rotation:this.rotation,wrap:[this.wrapS,this.wrapT],format:this.format,internalFormat:this.internalFormat,type:this.type,colorSpace:this.colorSpace,minFilter:this.minFilter,magFilter:this.magFilter,anisotropy:this.anisotropy,flipY:this.flipY,generateMipmaps:this.generateMipmaps,premultiplyAlpha:this.premultiplyAlpha,unpackAlignment:this.unpackAlignment};return Object.keys(this.userData).length>0&&(i.userData=this.userData),e||(t.textures[this.uuid]=i),i}dispose(){this.dispatchEvent({type:"dispose"})}transformUv(t){if(this.mapping!==ot)return t;if(t.applyMatrix3(this.matrix),t.x<0||t.x>1)switch(this.wrapS){case pt:t.x=t.x-Math.floor(t.x);break;case mt:t.x=t.x<0?0:1;break;case yt:1===Math.abs(Math.floor(t.x)%2)?t.x=Math.ceil(t.x)-t.x:t.x=t.x-Math.floor(t.x)}if(t.y<0||t.y>1)switch(this.wrapT){case pt:t.y=t.y-Math.floor(t.y);break;case mt:t.y=t.y<0?0:1;break;case yt:1===Math.abs(Math.floor(t.y)%2)?t.y=Math.ceil(t.y)-t.y:t.y=t.y-Math.floor(t.y)}return this.flipY&&(t.y=1-t.y),t}set needsUpdate(t){!0===t&&(this.version++,this.source.needsUpdate=!0)}set needsPMREMUpdate(t){!0===t&&this.pmremVersion++}}js.DEFAULT_IMAGE=null,js.DEFAULT_MAPPING=ot,js.DEFAULT_ANISOTROPY=1;class Ds{constructor(t=0,e=0,i=0,s=1){Ds.prototype.isVector4=!0,this.x=t,this.y=e,this.z=i,this.w=s}get width(){return this.z}set width(t){this.z=t}get height(){return this.w}set height(t){this.w=t}set(t,e,i,s){return this.x=t,this.y=e,this.z=i,this.w=s,this}setScalar(t){return this.x=t,this.y=t,this.z=t,this.w=t,this}setX(t){return this.x=t,this}setY(t){return this.y=t,this}setZ(t){return this.z=t,this}setW(t){return this.w=t,this}setComponent(t,e){switch(t){case 0:this.x=e;break;case 1:this.y=e;break;case 2:this.z=e;break;case 3:this.w=e;break;default:throw new Error("index is out of range: "+t)}return this}getComponent(t){switch(t){case 0:return this.x;case 1:return this.y;case 2:return this.z;case 3:return this.w;default:throw new Error("index is out of range: "+t)}}clone(){return new this.constructor(this.x,this.y,this.z,this.w)}copy(t){return this.x=t.x,this.y=t.y,this.z=t.z,this.w=void 0!==t.w?t.w:1,this}add(t){return this.x+=t.x,this.y+=t.y,this.z+=t.z,this.w+=t.w,this}addScalar(t){return this.x+=t,this.y+=t,this.z+=t,this.w+=t,this}addVectors(t,e){return this.x=t.x+e.x,this.y=t.y+e.y,this.z=t.z+e.z,this.w=t.w+e.w,this}addScaledVector(t,e){return this.x+=t.x*e,this.y+=t.y*e,this.z+=t.z*e,this.w+=t.w*e,this}sub(t){return this.x-=t.x,this.y-=t.y,this.z-=t.z,this.w-=t.w,this}subScalar(t){return this.x-=t,this.y-=t,this.z-=t,this.w-=t,this}subVectors(t,e){return this.x=t.x-e.x,this.y=t.y-e.y,this.z=t.z-e.z,this.w=t.w-e.w,this}multiply(t){return this.x*=t.x,this.y*=t.y,this.z*=t.z,this.w*=t.w,this}multiplyScalar(t){return this.x*=t,this.y*=t,this.z*=t,this.w*=t,this}applyMatrix4(t){const e=this.x,i=this.y,s=this.z,r=this.w,n=t.elements;return this.x=n[0]*e+n[4]*i+n[8]*s+n[12]*r,this.y=n[1]*e+n[5]*i+n[9]*s+n[13]*r,this.z=n[2]*e+n[6]*i+n[10]*s+n[14]*r,this.w=n[3]*e+n[7]*i+n[11]*s+n[15]*r,this}divide(t){return this.x/=t.x,this.y/=t.y,this.z/=t.z,this.w/=t.w,this}divideScalar(t){return this.multiplyScalar(1/t)}setAxisAngleFromQuaternion(t){this.w=2*Math.acos(t.w);const e=Math.sqrt(1-t.w*t.w);return e<1e-4?(this.x=1,this.y=0,this.z=0):(this.x=t.x/e,this.y=t.y/e,this.z=t.z/e),this}setAxisAngleFromRotationMatrix(t){let e,i,s,r;const n=.01,a=.1,o=t.elements,h=o[0],l=o[4],c=o[8],u=o[1],d=o[5],p=o[9],m=o[2],y=o[6],g=o[10];if(Math.abs(l-u)o&&t>f?tf?o1);this.dispose()}this.viewport.set(0,0,t,e),this.scissor.set(0,0,t,e)}clone(){return(new this.constructor).copy(this)}copy(t){this.width=t.width,this.height=t.height,this.depth=t.depth,this.scissor.copy(t.scissor),this.scissorTest=t.scissorTest,this.viewport.copy(t.viewport),this.textures.length=0;for(let e=0,i=t.textures.length;e=this.min.x&&t.x<=this.max.x&&t.y>=this.min.y&&t.y<=this.max.y&&t.z>=this.min.z&&t.z<=this.max.z}containsBox(t){return this.min.x<=t.min.x&&t.max.x<=this.max.x&&this.min.y<=t.min.y&&t.max.y<=this.max.y&&this.min.z<=t.min.z&&t.max.z<=this.max.z}getParameter(t,e){return e.set((t.x-this.min.x)/(this.max.x-this.min.x),(t.y-this.min.y)/(this.max.y-this.min.y),(t.z-this.min.z)/(this.max.z-this.min.z))}intersectsBox(t){return t.max.x>=this.min.x&&t.min.x<=this.max.x&&t.max.y>=this.min.y&&t.min.y<=this.max.y&&t.max.z>=this.min.z&&t.min.z<=this.max.z}intersectsSphere(t){return this.clampPoint(t.center,Gs),Gs.distanceToSquared(t.center)<=t.radius*t.radius}intersectsPlane(t){let e,i;return t.normal.x>0?(e=t.normal.x*this.min.x,i=t.normal.x*this.max.x):(e=t.normal.x*this.max.x,i=t.normal.x*this.min.x),t.normal.y>0?(e+=t.normal.y*this.min.y,i+=t.normal.y*this.max.y):(e+=t.normal.y*this.max.y,i+=t.normal.y*this.min.y),t.normal.z>0?(e+=t.normal.z*this.min.z,i+=t.normal.z*this.max.z):(e+=t.normal.z*this.max.z,i+=t.normal.z*this.min.z),e<=-t.constant&&i>=-t.constant}intersectsTriangle(t){if(this.isEmpty())return!1;this.getCenter(rr),nr.subVectors(this.max,rr),Qs.subVectors(t.a,rr),Ks.subVectors(t.b,rr),tr.subVectors(t.c,rr),er.subVectors(Ks,Qs),ir.subVectors(tr,Ks),sr.subVectors(Qs,tr);let e=[0,-er.z,er.y,0,-ir.z,ir.y,0,-sr.z,sr.y,er.z,0,-er.x,ir.z,0,-ir.x,sr.z,0,-sr.x,-er.y,er.x,0,-ir.y,ir.x,0,-sr.y,sr.x,0];return!!hr(e,Qs,Ks,tr,nr)&&(e=[1,0,0,0,1,0,0,0,1],!!hr(e,Qs,Ks,tr,nr)&&(ar.crossVectors(er,ir),e=[ar.x,ar.y,ar.z],hr(e,Qs,Ks,tr,nr)))}clampPoint(t,e){return e.copy(t).clamp(this.min,this.max)}distanceToPoint(t){return this.clampPoint(t,Gs).distanceTo(t)}getBoundingSphere(t){return this.isEmpty()?t.makeEmpty():(this.getCenter(t.center),t.radius=.5*this.getSize(Gs).length()),t}intersect(t){return this.min.max(t.min),this.max.min(t.max),this.isEmpty()&&this.makeEmpty(),this}union(t){return this.min.min(t.min),this.max.max(t.max),this}applyMatrix4(t){return this.isEmpty()||(Hs[0].set(this.min.x,this.min.y,this.min.z).applyMatrix4(t),Hs[1].set(this.min.x,this.min.y,this.max.z).applyMatrix4(t),Hs[2].set(this.min.x,this.max.y,this.min.z).applyMatrix4(t),Hs[3].set(this.min.x,this.max.y,this.max.z).applyMatrix4(t),Hs[4].set(this.max.x,this.min.y,this.min.z).applyMatrix4(t),Hs[5].set(this.max.x,this.min.y,this.max.z).applyMatrix4(t),Hs[6].set(this.max.x,this.max.y,this.min.z).applyMatrix4(t),Hs[7].set(this.max.x,this.max.y,this.max.z).applyMatrix4(t),this.setFromPoints(Hs)),this}translate(t){return this.min.add(t),this.max.add(t),this}equals(t){return t.min.equals(this.min)&&t.max.equals(this.max)}toJSON(){return{min:this.min.toArray(),max:this.max.toArray()}}fromJSON(t){return this.min.fromArray(t.min),this.max.fromArray(t.max),this}}const Hs=[new Ms,new Ms,new Ms,new Ms,new Ms,new Ms,new Ms,new Ms],Gs=new Ms,$s=new Zs,Qs=new Ms,Ks=new Ms,tr=new Ms,er=new Ms,ir=new Ms,sr=new Ms,rr=new Ms,nr=new Ms,ar=new Ms,or=new Ms;function hr(t,e,i,s,r){for(let n=0,a=t.length-3;n<=a;n+=3){or.fromArray(t,n);const a=r.x*Math.abs(or.x)+r.y*Math.abs(or.y)+r.z*Math.abs(or.z),o=e.dot(or),h=i.dot(or),l=s.dot(or);if(Math.max(-Math.max(o,h,l),Math.min(o,h,l))>a)return!1}return!0}const lr=new Zs,cr=new Ms,ur=new Ms;class dr{constructor(t=new Ms,e=-1){this.isSphere=!0,this.center=t,this.radius=e}set(t,e){return this.center.copy(t),this.radius=e,this}setFromPoints(t,e){const i=this.center;void 0!==e?i.copy(e):lr.setFromPoints(t).getCenter(i);let s=0;for(let e=0,r=t.length;ethis.radius*this.radius&&(e.sub(this.center).normalize(),e.multiplyScalar(this.radius).add(this.center)),e}getBoundingBox(t){return this.isEmpty()?(t.makeEmpty(),t):(t.set(this.center,this.center),t.expandByScalar(this.radius),t)}applyMatrix4(t){return this.center.applyMatrix4(t),this.radius=this.radius*t.getMaxScaleOnAxis(),this}translate(t){return this.center.add(t),this}expandByPoint(t){if(this.isEmpty())return this.center.copy(t),this.radius=0,this;cr.subVectors(t,this.center);const e=cr.lengthSq();if(e>this.radius*this.radius){const t=Math.sqrt(e),i=.5*(t-this.radius);this.center.addScaledVector(cr,i/t),this.radius+=i}return this}union(t){return t.isEmpty()?this:this.isEmpty()?(this.copy(t),this):(!0===this.center.equals(t.center)?this.radius=Math.max(this.radius,t.radius):(ur.subVectors(t.center,this.center).setLength(t.radius),this.expandByPoint(cr.copy(t.center).add(ur)),this.expandByPoint(cr.copy(t.center).sub(ur))),this)}equals(t){return t.center.equals(this.center)&&t.radius===this.radius}clone(){return(new this.constructor).copy(this)}toJSON(){return{radius:this.radius,center:this.center.toArray()}}fromJSON(t){return this.radius=t.radius,this.center.fromArray(t.center),this}}const pr=new Ms,mr=new Ms,yr=new Ms,gr=new Ms,fr=new Ms,xr=new Ms,br=new Ms;class vr{constructor(t=new Ms,e=new Ms(0,0,-1)){this.origin=t,this.direction=e}set(t,e){return this.origin.copy(t),this.direction.copy(e),this}copy(t){return this.origin.copy(t.origin),this.direction.copy(t.direction),this}at(t,e){return e.copy(this.origin).addScaledVector(this.direction,t)}lookAt(t){return this.direction.copy(t).sub(this.origin).normalize(),this}recast(t){return this.origin.copy(this.at(t,pr)),this}closestPointToPoint(t,e){e.subVectors(t,this.origin);const i=e.dot(this.direction);return i<0?e.copy(this.origin):e.copy(this.origin).addScaledVector(this.direction,i)}distanceToPoint(t){return Math.sqrt(this.distanceSqToPoint(t))}distanceSqToPoint(t){const e=pr.subVectors(t,this.origin).dot(this.direction);return e<0?this.origin.distanceToSquared(t):(pr.copy(this.origin).addScaledVector(this.direction,e),pr.distanceToSquared(t))}distanceSqToSegment(t,e,i,s){mr.copy(t).add(e).multiplyScalar(.5),yr.copy(e).sub(t).normalize(),gr.copy(this.origin).sub(mr);const r=.5*t.distanceTo(e),n=-this.direction.dot(yr),a=gr.dot(this.direction),o=-gr.dot(yr),h=gr.lengthSq(),l=Math.abs(1-n*n);let c,u,d,p;if(l>0)if(c=n*o-a,u=n*a-o,p=r*l,c>=0)if(u>=-p)if(u<=p){const t=1/l;c*=t,u*=t,d=c*(c+n*u+2*a)+u*(n*c+u+2*o)+h}else u=r,c=Math.max(0,-(n*u+a)),d=-c*c+u*(u+2*o)+h;else u=-r,c=Math.max(0,-(n*u+a)),d=-c*c+u*(u+2*o)+h;else u<=-p?(c=Math.max(0,-(-n*r+a)),u=c>0?-r:Math.min(Math.max(-r,-o),r),d=-c*c+u*(u+2*o)+h):u<=p?(c=0,u=Math.min(Math.max(-r,-o),r),d=u*(u+2*o)+h):(c=Math.max(0,-(n*r+a)),u=c>0?r:Math.min(Math.max(-r,-o),r),d=-c*c+u*(u+2*o)+h);else u=n>0?-r:r,c=Math.max(0,-(n*u+a)),d=-c*c+u*(u+2*o)+h;return i&&i.copy(this.origin).addScaledVector(this.direction,c),s&&s.copy(mr).addScaledVector(yr,u),d}intersectSphere(t,e){pr.subVectors(t.center,this.origin);const i=pr.dot(this.direction),s=pr.dot(pr)-i*i,r=t.radius*t.radius;if(s>r)return null;const n=Math.sqrt(r-s),a=i-n,o=i+n;return o<0?null:a<0?this.at(o,e):this.at(a,e)}intersectsSphere(t){return!(t.radius<0)&&this.distanceSqToPoint(t.center)<=t.radius*t.radius}distanceToPlane(t){const e=t.normal.dot(this.direction);if(0===e)return 0===t.distanceToPoint(this.origin)?0:null;const i=-(this.origin.dot(t.normal)+t.constant)/e;return i>=0?i:null}intersectPlane(t,e){const i=this.distanceToPlane(t);return null===i?null:this.at(i,e)}intersectsPlane(t){const e=t.distanceToPoint(this.origin);if(0===e)return!0;return t.normal.dot(this.direction)*e<0}intersectBox(t,e){let i,s,r,n,a,o;const h=1/this.direction.x,l=1/this.direction.y,c=1/this.direction.z,u=this.origin;return h>=0?(i=(t.min.x-u.x)*h,s=(t.max.x-u.x)*h):(i=(t.max.x-u.x)*h,s=(t.min.x-u.x)*h),l>=0?(r=(t.min.y-u.y)*l,n=(t.max.y-u.y)*l):(r=(t.max.y-u.y)*l,n=(t.min.y-u.y)*l),i>n||r>s?null:((r>i||isNaN(i))&&(i=r),(n=0?(a=(t.min.z-u.z)*c,o=(t.max.z-u.z)*c):(a=(t.max.z-u.z)*c,o=(t.min.z-u.z)*c),i>o||a>s?null:((a>i||i!=i)&&(i=a),(o=0?i:s,e)))}intersectsBox(t){return null!==this.intersectBox(t,pr)}intersectTriangle(t,e,i,s,r){fr.subVectors(e,t),xr.subVectors(i,t),br.crossVectors(fr,xr);let n,a=this.direction.dot(br);if(a>0){if(s)return null;n=1}else{if(!(a<0))return null;n=-1,a=-a}gr.subVectors(this.origin,t);const o=n*this.direction.dot(xr.crossVectors(gr,xr));if(o<0)return null;const h=n*this.direction.dot(fr.cross(gr));if(h<0)return null;if(o+h>a)return null;const l=-n*gr.dot(br);return l<0?null:this.at(l/a,r)}applyMatrix4(t){return this.origin.applyMatrix4(t),this.direction.transformDirection(t),this}equals(t){return t.origin.equals(this.origin)&&t.direction.equals(this.direction)}clone(){return(new this.constructor).copy(this)}}class wr{constructor(t,e,i,s,r,n,a,o,h,l,c,u,d,p,m,y){wr.prototype.isMatrix4=!0,this.elements=[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1],void 0!==t&&this.set(t,e,i,s,r,n,a,o,h,l,c,u,d,p,m,y)}set(t,e,i,s,r,n,a,o,h,l,c,u,d,p,m,y){const g=this.elements;return g[0]=t,g[4]=e,g[8]=i,g[12]=s,g[1]=r,g[5]=n,g[9]=a,g[13]=o,g[2]=h,g[6]=l,g[10]=c,g[14]=u,g[3]=d,g[7]=p,g[11]=m,g[15]=y,this}identity(){return this.set(1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1),this}clone(){return(new wr).fromArray(this.elements)}copy(t){const e=this.elements,i=t.elements;return e[0]=i[0],e[1]=i[1],e[2]=i[2],e[3]=i[3],e[4]=i[4],e[5]=i[5],e[6]=i[6],e[7]=i[7],e[8]=i[8],e[9]=i[9],e[10]=i[10],e[11]=i[11],e[12]=i[12],e[13]=i[13],e[14]=i[14],e[15]=i[15],this}copyPosition(t){const e=this.elements,i=t.elements;return e[12]=i[12],e[13]=i[13],e[14]=i[14],this}setFromMatrix3(t){const e=t.elements;return this.set(e[0],e[3],e[6],0,e[1],e[4],e[7],0,e[2],e[5],e[8],0,0,0,0,1),this}extractBasis(t,e,i){return t.setFromMatrixColumn(this,0),e.setFromMatrixColumn(this,1),i.setFromMatrixColumn(this,2),this}makeBasis(t,e,i){return this.set(t.x,e.x,i.x,0,t.y,e.y,i.y,0,t.z,e.z,i.z,0,0,0,0,1),this}extractRotation(t){const e=this.elements,i=t.elements,s=1/Mr.setFromMatrixColumn(t,0).length(),r=1/Mr.setFromMatrixColumn(t,1).length(),n=1/Mr.setFromMatrixColumn(t,2).length();return e[0]=i[0]*s,e[1]=i[1]*s,e[2]=i[2]*s,e[3]=0,e[4]=i[4]*r,e[5]=i[5]*r,e[6]=i[6]*r,e[7]=0,e[8]=i[8]*n,e[9]=i[9]*n,e[10]=i[10]*n,e[11]=0,e[12]=0,e[13]=0,e[14]=0,e[15]=1,this}makeRotationFromEuler(t){const e=this.elements,i=t.x,s=t.y,r=t.z,n=Math.cos(i),a=Math.sin(i),o=Math.cos(s),h=Math.sin(s),l=Math.cos(r),c=Math.sin(r);if("XYZ"===t.order){const t=n*l,i=n*c,s=a*l,r=a*c;e[0]=o*l,e[4]=-o*c,e[8]=h,e[1]=i+s*h,e[5]=t-r*h,e[9]=-a*o,e[2]=r-t*h,e[6]=s+i*h,e[10]=n*o}else if("YXZ"===t.order){const t=o*l,i=o*c,s=h*l,r=h*c;e[0]=t+r*a,e[4]=s*a-i,e[8]=n*h,e[1]=n*c,e[5]=n*l,e[9]=-a,e[2]=i*a-s,e[6]=r+t*a,e[10]=n*o}else if("ZXY"===t.order){const t=o*l,i=o*c,s=h*l,r=h*c;e[0]=t-r*a,e[4]=-n*c,e[8]=s+i*a,e[1]=i+s*a,e[5]=n*l,e[9]=r-t*a,e[2]=-n*h,e[6]=a,e[10]=n*o}else if("ZYX"===t.order){const t=n*l,i=n*c,s=a*l,r=a*c;e[0]=o*l,e[4]=s*h-i,e[8]=t*h+r,e[1]=o*c,e[5]=r*h+t,e[9]=i*h-s,e[2]=-h,e[6]=a*o,e[10]=n*o}else if("YZX"===t.order){const t=n*o,i=n*h,s=a*o,r=a*h;e[0]=o*l,e[4]=r-t*c,e[8]=s*c+i,e[1]=c,e[5]=n*l,e[9]=-a*l,e[2]=-h*l,e[6]=i*c+s,e[10]=t-r*c}else if("XZY"===t.order){const t=n*o,i=n*h,s=a*o,r=a*h;e[0]=o*l,e[4]=-c,e[8]=h*l,e[1]=t*c+r,e[5]=n*l,e[9]=i*c-s,e[2]=s*c-i,e[6]=a*l,e[10]=r*c+t}return e[3]=0,e[7]=0,e[11]=0,e[12]=0,e[13]=0,e[14]=0,e[15]=1,this}makeRotationFromQuaternion(t){return this.compose(_r,t,Ar)}lookAt(t,e,i){const s=this.elements;return Cr.subVectors(t,e),0===Cr.lengthSq()&&(Cr.z=1),Cr.normalize(),Tr.crossVectors(i,Cr),0===Tr.lengthSq()&&(1===Math.abs(i.z)?Cr.x+=1e-4:Cr.z+=1e-4,Cr.normalize(),Tr.crossVectors(i,Cr)),Tr.normalize(),zr.crossVectors(Cr,Tr),s[0]=Tr.x,s[4]=zr.x,s[8]=Cr.x,s[1]=Tr.y,s[5]=zr.y,s[9]=Cr.y,s[2]=Tr.z,s[6]=zr.z,s[10]=Cr.z,this}multiply(t){return this.multiplyMatrices(this,t)}premultiply(t){return this.multiplyMatrices(t,this)}multiplyMatrices(t,e){const i=t.elements,s=e.elements,r=this.elements,n=i[0],a=i[4],o=i[8],h=i[12],l=i[1],c=i[5],u=i[9],d=i[13],p=i[2],m=i[6],y=i[10],g=i[14],f=i[3],x=i[7],b=i[11],v=i[15],w=s[0],M=s[4],S=s[8],_=s[12],A=s[1],T=s[5],z=s[9],C=s[13],I=s[2],B=s[6],k=s[10],O=s[14],P=s[3],R=s[7],N=s[11],V=s[15];return r[0]=n*w+a*A+o*I+h*P,r[4]=n*M+a*T+o*B+h*R,r[8]=n*S+a*z+o*k+h*N,r[12]=n*_+a*C+o*O+h*V,r[1]=l*w+c*A+u*I+d*P,r[5]=l*M+c*T+u*B+d*R,r[9]=l*S+c*z+u*k+d*N,r[13]=l*_+c*C+u*O+d*V,r[2]=p*w+m*A+y*I+g*P,r[6]=p*M+m*T+y*B+g*R,r[10]=p*S+m*z+y*k+g*N,r[14]=p*_+m*C+y*O+g*V,r[3]=f*w+x*A+b*I+v*P,r[7]=f*M+x*T+b*B+v*R,r[11]=f*S+x*z+b*k+v*N,r[15]=f*_+x*C+b*O+v*V,this}multiplyScalar(t){const e=this.elements;return e[0]*=t,e[4]*=t,e[8]*=t,e[12]*=t,e[1]*=t,e[5]*=t,e[9]*=t,e[13]*=t,e[2]*=t,e[6]*=t,e[10]*=t,e[14]*=t,e[3]*=t,e[7]*=t,e[11]*=t,e[15]*=t,this}determinant(){const t=this.elements,e=t[0],i=t[4],s=t[8],r=t[12],n=t[1],a=t[5],o=t[9],h=t[13],l=t[2],c=t[6],u=t[10],d=t[14],p=t[3],m=t[7],y=t[11],g=t[15],f=o*d-h*u,x=a*d-h*c,b=a*u-o*c,v=n*d-h*l,w=n*u-o*l,M=n*c-a*l;return e*(m*f-y*x+g*b)-i*(p*f-y*v+g*w)+s*(p*x-m*v+g*M)-r*(p*b-m*w+y*M)}transpose(){const t=this.elements;let e;return e=t[1],t[1]=t[4],t[4]=e,e=t[2],t[2]=t[8],t[8]=e,e=t[6],t[6]=t[9],t[9]=e,e=t[3],t[3]=t[12],t[12]=e,e=t[7],t[7]=t[13],t[13]=e,e=t[11],t[11]=t[14],t[14]=e,this}setPosition(t,e,i){const s=this.elements;return t.isVector3?(s[12]=t.x,s[13]=t.y,s[14]=t.z):(s[12]=t,s[13]=e,s[14]=i),this}invert(){const t=this.elements,e=t[0],i=t[1],s=t[2],r=t[3],n=t[4],a=t[5],o=t[6],h=t[7],l=t[8],c=t[9],u=t[10],d=t[11],p=t[12],m=t[13],y=t[14],g=t[15],f=c*y*h-m*u*h+m*o*d-a*y*d-c*o*g+a*u*g,x=p*u*h-l*y*h-p*o*d+n*y*d+l*o*g-n*u*g,b=l*m*h-p*c*h+p*a*d-n*m*d-l*a*g+n*c*g,v=p*c*o-l*m*o-p*a*u+n*m*u+l*a*y-n*c*y,w=e*f+i*x+s*b+r*v;if(0===w)return this.set(0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0);const M=1/w;return t[0]=f*M,t[1]=(m*u*r-c*y*r-m*s*d+i*y*d+c*s*g-i*u*g)*M,t[2]=(a*y*r-m*o*r+m*s*h-i*y*h-a*s*g+i*o*g)*M,t[3]=(c*o*r-a*u*r-c*s*h+i*u*h+a*s*d-i*o*d)*M,t[4]=x*M,t[5]=(l*y*r-p*u*r+p*s*d-e*y*d-l*s*g+e*u*g)*M,t[6]=(p*o*r-n*y*r-p*s*h+e*y*h+n*s*g-e*o*g)*M,t[7]=(n*u*r-l*o*r+l*s*h-e*u*h-n*s*d+e*o*d)*M,t[8]=b*M,t[9]=(p*c*r-l*m*r-p*i*d+e*m*d+l*i*g-e*c*g)*M,t[10]=(n*m*r-p*a*r+p*i*h-e*m*h-n*i*g+e*a*g)*M,t[11]=(l*a*r-n*c*r-l*i*h+e*c*h+n*i*d-e*a*d)*M,t[12]=v*M,t[13]=(l*m*s-p*c*s+p*i*u-e*m*u-l*i*y+e*c*y)*M,t[14]=(p*a*s-n*m*s-p*i*o+e*m*o+n*i*y-e*a*y)*M,t[15]=(n*c*s-l*a*s+l*i*o-e*c*o-n*i*u+e*a*u)*M,this}scale(t){const e=this.elements,i=t.x,s=t.y,r=t.z;return e[0]*=i,e[4]*=s,e[8]*=r,e[1]*=i,e[5]*=s,e[9]*=r,e[2]*=i,e[6]*=s,e[10]*=r,e[3]*=i,e[7]*=s,e[11]*=r,this}getMaxScaleOnAxis(){const t=this.elements,e=t[0]*t[0]+t[1]*t[1]+t[2]*t[2],i=t[4]*t[4]+t[5]*t[5]+t[6]*t[6],s=t[8]*t[8]+t[9]*t[9]+t[10]*t[10];return Math.sqrt(Math.max(e,i,s))}makeTranslation(t,e,i){return t.isVector3?this.set(1,0,0,t.x,0,1,0,t.y,0,0,1,t.z,0,0,0,1):this.set(1,0,0,t,0,1,0,e,0,0,1,i,0,0,0,1),this}makeRotationX(t){const e=Math.cos(t),i=Math.sin(t);return this.set(1,0,0,0,0,e,-i,0,0,i,e,0,0,0,0,1),this}makeRotationY(t){const e=Math.cos(t),i=Math.sin(t);return this.set(e,0,i,0,0,1,0,0,-i,0,e,0,0,0,0,1),this}makeRotationZ(t){const e=Math.cos(t),i=Math.sin(t);return this.set(e,-i,0,0,i,e,0,0,0,0,1,0,0,0,0,1),this}makeRotationAxis(t,e){const i=Math.cos(e),s=Math.sin(e),r=1-i,n=t.x,a=t.y,o=t.z,h=r*n,l=r*a;return this.set(h*n+i,h*a-s*o,h*o+s*a,0,h*a+s*o,l*a+i,l*o-s*n,0,h*o-s*a,l*o+s*n,r*o*o+i,0,0,0,0,1),this}makeScale(t,e,i){return this.set(t,0,0,0,0,e,0,0,0,0,i,0,0,0,0,1),this}makeShear(t,e,i,s,r,n){return this.set(1,i,r,0,t,1,n,0,e,s,1,0,0,0,0,1),this}compose(t,e,i){const s=this.elements,r=e._x,n=e._y,a=e._z,o=e._w,h=r+r,l=n+n,c=a+a,u=r*h,d=r*l,p=r*c,m=n*l,y=n*c,g=a*c,f=o*h,x=o*l,b=o*c,v=i.x,w=i.y,M=i.z;return s[0]=(1-(m+g))*v,s[1]=(d+b)*v,s[2]=(p-x)*v,s[3]=0,s[4]=(d-b)*w,s[5]=(1-(u+g))*w,s[6]=(y+f)*w,s[7]=0,s[8]=(p+x)*M,s[9]=(y-f)*M,s[10]=(1-(u+m))*M,s[11]=0,s[12]=t.x,s[13]=t.y,s[14]=t.z,s[15]=1,this}decompose(t,e,i){const s=this.elements;let r=Mr.set(s[0],s[1],s[2]).length();const n=Mr.set(s[4],s[5],s[6]).length(),a=Mr.set(s[8],s[9],s[10]).length();this.determinant()<0&&(r=-r),t.x=s[12],t.y=s[13],t.z=s[14],Sr.copy(this);const o=1/r,h=1/n,l=1/a;return Sr.elements[0]*=o,Sr.elements[1]*=o,Sr.elements[2]*=o,Sr.elements[4]*=h,Sr.elements[5]*=h,Sr.elements[6]*=h,Sr.elements[8]*=l,Sr.elements[9]*=l,Sr.elements[10]*=l,e.setFromRotationMatrix(Sr),i.x=r,i.y=n,i.z=a,this}makePerspective(t,e,i,s,r,n,a=2e3,o=!1){const h=this.elements,l=2*r/(e-t),c=2*r/(i-s),u=(e+t)/(e-t),d=(i+s)/(i-s);let p,m;if(o)p=r/(n-r),m=n*r/(n-r);else if(a===Wi)p=-(n+r)/(n-r),m=-2*n*r/(n-r);else{if(a!==Ui)throw new Error("THREE.Matrix4.makePerspective(): Invalid coordinate system: "+a);p=-n/(n-r),m=-n*r/(n-r)}return h[0]=l,h[4]=0,h[8]=u,h[12]=0,h[1]=0,h[5]=c,h[9]=d,h[13]=0,h[2]=0,h[6]=0,h[10]=p,h[14]=m,h[3]=0,h[7]=0,h[11]=-1,h[15]=0,this}makeOrthographic(t,e,i,s,r,n,a=2e3,o=!1){const h=this.elements,l=2/(e-t),c=2/(i-s),u=-(e+t)/(e-t),d=-(i+s)/(i-s);let p,m;if(o)p=1/(n-r),m=n/(n-r);else if(a===Wi)p=-2/(n-r),m=-(n+r)/(n-r);else{if(a!==Ui)throw new Error("THREE.Matrix4.makeOrthographic(): Invalid coordinate system: "+a);p=-1/(n-r),m=-r/(n-r)}return h[0]=l,h[4]=0,h[8]=0,h[12]=u,h[1]=0,h[5]=c,h[9]=0,h[13]=d,h[2]=0,h[6]=0,h[10]=p,h[14]=m,h[3]=0,h[7]=0,h[11]=0,h[15]=1,this}equals(t){const e=this.elements,i=t.elements;for(let t=0;t<16;t++)if(e[t]!==i[t])return!1;return!0}fromArray(t,e=0){for(let i=0;i<16;i++)this.elements[i]=t[i+e];return this}toArray(t=[],e=0){const i=this.elements;return t[e]=i[0],t[e+1]=i[1],t[e+2]=i[2],t[e+3]=i[3],t[e+4]=i[4],t[e+5]=i[5],t[e+6]=i[6],t[e+7]=i[7],t[e+8]=i[8],t[e+9]=i[9],t[e+10]=i[10],t[e+11]=i[11],t[e+12]=i[12],t[e+13]=i[13],t[e+14]=i[14],t[e+15]=i[15],t}}const Mr=new Ms,Sr=new wr,_r=new Ms(0,0,0),Ar=new Ms(1,1,1),Tr=new Ms,zr=new Ms,Cr=new Ms,Ir=new wr,Br=new ws;class kr{constructor(t=0,e=0,i=0,s=kr.DEFAULT_ORDER){this.isEuler=!0,this._x=t,this._y=e,this._z=i,this._order=s}get x(){return this._x}set x(t){this._x=t,this._onChangeCallback()}get y(){return this._y}set y(t){this._y=t,this._onChangeCallback()}get z(){return this._z}set z(t){this._z=t,this._onChangeCallback()}get order(){return this._order}set order(t){this._order=t,this._onChangeCallback()}set(t,e,i,s=this._order){return this._x=t,this._y=e,this._z=i,this._order=s,this._onChangeCallback(),this}clone(){return new this.constructor(this._x,this._y,this._z,this._order)}copy(t){return this._x=t._x,this._y=t._y,this._z=t._z,this._order=t._order,this._onChangeCallback(),this}setFromRotationMatrix(t,e=this._order,i=!0){const s=t.elements,r=s[0],n=s[4],a=s[8],o=s[1],h=s[5],l=s[9],c=s[2],u=s[6],d=s[10];switch(e){case"XYZ":this._y=Math.asin(ms(a,-1,1)),Math.abs(a)<.9999999?(this._x=Math.atan2(-l,d),this._z=Math.atan2(-n,r)):(this._x=Math.atan2(u,h),this._z=0);break;case"YXZ":this._x=Math.asin(-ms(l,-1,1)),Math.abs(l)<.9999999?(this._y=Math.atan2(a,d),this._z=Math.atan2(o,h)):(this._y=Math.atan2(-c,r),this._z=0);break;case"ZXY":this._x=Math.asin(ms(u,-1,1)),Math.abs(u)<.9999999?(this._y=Math.atan2(-c,d),this._z=Math.atan2(-n,h)):(this._y=0,this._z=Math.atan2(o,r));break;case"ZYX":this._y=Math.asin(-ms(c,-1,1)),Math.abs(c)<.9999999?(this._x=Math.atan2(u,d),this._z=Math.atan2(o,r)):(this._x=0,this._z=Math.atan2(-n,h));break;case"YZX":this._z=Math.asin(ms(o,-1,1)),Math.abs(o)<.9999999?(this._x=Math.atan2(-l,h),this._y=Math.atan2(-c,r)):(this._x=0,this._y=Math.atan2(a,d));break;case"XZY":this._z=Math.asin(-ms(n,-1,1)),Math.abs(n)<.9999999?(this._x=Math.atan2(u,h),this._y=Math.atan2(a,r)):(this._x=Math.atan2(-l,d),this._y=0);break;default:rs("Euler: .setFromRotationMatrix() encountered an unknown order: "+e)}return this._order=e,!0===i&&this._onChangeCallback(),this}setFromQuaternion(t,e,i){return Ir.makeRotationFromQuaternion(t),this.setFromRotationMatrix(Ir,e,i)}setFromVector3(t,e=this._order){return this.set(t.x,t.y,t.z,e)}reorder(t){return Br.setFromEuler(this),this.setFromQuaternion(Br,t)}equals(t){return t._x===this._x&&t._y===this._y&&t._z===this._z&&t._order===this._order}fromArray(t){return this._x=t[0],this._y=t[1],this._z=t[2],void 0!==t[3]&&(this._order=t[3]),this._onChangeCallback(),this}toArray(t=[],e=0){return t[e]=this._x,t[e+1]=this._y,t[e+2]=this._z,t[e+3]=this._order,t}_onChange(t){return this._onChangeCallback=t,this}_onChangeCallback(){}*[Symbol.iterator](){yield this._x,yield this._y,yield this._z,yield this._order}}kr.DEFAULT_ORDER="XYZ";class Or{constructor(){this.mask=1}set(t){this.mask=1<>>0}enable(t){this.mask|=1<1){for(let t=0;t1){for(let t=0;t0&&(s.userData=this.userData),s.layers=this.layers.mask,s.matrix=this.matrix.toArray(),s.up=this.up.toArray(),!1===this.matrixAutoUpdate&&(s.matrixAutoUpdate=!1),this.isInstancedMesh&&(s.type="InstancedMesh",s.count=this.count,s.instanceMatrix=this.instanceMatrix.toJSON(),null!==this.instanceColor&&(s.instanceColor=this.instanceColor.toJSON())),this.isBatchedMesh&&(s.type="BatchedMesh",s.perObjectFrustumCulled=this.perObjectFrustumCulled,s.sortObjects=this.sortObjects,s.drawRanges=this._drawRanges,s.reservedRanges=this._reservedRanges,s.geometryInfo=this._geometryInfo.map(t=>({...t,boundingBox:t.boundingBox?t.boundingBox.toJSON():void 0,boundingSphere:t.boundingSphere?t.boundingSphere.toJSON():void 0})),s.instanceInfo=this._instanceInfo.map(t=>({...t})),s.availableInstanceIds=this._availableInstanceIds.slice(),s.availableGeometryIds=this._availableGeometryIds.slice(),s.nextIndexStart=this._nextIndexStart,s.nextVertexStart=this._nextVertexStart,s.geometryCount=this._geometryCount,s.maxInstanceCount=this._maxInstanceCount,s.maxVertexCount=this._maxVertexCount,s.maxIndexCount=this._maxIndexCount,s.geometryInitialized=this._geometryInitialized,s.matricesTexture=this._matricesTexture.toJSON(t),s.indirectTexture=this._indirectTexture.toJSON(t),null!==this._colorsTexture&&(s.colorsTexture=this._colorsTexture.toJSON(t)),null!==this.boundingSphere&&(s.boundingSphere=this.boundingSphere.toJSON()),null!==this.boundingBox&&(s.boundingBox=this.boundingBox.toJSON())),this.isScene)this.background&&(this.background.isColor?s.background=this.background.toJSON():this.background.isTexture&&(s.background=this.background.toJSON(t).uuid)),this.environment&&this.environment.isTexture&&!0!==this.environment.isRenderTargetTexture&&(s.environment=this.environment.toJSON(t).uuid);else if(this.isMesh||this.isLine||this.isPoints){s.geometry=r(t.geometries,this.geometry);const e=this.geometry.parameters;if(void 0!==e&&void 0!==e.shapes){const i=e.shapes;if(Array.isArray(i))for(let e=0,s=i.length;e0){s.children=[];for(let e=0;e0){s.animations=[];for(let e=0;e0&&(i.geometries=e),s.length>0&&(i.materials=s),r.length>0&&(i.textures=r),a.length>0&&(i.images=a),o.length>0&&(i.shapes=o),h.length>0&&(i.skeletons=h),l.length>0&&(i.animations=l),c.length>0&&(i.nodes=c)}return i.object=s,i;function n(t){const e=[];for(const i in t){const s=t[i];delete s.metadata,e.push(s)}return e}}clone(t){return(new this.constructor).copy(this,t)}copy(t,e=!0){if(this.name=t.name,this.up.copy(t.up),this.position.copy(t.position),this.rotation.order=t.rotation.order,this.quaternion.copy(t.quaternion),this.scale.copy(t.scale),this.matrix.copy(t.matrix),this.matrixWorld.copy(t.matrixWorld),this.matrixAutoUpdate=t.matrixAutoUpdate,this.matrixWorldAutoUpdate=t.matrixWorldAutoUpdate,this.matrixWorldNeedsUpdate=t.matrixWorldNeedsUpdate,this.layers.mask=t.layers.mask,this.visible=t.visible,this.castShadow=t.castShadow,this.receiveShadow=t.receiveShadow,this.frustumCulled=t.frustumCulled,this.renderOrder=t.renderOrder,this.animations=t.animations.slice(),this.userData=JSON.parse(JSON.stringify(t.userData)),!0===e)for(let e=0;e0?s.multiplyScalar(1/Math.sqrt(r)):s.set(0,0,0)}static getBarycoord(t,e,i,s,r){Hr.subVectors(s,e),Gr.subVectors(i,e),$r.subVectors(t,e);const n=Hr.dot(Hr),a=Hr.dot(Gr),o=Hr.dot($r),h=Gr.dot(Gr),l=Gr.dot($r),c=n*h-a*a;if(0===c)return r.set(0,0,0),null;const u=1/c,d=(h*o-a*l)*u,p=(n*l-a*o)*u;return r.set(1-d-p,p,d)}static containsPoint(t,e,i,s){return null!==this.getBarycoord(t,e,i,s,Qr)&&(Qr.x>=0&&Qr.y>=0&&Qr.x+Qr.y<=1)}static getInterpolation(t,e,i,s,r,n,a,o){return null===this.getBarycoord(t,e,i,s,Qr)?(o.x=0,o.y=0,"z"in o&&(o.z=0),"w"in o&&(o.w=0),null):(o.setScalar(0),o.addScaledVector(r,Qr.x),o.addScaledVector(n,Qr.y),o.addScaledVector(a,Qr.z),o)}static getInterpolatedAttribute(t,e,i,s,r,n){return an.setScalar(0),on.setScalar(0),hn.setScalar(0),an.fromBufferAttribute(t,e),on.fromBufferAttribute(t,i),hn.fromBufferAttribute(t,s),n.setScalar(0),n.addScaledVector(an,r.x),n.addScaledVector(on,r.y),n.addScaledVector(hn,r.z),n}static isFrontFacing(t,e,i,s){return Hr.subVectors(i,e),Gr.subVectors(t,e),Hr.cross(Gr).dot(s)<0}set(t,e,i){return this.a.copy(t),this.b.copy(e),this.c.copy(i),this}setFromPointsAndIndices(t,e,i,s){return this.a.copy(t[e]),this.b.copy(t[i]),this.c.copy(t[s]),this}setFromAttributeAndIndices(t,e,i,s){return this.a.fromBufferAttribute(t,e),this.b.fromBufferAttribute(t,i),this.c.fromBufferAttribute(t,s),this}clone(){return(new this.constructor).copy(this)}copy(t){return this.a.copy(t.a),this.b.copy(t.b),this.c.copy(t.c),this}getArea(){return Hr.subVectors(this.c,this.b),Gr.subVectors(this.a,this.b),.5*Hr.cross(Gr).length()}getMidpoint(t){return t.addVectors(this.a,this.b).add(this.c).multiplyScalar(1/3)}getNormal(t){return ln.getNormal(this.a,this.b,this.c,t)}getPlane(t){return t.setFromCoplanarPoints(this.a,this.b,this.c)}getBarycoord(t,e){return ln.getBarycoord(t,this.a,this.b,this.c,e)}getInterpolation(t,e,i,s,r){return ln.getInterpolation(t,this.a,this.b,this.c,e,i,s,r)}containsPoint(t){return ln.containsPoint(t,this.a,this.b,this.c)}isFrontFacing(t){return ln.isFrontFacing(this.a,this.b,this.c,t)}intersectsBox(t){return t.intersectsTriangle(this)}closestPointToPoint(t,e){const i=this.a,s=this.b,r=this.c;let n,a;Kr.subVectors(s,i),tn.subVectors(r,i),sn.subVectors(t,i);const o=Kr.dot(sn),h=tn.dot(sn);if(o<=0&&h<=0)return e.copy(i);rn.subVectors(t,s);const l=Kr.dot(rn),c=tn.dot(rn);if(l>=0&&c<=l)return e.copy(s);const u=o*c-l*h;if(u<=0&&o>=0&&l<=0)return n=o/(o-l),e.copy(i).addScaledVector(Kr,n);nn.subVectors(t,r);const d=Kr.dot(nn),p=tn.dot(nn);if(p>=0&&d<=p)return e.copy(r);const m=d*h-o*p;if(m<=0&&h>=0&&p<=0)return a=h/(h-p),e.copy(i).addScaledVector(tn,a);const y=l*p-d*c;if(y<=0&&c-l>=0&&d-p>=0)return en.subVectors(r,s),a=(c-l)/(c-l+(d-p)),e.copy(s).addScaledVector(en,a);const g=1/(y+m+u);return n=m*g,a=u*g,e.copy(i).addScaledVector(Kr,n).addScaledVector(tn,a)}equals(t){return t.a.equals(this.a)&&t.b.equals(this.b)&&t.c.equals(this.c)}}const cn={aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074},un={h:0,s:0,l:0},dn={h:0,s:0,l:0};function pn(t,e,i){return i<0&&(i+=1),i>1&&(i-=1),i<1/6?t+6*(e-t)*i:i<.5?e:i<2/3?t+6*(e-t)*(2/3-i):t}class mn{constructor(t,e,i){return this.isColor=!0,this.r=1,this.g=1,this.b=1,this.set(t,e,i)}set(t,e,i){if(void 0===e&&void 0===i){const e=t;e&&e.isColor?this.copy(e):"number"==typeof e?this.setHex(e):"string"==typeof e&&this.setStyle(e)}else this.setRGB(t,e,i);return this}setScalar(t){return this.r=t,this.g=t,this.b=t,this}setHex(t,e=ti){return t=Math.floor(t),this.r=(t>>16&255)/255,this.g=(t>>8&255)/255,this.b=(255&t)/255,Bs.colorSpaceToWorking(this,e),this}setRGB(t,e,i,s=Bs.workingColorSpace){return this.r=t,this.g=e,this.b=i,Bs.colorSpaceToWorking(this,s),this}setHSL(t,e,i,s=Bs.workingColorSpace){if(t=ys(t,1),e=ms(e,0,1),i=ms(i,0,1),0===e)this.r=this.g=this.b=i;else{const s=i<=.5?i*(1+e):i+e-i*e,r=2*i-s;this.r=pn(r,s,t+1/3),this.g=pn(r,s,t),this.b=pn(r,s,t-1/3)}return Bs.colorSpaceToWorking(this,s),this}setStyle(t,e=ti){function i(e){void 0!==e&&parseFloat(e)<1&&rs("Color: Alpha component of "+t+" will be ignored.")}let s;if(s=/^(\w+)\(([^\)]*)\)/.exec(t)){let r;const n=s[1],a=s[2];switch(n){case"rgb":case"rgba":if(r=/^\s*(\d+)\s*,\s*(\d+)\s*,\s*(\d+)\s*(?:,\s*(\d*\.?\d+)\s*)?$/.exec(a))return i(r[4]),this.setRGB(Math.min(255,parseInt(r[1],10))/255,Math.min(255,parseInt(r[2],10))/255,Math.min(255,parseInt(r[3],10))/255,e);if(r=/^\s*(\d+)\%\s*,\s*(\d+)\%\s*,\s*(\d+)\%\s*(?:,\s*(\d*\.?\d+)\s*)?$/.exec(a))return i(r[4]),this.setRGB(Math.min(100,parseInt(r[1],10))/100,Math.min(100,parseInt(r[2],10))/100,Math.min(100,parseInt(r[3],10))/100,e);break;case"hsl":case"hsla":if(r=/^\s*(\d*\.?\d+)\s*,\s*(\d*\.?\d+)\%\s*,\s*(\d*\.?\d+)\%\s*(?:,\s*(\d*\.?\d+)\s*)?$/.exec(a))return i(r[4]),this.setHSL(parseFloat(r[1])/360,parseFloat(r[2])/100,parseFloat(r[3])/100,e);break;default:rs("Color: Unknown color model "+t)}}else if(s=/^\#([A-Fa-f\d]+)$/.exec(t)){const i=s[1],r=i.length;if(3===r)return this.setRGB(parseInt(i.charAt(0),16)/15,parseInt(i.charAt(1),16)/15,parseInt(i.charAt(2),16)/15,e);if(6===r)return this.setHex(parseInt(i,16),e);rs("Color: Invalid hex color "+t)}else if(t&&t.length>0)return this.setColorName(t,e);return this}setColorName(t,e=ti){const i=cn[t.toLowerCase()];return void 0!==i?this.setHex(i,e):rs("Color: Unknown color "+t),this}clone(){return new this.constructor(this.r,this.g,this.b)}copy(t){return this.r=t.r,this.g=t.g,this.b=t.b,this}copySRGBToLinear(t){return this.r=ks(t.r),this.g=ks(t.g),this.b=ks(t.b),this}copyLinearToSRGB(t){return this.r=Os(t.r),this.g=Os(t.g),this.b=Os(t.b),this}convertSRGBToLinear(){return this.copySRGBToLinear(this),this}convertLinearToSRGB(){return this.copyLinearToSRGB(this),this}getHex(t=ti){return Bs.workingToColorSpace(yn.copy(this),t),65536*Math.round(ms(255*yn.r,0,255))+256*Math.round(ms(255*yn.g,0,255))+Math.round(ms(255*yn.b,0,255))}getHexString(t=ti){return("000000"+this.getHex(t).toString(16)).slice(-6)}getHSL(t,e=Bs.workingColorSpace){Bs.workingToColorSpace(yn.copy(this),e);const i=yn.r,s=yn.g,r=yn.b,n=Math.max(i,s,r),a=Math.min(i,s,r);let o,h;const l=(a+n)/2;if(a===n)o=0,h=0;else{const t=n-a;switch(h=l<=.5?t/(n+a):t/(2-n-a),n){case i:o=(s-r)/t+(s0!=t>0&&this.version++,this._alphaTest=t}onBeforeRender(){}onBeforeCompile(){}customProgramCacheKey(){return this.onBeforeCompile.toString()}setValues(t){if(void 0!==t)for(const e in t){const i=t[e];if(void 0===i){rs(`Material: parameter '${e}' has value of undefined.`);continue}const s=this[e];void 0!==s?s&&s.isColor?s.set(i):s&&s.isVector3&&i&&i.isVector3?s.copy(i):this[e]=i:rs(`Material: '${e}' is not a property of THREE.${this.type}.`)}}toJSON(t){const e=void 0===t||"string"==typeof t;e&&(t={textures:{},images:{}});const i={metadata:{version:4.7,type:"Material",generator:"Material.toJSON"}};function s(t){const e=[];for(const i in t){const s=t[i];delete s.metadata,e.push(s)}return e}if(i.uuid=this.uuid,i.type=this.type,""!==this.name&&(i.name=this.name),this.color&&this.color.isColor&&(i.color=this.color.getHex()),void 0!==this.roughness&&(i.roughness=this.roughness),void 0!==this.metalness&&(i.metalness=this.metalness),void 0!==this.sheen&&(i.sheen=this.sheen),this.sheenColor&&this.sheenColor.isColor&&(i.sheenColor=this.sheenColor.getHex()),void 0!==this.sheenRoughness&&(i.sheenRoughness=this.sheenRoughness),this.emissive&&this.emissive.isColor&&(i.emissive=this.emissive.getHex()),void 0!==this.emissiveIntensity&&1!==this.emissiveIntensity&&(i.emissiveIntensity=this.emissiveIntensity),this.specular&&this.specular.isColor&&(i.specular=this.specular.getHex()),void 0!==this.specularIntensity&&(i.specularIntensity=this.specularIntensity),this.specularColor&&this.specularColor.isColor&&(i.specularColor=this.specularColor.getHex()),void 0!==this.shininess&&(i.shininess=this.shininess),void 0!==this.clearcoat&&(i.clearcoat=this.clearcoat),void 0!==this.clearcoatRoughness&&(i.clearcoatRoughness=this.clearcoatRoughness),this.clearcoatMap&&this.clearcoatMap.isTexture&&(i.clearcoatMap=this.clearcoatMap.toJSON(t).uuid),this.clearcoatRoughnessMap&&this.clearcoatRoughnessMap.isTexture&&(i.clearcoatRoughnessMap=this.clearcoatRoughnessMap.toJSON(t).uuid),this.clearcoatNormalMap&&this.clearcoatNormalMap.isTexture&&(i.clearcoatNormalMap=this.clearcoatNormalMap.toJSON(t).uuid,i.clearcoatNormalScale=this.clearcoatNormalScale.toArray()),this.sheenColorMap&&this.sheenColorMap.isTexture&&(i.sheenColorMap=this.sheenColorMap.toJSON(t).uuid),this.sheenRoughnessMap&&this.sheenRoughnessMap.isTexture&&(i.sheenRoughnessMap=this.sheenRoughnessMap.toJSON(t).uuid),void 0!==this.dispersion&&(i.dispersion=this.dispersion),void 0!==this.iridescence&&(i.iridescence=this.iridescence),void 0!==this.iridescenceIOR&&(i.iridescenceIOR=this.iridescenceIOR),void 0!==this.iridescenceThicknessRange&&(i.iridescenceThicknessRange=this.iridescenceThicknessRange),this.iridescenceMap&&this.iridescenceMap.isTexture&&(i.iridescenceMap=this.iridescenceMap.toJSON(t).uuid),this.iridescenceThicknessMap&&this.iridescenceThicknessMap.isTexture&&(i.iridescenceThicknessMap=this.iridescenceThicknessMap.toJSON(t).uuid),void 0!==this.anisotropy&&(i.anisotropy=this.anisotropy),void 0!==this.anisotropyRotation&&(i.anisotropyRotation=this.anisotropyRotation),this.anisotropyMap&&this.anisotropyMap.isTexture&&(i.anisotropyMap=this.anisotropyMap.toJSON(t).uuid),this.map&&this.map.isTexture&&(i.map=this.map.toJSON(t).uuid),this.matcap&&this.matcap.isTexture&&(i.matcap=this.matcap.toJSON(t).uuid),this.alphaMap&&this.alphaMap.isTexture&&(i.alphaMap=this.alphaMap.toJSON(t).uuid),this.lightMap&&this.lightMap.isTexture&&(i.lightMap=this.lightMap.toJSON(t).uuid,i.lightMapIntensity=this.lightMapIntensity),this.aoMap&&this.aoMap.isTexture&&(i.aoMap=this.aoMap.toJSON(t).uuid,i.aoMapIntensity=this.aoMapIntensity),this.bumpMap&&this.bumpMap.isTexture&&(i.bumpMap=this.bumpMap.toJSON(t).uuid,i.bumpScale=this.bumpScale),this.normalMap&&this.normalMap.isTexture&&(i.normalMap=this.normalMap.toJSON(t).uuid,i.normalMapType=this.normalMapType,i.normalScale=this.normalScale.toArray()),this.displacementMap&&this.displacementMap.isTexture&&(i.displacementMap=this.displacementMap.toJSON(t).uuid,i.displacementScale=this.displacementScale,i.displacementBias=this.displacementBias),this.roughnessMap&&this.roughnessMap.isTexture&&(i.roughnessMap=this.roughnessMap.toJSON(t).uuid),this.metalnessMap&&this.metalnessMap.isTexture&&(i.metalnessMap=this.metalnessMap.toJSON(t).uuid),this.emissiveMap&&this.emissiveMap.isTexture&&(i.emissiveMap=this.emissiveMap.toJSON(t).uuid),this.specularMap&&this.specularMap.isTexture&&(i.specularMap=this.specularMap.toJSON(t).uuid),this.specularIntensityMap&&this.specularIntensityMap.isTexture&&(i.specularIntensityMap=this.specularIntensityMap.toJSON(t).uuid),this.specularColorMap&&this.specularColorMap.isTexture&&(i.specularColorMap=this.specularColorMap.toJSON(t).uuid),this.envMap&&this.envMap.isTexture&&(i.envMap=this.envMap.toJSON(t).uuid,void 0!==this.combine&&(i.combine=this.combine)),void 0!==this.envMapRotation&&(i.envMapRotation=this.envMapRotation.toArray()),void 0!==this.envMapIntensity&&(i.envMapIntensity=this.envMapIntensity),void 0!==this.reflectivity&&(i.reflectivity=this.reflectivity),void 0!==this.refractionRatio&&(i.refractionRatio=this.refractionRatio),this.gradientMap&&this.gradientMap.isTexture&&(i.gradientMap=this.gradientMap.toJSON(t).uuid),void 0!==this.transmission&&(i.transmission=this.transmission),this.transmissionMap&&this.transmissionMap.isTexture&&(i.transmissionMap=this.transmissionMap.toJSON(t).uuid),void 0!==this.thickness&&(i.thickness=this.thickness),this.thicknessMap&&this.thicknessMap.isTexture&&(i.thicknessMap=this.thicknessMap.toJSON(t).uuid),void 0!==this.attenuationDistance&&this.attenuationDistance!==1/0&&(i.attenuationDistance=this.attenuationDistance),void 0!==this.attenuationColor&&(i.attenuationColor=this.attenuationColor.getHex()),void 0!==this.size&&(i.size=this.size),null!==this.shadowSide&&(i.shadowSide=this.shadowSide),void 0!==this.sizeAttenuation&&(i.sizeAttenuation=this.sizeAttenuation),1!==this.blending&&(i.blending=this.blending),0!==this.side&&(i.side=this.side),!0===this.vertexColors&&(i.vertexColors=!0),this.opacity<1&&(i.opacity=this.opacity),!0===this.transparent&&(i.transparent=!0),204!==this.blendSrc&&(i.blendSrc=this.blendSrc),205!==this.blendDst&&(i.blendDst=this.blendDst),100!==this.blendEquation&&(i.blendEquation=this.blendEquation),null!==this.blendSrcAlpha&&(i.blendSrcAlpha=this.blendSrcAlpha),null!==this.blendDstAlpha&&(i.blendDstAlpha=this.blendDstAlpha),null!==this.blendEquationAlpha&&(i.blendEquationAlpha=this.blendEquationAlpha),this.blendColor&&this.blendColor.isColor&&(i.blendColor=this.blendColor.getHex()),0!==this.blendAlpha&&(i.blendAlpha=this.blendAlpha),3!==this.depthFunc&&(i.depthFunc=this.depthFunc),!1===this.depthTest&&(i.depthTest=this.depthTest),!1===this.depthWrite&&(i.depthWrite=this.depthWrite),!1===this.colorWrite&&(i.colorWrite=this.colorWrite),255!==this.stencilWriteMask&&(i.stencilWriteMask=this.stencilWriteMask),519!==this.stencilFunc&&(i.stencilFunc=this.stencilFunc),0!==this.stencilRef&&(i.stencilRef=this.stencilRef),255!==this.stencilFuncMask&&(i.stencilFuncMask=this.stencilFuncMask),this.stencilFail!==hi&&(i.stencilFail=this.stencilFail),this.stencilZFail!==hi&&(i.stencilZFail=this.stencilZFail),this.stencilZPass!==hi&&(i.stencilZPass=this.stencilZPass),!0===this.stencilWrite&&(i.stencilWrite=this.stencilWrite),void 0!==this.rotation&&0!==this.rotation&&(i.rotation=this.rotation),!0===this.polygonOffset&&(i.polygonOffset=!0),0!==this.polygonOffsetFactor&&(i.polygonOffsetFactor=this.polygonOffsetFactor),0!==this.polygonOffsetUnits&&(i.polygonOffsetUnits=this.polygonOffsetUnits),void 0!==this.linewidth&&1!==this.linewidth&&(i.linewidth=this.linewidth),void 0!==this.dashSize&&(i.dashSize=this.dashSize),void 0!==this.gapSize&&(i.gapSize=this.gapSize),void 0!==this.scale&&(i.scale=this.scale),!0===this.dithering&&(i.dithering=!0),this.alphaTest>0&&(i.alphaTest=this.alphaTest),!0===this.alphaHash&&(i.alphaHash=!0),!0===this.alphaToCoverage&&(i.alphaToCoverage=!0),!0===this.premultipliedAlpha&&(i.premultipliedAlpha=!0),!0===this.forceSinglePass&&(i.forceSinglePass=!0),!1===this.allowOverride&&(i.allowOverride=!1),!0===this.wireframe&&(i.wireframe=!0),this.wireframeLinewidth>1&&(i.wireframeLinewidth=this.wireframeLinewidth),"round"!==this.wireframeLinecap&&(i.wireframeLinecap=this.wireframeLinecap),"round"!==this.wireframeLinejoin&&(i.wireframeLinejoin=this.wireframeLinejoin),!0===this.flatShading&&(i.flatShading=!0),!1===this.visible&&(i.visible=!1),!1===this.toneMapped&&(i.toneMapped=!1),!1===this.fog&&(i.fog=!1),Object.keys(this.userData).length>0&&(i.userData=this.userData),e){const e=s(t.textures),r=s(t.images);e.length>0&&(i.textures=e),r.length>0&&(i.images=r)}return i}clone(){return(new this.constructor).copy(this)}copy(t){this.name=t.name,this.blending=t.blending,this.side=t.side,this.vertexColors=t.vertexColors,this.opacity=t.opacity,this.transparent=t.transparent,this.blendSrc=t.blendSrc,this.blendDst=t.blendDst,this.blendEquation=t.blendEquation,this.blendSrcAlpha=t.blendSrcAlpha,this.blendDstAlpha=t.blendDstAlpha,this.blendEquationAlpha=t.blendEquationAlpha,this.blendColor.copy(t.blendColor),this.blendAlpha=t.blendAlpha,this.depthFunc=t.depthFunc,this.depthTest=t.depthTest,this.depthWrite=t.depthWrite,this.stencilWriteMask=t.stencilWriteMask,this.stencilFunc=t.stencilFunc,this.stencilRef=t.stencilRef,this.stencilFuncMask=t.stencilFuncMask,this.stencilFail=t.stencilFail,this.stencilZFail=t.stencilZFail,this.stencilZPass=t.stencilZPass,this.stencilWrite=t.stencilWrite;const e=t.clippingPlanes;let i=null;if(null!==e){const t=e.length;i=new Array(t);for(let s=0;s!==t;++s)i[s]=e[s].clone()}return this.clippingPlanes=i,this.clipIntersection=t.clipIntersection,this.clipShadows=t.clipShadows,this.shadowSide=t.shadowSide,this.colorWrite=t.colorWrite,this.precision=t.precision,this.polygonOffset=t.polygonOffset,this.polygonOffsetFactor=t.polygonOffsetFactor,this.polygonOffsetUnits=t.polygonOffsetUnits,this.dithering=t.dithering,this.alphaTest=t.alphaTest,this.alphaHash=t.alphaHash,this.alphaToCoverage=t.alphaToCoverage,this.premultipliedAlpha=t.premultipliedAlpha,this.forceSinglePass=t.forceSinglePass,this.allowOverride=t.allowOverride,this.visible=t.visible,this.toneMapped=t.toneMapped,this.userData=JSON.parse(JSON.stringify(t.userData)),this}dispose(){this.dispatchEvent({type:"dispose"})}set needsUpdate(t){!0===t&&this.version++}}class xn extends fn{constructor(t){super(),this.isMeshBasicMaterial=!0,this.type="MeshBasicMaterial",this.color=new mn(16777215),this.map=null,this.lightMap=null,this.lightMapIntensity=1,this.aoMap=null,this.aoMapIntensity=1,this.specularMap=null,this.alphaMap=null,this.envMap=null,this.envMapRotation=new kr,this.combine=0,this.reflectivity=1,this.refractionRatio=.98,this.wireframe=!1,this.wireframeLinewidth=1,this.wireframeLinecap="round",this.wireframeLinejoin="round",this.fog=!0,this.setValues(t)}copy(t){return super.copy(t),this.color.copy(t.color),this.map=t.map,this.lightMap=t.lightMap,this.lightMapIntensity=t.lightMapIntensity,this.aoMap=t.aoMap,this.aoMapIntensity=t.aoMapIntensity,this.specularMap=t.specularMap,this.alphaMap=t.alphaMap,this.envMap=t.envMap,this.envMapRotation.copy(t.envMapRotation),this.combine=t.combine,this.reflectivity=t.reflectivity,this.refractionRatio=t.refractionRatio,this.wireframe=t.wireframe,this.wireframeLinewidth=t.wireframeLinewidth,this.wireframeLinecap=t.wireframeLinecap,this.wireframeLinejoin=t.wireframeLinejoin,this.fog=t.fog,this}}const bn=vn();function vn(){const t=new ArrayBuffer(4),e=new Float32Array(t),i=new Uint32Array(t),s=new Uint32Array(512),r=new Uint32Array(512);for(let t=0;t<256;++t){const e=t-127;e<-27?(s[t]=0,s[256|t]=32768,r[t]=24,r[256|t]=24):e<-14?(s[t]=1024>>-e-14,s[256|t]=1024>>-e-14|32768,r[t]=-e-1,r[256|t]=-e-1):e<=15?(s[t]=e+15<<10,s[256|t]=e+15<<10|32768,r[t]=13,r[256|t]=13):e<128?(s[t]=31744,s[256|t]=64512,r[t]=24,r[256|t]=24):(s[t]=31744,s[256|t]=64512,r[t]=13,r[256|t]=13)}const n=new Uint32Array(2048),a=new Uint32Array(64),o=new Uint32Array(64);for(let t=1;t<1024;++t){let e=t<<13,i=0;for(;!(8388608&e);)e<<=1,i-=8388608;e&=-8388609,i+=947912704,n[t]=e|i}for(let t=1024;t<2048;++t)n[t]=939524096+(t-1024<<13);for(let t=1;t<31;++t)a[t]=t<<23;a[31]=1199570944,a[32]=2147483648;for(let t=33;t<63;++t)a[t]=2147483648+(t-32<<23);a[63]=3347054592;for(let t=1;t<64;++t)32!==t&&(o[t]=1024);return{floatView:e,uint32View:i,baseTable:s,shiftTable:r,mantissaTable:n,exponentTable:a,offsetTable:o}}function wn(t){Math.abs(t)>65504&&rs("DataUtils.toHalfFloat(): Value out of range."),t=ms(t,-65504,65504),bn.floatView[0]=t;const e=bn.uint32View[0],i=e>>23&511;return bn.baseTable[i]+((8388607&e)>>bn.shiftTable[i])}function Mn(t){const e=t>>10;return bn.uint32View[0]=bn.mantissaTable[bn.offsetTable[e]+(1023&t)]+bn.exponentTable[e],bn.floatView[0]}class Sn{static toHalfFloat(t){return wn(t)}static fromHalfFloat(t){return Mn(t)}}const _n=new Ms,An=new vs;let Tn=0;class zn{constructor(t,e,i=!1){if(Array.isArray(t))throw new TypeError("THREE.BufferAttribute: array should be a Typed Array.");this.isBufferAttribute=!0,Object.defineProperty(this,"id",{value:Tn++}),this.name="",this.array=t,this.itemSize=e,this.count=void 0!==t?t.length/e:0,this.normalized=i,this.usage=ki,this.updateRanges=[],this.gpuType=Ot,this.version=0}onUploadCallback(){}set needsUpdate(t){!0===t&&this.version++}setUsage(t){return this.usage=t,this}addUpdateRange(t,e){this.updateRanges.push({start:t,count:e})}clearUpdateRanges(){this.updateRanges.length=0}copy(t){return this.name=t.name,this.array=new t.array.constructor(t.array),this.itemSize=t.itemSize,this.count=t.count,this.normalized=t.normalized,this.usage=t.usage,this.gpuType=t.gpuType,this}copyAt(t,e,i){t*=this.itemSize,i*=e.itemSize;for(let s=0,r=this.itemSize;se.count&&rs("BufferGeometry: Buffer size too small for points data. Use .dispose() and create a new geometry."),e.needsUpdate=!0}return this}computeBoundingBox(){null===this.boundingBox&&(this.boundingBox=new Zs);const t=this.attributes.position,e=this.morphAttributes.position;if(t&&t.isGLBufferAttribute)return ns("BufferGeometry.computeBoundingBox(): GLBufferAttribute requires a manual bounding box.",this),void this.boundingBox.set(new Ms(-1/0,-1/0,-1/0),new Ms(1/0,1/0,1/0));if(void 0!==t){if(this.boundingBox.setFromBufferAttribute(t),e)for(let t=0,i=e.length;t0&&(t.userData=this.userData),void 0!==this.parameters){const e=this.parameters;for(const i in e)void 0!==e[i]&&(t[i]=e[i]);return t}t.data={attributes:{}};const e=this.index;null!==e&&(t.data.index={type:e.array.constructor.name,array:Array.prototype.slice.call(e.array)});const i=this.attributes;for(const e in i){const s=i[e];t.data.attributes[e]=s.toJSON(t.data)}const s={};let r=!1;for(const e in this.morphAttributes){const i=this.morphAttributes[e],n=[];for(let e=0,s=i.length;e0&&(s[e]=n,r=!0)}r&&(t.data.morphAttributes=s,t.data.morphTargetsRelative=this.morphTargetsRelative);const n=this.groups;n.length>0&&(t.data.groups=JSON.parse(JSON.stringify(n)));const a=this.boundingSphere;return null!==a&&(t.data.boundingSphere=a.toJSON()),t}clone(){return(new this.constructor).copy(this)}copy(t){this.index=null,this.attributes={},this.morphAttributes={},this.groups=[],this.boundingBox=null,this.boundingSphere=null;const e={};this.name=t.name;const i=t.index;null!==i&&this.setIndex(i.clone());const s=t.attributes;for(const t in s){const i=s[t];this.setAttribute(t,i.clone(e))}const r=t.morphAttributes;for(const t in r){const i=[],s=r[t];for(let t=0,r=s.length;t0){const i=t[e[0]];if(void 0!==i){this.morphTargetInfluences=[],this.morphTargetDictionary={};for(let t=0,e=i.length;t(t.far-t.near)**2)return}Jn.copy(r).invert(),Xn.copy(t.ray).applyMatrix4(Jn),null!==i.boundingBox&&!1===Xn.intersectsBox(i.boundingBox)||this._computeIntersections(t,e,Xn)}}_computeIntersections(t,e,i){let s;const r=this.geometry,n=this.material,a=r.index,o=r.attributes.position,h=r.attributes.uv,l=r.attributes.uv1,c=r.attributes.normal,u=r.groups,d=r.drawRange;if(null!==a)if(Array.isArray(n))for(let r=0,o=u.length;ri.far?null:{distance:l,point:ea.clone(),object:t}}(t,e,i,s,Hn,Gn,$n,ta);if(c){const t=new Ms;ln.getBarycoord(ta,Hn,Gn,$n,t),r&&(c.uv=ln.getInterpolatedAttribute(r,o,h,l,t,new vs)),n&&(c.uv1=ln.getInterpolatedAttribute(n,o,h,l,t,new vs)),a&&(c.normal=ln.getInterpolatedAttribute(a,o,h,l,t,new Ms),c.normal.dot(s.direction)>0&&c.normal.multiplyScalar(-1));const e={a:o,b:h,c:l,normal:new Ms,materialIndex:0};ln.getNormal(Hn,Gn,$n,e.normal),c.face=e,c.barycoord=t}return c}class ra extends qn{constructor(t=1,e=1,i=1,s=1,r=1,n=1){super(),this.type="BoxGeometry",this.parameters={width:t,height:e,depth:i,widthSegments:s,heightSegments:r,depthSegments:n};const a=this;s=Math.floor(s),r=Math.floor(r),n=Math.floor(n);const o=[],h=[],l=[],c=[];let u=0,d=0;function p(t,e,i,s,r,n,p,m,y,g,f){const x=n/y,b=p/g,v=n/2,w=p/2,M=m/2,S=y+1,_=g+1;let A=0,T=0;const z=new Ms;for(let n=0;n<_;n++){const a=n*b-w;for(let o=0;o0?1:-1,l.push(z.x,z.y,z.z),c.push(o/y),c.push(1-n/g),A+=1}}for(let t=0;t0&&(e.defines=this.defines),e.vertexShader=this.vertexShader,e.fragmentShader=this.fragmentShader,e.lights=this.lights,e.clipping=this.clipping;const i={};for(const t in this.extensions)!0===this.extensions[t]&&(i[t]=!0);return Object.keys(i).length>0&&(e.extensions=i),e}}class ca extends Zr{constructor(){super(),this.isCamera=!0,this.type="Camera",this.matrixWorldInverse=new wr,this.projectionMatrix=new wr,this.projectionMatrixInverse=new wr,this.coordinateSystem=Wi,this._reversedDepth=!1}get reversedDepth(){return this._reversedDepth}copy(t,e){return super.copy(t,e),this.matrixWorldInverse.copy(t.matrixWorldInverse),this.projectionMatrix.copy(t.projectionMatrix),this.projectionMatrixInverse.copy(t.projectionMatrixInverse),this.coordinateSystem=t.coordinateSystem,this}getWorldDirection(t){return super.getWorldDirection(t).negate()}updateMatrixWorld(t){super.updateMatrixWorld(t),this.matrixWorldInverse.copy(this.matrixWorld).invert()}updateWorldMatrix(t,e){super.updateWorldMatrix(t,e),this.matrixWorldInverse.copy(this.matrixWorld).invert()}clone(){return(new this.constructor).copy(this)}}const ua=new Ms,da=new vs,pa=new vs;class ma extends ca{constructor(t=50,e=1,i=.1,s=2e3){super(),this.isPerspectiveCamera=!0,this.type="PerspectiveCamera",this.fov=t,this.zoom=1,this.near=i,this.far=s,this.focus=10,this.aspect=e,this.view=null,this.filmGauge=35,this.filmOffset=0,this.updateProjectionMatrix()}copy(t,e){return super.copy(t,e),this.fov=t.fov,this.zoom=t.zoom,this.near=t.near,this.far=t.far,this.focus=t.focus,this.aspect=t.aspect,this.view=null===t.view?null:Object.assign({},t.view),this.filmGauge=t.filmGauge,this.filmOffset=t.filmOffset,this}setFocalLength(t){const e=.5*this.getFilmHeight()/t;this.fov=2*ds*Math.atan(e),this.updateProjectionMatrix()}getFocalLength(){const t=Math.tan(.5*us*this.fov);return.5*this.getFilmHeight()/t}getEffectiveFOV(){return 2*ds*Math.atan(Math.tan(.5*us*this.fov)/this.zoom)}getFilmWidth(){return this.filmGauge*Math.min(this.aspect,1)}getFilmHeight(){return this.filmGauge/Math.max(this.aspect,1)}getViewBounds(t,e,i){ua.set(-1,-1,.5).applyMatrix4(this.projectionMatrixInverse),e.set(ua.x,ua.y).multiplyScalar(-t/ua.z),ua.set(1,1,.5).applyMatrix4(this.projectionMatrixInverse),i.set(ua.x,ua.y).multiplyScalar(-t/ua.z)}getViewSize(t,e){return this.getViewBounds(t,da,pa),e.subVectors(pa,da)}setViewOffset(t,e,i,s,r,n){this.aspect=t/e,null===this.view&&(this.view={enabled:!0,fullWidth:1,fullHeight:1,offsetX:0,offsetY:0,width:1,height:1}),this.view.enabled=!0,this.view.fullWidth=t,this.view.fullHeight=e,this.view.offsetX=i,this.view.offsetY=s,this.view.width=r,this.view.height=n,this.updateProjectionMatrix()}clearViewOffset(){null!==this.view&&(this.view.enabled=!1),this.updateProjectionMatrix()}updateProjectionMatrix(){const t=this.near;let e=t*Math.tan(.5*us*this.fov)/this.zoom,i=2*e,s=this.aspect*i,r=-.5*s;const n=this.view;if(null!==this.view&&this.view.enabled){const t=n.fullWidth,a=n.fullHeight;r+=n.offsetX*s/t,e-=n.offsetY*i/a,s*=n.width/t,i*=n.height/a}const a=this.filmOffset;0!==a&&(r+=t*a/this.getFilmWidth()),this.projectionMatrix.makePerspective(r,r+s,e,e-i,t,this.far,this.coordinateSystem,this.reversedDepth),this.projectionMatrixInverse.copy(this.projectionMatrix).invert()}toJSON(t){const e=super.toJSON(t);return e.object.fov=this.fov,e.object.zoom=this.zoom,e.object.near=this.near,e.object.far=this.far,e.object.focus=this.focus,e.object.aspect=this.aspect,null!==this.view&&(e.object.view=Object.assign({},this.view)),e.object.filmGauge=this.filmGauge,e.object.filmOffset=this.filmOffset,e}}const ya=-90;class ga extends Zr{constructor(t,e,i){super(),this.type="CubeCamera",this.renderTarget=i,this.coordinateSystem=null,this.activeMipmapLevel=0;const s=new ma(ya,1,t,e);s.layers=this.layers,this.add(s);const r=new ma(ya,1,t,e);r.layers=this.layers,this.add(r);const n=new ma(ya,1,t,e);n.layers=this.layers,this.add(n);const a=new ma(ya,1,t,e);a.layers=this.layers,this.add(a);const o=new ma(ya,1,t,e);o.layers=this.layers,this.add(o);const h=new ma(ya,1,t,e);h.layers=this.layers,this.add(h)}updateCoordinateSystem(){const t=this.coordinateSystem,e=this.children.concat(),[i,s,r,n,a,o]=e;for(const t of e)this.remove(t);if(t===Wi)i.up.set(0,1,0),i.lookAt(1,0,0),s.up.set(0,1,0),s.lookAt(-1,0,0),r.up.set(0,0,-1),r.lookAt(0,1,0),n.up.set(0,0,1),n.lookAt(0,-1,0),a.up.set(0,1,0),a.lookAt(0,0,1),o.up.set(0,1,0),o.lookAt(0,0,-1);else{if(t!==Ui)throw new Error("THREE.CubeCamera.updateCoordinateSystem(): Invalid coordinate system: "+t);i.up.set(0,-1,0),i.lookAt(-1,0,0),s.up.set(0,-1,0),s.lookAt(1,0,0),r.up.set(0,0,1),r.lookAt(0,1,0),n.up.set(0,0,-1),n.lookAt(0,-1,0),a.up.set(0,-1,0),a.lookAt(0,0,1),o.up.set(0,-1,0),o.lookAt(0,0,-1)}for(const t of e)this.add(t),t.updateMatrixWorld()}update(t,e){null===this.parent&&this.updateMatrixWorld();const{renderTarget:i,activeMipmapLevel:s}=this;this.coordinateSystem!==t.coordinateSystem&&(this.coordinateSystem=t.coordinateSystem,this.updateCoordinateSystem());const[r,n,a,o,h,l]=this.children,c=t.getRenderTarget(),u=t.getActiveCubeFace(),d=t.getActiveMipmapLevel(),p=t.xr.enabled;t.xr.enabled=!1;const m=i.texture.generateMipmaps;i.texture.generateMipmaps=!1,t.setRenderTarget(i,0,s),t.render(e,r),t.setRenderTarget(i,1,s),t.render(e,n),t.setRenderTarget(i,2,s),t.render(e,a),t.setRenderTarget(i,3,s),t.render(e,o),t.setRenderTarget(i,4,s),t.render(e,h),i.texture.generateMipmaps=m,t.setRenderTarget(i,5,s),t.render(e,l),t.setRenderTarget(c,u,d),t.xr.enabled=p,i.texture.needsPMREMUpdate=!0}}class fa extends js{constructor(t=[],e=301,i,s,r,n,a,o,h,l){super(t,e,i,s,r,n,a,o,h,l),this.isCubeTexture=!0,this.flipY=!1}get images(){return this.image}set images(t){this.image=t}}class xa extends Us{constructor(t=1,e={}){super(t,t,e),this.isWebGLCubeRenderTarget=!0;const i={width:t,height:t,depth:1},s=[i,i,i,i,i,i];this.texture=new fa(s),this._setTextureOptions(e),this.texture.isRenderTargetTexture=!0}fromEquirectangularTexture(t,e){this.texture.type=e.type,this.texture.colorSpace=e.colorSpace,this.texture.generateMipmaps=e.generateMipmaps,this.texture.minFilter=e.minFilter,this.texture.magFilter=e.magFilter;const i={uniforms:{tEquirect:{value:null}},vertexShader:"\n\n\t\t\t\tvarying vec3 vWorldDirection;\n\n\t\t\t\tvec3 transformDirection( in vec3 dir, in mat4 matrix ) {\n\n\t\t\t\t\treturn normalize( ( matrix * vec4( dir, 0.0 ) ).xyz );\n\n\t\t\t\t}\n\n\t\t\t\tvoid main() {\n\n\t\t\t\t\tvWorldDirection = transformDirection( position, modelMatrix );\n\n\t\t\t\t\t#include \n\t\t\t\t\t#include \n\n\t\t\t\t}\n\t\t\t",fragmentShader:"\n\n\t\t\t\tuniform sampler2D tEquirect;\n\n\t\t\t\tvarying vec3 vWorldDirection;\n\n\t\t\t\t#include \n\n\t\t\t\tvoid main() {\n\n\t\t\t\t\tvec3 direction = normalize( vWorldDirection );\n\n\t\t\t\t\tvec2 sampleUV = equirectUv( direction );\n\n\t\t\t\t\tgl_FragColor = texture2D( tEquirect, sampleUV );\n\n\t\t\t\t}\n\t\t\t"},s=new ra(5,5,5),r=new la({name:"CubemapFromEquirect",uniforms:na(i.uniforms),vertexShader:i.vertexShader,fragmentShader:i.fragmentShader,side:1,blending:0});r.uniforms.tEquirect.value=e;const n=new ia(s,r),a=e.minFilter;e.minFilter===_t&&(e.minFilter=wt);return new ga(1,10,this).update(t,n),e.minFilter=a,n.geometry.dispose(),n.material.dispose(),this}clear(t,e=!0,i=!0,s=!0){const r=t.getRenderTarget();for(let r=0;r<6;r++)t.setRenderTarget(this,r),t.clear(e,i,s);t.setRenderTarget(r)}}class ba extends Zr{constructor(){super(),this.isGroup=!0,this.type="Group"}}const va={type:"move"};class wa{constructor(){this._targetRay=null,this._grip=null,this._hand=null}getHandSpace(){return null===this._hand&&(this._hand=new ba,this._hand.matrixAutoUpdate=!1,this._hand.visible=!1,this._hand.joints={},this._hand.inputState={pinching:!1}),this._hand}getTargetRaySpace(){return null===this._targetRay&&(this._targetRay=new ba,this._targetRay.matrixAutoUpdate=!1,this._targetRay.visible=!1,this._targetRay.hasLinearVelocity=!1,this._targetRay.linearVelocity=new Ms,this._targetRay.hasAngularVelocity=!1,this._targetRay.angularVelocity=new Ms),this._targetRay}getGripSpace(){return null===this._grip&&(this._grip=new ba,this._grip.matrixAutoUpdate=!1,this._grip.visible=!1,this._grip.hasLinearVelocity=!1,this._grip.linearVelocity=new Ms,this._grip.hasAngularVelocity=!1,this._grip.angularVelocity=new Ms),this._grip}dispatchEvent(t){return null!==this._targetRay&&this._targetRay.dispatchEvent(t),null!==this._grip&&this._grip.dispatchEvent(t),null!==this._hand&&this._hand.dispatchEvent(t),this}connect(t){if(t&&t.hand){const e=this._hand;if(e)for(const i of t.hand.values())this._getHandJoint(e,i)}return this.dispatchEvent({type:"connected",data:t}),this}disconnect(t){return this.dispatchEvent({type:"disconnected",data:t}),null!==this._targetRay&&(this._targetRay.visible=!1),null!==this._grip&&(this._grip.visible=!1),null!==this._hand&&(this._hand.visible=!1),this}update(t,e,i){let s=null,r=null,n=null;const a=this._targetRay,o=this._grip,h=this._hand;if(t&&"visible-blurred"!==e.session.visibilityState){if(h&&t.hand){n=!0;for(const s of t.hand.values()){const t=e.getJointPose(s,i),r=this._getHandJoint(h,s);null!==t&&(r.matrix.fromArray(t.transform.matrix),r.matrix.decompose(r.position,r.rotation,r.scale),r.matrixWorldNeedsUpdate=!0,r.jointRadius=t.radius),r.visible=null!==t}const s=h.joints["index-finger-tip"],r=h.joints["thumb-tip"],a=s.position.distanceTo(r.position),o=.02,l=.005;h.inputState.pinching&&a>o+l?(h.inputState.pinching=!1,this.dispatchEvent({type:"pinchend",handedness:t.handedness,target:this})):!h.inputState.pinching&&a<=o-l&&(h.inputState.pinching=!0,this.dispatchEvent({type:"pinchstart",handedness:t.handedness,target:this}))}else null!==o&&t.gripSpace&&(r=e.getPose(t.gripSpace,i),null!==r&&(o.matrix.fromArray(r.transform.matrix),o.matrix.decompose(o.position,o.rotation,o.scale),o.matrixWorldNeedsUpdate=!0,r.linearVelocity?(o.hasLinearVelocity=!0,o.linearVelocity.copy(r.linearVelocity)):o.hasLinearVelocity=!1,r.angularVelocity?(o.hasAngularVelocity=!0,o.angularVelocity.copy(r.angularVelocity)):o.hasAngularVelocity=!1));null!==a&&(s=e.getPose(t.targetRaySpace,i),null===s&&null!==r&&(s=r),null!==s&&(a.matrix.fromArray(s.transform.matrix),a.matrix.decompose(a.position,a.rotation,a.scale),a.matrixWorldNeedsUpdate=!0,s.linearVelocity?(a.hasLinearVelocity=!0,a.linearVelocity.copy(s.linearVelocity)):a.hasLinearVelocity=!1,s.angularVelocity?(a.hasAngularVelocity=!0,a.angularVelocity.copy(s.angularVelocity)):a.hasAngularVelocity=!1,this.dispatchEvent(va)))}return null!==a&&(a.visible=null!==s),null!==o&&(o.visible=null!==r),null!==h&&(h.visible=null!==n),this}_getHandJoint(t,e){if(void 0===t.joints[e.jointName]){const i=new ba;i.matrixAutoUpdate=!1,i.visible=!1,t.joints[e.jointName]=i,t.add(i)}return t.joints[e.jointName]}}class Ma{constructor(t,e=25e-5){this.isFogExp2=!0,this.name="",this.color=new mn(t),this.density=e}clone(){return new Ma(this.color,this.density)}toJSON(){return{type:"FogExp2",name:this.name,color:this.color.getHex(),density:this.density}}}class Sa{constructor(t,e=1,i=1e3){this.isFog=!0,this.name="",this.color=new mn(t),this.near=e,this.far=i}clone(){return new Sa(this.color,this.near,this.far)}toJSON(){return{type:"Fog",name:this.name,color:this.color.getHex(),near:this.near,far:this.far}}}class _a extends Zr{constructor(){super(),this.isScene=!0,this.type="Scene",this.background=null,this.environment=null,this.fog=null,this.backgroundBlurriness=0,this.backgroundIntensity=1,this.backgroundRotation=new kr,this.environmentIntensity=1,this.environmentRotation=new kr,this.overrideMaterial=null,"undefined"!=typeof __THREE_DEVTOOLS__&&__THREE_DEVTOOLS__.dispatchEvent(new CustomEvent("observe",{detail:this}))}copy(t,e){return super.copy(t,e),null!==t.background&&(this.background=t.background.clone()),null!==t.environment&&(this.environment=t.environment.clone()),null!==t.fog&&(this.fog=t.fog.clone()),this.backgroundBlurriness=t.backgroundBlurriness,this.backgroundIntensity=t.backgroundIntensity,this.backgroundRotation.copy(t.backgroundRotation),this.environmentIntensity=t.environmentIntensity,this.environmentRotation.copy(t.environmentRotation),null!==t.overrideMaterial&&(this.overrideMaterial=t.overrideMaterial.clone()),this.matrixAutoUpdate=t.matrixAutoUpdate,this}toJSON(t){const e=super.toJSON(t);return null!==this.fog&&(e.object.fog=this.fog.toJSON()),this.backgroundBlurriness>0&&(e.object.backgroundBlurriness=this.backgroundBlurriness),1!==this.backgroundIntensity&&(e.object.backgroundIntensity=this.backgroundIntensity),e.object.backgroundRotation=this.backgroundRotation.toArray(),1!==this.environmentIntensity&&(e.object.environmentIntensity=this.environmentIntensity),e.object.environmentRotation=this.environmentRotation.toArray(),e}}class Aa{constructor(t,e){this.isInterleavedBuffer=!0,this.array=t,this.stride=e,this.count=void 0!==t?t.length/e:0,this.usage=ki,this.updateRanges=[],this.version=0,this.uuid=ps()}onUploadCallback(){}set needsUpdate(t){!0===t&&this.version++}setUsage(t){return this.usage=t,this}addUpdateRange(t,e){this.updateRanges.push({start:t,count:e})}clearUpdateRanges(){this.updateRanges.length=0}copy(t){return this.array=new t.array.constructor(t.array),this.count=t.count,this.stride=t.stride,this.usage=t.usage,this}copyAt(t,e,i){t*=this.stride,i*=e.stride;for(let s=0,r=this.stride;st.far||e.push({distance:o,point:Ba.clone(),uv:ln.getInterpolation(Ba,Va,Fa,La,Ea,ja,Da,new vs),face:null,object:this})}copy(t,e){return super.copy(t,e),void 0!==t.center&&this.center.copy(t.center),this.material=t.material,this}}function Ua(t,e,i,s,r,n){Pa.subVectors(t,i).addScalar(.5).multiply(s),void 0!==r?(Ra.x=n*Pa.x-r*Pa.y,Ra.y=r*Pa.x+n*Pa.y):Ra.copy(Pa),t.copy(e),t.x+=Ra.x,t.y+=Ra.y,t.applyMatrix4(Na)}const qa=new Ms,Ja=new Ms;class Xa extends Zr{constructor(){super(),this.isLOD=!0,this._currentLevel=0,this.type="LOD",Object.defineProperties(this,{levels:{enumerable:!0,value:[]}}),this.autoUpdate=!0}copy(t){super.copy(t,!1);const e=t.levels;for(let t=0,i=e.length;t0){let i,s;for(i=1,s=e.length;i0){qa.setFromMatrixPosition(this.matrixWorld);const i=t.ray.origin.distanceTo(qa);this.getObjectForDistance(i).raycast(t,e)}}update(t){const e=this.levels;if(e.length>1){qa.setFromMatrixPosition(t.matrixWorld),Ja.setFromMatrixPosition(this.matrixWorld);const i=qa.distanceTo(Ja)/t.zoom;let s,r;for(e[0].object.visible=!0,s=1,r=e.length;s=t))break;e[s-1].object.visible=!1,e[s].object.visible=!0}for(this._currentLevel=s-1;s1?null:e.copy(t.start).addScaledVector(i,r)}intersectsLine(t){const e=this.distanceToPoint(t.start),i=this.distanceToPoint(t.end);return e<0&&i>0||i<0&&e>0}intersectsBox(t){return t.intersectsPlane(this)}intersectsSphere(t){return t.intersectsPlane(this)}coplanarPoint(t){return t.copy(this.normal).multiplyScalar(-this.constant)}applyMatrix4(t,e){const i=e||vo.getNormalMatrix(t),s=this.coplanarPoint(xo).applyMatrix4(t),r=this.normal.applyMatrix3(i).normalize();return this.constant=-s.dot(r),this}translate(t){return this.constant-=t.dot(this.normal),this}equals(t){return t.normal.equals(this.normal)&&t.constant===this.constant}clone(){return(new this.constructor).copy(this)}}const Mo=new dr,So=new vs(.5,.5),_o=new Ms;class Ao{constructor(t=new wo,e=new wo,i=new wo,s=new wo,r=new wo,n=new wo){this.planes=[t,e,i,s,r,n]}set(t,e,i,s,r,n){const a=this.planes;return a[0].copy(t),a[1].copy(e),a[2].copy(i),a[3].copy(s),a[4].copy(r),a[5].copy(n),this}copy(t){const e=this.planes;for(let i=0;i<6;i++)e[i].copy(t.planes[i]);return this}setFromProjectionMatrix(t,e=2e3,i=!1){const s=this.planes,r=t.elements,n=r[0],a=r[1],o=r[2],h=r[3],l=r[4],c=r[5],u=r[6],d=r[7],p=r[8],m=r[9],y=r[10],g=r[11],f=r[12],x=r[13],b=r[14],v=r[15];if(s[0].setComponents(h-n,d-l,g-p,v-f).normalize(),s[1].setComponents(h+n,d+l,g+p,v+f).normalize(),s[2].setComponents(h+a,d+c,g+m,v+x).normalize(),s[3].setComponents(h-a,d-c,g-m,v-x).normalize(),i)s[4].setComponents(o,u,y,b).normalize(),s[5].setComponents(h-o,d-u,g-y,v-b).normalize();else if(s[4].setComponents(h-o,d-u,g-y,v-b).normalize(),e===Wi)s[5].setComponents(h+o,d+u,g+y,v+b).normalize();else{if(e!==Ui)throw new Error("THREE.Frustum.setFromProjectionMatrix(): Invalid coordinate system: "+e);s[5].setComponents(o,u,y,b).normalize()}return this}intersectsObject(t){if(void 0!==t.boundingSphere)null===t.boundingSphere&&t.computeBoundingSphere(),Mo.copy(t.boundingSphere).applyMatrix4(t.matrixWorld);else{const e=t.geometry;null===e.boundingSphere&&e.computeBoundingSphere(),Mo.copy(e.boundingSphere).applyMatrix4(t.matrixWorld)}return this.intersectsSphere(Mo)}intersectsSprite(t){Mo.center.set(0,0,0);const e=So.distanceTo(t.center);return Mo.radius=.7071067811865476+e,Mo.applyMatrix4(t.matrixWorld),this.intersectsSphere(Mo)}intersectsSphere(t){const e=this.planes,i=t.center,s=-t.radius;for(let t=0;t<6;t++){if(e[t].distanceToPoint(i)0?t.max.x:t.min.x,_o.y=s.normal.y>0?t.max.y:t.min.y,_o.z=s.normal.z>0?t.max.z:t.min.z,s.distanceToPoint(_o)<0)return!1}return!0}containsPoint(t){const e=this.planes;for(let i=0;i<6;i++)if(e[i].distanceToPoint(t)<0)return!1;return!0}clone(){return(new this.constructor).copy(this)}}const To=new wr,zo=new Ao;class Co{constructor(){this.coordinateSystem=Wi}intersectsObject(t,e){if(!e.isArrayCamera||0===e.cameras.length)return!1;for(let i=0;i=r.length&&r.push({start:-1,count:-1,z:-1,index:-1});const a=r[this.index];n.push(a),this.index++,a.start=t,a.count=e,a.z=i,a.index=s}reset(){this.list.length=0,this.index=0}}const Po=new wr,Ro=new mn(1,1,1),No=new Ao,Vo=new Co,Fo=new Zs,Lo=new dr,Eo=new Ms,jo=new Ms,Do=new Ms,Wo=new Oo,Uo=new ia,qo=[];function Jo(t,e,i=0){const s=e.itemSize;if(t.isInterleavedBufferAttribute||t.array.constructor!==e.array.constructor){const r=t.count;for(let n=0;n65535?new Uint32Array(s):new Uint16Array(s);e.setIndex(new zn(t,1))}this._geometryInitialized=!0}}_validateGeometry(t){const e=this.geometry;if(Boolean(t.getIndex())!==Boolean(e.getIndex()))throw new Error('THREE.BatchedMesh: All geometries must consistently have "index".');for(const i in e.attributes){if(!t.hasAttribute(i))throw new Error(`THREE.BatchedMesh: Added geometry missing "${i}". All geometries must have consistent attributes.`);const s=t.getAttribute(i),r=e.getAttribute(i);if(s.itemSize!==r.itemSize||s.normalized!==r.normalized)throw new Error("THREE.BatchedMesh: All attributes must have a consistent itemSize and normalized value.")}}validateInstanceId(t){const e=this._instanceInfo;if(t<0||t>=e.length||!1===e[t].active)throw new Error(`THREE.BatchedMesh: Invalid instanceId ${t}. Instance is either out of range or has been deleted.`)}validateGeometryId(t){const e=this._geometryInfo;if(t<0||t>=e.length||!1===e[t].active)throw new Error(`THREE.BatchedMesh: Invalid geometryId ${t}. Geometry is either out of range or has been deleted.`)}setCustomSort(t){return this.customSort=t,this}computeBoundingBox(){null===this.boundingBox&&(this.boundingBox=new Zs);const t=this.boundingBox,e=this._instanceInfo;t.makeEmpty();for(let i=0,s=e.length;i=this.maxInstanceCount&&0===this._availableInstanceIds.length)throw new Error("THREE.BatchedMesh: Maximum item count reached.");const e={visible:!0,active:!0,geometryIndex:t};let i=null;this._availableInstanceIds.length>0?(this._availableInstanceIds.sort(Io),i=this._availableInstanceIds.shift(),this._instanceInfo[i]=e):(i=this._instanceInfo.length,this._instanceInfo.push(e));const s=this._matricesTexture;Po.identity().toArray(s.image.data,16*i),s.needsUpdate=!0;const r=this._colorsTexture;return r&&(Ro.toArray(r.image.data,4*i),r.needsUpdate=!0),this._visibilityChanged=!0,i}addGeometry(t,e=-1,i=-1){this._initializeGeometry(t),this._validateGeometry(t);const s={vertexStart:-1,vertexCount:-1,reservedVertexCount:-1,indexStart:-1,indexCount:-1,reservedIndexCount:-1,start:-1,count:-1,boundingBox:null,boundingSphere:null,active:!0},r=this._geometryInfo;s.vertexStart=this._nextVertexStart,s.reservedVertexCount=-1===e?t.getAttribute("position").count:e;const n=t.getIndex();if(null!==n&&(s.indexStart=this._nextIndexStart,s.reservedIndexCount=-1===i?n.count:i),-1!==s.indexStart&&s.indexStart+s.reservedIndexCount>this._maxIndexCount||s.vertexStart+s.reservedVertexCount>this._maxVertexCount)throw new Error("THREE.BatchedMesh: Reserved space request exceeds the maximum buffer size.");let a;return this._availableGeometryIds.length>0?(this._availableGeometryIds.sort(Io),a=this._availableGeometryIds.shift(),r[a]=s):(a=this._geometryCount,this._geometryCount++,r.push(s)),this.setGeometryAt(a,t),this._nextIndexStart=s.indexStart+s.reservedIndexCount,this._nextVertexStart=s.vertexStart+s.reservedVertexCount,a}setGeometryAt(t,e){if(t>=this._geometryCount)throw new Error("THREE.BatchedMesh: Maximum geometry count reached.");this._validateGeometry(e);const i=this.geometry,s=null!==i.getIndex(),r=i.getIndex(),n=e.getIndex(),a=this._geometryInfo[t];if(s&&n.count>a.reservedIndexCount||e.attributes.position.count>a.reservedVertexCount)throw new Error("THREE.BatchedMesh: Reserved space not large enough for provided geometry.");const o=a.vertexStart,h=a.reservedVertexCount;a.vertexCount=e.getAttribute("position").count;for(const t in i.attributes){const s=e.getAttribute(t),r=i.getAttribute(t);Jo(s,r,o);const n=s.itemSize;for(let t=s.count,e=h;t=e.length||!1===e[t].active)return this;const i=this._instanceInfo;for(let e=0,s=i.length;ee).sort((t,e)=>i[t].vertexStart-i[e].vertexStart),r=this.geometry;for(let n=0,a=i.length;n=this._geometryCount)return null;const i=this.geometry,s=this._geometryInfo[t];if(null===s.boundingBox){const t=new Zs,e=i.index,r=i.attributes.position;for(let i=s.start,n=s.start+s.count;i=this._geometryCount)return null;const i=this.geometry,s=this._geometryInfo[t];if(null===s.boundingSphere){const e=new dr;this.getBoundingBoxAt(t,Fo),Fo.getCenter(e.center);const r=i.index,n=i.attributes.position;let a=0;for(let t=s.start,i=s.start+s.count;tt.active);if(Math.max(...i.map(t=>t.vertexStart+t.reservedVertexCount))>t)throw new Error(`BatchedMesh: Geometry vertex values are being used outside the range ${e}. Cannot shrink further.`);if(this.geometry.index){if(Math.max(...i.map(t=>t.indexStart+t.reservedIndexCount))>e)throw new Error(`BatchedMesh: Geometry index values are being used outside the range ${e}. Cannot shrink further.`)}const s=this.geometry;s.dispose(),this._maxVertexCount=t,this._maxIndexCount=e,this._geometryInitialized&&(this._geometryInitialized=!1,this.geometry=new qn,this._initializeGeometry(s));const r=this.geometry;s.index&&Xo(s.index.array,r.index.array);for(const t in s.attributes)Xo(s.attributes[t].array,r.attributes[t].array)}raycast(t,e){const i=this._instanceInfo,s=this._geometryInfo,r=this.matrixWorld,n=this.geometry;Uo.material=this.material,Uo.geometry.index=n.index,Uo.geometry.attributes=n.attributes,null===Uo.geometry.boundingBox&&(Uo.geometry.boundingBox=new Zs),null===Uo.geometry.boundingSphere&&(Uo.geometry.boundingSphere=new dr);for(let n=0,a=i.length;n({...t,boundingBox:null!==t.boundingBox?t.boundingBox.clone():null,boundingSphere:null!==t.boundingSphere?t.boundingSphere.clone():null})),this._instanceInfo=t._instanceInfo.map(t=>({...t})),this._availableInstanceIds=t._availableInstanceIds.slice(),this._availableGeometryIds=t._availableGeometryIds.slice(),this._nextIndexStart=t._nextIndexStart,this._nextVertexStart=t._nextVertexStart,this._geometryCount=t._geometryCount,this._maxInstanceCount=t._maxInstanceCount,this._maxVertexCount=t._maxVertexCount,this._maxIndexCount=t._maxIndexCount,this._geometryInitialized=t._geometryInitialized,this._multiDrawCounts=t._multiDrawCounts.slice(),this._multiDrawStarts=t._multiDrawStarts.slice(),this._indirectTexture=t._indirectTexture.clone(),this._indirectTexture.image.data=this._indirectTexture.image.data.slice(),this._matricesTexture=t._matricesTexture.clone(),this._matricesTexture.image.data=this._matricesTexture.image.data.slice(),null!==this._colorsTexture&&(this._colorsTexture=t._colorsTexture.clone(),this._colorsTexture.image.data=this._colorsTexture.image.data.slice()),this}dispose(){this.geometry.dispose(),this._matricesTexture.dispose(),this._matricesTexture=null,this._indirectTexture.dispose(),this._indirectTexture=null,null!==this._colorsTexture&&(this._colorsTexture.dispose(),this._colorsTexture=null)}onBeforeRender(t,e,i,s,r){if(!this._visibilityChanged&&!this.perObjectFrustumCulled&&!this.sortObjects)return;const n=s.getIndex(),a=null===n?1:n.array.BYTES_PER_ELEMENT,o=this._instanceInfo,h=this._multiDrawStarts,l=this._multiDrawCounts,c=this._geometryInfo,u=this.perObjectFrustumCulled,d=this._indirectTexture,p=d.image.data,m=i.isArrayCamera?Vo:No;u&&!i.isArrayCamera&&(Po.multiplyMatrices(i.projectionMatrix,i.matrixWorldInverse).multiply(this.matrixWorld),No.setFromProjectionMatrix(Po,i.coordinateSystem,i.reversedDepth));let y=0;if(this.sortObjects){Po.copy(this.matrixWorld).invert(),Eo.setFromMatrixPosition(i.matrixWorld).applyMatrix4(Po),jo.set(0,0,-1).transformDirection(i.matrixWorld).transformDirection(Po);for(let t=0,e=o.length;t0){const i=t[e[0]];if(void 0!==i){this.morphTargetInfluences=[],this.morphTargetDictionary={};for(let t=0,e=i.length;ts)return;th.applyMatrix4(t.matrixWorld);const h=e.ray.origin.distanceTo(th);return he.far?void 0:{distance:h,point:eh.clone().applyMatrix4(t.matrixWorld),index:a,face:null,faceIndex:null,barycoord:null,object:t}}const rh=new Ms,nh=new Ms;class ah extends ih{constructor(t,e){super(t,e),this.isLineSegments=!0,this.type="LineSegments"}computeLineDistances(){const t=this.geometry;if(null===t.index){const e=t.attributes.position,i=[];for(let t=0,s=e.count;t0){const i=t[e[0]];if(void 0!==i){this.morphTargetInfluences=[],this.morphTargetDictionary={};for(let t=0,e=i.length;tr.far)return;n.push({distance:h,distanceToRay:Math.sqrt(o),point:i,index:e,face:null,faceIndex:null,barycoord:null,object:a})}}class yh extends js{constructor(t,e,i,s,r=1006,n=1006,a,o,h){super(t,e,i,s,r,n,a,o,h),this.isVideoTexture=!0,this.generateMipmaps=!1,this._requestVideoFrameCallbackId=0;const l=this;"requestVideoFrameCallback"in t&&(this._requestVideoFrameCallbackId=t.requestVideoFrameCallback(function e(){l.needsUpdate=!0,l._requestVideoFrameCallbackId=t.requestVideoFrameCallback(e)}))}clone(){return new this.constructor(this.image).copy(this)}update(){const t=this.image;!1==="requestVideoFrameCallback"in t&&t.readyState>=t.HAVE_CURRENT_DATA&&(this.needsUpdate=!0)}dispose(){0!==this._requestVideoFrameCallbackId&&(this.source.data.cancelVideoFrameCallback(this._requestVideoFrameCallbackId),this._requestVideoFrameCallbackId=0),super.dispose()}}class gh extends yh{constructor(t,e,i,s,r,n,a,o){super({},t,e,i,s,r,n,a,o),this.isVideoFrameTexture=!0}update(){}clone(){return(new this.constructor).copy(this)}setFrame(t){this.image=t,this.needsUpdate=!0}}class fh extends js{constructor(t,e){super({width:t,height:e}),this.isFramebufferTexture=!0,this.magFilter=gt,this.minFilter=gt,this.generateMipmaps=!1,this.needsUpdate=!0}}class xh extends js{constructor(t,e,i,s,r,n,a,o,h,l,c,u){super(null,n,a,o,h,l,s,r,c,u),this.isCompressedTexture=!0,this.image={width:e,height:i},this.mipmaps=t,this.flipY=!1,this.generateMipmaps=!1}}class bh extends xh{constructor(t,e,i,s,r,n){super(t,e,i,r,n),this.isCompressedArrayTexture=!0,this.image.depth=s,this.wrapR=mt,this.layerUpdates=new Set}addLayerUpdate(t){this.layerUpdates.add(t)}clearLayerUpdates(){this.layerUpdates.clear()}}class vh extends xh{constructor(t,e,i){super(void 0,t[0].width,t[0].height,e,i,ht),this.isCompressedCubeTexture=!0,this.isCubeTexture=!0,this.image=t}}class wh extends js{constructor(t,e,i,s,r,n,a,o,h){super(t,e,i,s,r,n,a,o,h),this.isCanvasTexture=!0,this.needsUpdate=!0}}class Mh extends js{constructor(t,e,i=1014,s,r,n,a=1003,o=1003,h,l=1026,c=1){if(l!==Wt&&1027!==l)throw new Error("DepthTexture format must be either THREE.DepthFormat or THREE.DepthStencilFormat");super({width:t,height:e,depth:c},s,r,n,a,o,l,i,h),this.isDepthTexture=!0,this.flipY=!1,this.generateMipmaps=!1,this.compareFunction=null}copy(t){return super.copy(t),this.source=new Vs(Object.assign({},t.image)),this.compareFunction=t.compareFunction,this}toJSON(t){const e=super.toJSON(t);return null!==this.compareFunction&&(e.compareFunction=this.compareFunction),e}}class Sh extends Mh{constructor(t,e=1014,i=301,s,r,n=1003,a=1003,o,h=1026){const l={width:t,height:t,depth:1},c=[l,l,l,l,l,l];super(t,t,e,i,s,r,n,a,o,h),this.image=c,this.isCubeDepthTexture=!0,this.isCubeTexture=!0}get images(){return this.image}set images(t){this.image=t}}class _h extends js{constructor(t=null){super(),this.sourceTexture=t,this.isExternalTexture=!0}copy(t){return super.copy(t),this.sourceTexture=t.sourceTexture,this}}class Ah extends qn{constructor(t=1,e=1,i=4,s=8,r=1){super(),this.type="CapsuleGeometry",this.parameters={radius:t,height:e,capSegments:i,radialSegments:s,heightSegments:r},e=Math.max(0,e),i=Math.max(1,Math.floor(i)),s=Math.max(3,Math.floor(s)),r=Math.max(1,Math.floor(r));const n=[],a=[],o=[],h=[],l=e/2,c=Math.PI/2*t,u=e,d=2*c+u,p=2*i+r,m=s+1,y=new Ms,g=new Ms;for(let f=0;f<=p;f++){let x=0,b=0,v=0,w=0;if(f<=i){const e=f/i,s=e*Math.PI/2;b=-l-t*Math.cos(s),v=t*Math.sin(s),w=-t*Math.cos(s),x=e*c}else if(f<=i+r){const s=(f-i)/r;b=s*e-l,v=t,w=0,x=c+s*u}else{const e=(f-i-r)/i,s=e*Math.PI/2;b=l+t*Math.sin(s),v=t*Math.cos(s),w=t*Math.sin(s),x=c+u+e*c}const M=Math.max(0,Math.min(1,x/d));let S=0;0===f?S=.5/s:f===p&&(S=-.5/s);for(let t=0;t<=s;t++){const e=t/s,i=e*Math.PI*2,r=Math.sin(i),n=Math.cos(i);g.x=-v*n,g.y=b,g.z=v*r,a.push(g.x,g.y,g.z),y.set(-v*n,w,v*r),y.normalize(),o.push(y.x,y.y,y.z),h.push(e+S,M)}if(f>0){const t=(f-1)*m;for(let e=0;e0||0!==s)&&(l.push(n,a,h),x+=3),(e>0||s!==r-1)&&(l.push(a,o,h),x+=3)}h.addGroup(g,x,0),g+=x}(),!1===n&&(t>0&&f(!0),e>0&&f(!1)),this.setIndex(l),this.setAttribute("position",new Vn(c,3)),this.setAttribute("normal",new Vn(u,3)),this.setAttribute("uv",new Vn(d,2))}copy(t){return super.copy(t),this.parameters=Object.assign({},t.parameters),this}static fromJSON(t){return new zh(t.radiusTop,t.radiusBottom,t.height,t.radialSegments,t.heightSegments,t.openEnded,t.thetaStart,t.thetaLength)}}class Ch extends zh{constructor(t=1,e=1,i=32,s=1,r=!1,n=0,a=2*Math.PI){super(0,t,e,i,s,r,n,a),this.type="ConeGeometry",this.parameters={radius:t,height:e,radialSegments:i,heightSegments:s,openEnded:r,thetaStart:n,thetaLength:a}}static fromJSON(t){return new Ch(t.radius,t.height,t.radialSegments,t.heightSegments,t.openEnded,t.thetaStart,t.thetaLength)}}class Ih extends qn{constructor(t=[],e=[],i=1,s=0){super(),this.type="PolyhedronGeometry",this.parameters={vertices:t,indices:e,radius:i,detail:s};const r=[],n=[];function a(t,e,i,s){const r=s+1,n=[];for(let s=0;s<=r;s++){n[s]=[];const a=t.clone().lerp(i,s/r),o=e.clone().lerp(i,s/r),h=r-s;for(let t=0;t<=h;t++)n[s][t]=0===t&&s===r?a:a.clone().lerp(o,t/h)}for(let t=0;t.9&&a<.1&&(e<.2&&(n[t+0]+=1),i<.2&&(n[t+2]+=1),s<.2&&(n[t+4]+=1))}}()}(),this.setAttribute("position",new Vn(r,3)),this.setAttribute("normal",new Vn(r.slice(),3)),this.setAttribute("uv",new Vn(n,2)),0===s?this.computeVertexNormals():this.normalizeNormals()}copy(t){return super.copy(t),this.parameters=Object.assign({},t.parameters),this}static fromJSON(t){return new Ih(t.vertices,t.indices,t.radius,t.details)}}class Bh extends Ih{constructor(t=1,e=0){const i=(1+Math.sqrt(5))/2,s=1/i;super([-1,-1,-1,-1,-1,1,-1,1,-1,-1,1,1,1,-1,-1,1,-1,1,1,1,-1,1,1,1,0,-s,-i,0,-s,i,0,s,-i,0,s,i,-s,-i,0,-s,i,0,s,-i,0,s,i,0,-i,0,-s,i,0,-s,-i,0,s,i,0,s],[3,11,7,3,7,15,3,15,13,7,19,17,7,17,6,7,6,15,17,4,8,17,8,10,17,10,6,8,0,16,8,16,2,8,2,10,0,12,1,0,1,18,0,18,16,6,10,2,6,2,13,6,13,15,2,16,18,2,18,3,2,3,13,18,1,9,18,9,11,18,11,3,4,14,12,4,12,0,4,0,8,11,9,5,11,5,19,11,19,7,19,5,14,19,14,4,19,4,17,1,12,14,1,14,5,1,5,9],t,e),this.type="DodecahedronGeometry",this.parameters={radius:t,detail:e}}static fromJSON(t){return new Bh(t.radius,t.detail)}}const kh=new Ms,Oh=new Ms,Ph=new Ms,Rh=new ln;class Nh extends qn{constructor(t=null,e=1){if(super(),this.type="EdgesGeometry",this.parameters={geometry:t,thresholdAngle:e},null!==t){const i=4,s=Math.pow(10,i),r=Math.cos(us*e),n=t.getIndex(),a=t.getAttribute("position"),o=n?n.count:a.count,h=[0,0,0],l=["a","b","c"],c=new Array(3),u={},d=[];for(let t=0;t0)){h=s;break}h=s-1}if(s=h,i[s]===n)return s/(r-1);const l=i[s];return(s+(n-l)/(i[s+1]-l))/(r-1)}getTangent(t,e){const i=1e-4;let s=t-i,r=t+i;s<0&&(s=0),r>1&&(r=1);const n=this.getPoint(s),a=this.getPoint(r),o=e||(n.isVector2?new vs:new Ms);return o.copy(a).sub(n).normalize(),o}getTangentAt(t,e){const i=this.getUtoTmapping(t);return this.getTangent(i,e)}computeFrenetFrames(t,e=!1){const i=new Ms,s=[],r=[],n=[],a=new Ms,o=new wr;for(let e=0;e<=t;e++){const i=e/t;s[e]=this.getTangentAt(i,new Ms)}r[0]=new Ms,n[0]=new Ms;let h=Number.MAX_VALUE;const l=Math.abs(s[0].x),c=Math.abs(s[0].y),u=Math.abs(s[0].z);l<=h&&(h=l,i.set(1,0,0)),c<=h&&(h=c,i.set(0,1,0)),u<=h&&i.set(0,0,1),a.crossVectors(s[0],i).normalize(),r[0].crossVectors(s[0],a),n[0].crossVectors(s[0],r[0]);for(let e=1;e<=t;e++){if(r[e]=r[e-1].clone(),n[e]=n[e-1].clone(),a.crossVectors(s[e-1],s[e]),a.length()>Number.EPSILON){a.normalize();const t=Math.acos(ms(s[e-1].dot(s[e]),-1,1));r[e].applyMatrix4(o.makeRotationAxis(a,t))}n[e].crossVectors(s[e],r[e])}if(!0===e){let e=Math.acos(ms(r[0].dot(r[t]),-1,1));e/=t,s[0].dot(a.crossVectors(r[0],r[t]))>0&&(e=-e);for(let i=1;i<=t;i++)r[i].applyMatrix4(o.makeRotationAxis(s[i],e*i)),n[i].crossVectors(s[i],r[i])}return{tangents:s,normals:r,binormals:n}}clone(){return(new this.constructor).copy(this)}copy(t){return this.arcLengthDivisions=t.arcLengthDivisions,this}toJSON(){const t={metadata:{version:4.7,type:"Curve",generator:"Curve.toJSON"}};return t.arcLengthDivisions=this.arcLengthDivisions,t.type=this.type,t}fromJSON(t){return this.arcLengthDivisions=t.arcLengthDivisions,this}}class Fh extends Vh{constructor(t=0,e=0,i=1,s=1,r=0,n=2*Math.PI,a=!1,o=0){super(),this.isEllipseCurve=!0,this.type="EllipseCurve",this.aX=t,this.aY=e,this.xRadius=i,this.yRadius=s,this.aStartAngle=r,this.aEndAngle=n,this.aClockwise=a,this.aRotation=o}getPoint(t,e=new vs){const i=e,s=2*Math.PI;let r=this.aEndAngle-this.aStartAngle;const n=Math.abs(r)s;)r-=s;r0?0:(Math.floor(Math.abs(h)/r)+1)*r:0===l&&h===r-1&&(h=r-2,l=1),this.closed||h>0?a=s[(h-1)%r]:(jh.subVectors(s[0],s[1]).add(s[0]),a=jh);const c=s[h%r],u=s[(h+1)%r];if(this.closed||h+2s.length-2?s.length-1:n+1],c=s[n>s.length-3?s.length-1:n+2];return i.set(Jh(a,o.x,h.x,l.x,c.x),Jh(a,o.y,h.y,l.y,c.y)),i}copy(t){super.copy(t),this.points=[];for(let e=0,i=t.points.length;e=i){const t=s[r]-i,n=this.curves[r],a=n.getLength(),o=0===a?0:1-t/a;return n.getPointAt(o,e)}r++}return null}getLength(){const t=this.getCurveLengths();return t[t.length-1]}updateArcLengths(){this.needsUpdate=!0,this.cacheLengths=null,this.getCurveLengths()}getCurveLengths(){if(this.cacheLengths&&this.cacheLengths.length===this.curves.length)return this.cacheLengths;const t=[];let e=0;for(let i=0,s=this.curves.length;i1&&!e[e.length-1].equals(e[0])&&e.push(e[0]),e}copy(t){super.copy(t),this.curves=[];for(let e=0,i=t.curves.length;e0){const t=h.getPoint(0);t.equals(this.currentPoint)||this.lineTo(t.x,t.y)}this.curves.push(h);const l=h.getPoint(1);return this.currentPoint.copy(l),this}copy(t){return super.copy(t),this.currentPoint.copy(t.currentPoint),this}toJSON(){const t=super.toJSON();return t.currentPoint=this.currentPoint.toArray(),t}fromJSON(t){return super.fromJSON(t),this.currentPoint.fromArray(t.currentPoint),this}}class rl extends sl{constructor(t){super(t),this.uuid=ps(),this.type="Shape",this.holes=[]}getPointsHoles(t){const e=[];for(let i=0,s=this.holes.length;i80*i){o=t[0],h=t[1];let e=o,s=h;for(let n=i;ne&&(e=i),r>s&&(s=r)}l=Math.max(e-o,s-h),l=0!==l?32767/l:0}return hl(n,a,i,o,h,l,0),a}function al(t,e,i,s,r){let n;if(r===function(t,e,i,s){let r=0;for(let n=e,a=i-s;n0)for(let r=e;r=e;r-=s)n=Cl(r/s|0,t[r],t[r+1],n);return n&&Ml(n,n.next)&&(Il(n),n=n.next),n}function ol(t,e){if(!t)return t;e||(e=t);let i,s=t;do{if(i=!1,s.steiner||!Ml(s,s.next)&&0!==wl(s.prev,s,s.next))s=s.next;else{if(Il(s),s=e=s.prev,s===s.next)break;i=!0}}while(i||s!==e);return e}function hl(t,e,i,s,r,n,a){if(!t)return;!a&&n&&function(t,e,i,s){let r=t;do{0===r.z&&(r.z=gl(r.x,r.y,e,i,s)),r.prevZ=r.prev,r.nextZ=r.next,r=r.next}while(r!==t);r.prevZ.nextZ=null,r.prevZ=null,function(t){let e,i=1;do{let s,r=t;t=null;let n=null;for(e=0;r;){e++;let a=r,o=0;for(let t=0;t0||h>0&&a;)0!==o&&(0===h||!a||r.z<=a.z)?(s=r,r=r.nextZ,o--):(s=a,a=a.nextZ,h--),n?n.nextZ=s:t=s,s.prevZ=n,n=s;r=a}n.nextZ=null,i*=2}while(e>1)}(r)}(t,s,r,n);let o=t;for(;t.prev!==t.next;){const h=t.prev,l=t.next;if(n?cl(t,s,r,n):ll(t))e.push(h.i,t.i,l.i),Il(t),t=l.next,o=l.next;else if((t=l)===o){a?1===a?hl(t=ul(ol(t),e),e,i,s,r,n,2):2===a&&dl(t,e,i,s,r,n):hl(ol(t),e,i,s,r,n,1);break}}}function ll(t){const e=t.prev,i=t,s=t.next;if(wl(e,i,s)>=0)return!1;const r=e.x,n=i.x,a=s.x,o=e.y,h=i.y,l=s.y,c=Math.min(r,n,a),u=Math.min(o,h,l),d=Math.max(r,n,a),p=Math.max(o,h,l);let m=s.next;for(;m!==e;){if(m.x>=c&&m.x<=d&&m.y>=u&&m.y<=p&&bl(r,o,n,h,a,l,m.x,m.y)&&wl(m.prev,m,m.next)>=0)return!1;m=m.next}return!0}function cl(t,e,i,s){const r=t.prev,n=t,a=t.next;if(wl(r,n,a)>=0)return!1;const o=r.x,h=n.x,l=a.x,c=r.y,u=n.y,d=a.y,p=Math.min(o,h,l),m=Math.min(c,u,d),y=Math.max(o,h,l),g=Math.max(c,u,d),f=gl(p,m,e,i,s),x=gl(y,g,e,i,s);let b=t.prevZ,v=t.nextZ;for(;b&&b.z>=f&&v&&v.z<=x;){if(b.x>=p&&b.x<=y&&b.y>=m&&b.y<=g&&b!==r&&b!==a&&bl(o,c,h,u,l,d,b.x,b.y)&&wl(b.prev,b,b.next)>=0)return!1;if(b=b.prevZ,v.x>=p&&v.x<=y&&v.y>=m&&v.y<=g&&v!==r&&v!==a&&bl(o,c,h,u,l,d,v.x,v.y)&&wl(v.prev,v,v.next)>=0)return!1;v=v.nextZ}for(;b&&b.z>=f;){if(b.x>=p&&b.x<=y&&b.y>=m&&b.y<=g&&b!==r&&b!==a&&bl(o,c,h,u,l,d,b.x,b.y)&&wl(b.prev,b,b.next)>=0)return!1;b=b.prevZ}for(;v&&v.z<=x;){if(v.x>=p&&v.x<=y&&v.y>=m&&v.y<=g&&v!==r&&v!==a&&bl(o,c,h,u,l,d,v.x,v.y)&&wl(v.prev,v,v.next)>=0)return!1;v=v.nextZ}return!0}function ul(t,e){let i=t;do{const s=i.prev,r=i.next.next;!Ml(s,r)&&Sl(s,i,i.next,r)&&Tl(s,r)&&Tl(r,s)&&(e.push(s.i,i.i,r.i),Il(i),Il(i.next),i=t=r),i=i.next}while(i!==t);return ol(i)}function dl(t,e,i,s,r,n){let a=t;do{let t=a.next.next;for(;t!==a.prev;){if(a.i!==t.i&&vl(a,t)){let o=zl(a,t);return a=ol(a,a.next),o=ol(o,o.next),hl(a,e,i,s,r,n,0),void hl(o,e,i,s,r,n,0)}t=t.next}a=a.next}while(a!==t)}function pl(t,e){let i=t.x-e.x;if(0===i&&(i=t.y-e.y,0===i)){i=(t.next.y-t.y)/(t.next.x-t.x)-(e.next.y-e.y)/(e.next.x-e.x)}return i}function ml(t,e){const i=function(t,e){let i=e;const s=t.x,r=t.y;let n,a=-1/0;if(Ml(t,i))return i;do{if(Ml(t,i.next))return i.next;if(r<=i.y&&r>=i.next.y&&i.next.y!==i.y){const t=i.x+(r-i.y)*(i.next.x-i.x)/(i.next.y-i.y);if(t<=s&&t>a&&(a=t,n=i.x=i.x&&i.x>=h&&s!==i.x&&xl(rn.x||i.x===n.x&&yl(n,i)))&&(n=i,c=e)}i=i.next}while(i!==o);return n}(t,e);if(!i)return e;const s=zl(i,t);return ol(s,s.next),ol(i,i.next)}function yl(t,e){return wl(t.prev,t,e.prev)<0&&wl(e.next,t,t.next)<0}function gl(t,e,i,s,r){return(t=1431655765&((t=858993459&((t=252645135&((t=16711935&((t=(t-i)*r|0)|t<<8))|t<<4))|t<<2))|t<<1))|(e=1431655765&((e=858993459&((e=252645135&((e=16711935&((e=(e-s)*r|0)|e<<8))|e<<4))|e<<2))|e<<1))<<1}function fl(t){let e=t,i=t;do{(e.x=(t-a)*(n-o)&&(t-a)*(s-o)>=(i-a)*(e-o)&&(i-a)*(n-o)>=(r-a)*(s-o)}function bl(t,e,i,s,r,n,a,o){return!(t===a&&e===o)&&xl(t,e,i,s,r,n,a,o)}function vl(t,e){return t.next.i!==e.i&&t.prev.i!==e.i&&!function(t,e){let i=t;do{if(i.i!==t.i&&i.next.i!==t.i&&i.i!==e.i&&i.next.i!==e.i&&Sl(i,i.next,t,e))return!0;i=i.next}while(i!==t);return!1}(t,e)&&(Tl(t,e)&&Tl(e,t)&&function(t,e){let i=t,s=!1;const r=(t.x+e.x)/2,n=(t.y+e.y)/2;do{i.y>n!=i.next.y>n&&i.next.y!==i.y&&r<(i.next.x-i.x)*(n-i.y)/(i.next.y-i.y)+i.x&&(s=!s),i=i.next}while(i!==t);return s}(t,e)&&(wl(t.prev,t,e.prev)||wl(t,e.prev,e))||Ml(t,e)&&wl(t.prev,t,t.next)>0&&wl(e.prev,e,e.next)>0)}function wl(t,e,i){return(e.y-t.y)*(i.x-e.x)-(e.x-t.x)*(i.y-e.y)}function Ml(t,e){return t.x===e.x&&t.y===e.y}function Sl(t,e,i,s){const r=Al(wl(t,e,i)),n=Al(wl(t,e,s)),a=Al(wl(i,s,t)),o=Al(wl(i,s,e));return r!==n&&a!==o||(!(0!==r||!_l(t,i,e))||(!(0!==n||!_l(t,s,e))||(!(0!==a||!_l(i,t,s))||!(0!==o||!_l(i,e,s)))))}function _l(t,e,i){return e.x<=Math.max(t.x,i.x)&&e.x>=Math.min(t.x,i.x)&&e.y<=Math.max(t.y,i.y)&&e.y>=Math.min(t.y,i.y)}function Al(t){return t>0?1:t<0?-1:0}function Tl(t,e){return wl(t.prev,t,t.next)<0?wl(t,e,t.next)>=0&&wl(t,t.prev,e)>=0:wl(t,e,t.prev)<0||wl(t,t.next,e)<0}function zl(t,e){const i=Bl(t.i,t.x,t.y),s=Bl(e.i,e.x,e.y),r=t.next,n=e.prev;return t.next=e,e.prev=t,i.next=r,r.prev=i,s.next=i,i.prev=s,n.next=s,s.prev=n,s}function Cl(t,e,i,s){const r=Bl(t,e,i);return s?(r.next=s.next,r.prev=s,s.next.prev=r,s.next=r):(r.prev=r,r.next=r),r}function Il(t){t.next.prev=t.prev,t.prev.next=t.next,t.prevZ&&(t.prevZ.nextZ=t.nextZ),t.nextZ&&(t.nextZ.prevZ=t.prevZ)}function Bl(t,e,i){return{i:t,x:e,y:i,prev:null,next:null,z:0,prevZ:null,nextZ:null,steiner:!1}}class kl{static triangulate(t,e,i=2){return nl(t,e,i)}}class Ol{static area(t){const e=t.length;let i=0;for(let s=e-1,r=0;r2&&t[e-1].equals(t[0])&&t.pop()}function Rl(t,e){for(let i=0;iNumber.EPSILON){const u=Math.sqrt(c),d=Math.sqrt(h*h+l*l),p=e.x-o/u,m=e.y+a/u,y=((i.x-l/d-p)*l-(i.y+h/d-m)*h)/(a*l-o*h);s=p+a*y-t.x,r=m+o*y-t.y;const g=s*s+r*r;if(g<=2)return new vs(s,r);n=Math.sqrt(g/2)}else{let t=!1;a>Number.EPSILON?h>Number.EPSILON&&(t=!0):a<-Number.EPSILON?h<-Number.EPSILON&&(t=!0):Math.sign(o)===Math.sign(l)&&(t=!0),t?(s=-o,r=a,n=Math.sqrt(c)):(s=a,r=o,n=Math.sqrt(c/2))}return new vs(s/n,r/n)}const k=[];for(let t=0,e=z.length,i=e-1,s=t+1;t=0;t--){const e=t/p,i=c*Math.cos(e*Math.PI/2),s=u*Math.sin(e*Math.PI/2)+d;for(let t=0,e=z.length;t=0;){const s=i;let r=i-1;r<0&&(r=t.length-1);for(let t=0,i=o+2*p;t0)&&d.push(e,r,h),(t!==i-1||o0!=t>0&&this.version++,this._anisotropy=t}get clearcoat(){return this._clearcoat}set clearcoat(t){this._clearcoat>0!=t>0&&this.version++,this._clearcoat=t}get iridescence(){return this._iridescence}set iridescence(t){this._iridescence>0!=t>0&&this.version++,this._iridescence=t}get dispersion(){return this._dispersion}set dispersion(t){this._dispersion>0!=t>0&&this.version++,this._dispersion=t}get sheen(){return this._sheen}set sheen(t){this._sheen>0!=t>0&&this.version++,this._sheen=t}get transmission(){return this._transmission}set transmission(t){this._transmission>0!=t>0&&this.version++,this._transmission=t}copy(t){return super.copy(t),this.defines={STANDARD:"",PHYSICAL:""},this.anisotropy=t.anisotropy,this.anisotropyRotation=t.anisotropyRotation,this.anisotropyMap=t.anisotropyMap,this.clearcoat=t.clearcoat,this.clearcoatMap=t.clearcoatMap,this.clearcoatRoughness=t.clearcoatRoughness,this.clearcoatRoughnessMap=t.clearcoatRoughnessMap,this.clearcoatNormalMap=t.clearcoatNormalMap,this.clearcoatNormalScale.copy(t.clearcoatNormalScale),this.dispersion=t.dispersion,this.ior=t.ior,this.iridescence=t.iridescence,this.iridescenceMap=t.iridescenceMap,this.iridescenceIOR=t.iridescenceIOR,this.iridescenceThicknessRange=[...t.iridescenceThicknessRange],this.iridescenceThicknessMap=t.iridescenceThicknessMap,this.sheen=t.sheen,this.sheenColor.copy(t.sheenColor),this.sheenColorMap=t.sheenColorMap,this.sheenRoughness=t.sheenRoughness,this.sheenRoughnessMap=t.sheenRoughnessMap,this.transmission=t.transmission,this.transmissionMap=t.transmissionMap,this.thickness=t.thickness,this.thicknessMap=t.thicknessMap,this.attenuationDistance=t.attenuationDistance,this.attenuationColor.copy(t.attenuationColor),this.specularIntensity=t.specularIntensity,this.specularIntensityMap=t.specularIntensityMap,this.specularColor.copy(t.specularColor),this.specularColorMap=t.specularColorMap,this}}class ec extends fn{constructor(t){super(),this.isMeshPhongMaterial=!0,this.type="MeshPhongMaterial",this.color=new mn(16777215),this.specular=new mn(1118481),this.shininess=30,this.map=null,this.lightMap=null,this.lightMapIntensity=1,this.aoMap=null,this.aoMapIntensity=1,this.emissive=new mn(0),this.emissiveIntensity=1,this.emissiveMap=null,this.bumpMap=null,this.bumpScale=1,this.normalMap=null,this.normalMapType=0,this.normalScale=new vs(1,1),this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.specularMap=null,this.alphaMap=null,this.envMap=null,this.envMapRotation=new kr,this.combine=0,this.reflectivity=1,this.refractionRatio=.98,this.wireframe=!1,this.wireframeLinewidth=1,this.wireframeLinecap="round",this.wireframeLinejoin="round",this.flatShading=!1,this.fog=!0,this.setValues(t)}copy(t){return super.copy(t),this.color.copy(t.color),this.specular.copy(t.specular),this.shininess=t.shininess,this.map=t.map,this.lightMap=t.lightMap,this.lightMapIntensity=t.lightMapIntensity,this.aoMap=t.aoMap,this.aoMapIntensity=t.aoMapIntensity,this.emissive.copy(t.emissive),this.emissiveMap=t.emissiveMap,this.emissiveIntensity=t.emissiveIntensity,this.bumpMap=t.bumpMap,this.bumpScale=t.bumpScale,this.normalMap=t.normalMap,this.normalMapType=t.normalMapType,this.normalScale.copy(t.normalScale),this.displacementMap=t.displacementMap,this.displacementScale=t.displacementScale,this.displacementBias=t.displacementBias,this.specularMap=t.specularMap,this.alphaMap=t.alphaMap,this.envMap=t.envMap,this.envMapRotation.copy(t.envMapRotation),this.combine=t.combine,this.reflectivity=t.reflectivity,this.refractionRatio=t.refractionRatio,this.wireframe=t.wireframe,this.wireframeLinewidth=t.wireframeLinewidth,this.wireframeLinecap=t.wireframeLinecap,this.wireframeLinejoin=t.wireframeLinejoin,this.flatShading=t.flatShading,this.fog=t.fog,this}}class ic extends fn{constructor(t){super(),this.isMeshToonMaterial=!0,this.defines={TOON:""},this.type="MeshToonMaterial",this.color=new mn(16777215),this.map=null,this.gradientMap=null,this.lightMap=null,this.lightMapIntensity=1,this.aoMap=null,this.aoMapIntensity=1,this.emissive=new mn(0),this.emissiveIntensity=1,this.emissiveMap=null,this.bumpMap=null,this.bumpScale=1,this.normalMap=null,this.normalMapType=0,this.normalScale=new vs(1,1),this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.alphaMap=null,this.wireframe=!1,this.wireframeLinewidth=1,this.wireframeLinecap="round",this.wireframeLinejoin="round",this.fog=!0,this.setValues(t)}copy(t){return super.copy(t),this.color.copy(t.color),this.map=t.map,this.gradientMap=t.gradientMap,this.lightMap=t.lightMap,this.lightMapIntensity=t.lightMapIntensity,this.aoMap=t.aoMap,this.aoMapIntensity=t.aoMapIntensity,this.emissive.copy(t.emissive),this.emissiveMap=t.emissiveMap,this.emissiveIntensity=t.emissiveIntensity,this.bumpMap=t.bumpMap,this.bumpScale=t.bumpScale,this.normalMap=t.normalMap,this.normalMapType=t.normalMapType,this.normalScale.copy(t.normalScale),this.displacementMap=t.displacementMap,this.displacementScale=t.displacementScale,this.displacementBias=t.displacementBias,this.alphaMap=t.alphaMap,this.wireframe=t.wireframe,this.wireframeLinewidth=t.wireframeLinewidth,this.wireframeLinecap=t.wireframeLinecap,this.wireframeLinejoin=t.wireframeLinejoin,this.fog=t.fog,this}}class sc extends fn{constructor(t){super(),this.isMeshNormalMaterial=!0,this.type="MeshNormalMaterial",this.bumpMap=null,this.bumpScale=1,this.normalMap=null,this.normalMapType=0,this.normalScale=new vs(1,1),this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.wireframe=!1,this.wireframeLinewidth=1,this.flatShading=!1,this.setValues(t)}copy(t){return super.copy(t),this.bumpMap=t.bumpMap,this.bumpScale=t.bumpScale,this.normalMap=t.normalMap,this.normalMapType=t.normalMapType,this.normalScale.copy(t.normalScale),this.displacementMap=t.displacementMap,this.displacementScale=t.displacementScale,this.displacementBias=t.displacementBias,this.wireframe=t.wireframe,this.wireframeLinewidth=t.wireframeLinewidth,this.flatShading=t.flatShading,this}}class rc extends fn{constructor(t){super(),this.isMeshLambertMaterial=!0,this.type="MeshLambertMaterial",this.color=new mn(16777215),this.map=null,this.lightMap=null,this.lightMapIntensity=1,this.aoMap=null,this.aoMapIntensity=1,this.emissive=new mn(0),this.emissiveIntensity=1,this.emissiveMap=null,this.bumpMap=null,this.bumpScale=1,this.normalMap=null,this.normalMapType=0,this.normalScale=new vs(1,1),this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.specularMap=null,this.alphaMap=null,this.envMap=null,this.envMapRotation=new kr,this.combine=0,this.reflectivity=1,this.refractionRatio=.98,this.wireframe=!1,this.wireframeLinewidth=1,this.wireframeLinecap="round",this.wireframeLinejoin="round",this.flatShading=!1,this.fog=!0,this.setValues(t)}copy(t){return super.copy(t),this.color.copy(t.color),this.map=t.map,this.lightMap=t.lightMap,this.lightMapIntensity=t.lightMapIntensity,this.aoMap=t.aoMap,this.aoMapIntensity=t.aoMapIntensity,this.emissive.copy(t.emissive),this.emissiveMap=t.emissiveMap,this.emissiveIntensity=t.emissiveIntensity,this.bumpMap=t.bumpMap,this.bumpScale=t.bumpScale,this.normalMap=t.normalMap,this.normalMapType=t.normalMapType,this.normalScale.copy(t.normalScale),this.displacementMap=t.displacementMap,this.displacementScale=t.displacementScale,this.displacementBias=t.displacementBias,this.specularMap=t.specularMap,this.alphaMap=t.alphaMap,this.envMap=t.envMap,this.envMapRotation.copy(t.envMapRotation),this.combine=t.combine,this.reflectivity=t.reflectivity,this.refractionRatio=t.refractionRatio,this.wireframe=t.wireframe,this.wireframeLinewidth=t.wireframeLinewidth,this.wireframeLinecap=t.wireframeLinecap,this.wireframeLinejoin=t.wireframeLinejoin,this.flatShading=t.flatShading,this.fog=t.fog,this}}class nc extends fn{constructor(t){super(),this.isMeshDepthMaterial=!0,this.type="MeshDepthMaterial",this.depthPacking=3200,this.map=null,this.alphaMap=null,this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.wireframe=!1,this.wireframeLinewidth=1,this.setValues(t)}copy(t){return super.copy(t),this.depthPacking=t.depthPacking,this.map=t.map,this.alphaMap=t.alphaMap,this.displacementMap=t.displacementMap,this.displacementScale=t.displacementScale,this.displacementBias=t.displacementBias,this.wireframe=t.wireframe,this.wireframeLinewidth=t.wireframeLinewidth,this}}class ac extends fn{constructor(t){super(),this.isMeshDistanceMaterial=!0,this.type="MeshDistanceMaterial",this.map=null,this.alphaMap=null,this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.setValues(t)}copy(t){return super.copy(t),this.map=t.map,this.alphaMap=t.alphaMap,this.displacementMap=t.displacementMap,this.displacementScale=t.displacementScale,this.displacementBias=t.displacementBias,this}}class oc extends fn{constructor(t){super(),this.isMeshMatcapMaterial=!0,this.defines={MATCAP:""},this.type="MeshMatcapMaterial",this.color=new mn(16777215),this.matcap=null,this.map=null,this.bumpMap=null,this.bumpScale=1,this.normalMap=null,this.normalMapType=0,this.normalScale=new vs(1,1),this.displacementMap=null,this.displacementScale=1,this.displacementBias=0,this.alphaMap=null,this.wireframe=!1,this.wireframeLinewidth=1,this.flatShading=!1,this.fog=!0,this.setValues(t)}copy(t){return super.copy(t),this.defines={MATCAP:""},this.color.copy(t.color),this.matcap=t.matcap,this.map=t.map,this.bumpMap=t.bumpMap,this.bumpScale=t.bumpScale,this.normalMap=t.normalMap,this.normalMapType=t.normalMapType,this.normalScale.copy(t.normalScale),this.displacementMap=t.displacementMap,this.displacementScale=t.displacementScale,this.displacementBias=t.displacementBias,this.alphaMap=t.alphaMap,this.wireframe=t.wireframe,this.wireframeLinewidth=t.wireframeLinewidth,this.flatShading=t.flatShading,this.fog=t.fog,this}}class hc extends Zo{constructor(t){super(),this.isLineDashedMaterial=!0,this.type="LineDashedMaterial",this.scale=1,this.dashSize=3,this.gapSize=1,this.setValues(t)}copy(t){return super.copy(t),this.scale=t.scale,this.dashSize=t.dashSize,this.gapSize=t.gapSize,this}}function lc(t,e){return t&&t.constructor!==e?"number"==typeof e.BYTES_PER_ELEMENT?new e(t):Array.prototype.slice.call(t):t}function cc(t){const e=t.length,i=new Array(e);for(let t=0;t!==e;++t)i[t]=t;return i.sort(function(e,i){return t[e]-t[i]}),i}function uc(t,e,i){const s=t.length,r=new t.constructor(s);for(let n=0,a=0;a!==s;++n){const s=i[n]*e;for(let i=0;i!==e;++i)r[a++]=t[s+i]}return r}function dc(t,e,i,s){let r=1,n=t[0];for(;void 0!==n&&void 0===n[s];)n=t[r++];if(void 0===n)return;let a=n[s];if(void 0!==a)if(Array.isArray(a))do{a=n[s],void 0!==a&&(e.push(n.time),i.push(...a)),n=t[r++]}while(void 0!==n);else if(void 0!==a.toArray)do{a=n[s],void 0!==a&&(e.push(n.time),a.toArray(i,i.length)),n=t[r++]}while(void 0!==n);else do{a=n[s],void 0!==a&&(e.push(n.time),i.push(a)),n=t[r++]}while(void 0!==n)}class pc{static convertArray(t,e){return lc(t,e)}static isTypedArray(t){return Gi(t)}static getKeyframeOrder(t){return cc(t)}static sortedArray(t,e,i){return uc(t,e,i)}static flattenJSON(t,e,i,s){dc(t,e,i,s)}static subclip(t,e,i,s,r=30){return function(t,e,i,s,r=30){const n=t.clone();n.name=e;const a=[];for(let t=0;t=s)){h.push(e.times[t]);for(let i=0;in.tracks[t].times[0]&&(o=n.tracks[t].times[0]);for(let t=0;t=s.times[u]){const t=u*h+o,e=t+h-o;d=s.values.slice(t,e)}else{const t=s.createInterpolant(),e=o,i=h-o;t.evaluate(n),d=t.resultBuffer.slice(e,i)}"quaternion"===r&&(new ws).fromArray(d).normalize().conjugate().toArray(d);const p=a.times.length;for(let t=0;t=r)){const a=e[1];t=r)break e}n=i,i=0;break i}break t}for(;i>>1;te;)--n;if(++n,0!==r||n!==s){r>=n&&(n=Math.max(n,1),r=n-1);const t=this.getValueSize();this.times=i.slice(r,n),this.values=this.values.slice(r*t,n*t)}return this}validate(){let t=!0;const e=this.getValueSize();e-Math.floor(e)!==0&&(ns("KeyframeTrack: Invalid value size in track.",this),t=!1);const i=this.times,s=this.values,r=i.length;0===r&&(ns("KeyframeTrack: Track is empty.",this),t=!1);let n=null;for(let e=0;e!==r;e++){const s=i[e];if("number"==typeof s&&isNaN(s)){ns("KeyframeTrack: Time is not a valid number.",this,e,s),t=!1;break}if(null!==n&&n>s){ns("KeyframeTrack: Out of order keys.",this,e,s,n),t=!1;break}n=s}if(void 0!==s&&Gi(s))for(let e=0,i=s.length;e!==i;++e){const i=s[e];if(isNaN(i)){ns("KeyframeTrack: Value is not a valid number.",this,e,i),t=!1;break}}return t}optimize(){const t=this.times.slice(),e=this.values.slice(),i=this.getValueSize(),s=this.getInterpolation()===Fe,r=t.length-1;let n=1;for(let a=1;a0){t[n]=t[r];for(let t=r*i,s=n*i,a=0;a!==i;++a)e[s+a]=e[t+a];++n}return n!==t.length?(this.times=t.slice(0,n),this.values=e.slice(0,n*i)):(this.times=t,this.values=e),this}clone(){const t=this.times.slice(),e=this.values.slice(),i=new(0,this.constructor)(this.name,t,e);return i.createInterpolant=this.createInterpolant,i}}xc.prototype.ValueTypeName="",xc.prototype.TimeBufferType=Float32Array,xc.prototype.ValueBufferType=Float32Array,xc.prototype.DefaultInterpolation=Ve;class bc extends xc{constructor(t,e,i){super(t,e,i)}}bc.prototype.ValueTypeName="bool",bc.prototype.ValueBufferType=Array,bc.prototype.DefaultInterpolation=Ne,bc.prototype.InterpolantFactoryMethodLinear=void 0,bc.prototype.InterpolantFactoryMethodSmooth=void 0;class vc extends xc{constructor(t,e,i,s){super(t,e,i,s)}}vc.prototype.ValueTypeName="color";class wc extends xc{constructor(t,e,i,s){super(t,e,i,s)}}wc.prototype.ValueTypeName="number";class Mc extends mc{constructor(t,e,i,s){super(t,e,i,s)}interpolate_(t,e,i,s){const r=this.resultBuffer,n=this.sampleValues,a=this.valueSize,o=(i-e)/(s-e);let h=t*a;for(let t=h+a;h!==t;h+=4)ws.slerpFlat(r,0,n,h-a,n,h,o);return r}}class Sc extends xc{constructor(t,e,i,s){super(t,e,i,s)}InterpolantFactoryMethodLinear(t){return new Mc(this.times,this.values,this.getValueSize(),t)}}Sc.prototype.ValueTypeName="quaternion",Sc.prototype.InterpolantFactoryMethodSmooth=void 0;class _c extends xc{constructor(t,e,i){super(t,e,i)}}_c.prototype.ValueTypeName="string",_c.prototype.ValueBufferType=Array,_c.prototype.DefaultInterpolation=Ne,_c.prototype.InterpolantFactoryMethodLinear=void 0,_c.prototype.InterpolantFactoryMethodSmooth=void 0;class Ac extends xc{constructor(t,e,i,s){super(t,e,i,s)}}Ac.prototype.ValueTypeName="vector";class Tc{constructor(t="",e=-1,i=[],s=2500){this.name=t,this.tracks=i,this.duration=e,this.blendMode=s,this.uuid=ps(),this.userData={},this.duration<0&&this.resetDuration()}static parse(t){const e=[],i=t.tracks,s=1/(t.fps||1);for(let t=0,r=i.length;t!==r;++t)e.push(zc(i[t]).scale(s));const r=new this(t.name,t.duration,e,t.blendMode);return r.uuid=t.uuid,r.userData=JSON.parse(t.userData||"{}"),r}static toJSON(t){const e=[],i=t.tracks,s={name:t.name,duration:t.duration,tracks:e,uuid:t.uuid,blendMode:t.blendMode,userData:JSON.stringify(t.userData)};for(let t=0,s=i.length;t!==s;++t)e.push(xc.toJSON(i[t]));return s}static CreateFromMorphTargetSequence(t,e,i,s){const r=e.length,n=[];for(let t=0;t1){const t=n[1];let e=s[t];e||(s[t]=e=[]),e.push(i)}}const n=[];for(const t in s)n.push(this.CreateFromMorphTargetSequence(t,s[t],e,i));return n}static parseAnimation(t,e){if(rs("AnimationClip: parseAnimation() is deprecated and will be removed with r185"),!t)return ns("AnimationClip: No animation in JSONLoader data."),null;const i=function(t,e,i,s,r){if(0!==i.length){const n=[],a=[];dc(i,n,a,s),0!==n.length&&r.push(new t(e,n,a))}},s=[],r=t.name||"default",n=t.fps||30,a=t.blendMode;let o=t.length||-1;const h=t.hierarchy||[];for(let t=0;t{e&&e(r),this.manager.itemEnd(t)},0),r;if(void 0!==Oc[t])return void Oc[t].push({onLoad:e,onProgress:i,onError:s});Oc[t]=[],Oc[t].push({onLoad:e,onProgress:i,onError:s});const n=new Request(t,{headers:new Headers(this.requestHeader),credentials:this.withCredentials?"include":"same-origin",signal:"function"==typeof AbortSignal.any?AbortSignal.any([this._abortController.signal,this.manager.abortController.signal]):this._abortController.signal}),a=this.mimeType,o=this.responseType;fetch(n).then(e=>{if(200===e.status||0===e.status){if(0===e.status&&rs("FileLoader: HTTP Status 0 received."),"undefined"==typeof ReadableStream||void 0===e.body||void 0===e.body.getReader)return e;const i=Oc[t],s=e.body.getReader(),r=e.headers.get("X-File-Size")||e.headers.get("Content-Length"),n=r?parseInt(r):0,a=0!==n;let o=0;const h=new ReadableStream({start(t){!function e(){s.read().then(({done:s,value:r})=>{if(s)t.close();else{o+=r.byteLength;const s=new ProgressEvent("progress",{lengthComputable:a,loaded:o,total:n});for(let t=0,e=i.length;t{t.error(e)})}()}});return new Response(h)}throw new Pc(`fetch for "${e.url}" responded with ${e.status}: ${e.statusText}`,e)}).then(t=>{switch(o){case"arraybuffer":return t.arrayBuffer();case"blob":return t.blob();case"document":return t.text().then(t=>(new DOMParser).parseFromString(t,a));case"json":return t.json();default:if(""===a)return t.text();{const e=/charset="?([^;"\s]*)"?/i.exec(a),i=e&&e[1]?e[1].toLowerCase():void 0,s=new TextDecoder(i);return t.arrayBuffer().then(t=>s.decode(t))}}}).then(e=>{Cc.add(`file:${t}`,e);const i=Oc[t];delete Oc[t];for(let t=0,s=i.length;t{const i=Oc[t];if(void 0===i)throw this.manager.itemError(t),e;delete Oc[t];for(let t=0,s=i.length;t{this.manager.itemEnd(t)}),this.manager.itemStart(t)}setResponseType(t){return this.responseType=t,this}setMimeType(t){return this.mimeType=t,this}abort(){return this._abortController.abort(),this._abortController=new AbortController,this}}class Nc extends kc{constructor(t){super(t)}load(t,e,i,s){const r=this,n=new Rc(this.manager);n.setPath(this.path),n.setRequestHeader(this.requestHeader),n.setWithCredentials(this.withCredentials),n.load(t,function(i){try{e(r.parse(JSON.parse(i)))}catch(e){s?s(e):ns(e),r.manager.itemError(t)}},i,s)}parse(t){const e=[];for(let i=0;i0:s.vertexColors=t.vertexColors),void 0!==t.uniforms)for(const e in t.uniforms){const r=t.uniforms[e];switch(s.uniforms[e]={},r.type){case"t":s.uniforms[e].value=i(r.value);break;case"c":s.uniforms[e].value=(new mn).setHex(r.value);break;case"v2":s.uniforms[e].value=(new vs).fromArray(r.value);break;case"v3":s.uniforms[e].value=(new Ms).fromArray(r.value);break;case"v4":s.uniforms[e].value=(new Ds).fromArray(r.value);break;case"m3":s.uniforms[e].value=(new As).fromArray(r.value);break;case"m4":s.uniforms[e].value=(new wr).fromArray(r.value);break;default:s.uniforms[e].value=r.value}}if(void 0!==t.defines&&(s.defines=t.defines),void 0!==t.vertexShader&&(s.vertexShader=t.vertexShader),void 0!==t.fragmentShader&&(s.fragmentShader=t.fragmentShader),void 0!==t.glslVersion&&(s.glslVersion=t.glslVersion),void 0!==t.extensions)for(const e in t.extensions)s.extensions[e]=t.extensions[e];if(void 0!==t.lights&&(s.lights=t.lights),void 0!==t.clipping&&(s.clipping=t.clipping),void 0!==t.size&&(s.size=t.size),void 0!==t.sizeAttenuation&&(s.sizeAttenuation=t.sizeAttenuation),void 0!==t.map&&(s.map=i(t.map)),void 0!==t.matcap&&(s.matcap=i(t.matcap)),void 0!==t.alphaMap&&(s.alphaMap=i(t.alphaMap)),void 0!==t.bumpMap&&(s.bumpMap=i(t.bumpMap)),void 0!==t.bumpScale&&(s.bumpScale=t.bumpScale),void 0!==t.normalMap&&(s.normalMap=i(t.normalMap)),void 0!==t.normalMapType&&(s.normalMapType=t.normalMapType),void 0!==t.normalScale){let e=t.normalScale;!1===Array.isArray(e)&&(e=[e,e]),s.normalScale=(new vs).fromArray(e)}return void 0!==t.displacementMap&&(s.displacementMap=i(t.displacementMap)),void 0!==t.displacementScale&&(s.displacementScale=t.displacementScale),void 0!==t.displacementBias&&(s.displacementBias=t.displacementBias),void 0!==t.roughnessMap&&(s.roughnessMap=i(t.roughnessMap)),void 0!==t.metalnessMap&&(s.metalnessMap=i(t.metalnessMap)),void 0!==t.emissiveMap&&(s.emissiveMap=i(t.emissiveMap)),void 0!==t.emissiveIntensity&&(s.emissiveIntensity=t.emissiveIntensity),void 0!==t.specularMap&&(s.specularMap=i(t.specularMap)),void 0!==t.specularIntensityMap&&(s.specularIntensityMap=i(t.specularIntensityMap)),void 0!==t.specularColorMap&&(s.specularColorMap=i(t.specularColorMap)),void 0!==t.envMap&&(s.envMap=i(t.envMap)),void 0!==t.envMapRotation&&s.envMapRotation.fromArray(t.envMapRotation),void 0!==t.envMapIntensity&&(s.envMapIntensity=t.envMapIntensity),void 0!==t.reflectivity&&(s.reflectivity=t.reflectivity),void 0!==t.refractionRatio&&(s.refractionRatio=t.refractionRatio),void 0!==t.lightMap&&(s.lightMap=i(t.lightMap)),void 0!==t.lightMapIntensity&&(s.lightMapIntensity=t.lightMapIntensity),void 0!==t.aoMap&&(s.aoMap=i(t.aoMap)),void 0!==t.aoMapIntensity&&(s.aoMapIntensity=t.aoMapIntensity),void 0!==t.gradientMap&&(s.gradientMap=i(t.gradientMap)),void 0!==t.clearcoatMap&&(s.clearcoatMap=i(t.clearcoatMap)),void 0!==t.clearcoatRoughnessMap&&(s.clearcoatRoughnessMap=i(t.clearcoatRoughnessMap)),void 0!==t.clearcoatNormalMap&&(s.clearcoatNormalMap=i(t.clearcoatNormalMap)),void 0!==t.clearcoatNormalScale&&(s.clearcoatNormalScale=(new vs).fromArray(t.clearcoatNormalScale)),void 0!==t.iridescenceMap&&(s.iridescenceMap=i(t.iridescenceMap)),void 0!==t.iridescenceThicknessMap&&(s.iridescenceThicknessMap=i(t.iridescenceThicknessMap)),void 0!==t.transmissionMap&&(s.transmissionMap=i(t.transmissionMap)),void 0!==t.thicknessMap&&(s.thicknessMap=i(t.thicknessMap)),void 0!==t.anisotropyMap&&(s.anisotropyMap=i(t.anisotropyMap)),void 0!==t.sheenColorMap&&(s.sheenColorMap=i(t.sheenColorMap)),void 0!==t.sheenRoughnessMap&&(s.sheenRoughnessMap=i(t.sheenRoughnessMap)),s}setTextures(t){return this.textures=t,this}createMaterialFromType(t){return hu.createMaterialFromType(t)}static createMaterialFromType(t){return new{ShadowMaterial:$l,SpriteMaterial:Ca,RawShaderMaterial:Ql,ShaderMaterial:la,PointsMaterial:hh,MeshPhysicalMaterial:tc,MeshStandardMaterial:Kl,MeshPhongMaterial:ec,MeshToonMaterial:ic,MeshNormalMaterial:sc,MeshLambertMaterial:rc,MeshDepthMaterial:nc,MeshDistanceMaterial:ac,MeshBasicMaterial:xn,MeshMatcapMaterial:oc,LineDashedMaterial:hc,LineBasicMaterial:Zo,Material:fn}[t]}}class lu{static extractUrlBase(t){const e=t.lastIndexOf("/");return-1===e?"./":t.slice(0,e+1)}static resolveURL(t,e){return"string"!=typeof t||""===t?"":(/^https?:\/\//i.test(e)&&/^\//.test(t)&&(e=e.replace(/(^https?:\/\/[^\/]+).*/i,"$1")),/^(https?:)?\/\//i.test(t)||/^data:.*,.*$/i.test(t)||/^blob:.*$/i.test(t)?t:e+t)}}class cu extends qn{constructor(){super(),this.isInstancedBufferGeometry=!0,this.type="InstancedBufferGeometry",this.instanceCount=1/0}copy(t){return super.copy(t),this.instanceCount=t.instanceCount,this}toJSON(){const t=super.toJSON();return t.instanceCount=this.instanceCount,t.isInstancedBufferGeometry=!0,t}}class uu extends kc{constructor(t){super(t)}load(t,e,i,s){const r=this,n=new Rc(r.manager);n.setPath(r.path),n.setRequestHeader(r.requestHeader),n.setWithCredentials(r.withCredentials),n.load(t,function(i){try{e(r.parse(JSON.parse(i)))}catch(e){s?s(e):ns(e),r.manager.itemError(t)}},i,s)}parse(t){const e={},i={};function s(t,s){if(void 0!==e[s])return e[s];const r=t.interleavedBuffers[s],n=function(t,e){if(void 0!==i[e])return i[e];const s=t.arrayBuffers,r=s[e],n=new Uint32Array(r).buffer;return i[e]=n,n}(t,r.buffer),a=Hi(r.type,n),o=new Aa(a,r.stride);return o.uuid=r.uuid,e[s]=o,o}const r=t.isInstancedBufferGeometry?new cu:new qn,n=t.data.index;if(void 0!==n){const t=Hi(n.type,n.array);r.setIndex(new zn(t,1))}const a=t.data.attributes;for(const e in a){const i=a[e];let n;if(i.isInterleavedBufferAttribute){const e=s(t.data,i.data);n=new za(e,i.itemSize,i.offset,i.normalized)}else{const t=Hi(i.type,i.array);n=new(i.isInstancedBufferAttribute?ho:zn)(t,i.itemSize,i.normalized)}void 0!==i.name&&(n.name=i.name),void 0!==i.usage&&n.setUsage(i.usage),r.setAttribute(e,n)}const o=t.data.morphAttributes;if(o)for(const e in o){const i=o[e],n=[];for(let e=0,r=i.length;e0){const i=new Ic(e);r=new Lc(i),r.setCrossOrigin(this.crossOrigin);for(let e=0,i=t.length;e0){s=new Lc(this.manager),s.setCrossOrigin(this.crossOrigin);for(let e=0,s=t.length;e{let e=null,i=null;return void 0!==t.boundingBox&&(e=(new Zs).fromJSON(t.boundingBox)),void 0!==t.boundingSphere&&(i=(new dr).fromJSON(t.boundingSphere)),{...t,boundingBox:e,boundingSphere:i}}),n._instanceInfo=t.instanceInfo,n._availableInstanceIds=t._availableInstanceIds,n._availableGeometryIds=t._availableGeometryIds,n._nextIndexStart=t.nextIndexStart,n._nextVertexStart=t.nextVertexStart,n._geometryCount=t.geometryCount,n._maxInstanceCount=t.maxInstanceCount,n._maxVertexCount=t.maxVertexCount,n._maxIndexCount=t.maxIndexCount,n._geometryInitialized=t.geometryInitialized,n._matricesTexture=c(t.matricesTexture.uuid),n._indirectTexture=c(t.indirectTexture.uuid),void 0!==t.colorsTexture&&(n._colorsTexture=c(t.colorsTexture.uuid)),void 0!==t.boundingSphere&&(n.boundingSphere=(new dr).fromJSON(t.boundingSphere)),void 0!==t.boundingBox&&(n.boundingBox=(new Zs).fromJSON(t.boundingBox));break;case"LOD":n=new Xa;break;case"Line":n=new ih(h(t.geometry),l(t.material));break;case"LineLoop":n=new oh(h(t.geometry),l(t.material));break;case"LineSegments":n=new ah(h(t.geometry),l(t.material));break;case"PointCloud":case"Points":n=new ph(h(t.geometry),l(t.material));break;case"Sprite":n=new Wa(l(t.material));break;case"Group":n=new ba;break;case"Bone":n=new so;break;default:n=new Zr}if(n.uuid=t.uuid,void 0!==t.name&&(n.name=t.name),void 0!==t.matrix?(n.matrix.fromArray(t.matrix),void 0!==t.matrixAutoUpdate&&(n.matrixAutoUpdate=t.matrixAutoUpdate),n.matrixAutoUpdate&&n.matrix.decompose(n.position,n.quaternion,n.scale)):(void 0!==t.position&&n.position.fromArray(t.position),void 0!==t.rotation&&n.rotation.fromArray(t.rotation),void 0!==t.quaternion&&n.quaternion.fromArray(t.quaternion),void 0!==t.scale&&n.scale.fromArray(t.scale)),void 0!==t.up&&n.up.fromArray(t.up),void 0!==t.castShadow&&(n.castShadow=t.castShadow),void 0!==t.receiveShadow&&(n.receiveShadow=t.receiveShadow),t.shadow&&(void 0!==t.shadow.intensity&&(n.shadow.intensity=t.shadow.intensity),void 0!==t.shadow.bias&&(n.shadow.bias=t.shadow.bias),void 0!==t.shadow.normalBias&&(n.shadow.normalBias=t.shadow.normalBias),void 0!==t.shadow.radius&&(n.shadow.radius=t.shadow.radius),void 0!==t.shadow.mapSize&&n.shadow.mapSize.fromArray(t.shadow.mapSize),void 0!==t.shadow.camera&&(n.shadow.camera=this.parseObject(t.shadow.camera))),void 0!==t.visible&&(n.visible=t.visible),void 0!==t.frustumCulled&&(n.frustumCulled=t.frustumCulled),void 0!==t.renderOrder&&(n.renderOrder=t.renderOrder),void 0!==t.userData&&(n.userData=t.userData),void 0!==t.layers&&(n.layers.mask=t.layers),void 0!==t.children){const a=t.children;for(let t=0;t{if(!0!==gu.has(n))return e&&e(i),r.manager.itemEnd(t),i;s&&s(gu.get(n)),r.manager.itemError(t),r.manager.itemEnd(t)}):(setTimeout(function(){e&&e(n),r.manager.itemEnd(t)},0),n);const a={};a.credentials="anonymous"===this.crossOrigin?"same-origin":"include",a.headers=this.requestHeader,a.signal="function"==typeof AbortSignal.any?AbortSignal.any([this._abortController.signal,this.manager.abortController.signal]):this._abortController.signal;const o=fetch(t,a).then(function(t){return t.blob()}).then(function(t){return createImageBitmap(t,Object.assign(r.options,{colorSpaceConversion:"none"}))}).then(function(i){return Cc.add(`image-bitmap:${t}`,i),e&&e(i),r.manager.itemEnd(t),i}).catch(function(e){s&&s(e),gu.set(o,e),Cc.remove(`image-bitmap:${t}`),r.manager.itemError(t),r.manager.itemEnd(t)});Cc.add(`image-bitmap:${t}`,o),r.manager.itemStart(t)}abort(){return this._abortController.abort(),this._abortController=new AbortController,this}}let xu;class bu{static getContext(){return void 0===xu&&(xu=new(window.AudioContext||window.webkitAudioContext)),xu}static setContext(t){xu=t}}class vu extends kc{constructor(t){super(t)}load(t,e,i,s){const r=this,n=new Rc(this.manager);function a(e){s?s(e):ns(e),r.manager.itemError(t)}n.setResponseType("arraybuffer"),n.setPath(this.path),n.setRequestHeader(this.requestHeader),n.setWithCredentials(this.withCredentials),n.load(t,function(t){try{const i=t.slice(0);bu.getContext().decodeAudioData(i,function(t){e(t)}).catch(a)}catch(t){a(t)}},i,s)}}const wu=new wr,Mu=new wr,Su=new wr;class _u{constructor(){this.type="StereoCamera",this.aspect=1,this.eyeSep=.064,this.cameraL=new ma,this.cameraL.layers.enable(1),this.cameraL.matrixAutoUpdate=!1,this.cameraR=new ma,this.cameraR.layers.enable(2),this.cameraR.matrixAutoUpdate=!1,this._cache={focus:null,fov:null,aspect:null,near:null,far:null,zoom:null,eyeSep:null}}update(t){const e=this._cache;if(e.focus!==t.focus||e.fov!==t.fov||e.aspect!==t.aspect*this.aspect||e.near!==t.near||e.far!==t.far||e.zoom!==t.zoom||e.eyeSep!==this.eyeSep){e.focus=t.focus,e.fov=t.fov,e.aspect=t.aspect*this.aspect,e.near=t.near,e.far=t.far,e.zoom=t.zoom,e.eyeSep=this.eyeSep,Su.copy(t.projectionMatrix);const i=e.eyeSep/2,s=i*e.near/e.focus,r=e.near*Math.tan(us*e.fov*.5)/e.zoom;let n,a;Mu.elements[12]=-i,wu.elements[12]=i,n=-r*e.aspect+s,a=r*e.aspect+s,Su.elements[0]=2*e.near/(a-n),Su.elements[8]=(a+n)/(a-n),this.cameraL.projectionMatrix.copy(Su),n=-r*e.aspect-s,a=r*e.aspect-s,Su.elements[0]=2*e.near/(a-n),Su.elements[8]=(a+n)/(a-n),this.cameraR.projectionMatrix.copy(Su)}this.cameraL.matrixWorld.copy(t.matrixWorld).multiply(Mu),this.cameraR.matrixWorld.copy(t.matrixWorld).multiply(wu)}}class Au extends ma{constructor(t=[]){super(),this.isArrayCamera=!0,this.isMultiViewCamera=!1,this.cameras=t}}class Tu{constructor(t=!0){this.autoStart=t,this.startTime=0,this.oldTime=0,this.elapsedTime=0,this.running=!1}start(){this.startTime=performance.now(),this.oldTime=this.startTime,this.elapsedTime=0,this.running=!0}stop(){this.getElapsedTime(),this.running=!1,this.autoStart=!1}getElapsedTime(){return this.getDelta(),this.elapsedTime}getDelta(){let t=0;if(this.autoStart&&!this.running)return this.start(),0;if(this.running){const e=performance.now();t=(e-this.oldTime)/1e3,this.oldTime=e,this.elapsedTime+=t}return t}}const zu=new Ms,Cu=new ws,Iu=new Ms,Bu=new Ms,ku=new Ms;class Ou extends Zr{constructor(){super(),this.type="AudioListener",this.context=bu.getContext(),this.gain=this.context.createGain(),this.gain.connect(this.context.destination),this.filter=null,this.timeDelta=0,this._clock=new Tu}getInput(){return this.gain}removeFilter(){return null!==this.filter&&(this.gain.disconnect(this.filter),this.filter.disconnect(this.context.destination),this.gain.connect(this.context.destination),this.filter=null),this}getFilter(){return this.filter}setFilter(t){return null!==this.filter?(this.gain.disconnect(this.filter),this.filter.disconnect(this.context.destination)):this.gain.disconnect(this.context.destination),this.filter=t,this.gain.connect(this.filter),this.filter.connect(this.context.destination),this}getMasterVolume(){return this.gain.gain.value}setMasterVolume(t){return this.gain.gain.setTargetAtTime(t,this.context.currentTime,.01),this}updateMatrixWorld(t){super.updateMatrixWorld(t);const e=this.context.listener;if(this.timeDelta=this._clock.getDelta(),this.matrixWorld.decompose(zu,Cu,Iu),Bu.set(0,0,-1).applyQuaternion(Cu),ku.set(0,1,0).applyQuaternion(Cu),e.positionX){const t=this.context.currentTime+this.timeDelta;e.positionX.linearRampToValueAtTime(zu.x,t),e.positionY.linearRampToValueAtTime(zu.y,t),e.positionZ.linearRampToValueAtTime(zu.z,t),e.forwardX.linearRampToValueAtTime(Bu.x,t),e.forwardY.linearRampToValueAtTime(Bu.y,t),e.forwardZ.linearRampToValueAtTime(Bu.z,t),e.upX.linearRampToValueAtTime(ku.x,t),e.upY.linearRampToValueAtTime(ku.y,t),e.upZ.linearRampToValueAtTime(ku.z,t)}else e.setPosition(zu.x,zu.y,zu.z),e.setOrientation(Bu.x,Bu.y,Bu.z,ku.x,ku.y,ku.z)}}class Pu extends Zr{constructor(t){super(),this.type="Audio",this.listener=t,this.context=t.context,this.gain=this.context.createGain(),this.gain.connect(t.getInput()),this.autoplay=!1,this.buffer=null,this.detune=0,this.loop=!1,this.loopStart=0,this.loopEnd=0,this.offset=0,this.duration=void 0,this.playbackRate=1,this.isPlaying=!1,this.hasPlaybackControl=!0,this.source=null,this.sourceType="empty",this._startedAt=0,this._progress=0,this._connected=!1,this.filters=[]}getOutput(){return this.gain}setNodeSource(t){return this.hasPlaybackControl=!1,this.sourceType="audioNode",this.source=t,this.connect(),this}setMediaElementSource(t){return this.hasPlaybackControl=!1,this.sourceType="mediaNode",this.source=this.context.createMediaElementSource(t),this.connect(),this}setMediaStreamSource(t){return this.hasPlaybackControl=!1,this.sourceType="mediaStreamNode",this.source=this.context.createMediaStreamSource(t),this.connect(),this}setBuffer(t){return this.buffer=t,this.sourceType="buffer",this.autoplay&&this.play(),this}play(t=0){if(!0===this.isPlaying)return void rs("Audio: Audio is already playing.");if(!1===this.hasPlaybackControl)return void rs("Audio: this Audio has no playback control.");this._startedAt=this.context.currentTime+t;const e=this.context.createBufferSource();return e.buffer=this.buffer,e.loop=this.loop,e.loopStart=this.loopStart,e.loopEnd=this.loopEnd,e.onended=this.onEnded.bind(this),e.start(this._startedAt,this._progress+this.offset,this.duration),this.isPlaying=!0,this.source=e,this.setDetune(this.detune),this.setPlaybackRate(this.playbackRate),this.connect()}pause(){if(!1!==this.hasPlaybackControl)return!0===this.isPlaying&&(this._progress+=Math.max(this.context.currentTime-this._startedAt,0)*this.playbackRate,!0===this.loop&&(this._progress=this._progress%(this.duration||this.buffer.duration)),this.source.stop(),this.source.onended=null,this.isPlaying=!1),this;rs("Audio: this Audio has no playback control.")}stop(t=0){if(!1!==this.hasPlaybackControl)return this._progress=0,null!==this.source&&(this.source.stop(this.context.currentTime+t),this.source.onended=null),this.isPlaying=!1,this;rs("Audio: this Audio has no playback control.")}connect(){if(this.filters.length>0){this.source.connect(this.filters[0]);for(let t=1,e=this.filters.length;t0){this.source.disconnect(this.filters[0]);for(let t=1,e=this.filters.length;t0&&this._mixBufferRegionAdditive(i,s,this._addIndex*e,1,e);for(let t=e,r=e+e;t!==r;++t)if(i[t]!==i[t+e]){a.setValue(i,s);break}}saveOriginalState(){const t=this.binding,e=this.buffer,i=this.valueSize,s=i*this._origIndex;t.getValue(e,s);for(let t=i,r=s;t!==r;++t)e[t]=e[s+t%i];this._setIdentity(),this.cumulativeWeight=0,this.cumulativeWeightAdditive=0}restoreOriginalState(){const t=3*this.valueSize;this.binding.setValue(this.buffer,t)}_setAdditiveIdentityNumeric(){const t=this._addIndex*this.valueSize,e=t+this.valueSize;for(let i=t;i=.5)for(let s=0;s!==r;++s)t[e+s]=t[i+s]}_slerp(t,e,i,s){ws.slerpFlat(t,e,t,e,t,i,s)}_slerpAdditive(t,e,i,s,r){const n=this._workIndex*r;ws.multiplyQuaternionsFlat(t,n,t,e,t,i),ws.slerpFlat(t,e,t,e,t,n,s)}_lerp(t,e,i,s,r){const n=1-s;for(let a=0;a!==r;++a){const r=e+a;t[r]=t[r]*n+t[i+a]*s}}_lerpAdditive(t,e,i,s,r){for(let n=0;n!==r;++n){const r=e+n;t[r]=t[r]+t[i+n]*s}}}const Du="\\[\\]\\.:\\/",Wu=new RegExp("["+Du+"]","g"),Uu="[^"+Du+"]",qu="[^"+Du.replace("\\.","")+"]",Ju=new RegExp("^"+/((?:WC+[\/:])*)/.source.replace("WC",Uu)+/(WCOD+)?/.source.replace("WCOD",qu)+/(?:\.(WC+)(?:\[(.+)\])?)?/.source.replace("WC",Uu)+/\.(WC+)(?:\[(.+)\])?/.source.replace("WC",Uu)+"$"),Xu=["material","materials","bones","map"];class Yu{constructor(t,e,i){this.path=e,this.parsedPath=i||Yu.parseTrackName(e),this.node=Yu.findNode(t,this.parsedPath.nodeName),this.rootNode=t,this.getValue=this._getValue_unbound,this.setValue=this._setValue_unbound}static create(t,e,i){return t&&t.isAnimationObjectGroup?new Yu.Composite(t,e,i):new Yu(t,e,i)}static sanitizeNodeName(t){return t.replace(/\s/g,"_").replace(Wu,"")}static parseTrackName(t){const e=Ju.exec(t);if(null===e)throw new Error("PropertyBinding: Cannot parse trackName: "+t);const i={nodeName:e[2],objectName:e[3],objectIndex:e[4],propertyName:e[5],propertyIndex:e[6]},s=i.nodeName&&i.nodeName.lastIndexOf(".");if(void 0!==s&&-1!==s){const t=i.nodeName.substring(s+1);-1!==Xu.indexOf(t)&&(i.nodeName=i.nodeName.substring(0,s),i.objectName=t)}if(null===i.propertyName||0===i.propertyName.length)throw new Error("PropertyBinding: can not parse propertyName from trackName: "+t);return i}static findNode(t,e){if(void 0===e||""===e||"."===e||-1===e||e===t.name||e===t.uuid)return t;if(t.skeleton){const i=t.skeleton.getBoneByName(e);if(void 0!==i)return i}if(t.children){const i=function(t){for(let s=0;s=r){const n=r++,l=t[n];e[l.uuid]=h,t[h]=l,e[o]=n,t[n]=a;for(let t=0,e=s;t!==e;++t){const e=i[t],s=e[n],r=e[h];e[h]=s,e[n]=r}}}this.nCachedObjects_=r}uncache(){const t=this._objects,e=this._indicesByUUID,i=this._bindings,s=i.length;let r=this.nCachedObjects_,n=t.length;for(let a=0,o=arguments.length;a!==o;++a){const o=arguments[a].uuid,h=e[o];if(void 0!==h)if(delete e[o],h0&&(e[a.uuid]=h),t[h]=a,t.pop();for(let t=0,e=s;t!==e;++t){const e=i[t];e[h]=e[r],e.pop()}}}this.nCachedObjects_=r}subscribe_(t,e){const i=this._bindingsIndicesByPath;let s=i[t];const r=this._bindings;if(void 0!==s)return r[s];const n=this._paths,a=this._parsedPaths,o=this._objects,h=o.length,l=this.nCachedObjects_,c=new Array(h);s=r.length,i[t]=s,n.push(t),a.push(e),r.push(c);for(let i=l,s=o.length;i!==s;++i){const s=o[i];c[i]=new Yu(s,t,e)}return c}unsubscribe_(t){const e=this._bindingsIndicesByPath,i=e[t];if(void 0!==i){const s=this._paths,r=this._parsedPaths,n=this._bindings,a=n.length-1,o=n[a];e[t[a]]=i,n[i]=o,n.pop(),r[i]=r[a],r.pop(),s[i]=s[a],s.pop()}}}class Hu{constructor(t,e,i=null,s=e.blendMode){this._mixer=t,this._clip=e,this._localRoot=i,this.blendMode=s;const r=e.tracks,n=r.length,a=new Array(n),o={endingStart:Le,endingEnd:Le};for(let t=0;t!==n;++t){const e=r[t].createInterpolant(null);a[t]=e,e.settings=o}this._interpolantSettings=o,this._interpolants=a,this._propertyBindings=new Array(n),this._cacheIndex=null,this._byClipCacheIndex=null,this._timeScaleInterpolant=null,this._weightInterpolant=null,this.loop=2201,this._loopCount=-1,this._startTime=null,this.time=0,this.timeScale=1,this._effectiveTimeScale=1,this.weight=1,this._effectiveWeight=1,this.repetitions=1/0,this.paused=!1,this.enabled=!0,this.clampWhenFinished=!1,this.zeroSlopeAtStart=!0,this.zeroSlopeAtEnd=!0}play(){return this._mixer._activateAction(this),this}stop(){return this._mixer._deactivateAction(this),this.reset()}reset(){return this.paused=!1,this.enabled=!0,this.time=0,this._loopCount=-1,this._startTime=null,this.stopFading().stopWarping()}isRunning(){return this.enabled&&!this.paused&&0!==this.timeScale&&null===this._startTime&&this._mixer._isActiveAction(this)}isScheduled(){return this._mixer._isActiveAction(this)}startAt(t){return this._startTime=t,this}setLoop(t,e){return this.loop=t,this.repetitions=e,this}setEffectiveWeight(t){return this.weight=t,this._effectiveWeight=this.enabled?t:0,this.stopFading()}getEffectiveWeight(){return this._effectiveWeight}fadeIn(t){return this._scheduleFading(t,0,1)}fadeOut(t){return this._scheduleFading(t,1,0)}crossFadeFrom(t,e,i=!1){if(t.fadeOut(e),this.fadeIn(e),!0===i){const i=this._clip.duration,s=t._clip.duration,r=s/i,n=i/s;t.warp(1,r,e),this.warp(n,1,e)}return this}crossFadeTo(t,e,i=!1){return t.crossFadeFrom(this,e,i)}stopFading(){const t=this._weightInterpolant;return null!==t&&(this._weightInterpolant=null,this._mixer._takeBackControlInterpolant(t)),this}setEffectiveTimeScale(t){return this.timeScale=t,this._effectiveTimeScale=this.paused?0:t,this.stopWarping()}getEffectiveTimeScale(){return this._effectiveTimeScale}setDuration(t){return this.timeScale=this._clip.duration/t,this.stopWarping()}syncWith(t){return this.time=t.time,this.timeScale=t.timeScale,this.stopWarping()}halt(t){return this.warp(this._effectiveTimeScale,0,t)}warp(t,e,i){const s=this._mixer,r=s.time,n=this.timeScale;let a=this._timeScaleInterpolant;null===a&&(a=s._lendControlInterpolant(),this._timeScaleInterpolant=a);const o=a.parameterPositions,h=a.sampleValues;return o[0]=r,o[1]=r+i,h[0]=t/n,h[1]=e/n,this}stopWarping(){const t=this._timeScaleInterpolant;return null!==t&&(this._timeScaleInterpolant=null,this._mixer._takeBackControlInterpolant(t)),this}getMixer(){return this._mixer}getClip(){return this._clip}getRoot(){return this._localRoot||this._mixer._root}_update(t,e,i,s){if(!this.enabled)return void this._updateWeight(t);const r=this._startTime;if(null!==r){const s=(t-r)*i;s<0||0===i?e=0:(this._startTime=null,e=i*s)}e*=this._updateTimeScale(t);const n=this._updateTime(e),a=this._updateWeight(t);if(a>0){const t=this._interpolants,e=this._propertyBindings;if(this.blendMode===We)for(let i=0,s=t.length;i!==s;++i)t[i].evaluate(n),e[i].accumulateAdditive(a);else for(let i=0,r=t.length;i!==r;++i)t[i].evaluate(n),e[i].accumulate(s,a)}}_updateWeight(t){let e=0;if(this.enabled){e=this.weight;const i=this._weightInterpolant;if(null!==i){const s=i.evaluate(t)[0];e*=s,t>i.parameterPositions[1]&&(this.stopFading(),0===s&&(this.enabled=!1))}}return this._effectiveWeight=e,e}_updateTimeScale(t){let e=0;if(!this.paused){e=this.timeScale;const i=this._timeScaleInterpolant;if(null!==i){e*=i.evaluate(t)[0],t>i.parameterPositions[1]&&(this.stopWarping(),0===e?this.paused=!0:this.timeScale=e)}}return this._effectiveTimeScale=e,e}_updateTime(t){const e=this._clip.duration,i=this.loop;let s=this.time+t,r=this._loopCount;const n=2202===i;if(0===t)return-1===r||!n||1&~r?s:e-s;if(2200===i){-1===r&&(this._loopCount=0,this._setEndings(!0,!0,!1));t:{if(s>=e)s=e;else{if(!(s<0)){this.time=s;break t}s=0}this.clampWhenFinished?this.paused=!0:this.enabled=!1,this.time=s,this._mixer.dispatchEvent({type:"finished",action:this,direction:t<0?-1:1})}}else{if(-1===r&&(t>=0?(r=0,this._setEndings(!0,0===this.repetitions,n)):this._setEndings(0===this.repetitions,!0,n)),s>=e||s<0){const i=Math.floor(s/e);s-=e*i,r+=Math.abs(i);const a=this.repetitions-r;if(a<=0)this.clampWhenFinished?this.paused=!0:this.enabled=!1,s=t>0?e:0,this.time=s,this._mixer.dispatchEvent({type:"finished",action:this,direction:t>0?1:-1});else{if(1===a){const e=t<0;this._setEndings(e,!e,n)}else this._setEndings(!1,!1,n);this._loopCount=r,this.time=s,this._mixer.dispatchEvent({type:"loop",action:this,loopDelta:i})}}else this.time=s;if(n&&!(1&~r))return e-s}return s}_setEndings(t,e,i){const s=this._interpolantSettings;i?(s.endingStart=Ee,s.endingEnd=Ee):(s.endingStart=t?this.zeroSlopeAtStart?Ee:Le:je,s.endingEnd=e?this.zeroSlopeAtEnd?Ee:Le:je)}_scheduleFading(t,e,i){const s=this._mixer,r=s.time;let n=this._weightInterpolant;null===n&&(n=s._lendControlInterpolant(),this._weightInterpolant=n);const a=n.parameterPositions,o=n.sampleValues;return a[0]=r,o[0]=e,a[1]=r+t,o[1]=i,this}}const Gu=new Float32Array(1);class $u extends hs{constructor(t){super(),this._root=t,this._initMemoryManager(),this._accuIndex=0,this.time=0,this.timeScale=1}_bindAction(t,e){const i=t._localRoot||this._root,s=t._clip.tracks,r=s.length,n=t._propertyBindings,a=t._interpolants,o=i.uuid,h=this._bindingsByRootAndName;let l=h[o];void 0===l&&(l={},h[o]=l);for(let t=0;t!==r;++t){const r=s[t],h=r.name;let c=l[h];if(void 0!==c)++c.referenceCount,n[t]=c;else{if(c=n[t],void 0!==c){null===c._cacheIndex&&(++c.referenceCount,this._addInactiveBinding(c,o,h));continue}const s=e&&e._propertyBindings[t].binding.parsedPath;c=new ju(Yu.create(i,h,s),r.ValueTypeName,r.getValueSize()),++c.referenceCount,this._addInactiveBinding(c,o,h),n[t]=c}a[t].resultBuffer=c.buffer}}_activateAction(t){if(!this._isActiveAction(t)){if(null===t._cacheIndex){const e=(t._localRoot||this._root).uuid,i=t._clip.uuid,s=this._actionsByClip[i];this._bindAction(t,s&&s.knownActions[0]),this._addInactiveAction(t,i,e)}const e=t._propertyBindings;for(let t=0,i=e.length;t!==i;++t){const i=e[t];0===i.useCount++&&(this._lendBinding(i),i.saveOriginalState())}this._lendAction(t)}}_deactivateAction(t){if(this._isActiveAction(t)){const e=t._propertyBindings;for(let t=0,i=e.length;t!==i;++t){const i=e[t];0===--i.useCount&&(i.restoreOriginalState(),this._takeBackBinding(i))}this._takeBackAction(t)}}_initMemoryManager(){this._actions=[],this._nActiveActions=0,this._actionsByClip={},this._bindings=[],this._nActiveBindings=0,this._bindingsByRootAndName={},this._controlInterpolants=[],this._nActiveControlInterpolants=0;const t=this;this.stats={actions:{get total(){return t._actions.length},get inUse(){return t._nActiveActions}},bindings:{get total(){return t._bindings.length},get inUse(){return t._nActiveBindings}},controlInterpolants:{get total(){return t._controlInterpolants.length},get inUse(){return t._nActiveControlInterpolants}}}}_isActiveAction(t){const e=t._cacheIndex;return null!==e&&e=0;--e)t[e].stop();return this}update(t){t*=this.timeScale;const e=this._actions,i=this._nActiveActions,s=this.time+=t,r=Math.sign(t),n=this._accuIndex^=1;for(let a=0;a!==i;++a){e[a]._update(s,t,r,n)}const a=this._bindings,o=this._nActiveBindings;for(let t=0;t!==o;++t)a[t].apply(n);return this}setTime(t){this.time=0;for(let t=0;t=this.min.x&&t.x<=this.max.x&&t.y>=this.min.y&&t.y<=this.max.y}containsBox(t){return this.min.x<=t.min.x&&t.max.x<=this.max.x&&this.min.y<=t.min.y&&t.max.y<=this.max.y}getParameter(t,e){return e.set((t.x-this.min.x)/(this.max.x-this.min.x),(t.y-this.min.y)/(this.max.y-this.min.y))}intersectsBox(t){return t.max.x>=this.min.x&&t.min.x<=this.max.x&&t.max.y>=this.min.y&&t.min.y<=this.max.y}clampPoint(t,e){return e.copy(t).clamp(this.min,this.max)}distanceToPoint(t){return this.clampPoint(t,pd).distanceTo(t)}intersect(t){return this.min.max(t.min),this.max.min(t.max),this.isEmpty()&&this.makeEmpty(),this}union(t){return this.min.min(t.min),this.max.max(t.max),this}translate(t){return this.min.add(t),this.max.add(t),this}equals(t){return t.min.equals(this.min)&&t.max.equals(this.max)}}const yd=new Ms,gd=new Ms,fd=new Ms,xd=new Ms,bd=new Ms,vd=new Ms,wd=new Ms;class Md{constructor(t=new Ms,e=new Ms){this.start=t,this.end=e}set(t,e){return this.start.copy(t),this.end.copy(e),this}copy(t){return this.start.copy(t.start),this.end.copy(t.end),this}getCenter(t){return t.addVectors(this.start,this.end).multiplyScalar(.5)}delta(t){return t.subVectors(this.end,this.start)}distanceSq(){return this.start.distanceToSquared(this.end)}distance(){return this.start.distanceTo(this.end)}at(t,e){return this.delta(e).multiplyScalar(t).add(this.start)}closestPointToPointParameter(t,e){yd.subVectors(t,this.start),gd.subVectors(this.end,this.start);const i=gd.dot(gd);let s=gd.dot(yd)/i;return e&&(s=ms(s,0,1)),s}closestPointToPoint(t,e,i){const s=this.closestPointToPointParameter(t,e);return this.delta(i).multiplyScalar(s).add(this.start)}distanceSqToLine3(t,e=vd,i=wd){const s=1e-8*1e-8;let r,n;const a=this.start,o=t.start,h=this.end,l=t.end;fd.subVectors(h,a),xd.subVectors(l,o),bd.subVectors(a,o);const c=fd.dot(fd),u=xd.dot(xd),d=xd.dot(bd);if(c<=s&&u<=s)return e.copy(a),i.copy(o),e.sub(i),e.dot(e);if(c<=s)r=0,n=d/u,n=ms(n,0,1);else{const t=fd.dot(bd);if(u<=s)n=0,r=ms(-t/c,0,1);else{const e=fd.dot(xd),i=c*u-e*e;r=0!==i?ms((e*d-t*u)/i,0,1):0,n=(e*r+d)/u,n<0?(n=0,r=ms(-t/c,0,1)):n>1&&(n=1,r=ms((e-t)/c,0,1))}}return e.copy(a).add(fd.multiplyScalar(r)),i.copy(o).add(xd.multiplyScalar(n)),e.sub(i),e.dot(e)}applyMatrix4(t){return this.start.applyMatrix4(t),this.end.applyMatrix4(t),this}equals(t){return t.start.equals(this.start)&&t.end.equals(this.end)}clone(){return(new this.constructor).copy(this)}}const Sd=new Ms;class _d extends Zr{constructor(t,e){super(),this.light=t,this.matrixAutoUpdate=!1,this.color=e,this.type="SpotLightHelper";const i=new qn,s=[0,0,0,0,0,1,0,0,0,1,0,1,0,0,0,-1,0,1,0,0,0,0,1,1,0,0,0,0,-1,1];for(let t=0,e=1,i=32;t1)for(let i=0;i.99999)this.quaternion.set(0,0,0,1);else if(t.y<-.99999)this.quaternion.set(1,0,0,0);else{Hd.set(t.z,0,-t.x).normalize();const e=Math.acos(t.y);this.quaternion.setFromAxisAngle(Hd,e)}}setLength(t,e=.2*t,i=.2*e){this.line.scale.set(1,Math.max(1e-4,t-e),1),this.line.updateMatrix(),this.cone.scale.set(i,e,i),this.cone.position.y=t,this.cone.updateMatrix()}setColor(t){this.line.material.color.set(t),this.cone.material.color.set(t)}copy(t){return super.copy(t,!1),this.line.copy(t.line),this.cone.copy(t.cone),this}dispose(){this.line.geometry.dispose(),this.line.material.dispose(),this.cone.geometry.dispose(),this.cone.material.dispose()}}class Kd extends ah{constructor(t=1){const e=[0,0,0,t,0,0,0,0,0,0,t,0,0,0,0,0,0,t],i=new qn;i.setAttribute("position",new Vn(e,3)),i.setAttribute("color",new Vn([1,0,0,1,.6,0,0,1,0,.6,1,0,0,0,1,0,.6,1],3));super(i,new Zo({vertexColors:!0,toneMapped:!1})),this.type="AxesHelper"}setColors(t,e,i){const s=new mn,r=this.geometry.attributes.color.array;return s.set(t),s.toArray(r,0),s.toArray(r,3),s.set(e),s.toArray(r,6),s.toArray(r,9),s.set(i),s.toArray(r,12),s.toArray(r,15),this.geometry.attributes.color.needsUpdate=!0,this}dispose(){this.geometry.dispose(),this.material.dispose()}}class tp{constructor(){this.type="ShapePath",this.color=new mn,this.subPaths=[],this.currentPath=null}moveTo(t,e){return this.currentPath=new sl,this.subPaths.push(this.currentPath),this.currentPath.moveTo(t,e),this}lineTo(t,e){return this.currentPath.lineTo(t,e),this}quadraticCurveTo(t,e,i,s){return this.currentPath.quadraticCurveTo(t,e,i,s),this}bezierCurveTo(t,e,i,s,r,n){return this.currentPath.bezierCurveTo(t,e,i,s,r,n),this}splineThru(t){return this.currentPath.splineThru(t),this}toShapes(t){function e(t,e){const i=e.length;let s=!1;for(let r=i-1,n=0;nNumber.EPSILON){if(h<0&&(i=e[n],o=-o,a=e[r],h=-h),t.ya.y)continue;if(t.y===i.y){if(t.x===i.x)return!0}else{const e=h*(t.x-i.x)-o*(t.y-i.y);if(0===e)return!0;if(e<0)continue;s=!s}}else{if(t.y!==i.y)continue;if(a.x<=t.x&&t.x<=i.x||i.x<=t.x&&t.x<=a.x)return!0}}return s}const i=Ol.isClockWise,s=this.subPaths;if(0===s.length)return[];let r,n,a;const o=[];if(1===s.length)return n=s[0],a=new rl,a.curves=n.curves,o.push(a),o;let h=!i(s[0].getPoints());h=t?!h:h;const l=[],c=[];let u,d,p=[],m=0;c[m]=void 0,p[m]=[];for(let e=0,a=s.length;e1){let t=!1,i=0;for(let t=0,e=c.length;t0&&!1===t&&(p=l)}for(let t=0,e=c.length;te?(t.repeat.x=1,t.repeat.y=i/e,t.offset.x=0,t.offset.y=(1-t.repeat.y)/2):(t.repeat.x=e/i,t.repeat.y=1,t.offset.x=(1-t.repeat.x)/2,t.offset.y=0),t}(t,e)}static cover(t,e){return function(t,e){const i=t.image&&t.image.width?t.image.width/t.image.height:1;return i>e?(t.repeat.x=e/i,t.repeat.y=1,t.offset.x=(1-t.repeat.x)/2,t.offset.y=0):(t.repeat.x=1,t.repeat.y=i/e,t.offset.x=0,t.offset.y=(1-t.repeat.y)/2),t}(t,e)}static fill(t){return function(t){return t.repeat.x=1,t.repeat.y=1,t.offset.x=0,t.offset.y=0,t}(t)}static getByteLength(t,e,i,s){return ip(t,e,i,s)}}"undefined"!=typeof __THREE_DEVTOOLS__&&__THREE_DEVTOOLS__.dispatchEvent(new CustomEvent("register",{detail:{revision:t}})),"undefined"!=typeof window&&(window.__THREE__?rs("WARNING: Multiple instances of Three.js being imported."):window.__THREE__=t);export{et as ACESFilmicToneMapping,v as AddEquation,G as AddOperation,We as AdditiveAnimationBlendMode,g as AdditiveBlending,st as AgXToneMapping,Et as AlphaFormat,Bi as AlwaysCompare,D as AlwaysDepth,Mi as AlwaysStencilFunc,ru as AmbientLight,Hu as AnimationAction,Tc as AnimationClip,Nc as AnimationLoader,$u as AnimationMixer,Zu as AnimationObjectGroup,pc as AnimationUtils,Lh as ArcCurve,Au as ArrayCamera,Qd as ArrowHelper,nt as AttachedBindMode,Pu as Audio,Eu as AudioAnalyser,bu as AudioContext,Ou as AudioListener,vu as AudioLoader,Kd as AxesHelper,d as BackSide,Xe as BasicDepthPacking,o as BasicShadowMap,Yo as BatchedMesh,so as Bone,bc as BooleanKeyframeTrack,md as Box2,Zs as Box3,Yd as Box3Helper,ra as BoxGeometry,Xd as BoxHelper,zn as BufferAttribute,qn as BufferGeometry,uu as BufferGeometryLoader,zt as ByteType,Cc as Cache,ca as Camera,Ud as CameraHelper,wh as CanvasTexture,Ah as CapsuleGeometry,qh as CatmullRomCurve3,tt as CineonToneMapping,Th as CircleGeometry,mt as ClampToEdgeWrapping,Tu as Clock,mn as Color,vc as ColorKeyframeTrack,Bs as ColorManagement,bh as CompressedArrayTexture,vh as CompressedCubeTexture,xh as CompressedTexture,Vc as CompressedTextureLoader,Ch as ConeGeometry,L as ConstantAlphaFactor,V as ConstantColorFactor,ep as Controls,ga as CubeCamera,Sh as CubeDepthTexture,ht as CubeReflectionMapping,lt as CubeRefractionMapping,fa as CubeTexture,Ec as CubeTextureLoader,dt as CubeUVReflectionMapping,Zh as CubicBezierCurve,Hh as CubicBezierCurve3,yc as CubicInterpolant,r as CullFaceBack,n as CullFaceFront,a as CullFaceFrontBack,s as CullFaceNone,Vh as Curve,il as CurvePath,b as CustomBlending,it as CustomToneMapping,zh as CylinderGeometry,ud as Cylindrical,Xs as Data3DTexture,qs as DataArrayTexture,ro as DataTexture,jc as DataTextureLoader,Sn as DataUtils,ui as DecrementStencilOp,pi as DecrementWrapStencilOp,Bc as DefaultLoadingManager,Wt as DepthFormat,Ut as DepthStencilFormat,Mh as DepthTexture,at as DetachedBindMode,su as DirectionalLight,jd as DirectionalLightHelper,fc as DiscreteInterpolant,Bh as DodecahedronGeometry,p as DoubleSide,k as DstAlphaFactor,P as DstColorFactor,Li as DynamicCopyUsage,Oi as DynamicDrawUsage,Ni as DynamicReadUsage,Nh as EdgesGeometry,Fh as EllipseCurve,Ai as EqualCompare,q as EqualDepth,fi as EqualStencilFunc,ct as EquirectangularReflectionMapping,ut as EquirectangularRefractionMapping,kr as Euler,hs as EventDispatcher,_h as ExternalTexture,Nl as ExtrudeGeometry,Rc as FileLoader,Nn as Float16BufferAttribute,Vn as Float32BufferAttribute,Ot as FloatType,Sa as Fog,Ma as FogExp2,fh as FramebufferTexture,u as FrontSide,Ao as Frustum,Co as FrustumArray,sd as GLBufferAttribute,ji as GLSL1,Di as GLSL3,zi as GreaterCompare,X as GreaterDepth,Ii as GreaterEqualCompare,J as GreaterEqualDepth,wi as GreaterEqualStencilFunc,bi as GreaterStencilFunc,Nd as GridHelper,ba as Group,Pt as HalfFloatType,Uc as HemisphereLight,Rd as HemisphereLightHelper,Fl as IcosahedronGeometry,Ge as IdentityDepthPacking,fu as ImageBitmapLoader,Lc as ImageLoader,Rs as ImageUtils,ci as IncrementStencilOp,di as IncrementWrapStencilOp,ho as InstancedBufferAttribute,cu as InstancedBufferGeometry,id as InstancedInterleavedBuffer,fo as InstancedMesh,kn as Int16BufferAttribute,Pn as Int32BufferAttribute,Cn as Int8BufferAttribute,Bt as IntType,Aa as InterleavedBuffer,za as InterleavedBufferAttribute,mc as Interpolant,Ne as InterpolateDiscrete,Ve as InterpolateLinear,Fe as InterpolateSmooth,Xi as InterpolationSamplingMode,Ji as InterpolationSamplingType,mi as InvertStencilOp,hi as KeepStencilOp,xc as KeyframeTrack,Xa as LOD,Ll as LatheGeometry,Or as Layers,_i as LessCompare,W as LessDepth,Ti as LessEqualCompare,U as LessEqualDepth,xi as LessEqualStencilFunc,gi as LessStencilFunc,Wc as Light,ou as LightProbe,ih as Line,Md as Line3,Zo as LineBasicMaterial,Gh as LineCurve,$h as LineCurve3,hc as LineDashedMaterial,oh as LineLoop,ah as LineSegments,wt as LinearFilter,gc as LinearInterpolant,At as LinearMipMapLinearFilter,St as LinearMipMapNearestFilter,_t as LinearMipmapLinearFilter,Mt as LinearMipmapNearestFilter,ei as LinearSRGBColorSpace,Q as LinearToneMapping,ii as LinearTransfer,kc as Loader,lu as LoaderUtils,Ic as LoadingManager,Oe as LoopOnce,Re as LoopPingPong,Pe as LoopRepeat,e as MOUSE,fn as Material,hu as MaterialLoader,bs as MathUtils,dd as Matrix2,As as Matrix3,wr as Matrix4,_ as MaxEquation,ia as Mesh,xn as MeshBasicMaterial,nc as MeshDepthMaterial,ac as MeshDistanceMaterial,rc as MeshLambertMaterial,oc as MeshMatcapMaterial,sc as MeshNormalMaterial,ec as MeshPhongMaterial,tc as MeshPhysicalMaterial,Kl as MeshStandardMaterial,ic as MeshToonMaterial,S as MinEquation,yt as MirroredRepeatWrapping,H as MixOperation,x as MultiplyBlending,Z as MultiplyOperation,gt as NearestFilter,vt as NearestMipMapLinearFilter,xt as NearestMipMapNearestFilter,bt as NearestMipmapLinearFilter,ft as NearestMipmapNearestFilter,rt as NeutralToneMapping,Si as NeverCompare,j as NeverDepth,yi as NeverStencilFunc,m as NoBlending,Ke as NoColorSpace,ri as NoNormalPacking,$ as NoToneMapping,De as NormalAnimationBlendMode,y as NormalBlending,ai as NormalGAPacking,ni as NormalRGPacking,Ci as NotEqualCompare,Y as NotEqualDepth,vi as NotEqualStencilFunc,wc as NumberKeyframeTrack,Zr as Object3D,du as ObjectLoader,Qe as ObjectSpaceNormalMap,El as OctahedronGeometry,T as OneFactor,E as OneMinusConstantAlphaFactor,F as OneMinusConstantColorFactor,O as OneMinusDstAlphaFactor,R as OneMinusDstColorFactor,B as OneMinusSrcAlphaFactor,C as OneMinusSrcColorFactor,eu as OrthographicCamera,h as PCFShadowMap,l as PCFSoftShadowMap,sl as Path,ma as PerspectiveCamera,wo as Plane,jl as PlaneGeometry,Zd as PlaneHelper,tu as PointLight,Bd as PointLightHelper,ph as Points,hh as PointsMaterial,Vd as PolarGridHelper,Ih as PolyhedronGeometry,Lu as PositionalAudio,Yu as PropertyBinding,ju as PropertyMixer,Qh as QuadraticBezierCurve,Kh as QuadraticBezierCurve3,ws as Quaternion,Sc as QuaternionKeyframeTrack,Mc as QuaternionLinearInterpolant,oe as R11_EAC_Format,ds as RAD2DEG,Be as RED_GREEN_RGTC2_Format,Ce as RED_RGTC1_Format,t as REVISION,le as RG11_EAC_Format,Ye as RGBADepthPacking,Dt as RGBAFormat,Ht as RGBAIntegerFormat,Me as RGBA_ASTC_10x10_Format,be as RGBA_ASTC_10x5_Format,ve as RGBA_ASTC_10x6_Format,we as RGBA_ASTC_10x8_Format,Se as RGBA_ASTC_12x10_Format,_e as RGBA_ASTC_12x12_Format,ue as RGBA_ASTC_4x4_Format,de as RGBA_ASTC_5x4_Format,pe as RGBA_ASTC_5x5_Format,me as RGBA_ASTC_6x5_Format,ye as RGBA_ASTC_6x6_Format,ge as RGBA_ASTC_8x5_Format,fe as RGBA_ASTC_8x6_Format,xe as RGBA_ASTC_8x8_Format,Ae as RGBA_BPTC_Format,ae as RGBA_ETC2_EAC_Format,se as RGBA_PVRTC_2BPPV1_Format,ie as RGBA_PVRTC_4BPPV1_Format,$t as RGBA_S3TC_DXT1_Format,Qt as RGBA_S3TC_DXT3_Format,Kt as RGBA_S3TC_DXT5_Format,Ze as RGBDepthPacking,jt as RGBFormat,Zt as RGBIntegerFormat,Te as RGB_BPTC_SIGNED_Format,ze as RGB_BPTC_UNSIGNED_Format,re as RGB_ETC1_Format,ne as RGB_ETC2_Format,ee as RGB_PVRTC_2BPPV1_Format,te as RGB_PVRTC_4BPPV1_Format,Gt as RGB_S3TC_DXT1_Format,He as RGDepthPacking,Xt as RGFormat,Yt as RGIntegerFormat,Ql as RawShaderMaterial,vr as Ray,nd as Raycaster,nu as RectAreaLight,qt as RedFormat,Jt as RedIntegerFormat,K as ReinhardToneMapping,Ws as RenderTarget,Qu as RenderTarget3D,pt as RepeatWrapping,li as ReplaceStencilOp,M as ReverseSubtractEquation,Dl as RingGeometry,he as SIGNED_R11_EAC_Format,ke as SIGNED_RED_GREEN_RGTC2_Format,Ie as SIGNED_RED_RGTC1_Format,ce as SIGNED_RG11_EAC_Format,ti as SRGBColorSpace,si as SRGBTransfer,_a as Scene,la as ShaderMaterial,$l as ShadowMaterial,rl as Shape,Wl as ShapeGeometry,tp as ShapePath,Ol as ShapeUtils,Ct as ShortType,oo as Skeleton,Cd as SkeletonHelper,io as SkinnedMesh,Vs as Source,dr as Sphere,Ul as SphereGeometry,cd as Spherical,au as SphericalHarmonics3,tl as SplineCurve,Hc as SpotLight,_d as SpotLightHelper,Wa as Sprite,Ca as SpriteMaterial,I as SrcAlphaFactor,N as SrcAlphaSaturateFactor,z as SrcColorFactor,Fi as StaticCopyUsage,ki as StaticDrawUsage,Ri as StaticReadUsage,_u as StereoCamera,Ei as StreamCopyUsage,Pi as StreamDrawUsage,Vi as StreamReadUsage,_c as StringKeyframeTrack,w as SubtractEquation,f as SubtractiveBlending,i as TOUCH,$e as TangentSpaceNormalMap,ql as TetrahedronGeometry,js as Texture,Dc as TextureLoader,sp as TextureUtils,hd as Timer,qi as TimestampQuery,Jl as TorusGeometry,Xl as TorusKnotGeometry,ln as Triangle,Je as TriangleFanDrawMode,qe as TriangleStripDrawMode,Ue as TrianglesDrawMode,Yl as TubeGeometry,ot as UVMapping,On as Uint16BufferAttribute,Rn as Uint32BufferAttribute,In as Uint8BufferAttribute,Bn as Uint8ClampedBufferAttribute,Ku as Uniform,ed as UniformsGroup,ha as UniformsUtils,Tt as UnsignedByteType,Lt as UnsignedInt101111Type,Vt as UnsignedInt248Type,Ft as UnsignedInt5999Type,kt as UnsignedIntType,Rt as UnsignedShort4444Type,Nt as UnsignedShort5551Type,It as UnsignedShortType,c as VSMShadowMap,vs as Vector2,Ms as Vector3,Ds as Vector4,Ac as VectorKeyframeTrack,gh as VideoFrameTexture,yh as VideoTexture,Ys as WebGL3DRenderTarget,Js as WebGLArrayRenderTarget,Wi as WebGLCoordinateSystem,xa as WebGLCubeRenderTarget,Us as WebGLRenderTarget,Ui as WebGPUCoordinateSystem,wa as WebXRController,Zl as WireframeGeometry,je as WrapAroundEnding,Le as ZeroCurvatureEnding,A as ZeroFactor,Ee as ZeroSlopeEnding,oi as ZeroStencilOp,Yi as arrayNeedsUint32,na as cloneUniforms,Qi as createCanvasElement,$i as createElementNS,ns as error,ip as getByteLength,is as getConsoleFunction,oa as getUnlitUniformColorSpace,Gi as isTypedArray,ss as log,aa as mergeUniforms,os as probeAsync,es as setConsoleFunction,rs as warn,as as warnOnce}; diff --git a/build/three.tsl.js b/build/three.tsl.js index 5e10ce80e10b9b..ebddd8a22e1251 100644 --- a/build/three.tsl.js +++ b/build/three.tsl.js @@ -12,7 +12,7 @@ const BasicShadowFilter = TSL.BasicShadowFilter; const Break = TSL.Break; const Const = TSL.Const; const Continue = TSL.Continue; -const DFGApprox = TSL.DFGApprox; +const DFGLUT = TSL.DFGLUT; const D_GGX = TSL.D_GGX; const Discard = TSL.Discard; const EPSILON = TSL.EPSILON; @@ -649,4 +649,4 @@ for ( const key of Object.keys( THREE.TSL ) ) { log( code ); //*/ -export { BRDF_GGX, BRDF_Lambert, BasicPointShadowFilter, BasicShadowFilter, Break, Const, Continue, DFGApprox, D_GGX, Discard, EPSILON, F_Schlick, Fn, HALF_PI, INFINITY, If, Loop, NodeAccess, NodeShaderStage, NodeType, NodeUpdateType, OnBeforeMaterialUpdate, OnBeforeObjectUpdate, OnMaterialUpdate, OnObjectUpdate, PCFShadowFilter, PCFSoftShadowFilter, PI, PI2, PointShadowFilter, Return, Schlick_to_F0, ScriptableNodeResources, ShaderNode, Stack, Switch, TBNViewMatrix, TWO_PI, VSMShadowFilter, V_GGX_SmithCorrelated, Var, VarIntent, abs, acesFilmicToneMapping, acos, add, addMethodChaining, addNodeElement, agxToneMapping, all, alphaT, and, anisotropy, anisotropyB, anisotropyT, any, append, array, arrayBuffer, asin, assign, atan, atan2, atomicAdd, atomicAnd, atomicFunc, atomicLoad, atomicMax, atomicMin, atomicOr, atomicStore, atomicSub, atomicXor, attenuationColor, attenuationDistance, attribute, attributeArray, backgroundBlurriness, backgroundIntensity, backgroundRotation, batch, bentNormalView, billboarding, bitAnd, bitNot, bitOr, bitXor, bitangentGeometry, bitangentLocal, bitangentView, bitangentWorld, bitcast, blendBurn, blendColor, blendDodge, blendOverlay, blendScreen, blur, bool, buffer, bufferAttribute, builtin, builtinAOContext, builtinShadowContext, bumpMap, burn, bvec2, bvec3, bvec4, bypass, cache, call, cameraFar, cameraIndex, cameraNear, cameraNormalMatrix, cameraPosition, cameraProjectionMatrix, cameraProjectionMatrixInverse, cameraViewMatrix, cameraViewport, cameraWorldMatrix, cbrt, cdl, ceil, checker, cineonToneMapping, clamp, clearcoat, clearcoatNormalView, clearcoatRoughness, code, color, colorSpaceToWorking, colorToDirection, compute, computeKernel, computeSkinning, context, convert, convertColorSpace, convertToTexture, cos, countLeadingZeros, countOneBits, countTrailingZeros, cross, cubeTexture, cubeTextureBase, dFdx, dFdy, dashSize, debug, decrement, decrementBefore, defaultBuildStages, defaultShaderStages, defined, degrees, deltaTime, densityFog, densityFogFactor, depth, depthPass, determinant, difference, diffuseColor, directPointLight, directionToColor, directionToFaceDirection, dispersion, distance, div, dodge, dot, drawIndex, dynamicBufferAttribute, element, emissive, equal, equals, equirectUV, exp, exp2, expression, faceDirection, faceForward, faceforward, float, floatBitsToInt, floatBitsToUint, floor, fog, fract, frameGroup, frameId, frontFacing, fwidth, gain, gapSize, getConstNodeType, getCurrentStack, getDirection, getDistanceAttenuation, getGeometryRoughness, getNormalFromDepth, getParallaxCorrectNormal, getRoughness, getScreenPosition, getShIrradianceAt, getShadowMaterial, getShadowRenderObjectFunction, getTextureIndex, getViewPosition, globalId, glsl, glslFn, grayscale, greaterThan, greaterThanEqual, hash, highpModelNormalViewMatrix, highpModelViewMatrix, hue, increment, incrementBefore, instance, instanceIndex, instancedArray, instancedBufferAttribute, instancedDynamicBufferAttribute, instancedMesh, int, intBitsToFloat, interleavedGradientNoise, inverse, inverseSqrt, inversesqrt, invocationLocalIndex, invocationSubgroupIndex, ior, iridescence, iridescenceIOR, iridescenceThickness, ivec2, ivec3, ivec4, js, label, length, lengthSq, lessThan, lessThanEqual, lightPosition, lightProjectionUV, lightShadowMatrix, lightTargetDirection, lightTargetPosition, lightViewPosition, lightingContext, lights, linearDepth, linearToneMapping, localId, log, log2, logarithmicDepthToViewZ, luminance, mat2, mat3, mat4, matcapUV, materialAO, materialAlphaTest, materialAnisotropy, materialAnisotropyVector, materialAttenuationColor, materialAttenuationDistance, materialClearcoat, materialClearcoatNormal, materialClearcoatRoughness, materialColor, materialDispersion, materialEmissive, materialEnvIntensity, materialEnvRotation, materialIOR, materialIridescence, materialIridescenceIOR, materialIridescenceThickness, materialLightMap, materialLineDashOffset, materialLineDashSize, materialLineGapSize, materialLineScale, materialLineWidth, materialMetalness, materialNormal, materialOpacity, materialPointSize, materialReference, materialReflectivity, materialRefractionRatio, materialRotation, materialRoughness, materialSheen, materialSheenRoughness, materialShininess, materialSpecular, materialSpecularColor, materialSpecularIntensity, materialSpecularStrength, materialThickness, materialTransmission, max, maxMipLevel, mediumpModelViewMatrix, metalness, min, mix, mixElement, mod, modInt, modelDirection, modelNormalMatrix, modelPosition, modelRadius, modelScale, modelViewMatrix, modelViewPosition, modelViewProjection, modelWorldMatrix, modelWorldMatrixInverse, morphReference, mrt, mul, mx_aastep, mx_add, mx_atan2, mx_cell_noise_float, mx_contrast, mx_divide, mx_fractal_noise_float, mx_fractal_noise_vec2, mx_fractal_noise_vec3, mx_fractal_noise_vec4, mx_frame, mx_heighttonormal, mx_hsvtorgb, mx_ifequal, mx_ifgreater, mx_ifgreatereq, mx_invert, mx_modulo, mx_multiply, mx_noise_float, mx_noise_vec3, mx_noise_vec4, mx_place2d, mx_power, mx_ramp4, mx_ramplr, mx_ramptb, mx_rgbtohsv, mx_rotate2d, mx_rotate3d, mx_safepower, mx_separate, mx_splitlr, mx_splittb, mx_srgb_texture_to_lin_rec709, mx_subtract, mx_timer, mx_transform_uv, mx_unifiednoise2d, mx_unifiednoise3d, mx_worley_noise_float, mx_worley_noise_vec2, mx_worley_noise_vec3, negate, neutralToneMapping, nodeArray, nodeImmutable, nodeObject, nodeObjectIntent, nodeObjects, nodeProxy, nodeProxyIntent, normalFlat, normalGeometry, normalLocal, normalMap, normalView, normalViewGeometry, normalWorld, normalWorldGeometry, normalize, not, notEqual, numWorkgroups, objectDirection, objectGroup, objectPosition, objectRadius, objectScale, objectViewPosition, objectWorldMatrix, oneMinus, or, orthographicDepthToViewZ, oscSawtooth, oscSine, oscSquare, oscTriangle, output, outputStruct, overlay, overloadingFn, packHalf2x16, packSnorm2x16, packUnorm2x16, parabola, parallaxDirection, parallaxUV, parameter, pass, passTexture, pcurve, perspectiveDepthToViewZ, pmremTexture, pointShadow, pointUV, pointWidth, positionGeometry, positionLocal, positionPrevious, positionView, positionViewDirection, positionWorld, positionWorldDirection, posterize, pow, pow2, pow3, pow4, premultiplyAlpha, property, radians, rand, range, rangeFog, rangeFogFactor, reciprocal, reference, referenceBuffer, reflect, reflectVector, reflectView, reflector, refract, refractVector, refractView, reinhardToneMapping, remap, remapClamp, renderGroup, renderOutput, rendererReference, replaceDefaultUV, rotate, rotateUV, roughness, round, rtt, sRGBTransferEOTF, sRGBTransferOETF, sample, sampler, samplerComparison, saturate, saturation, screen, screenCoordinate, screenDPR, screenSize, screenUV, scriptable, scriptableValue, select, setCurrentStack, setName, shaderStages, shadow, shadowPositionWorld, shapeCircle, sharedUniformGroup, sheen, sheenRoughness, shiftLeft, shiftRight, shininess, sign, sin, sinc, skinning, smoothstep, smoothstepElement, specularColor, specularF90, spherizeUV, split, spritesheetUV, sqrt, stack, step, stepElement, storage, storageBarrier, storageObject, storageTexture, string, struct, sub, subBuild, subgroupAdd, subgroupAll, subgroupAnd, subgroupAny, subgroupBallot, subgroupBroadcast, subgroupBroadcastFirst, subgroupElect, subgroupExclusiveAdd, subgroupExclusiveMul, subgroupInclusiveAdd, subgroupInclusiveMul, subgroupIndex, subgroupMax, subgroupMin, subgroupMul, subgroupOr, subgroupShuffle, subgroupShuffleDown, subgroupShuffleUp, subgroupShuffleXor, subgroupSize, subgroupXor, tan, tangentGeometry, tangentLocal, tangentView, tangentWorld, texture, texture3D, textureBarrier, textureBicubic, textureBicubicLevel, textureCubeUV, textureLevel, textureLoad, textureSize, textureStore, thickness, time, toneMapping, toneMappingExposure, toonOutlinePass, transformDirection, transformNormal, transformNormalToView, transformedClearcoatNormalView, transformedNormalView, transformedNormalWorld, transmission, transpose, triNoise3D, triplanarTexture, triplanarTextures, trunc, uint, uintBitsToFloat, uniform, uniformArray, uniformCubeTexture, uniformFlow, uniformGroup, uniformTexture, unpackHalf2x16, unpackSnorm2x16, unpackUnorm2x16, unpremultiplyAlpha, userData, uv, uvec2, uvec3, uvec4, varying, varyingProperty, vec2, vec3, vec4, vectorComponents, velocity, vertexColor, vertexIndex, vertexStage, vibrance, viewZToLogarithmicDepth, viewZToOrthographicDepth, viewZToPerspectiveDepth, viewport, viewportCoordinate, viewportDepthTexture, viewportLinearDepth, viewportMipTexture, viewportResolution, viewportSafeUV, viewportSharedTexture, viewportSize, viewportTexture, viewportUV, vogelDiskSample, wgsl, wgslFn, workgroupArray, workgroupBarrier, workgroupId, workingToColorSpace, xor }; +export { BRDF_GGX, BRDF_Lambert, BasicPointShadowFilter, BasicShadowFilter, Break, Const, Continue, DFGLUT, D_GGX, Discard, EPSILON, F_Schlick, Fn, HALF_PI, INFINITY, If, Loop, NodeAccess, NodeShaderStage, NodeType, NodeUpdateType, OnBeforeMaterialUpdate, OnBeforeObjectUpdate, OnMaterialUpdate, OnObjectUpdate, PCFShadowFilter, PCFSoftShadowFilter, PI, PI2, PointShadowFilter, Return, Schlick_to_F0, ScriptableNodeResources, ShaderNode, Stack, Switch, TBNViewMatrix, TWO_PI, VSMShadowFilter, V_GGX_SmithCorrelated, Var, VarIntent, abs, acesFilmicToneMapping, acos, add, addMethodChaining, addNodeElement, agxToneMapping, all, alphaT, and, anisotropy, anisotropyB, anisotropyT, any, append, array, arrayBuffer, asin, assign, atan, atan2, atomicAdd, atomicAnd, atomicFunc, atomicLoad, atomicMax, atomicMin, atomicOr, atomicStore, atomicSub, atomicXor, attenuationColor, attenuationDistance, attribute, attributeArray, backgroundBlurriness, backgroundIntensity, backgroundRotation, batch, bentNormalView, billboarding, bitAnd, bitNot, bitOr, bitXor, bitangentGeometry, bitangentLocal, bitangentView, bitangentWorld, bitcast, blendBurn, blendColor, blendDodge, blendOverlay, blendScreen, blur, bool, buffer, bufferAttribute, builtin, builtinAOContext, builtinShadowContext, bumpMap, burn, bvec2, bvec3, bvec4, bypass, cache, call, cameraFar, cameraIndex, cameraNear, cameraNormalMatrix, cameraPosition, cameraProjectionMatrix, cameraProjectionMatrixInverse, cameraViewMatrix, cameraViewport, cameraWorldMatrix, cbrt, cdl, ceil, checker, cineonToneMapping, clamp, clearcoat, clearcoatNormalView, clearcoatRoughness, code, color, colorSpaceToWorking, colorToDirection, compute, computeKernel, computeSkinning, context, convert, convertColorSpace, convertToTexture, cos, countLeadingZeros, countOneBits, countTrailingZeros, cross, cubeTexture, cubeTextureBase, dFdx, dFdy, dashSize, debug, decrement, decrementBefore, defaultBuildStages, defaultShaderStages, defined, degrees, deltaTime, densityFog, densityFogFactor, depth, depthPass, determinant, difference, diffuseColor, directPointLight, directionToColor, directionToFaceDirection, dispersion, distance, div, dodge, dot, drawIndex, dynamicBufferAttribute, element, emissive, equal, equals, equirectUV, exp, exp2, expression, faceDirection, faceForward, faceforward, float, floatBitsToInt, floatBitsToUint, floor, fog, fract, frameGroup, frameId, frontFacing, fwidth, gain, gapSize, getConstNodeType, getCurrentStack, getDirection, getDistanceAttenuation, getGeometryRoughness, getNormalFromDepth, getParallaxCorrectNormal, getRoughness, getScreenPosition, getShIrradianceAt, getShadowMaterial, getShadowRenderObjectFunction, getTextureIndex, getViewPosition, globalId, glsl, glslFn, grayscale, greaterThan, greaterThanEqual, hash, highpModelNormalViewMatrix, highpModelViewMatrix, hue, increment, incrementBefore, instance, instanceIndex, instancedArray, instancedBufferAttribute, instancedDynamicBufferAttribute, instancedMesh, int, intBitsToFloat, interleavedGradientNoise, inverse, inverseSqrt, inversesqrt, invocationLocalIndex, invocationSubgroupIndex, ior, iridescence, iridescenceIOR, iridescenceThickness, ivec2, ivec3, ivec4, js, label, length, lengthSq, lessThan, lessThanEqual, lightPosition, lightProjectionUV, lightShadowMatrix, lightTargetDirection, lightTargetPosition, lightViewPosition, lightingContext, lights, linearDepth, linearToneMapping, localId, log, log2, logarithmicDepthToViewZ, luminance, mat2, mat3, mat4, matcapUV, materialAO, materialAlphaTest, materialAnisotropy, materialAnisotropyVector, materialAttenuationColor, materialAttenuationDistance, materialClearcoat, materialClearcoatNormal, materialClearcoatRoughness, materialColor, materialDispersion, materialEmissive, materialEnvIntensity, materialEnvRotation, materialIOR, materialIridescence, materialIridescenceIOR, materialIridescenceThickness, materialLightMap, materialLineDashOffset, materialLineDashSize, materialLineGapSize, materialLineScale, materialLineWidth, materialMetalness, materialNormal, materialOpacity, materialPointSize, materialReference, materialReflectivity, materialRefractionRatio, materialRotation, materialRoughness, materialSheen, materialSheenRoughness, materialShininess, materialSpecular, materialSpecularColor, materialSpecularIntensity, materialSpecularStrength, materialThickness, materialTransmission, max, maxMipLevel, mediumpModelViewMatrix, metalness, min, mix, mixElement, mod, modInt, modelDirection, modelNormalMatrix, modelPosition, modelRadius, modelScale, modelViewMatrix, modelViewPosition, modelViewProjection, modelWorldMatrix, modelWorldMatrixInverse, morphReference, mrt, mul, mx_aastep, mx_add, mx_atan2, mx_cell_noise_float, mx_contrast, mx_divide, mx_fractal_noise_float, mx_fractal_noise_vec2, mx_fractal_noise_vec3, mx_fractal_noise_vec4, mx_frame, mx_heighttonormal, mx_hsvtorgb, mx_ifequal, mx_ifgreater, mx_ifgreatereq, mx_invert, mx_modulo, mx_multiply, mx_noise_float, mx_noise_vec3, mx_noise_vec4, mx_place2d, mx_power, mx_ramp4, mx_ramplr, mx_ramptb, mx_rgbtohsv, mx_rotate2d, mx_rotate3d, mx_safepower, mx_separate, mx_splitlr, mx_splittb, mx_srgb_texture_to_lin_rec709, mx_subtract, mx_timer, mx_transform_uv, mx_unifiednoise2d, mx_unifiednoise3d, mx_worley_noise_float, mx_worley_noise_vec2, mx_worley_noise_vec3, negate, neutralToneMapping, nodeArray, nodeImmutable, nodeObject, nodeObjectIntent, nodeObjects, nodeProxy, nodeProxyIntent, normalFlat, normalGeometry, normalLocal, normalMap, normalView, normalViewGeometry, normalWorld, normalWorldGeometry, normalize, not, notEqual, numWorkgroups, objectDirection, objectGroup, objectPosition, objectRadius, objectScale, objectViewPosition, objectWorldMatrix, oneMinus, or, orthographicDepthToViewZ, oscSawtooth, oscSine, oscSquare, oscTriangle, output, outputStruct, overlay, overloadingFn, packHalf2x16, packSnorm2x16, packUnorm2x16, parabola, parallaxDirection, parallaxUV, parameter, pass, passTexture, pcurve, perspectiveDepthToViewZ, pmremTexture, pointShadow, pointUV, pointWidth, positionGeometry, positionLocal, positionPrevious, positionView, positionViewDirection, positionWorld, positionWorldDirection, posterize, pow, pow2, pow3, pow4, premultiplyAlpha, property, radians, rand, range, rangeFog, rangeFogFactor, reciprocal, reference, referenceBuffer, reflect, reflectVector, reflectView, reflector, refract, refractVector, refractView, reinhardToneMapping, remap, remapClamp, renderGroup, renderOutput, rendererReference, replaceDefaultUV, rotate, rotateUV, roughness, round, rtt, sRGBTransferEOTF, sRGBTransferOETF, sample, sampler, samplerComparison, saturate, saturation, screen, screenCoordinate, screenDPR, screenSize, screenUV, scriptable, scriptableValue, select, setCurrentStack, setName, shaderStages, shadow, shadowPositionWorld, shapeCircle, sharedUniformGroup, sheen, sheenRoughness, shiftLeft, shiftRight, shininess, sign, sin, sinc, skinning, smoothstep, smoothstepElement, specularColor, specularF90, spherizeUV, split, spritesheetUV, sqrt, stack, step, stepElement, storage, storageBarrier, storageObject, storageTexture, string, struct, sub, subBuild, subgroupAdd, subgroupAll, subgroupAnd, subgroupAny, subgroupBallot, subgroupBroadcast, subgroupBroadcastFirst, subgroupElect, subgroupExclusiveAdd, subgroupExclusiveMul, subgroupInclusiveAdd, subgroupInclusiveMul, subgroupIndex, subgroupMax, subgroupMin, subgroupMul, subgroupOr, subgroupShuffle, subgroupShuffleDown, subgroupShuffleUp, subgroupShuffleXor, subgroupSize, subgroupXor, tan, tangentGeometry, tangentLocal, tangentView, tangentWorld, texture, texture3D, textureBarrier, textureBicubic, textureBicubicLevel, textureCubeUV, textureLevel, textureLoad, textureSize, textureStore, thickness, time, toneMapping, toneMappingExposure, toonOutlinePass, transformDirection, transformNormal, transformNormalToView, transformedClearcoatNormalView, transformedNormalView, transformedNormalWorld, transmission, transpose, triNoise3D, triplanarTexture, triplanarTextures, trunc, uint, uintBitsToFloat, uniform, uniformArray, uniformCubeTexture, uniformFlow, uniformGroup, uniformTexture, unpackHalf2x16, unpackSnorm2x16, unpackUnorm2x16, unpremultiplyAlpha, userData, uv, uvec2, uvec3, uvec4, varying, varyingProperty, vec2, vec3, vec4, vectorComponents, velocity, vertexColor, vertexIndex, vertexStage, vibrance, viewZToLogarithmicDepth, viewZToOrthographicDepth, viewZToPerspectiveDepth, viewport, viewportCoordinate, viewportDepthTexture, viewportLinearDepth, viewportMipTexture, viewportResolution, viewportSafeUV, viewportSharedTexture, viewportSize, viewportTexture, viewportUV, vogelDiskSample, wgsl, wgslFn, workgroupArray, workgroupBarrier, workgroupId, workingToColorSpace, xor }; diff --git a/build/three.tsl.min.js b/build/three.tsl.min.js index 83710e85a7cbe8..74759f9faac046 100644 --- a/build/three.tsl.min.js +++ b/build/three.tsl.min.js @@ -3,4 +3,4 @@ * Copyright 2010-2025 Three.js Authors * SPDX-License-Identifier: MIT */ -import{TSL as e}from"three/webgpu";const t=e.BRDF_GGX,r=e.BRDF_Lambert,a=e.BasicPointShadowFilter,o=e.BasicShadowFilter,i=e.Break,n=e.Const,l=e.Continue,s=e.DFGApprox,c=e.D_GGX,m=e.Discard,u=e.EPSILON,p=e.F_Schlick,d=e.Fn,g=e.INFINITY,x=e.If,h=e.Loop,b=e.NodeAccess,f=e.NodeShaderStage,v=e.NodeType,w=e.NodeUpdateType,_=e.PCFShadowFilter,S=e.PCFSoftShadowFilter,T=e.PI,y=e.PI2,V=e.TWO_PI,M=e.HALF_PI,F=e.PointShadowFilter,D=e.Return,I=e.Schlick_to_F0,B=e.ScriptableNodeResources,C=e.ShaderNode,P=e.Stack,A=e.Switch,N=e.TBNViewMatrix,R=e.VSMShadowFilter,k=e.V_GGX_SmithCorrelated,O=e.Var,L=e.VarIntent,G=e.abs,U=e.acesFilmicToneMapping,j=e.acos,E=e.add,W=e.addMethodChaining,q=e.addNodeElement,z=e.agxToneMapping,Z=e.all,X=e.alphaT,H=e.and,K=e.anisotropy,Y=e.anisotropyB,J=e.anisotropyT,Q=e.any,$=e.append,ee=e.array,te=e.arrayBuffer,re=e.asin,ae=e.assign,oe=e.atan,ie=e.atan2,ne=e.atomicAdd,le=e.atomicAnd,se=e.atomicFunc,ce=e.atomicLoad,me=e.atomicMax,ue=e.atomicMin,pe=e.atomicOr,de=e.atomicStore,ge=e.atomicSub,xe=e.atomicXor,he=e.attenuationColor,be=e.attenuationDistance,fe=e.attribute,ve=e.attributeArray,we=e.backgroundBlurriness,_e=e.backgroundIntensity,Se=e.backgroundRotation,Te=e.batch,ye=e.bentNormalView,Ve=e.billboarding,Me=e.bitAnd,Fe=e.bitNot,De=e.bitOr,Ie=e.bitXor,Be=e.bitangentGeometry,Ce=e.bitangentLocal,Pe=e.bitangentView,Ae=e.bitangentWorld,Ne=e.bitcast,Re=e.blendBurn,ke=e.blendColor,Oe=e.blendDodge,Le=e.blendOverlay,Ge=e.blendScreen,Ue=e.blur,je=e.bool,Ee=e.buffer,We=e.bufferAttribute,qe=e.bumpMap,ze=e.burn,Ze=e.builtin,Xe=e.builtinAOContext,He=e.builtinShadowContext,Ke=e.bvec2,Ye=e.bvec3,Je=e.bvec4,Qe=e.bypass,$e=e.cache,et=e.call,tt=e.cameraFar,rt=e.cameraIndex,at=e.cameraNear,ot=e.cameraNormalMatrix,it=e.cameraPosition,nt=e.cameraProjectionMatrix,lt=e.cameraProjectionMatrixInverse,st=e.cameraViewMatrix,ct=e.cameraViewport,mt=e.cameraWorldMatrix,ut=e.cbrt,pt=e.cdl,dt=e.ceil,gt=e.checker,xt=e.cineonToneMapping,ht=e.clamp,bt=e.clearcoat,ft=e.clearcoatNormalView,vt=e.clearcoatRoughness,wt=e.code,_t=e.color,St=e.colorSpaceToWorking,Tt=e.colorToDirection,yt=e.compute,Vt=e.computeKernel,Mt=e.computeSkinning,Ft=e.context,Dt=e.convert,It=e.convertColorSpace,Bt=e.convertToTexture,Ct=e.countLeadingZeros,Pt=e.countOneBits,At=e.countTrailingZeros,Nt=e.cos,Rt=e.cross,kt=e.cubeTexture,Ot=e.cubeTextureBase,Lt=e.dFdx,Gt=e.dFdy,Ut=e.dashSize,jt=e.debug,Et=e.decrement,Wt=e.decrementBefore,qt=e.defaultBuildStages,zt=e.defaultShaderStages,Zt=e.defined,Xt=e.degrees,Ht=e.deltaTime,Kt=e.densityFog,Yt=e.densityFogFactor,Jt=e.depth,Qt=e.depthPass,$t=e.determinant,er=e.difference,tr=e.diffuseColor,rr=e.directPointLight,ar=e.directionToColor,or=e.directionToFaceDirection,ir=e.dispersion,nr=e.distance,lr=e.div,sr=e.dodge,cr=e.dot,mr=e.drawIndex,ur=e.dynamicBufferAttribute,pr=e.element,dr=e.emissive,gr=e.equal,xr=e.equals,hr=e.equirectUV,br=e.exp,fr=e.exp2,vr=e.expression,wr=e.faceDirection,_r=e.faceForward,Sr=e.faceforward,Tr=e.float,yr=e.floatBitsToInt,Vr=e.floatBitsToUint,Mr=e.floor,Fr=e.fog,Dr=e.fract,Ir=e.frameGroup,Br=e.frameId,Cr=e.frontFacing,Pr=e.fwidth,Ar=e.gain,Nr=e.gapSize,Rr=e.getConstNodeType,kr=e.getCurrentStack,Or=e.getDirection,Lr=e.getDistanceAttenuation,Gr=e.getGeometryRoughness,Ur=e.getNormalFromDepth,jr=e.interleavedGradientNoise,Er=e.vogelDiskSample,Wr=e.getParallaxCorrectNormal,qr=e.getRoughness,zr=e.getScreenPosition,Zr=e.getShIrradianceAt,Xr=e.getShadowMaterial,Hr=e.getShadowRenderObjectFunction,Kr=e.getTextureIndex,Yr=e.getViewPosition,Jr=e.globalId,Qr=e.glsl,$r=e.glslFn,ea=e.grayscale,ta=e.greaterThan,ra=e.greaterThanEqual,aa=e.hash,oa=e.highpModelNormalViewMatrix,ia=e.highpModelViewMatrix,na=e.hue,la=e.increment,sa=e.incrementBefore,ca=e.instance,ma=e.instanceIndex,ua=e.instancedArray,pa=e.instancedBufferAttribute,da=e.instancedDynamicBufferAttribute,ga=e.instancedMesh,xa=e.int,ha=e.intBitsToFloat,ba=e.inverse,fa=e.inverseSqrt,va=e.inversesqrt,wa=e.invocationLocalIndex,_a=e.invocationSubgroupIndex,Sa=e.ior,Ta=e.iridescence,ya=e.iridescenceIOR,Va=e.iridescenceThickness,Ma=e.ivec2,Fa=e.ivec3,Da=e.ivec4,Ia=e.js,Ba=e.label,Ca=e.length,Pa=e.lengthSq,Aa=e.lessThan,Na=e.lessThanEqual,Ra=e.lightPosition,ka=e.lightProjectionUV,Oa=e.lightShadowMatrix,La=e.lightTargetDirection,Ga=e.lightTargetPosition,Ua=e.lightViewPosition,ja=e.lightingContext,Ea=e.lights,Wa=e.linearDepth,qa=e.linearToneMapping,za=e.localId,Za=e.log,Xa=e.log2,Ha=e.logarithmicDepthToViewZ,Ka=e.luminance,Ya=e.mat2,Ja=e.mat3,Qa=e.mat4,$a=e.matcapUV,eo=e.materialAO,to=e.materialAlphaTest,ro=e.materialAnisotropy,ao=e.materialAnisotropyVector,oo=e.materialAttenuationColor,io=e.materialAttenuationDistance,no=e.materialClearcoat,lo=e.materialClearcoatNormal,so=e.materialClearcoatRoughness,co=e.materialColor,mo=e.materialDispersion,uo=e.materialEmissive,po=e.materialEnvIntensity,go=e.materialEnvRotation,xo=e.materialIOR,ho=e.materialIridescence,bo=e.materialIridescenceIOR,fo=e.materialIridescenceThickness,vo=e.materialLightMap,wo=e.materialLineDashOffset,_o=e.materialLineDashSize,So=e.materialLineGapSize,To=e.materialLineScale,yo=e.materialLineWidth,Vo=e.materialMetalness,Mo=e.materialNormal,Fo=e.materialOpacity,Do=e.materialPointSize,Io=e.materialReference,Bo=e.materialReflectivity,Co=e.materialRefractionRatio,Po=e.materialRotation,Ao=e.materialRoughness,No=e.materialSheen,Ro=e.materialSheenRoughness,ko=e.materialShininess,Oo=e.materialSpecular,Lo=e.materialSpecularColor,Go=e.materialSpecularIntensity,Uo=e.materialSpecularStrength,jo=e.materialThickness,Eo=e.materialTransmission,Wo=e.max,qo=e.maxMipLevel,zo=e.mediumpModelViewMatrix,Zo=e.metalness,Xo=e.min,Ho=e.mix,Ko=e.mixElement,Yo=e.mod,Jo=e.modInt,Qo=e.modelDirection,$o=e.modelNormalMatrix,ei=e.modelPosition,ti=e.modelRadius,ri=e.modelScale,ai=e.modelViewMatrix,oi=e.modelViewPosition,ii=e.modelViewProjection,ni=e.modelWorldMatrix,li=e.modelWorldMatrixInverse,si=e.morphReference,ci=e.mrt,mi=e.mul,ui=e.mx_aastep,pi=e.mx_add,di=e.mx_atan2,gi=e.mx_cell_noise_float,xi=e.mx_contrast,hi=e.mx_divide,bi=e.mx_fractal_noise_float,fi=e.mx_fractal_noise_vec2,vi=e.mx_fractal_noise_vec3,wi=e.mx_fractal_noise_vec4,_i=e.mx_frame,Si=e.mx_heighttonormal,Ti=e.mx_hsvtorgb,yi=e.mx_ifequal,Vi=e.mx_ifgreater,Mi=e.mx_ifgreatereq,Fi=e.mx_invert,Di=e.mx_modulo,Ii=e.mx_multiply,Bi=e.mx_noise_float,Ci=e.mx_noise_vec3,Pi=e.mx_noise_vec4,Ai=e.mx_place2d,Ni=e.mx_power,Ri=e.mx_ramp4,ki=e.mx_ramplr,Oi=e.mx_ramptb,Li=e.mx_rgbtohsv,Gi=e.mx_rotate2d,Ui=e.mx_rotate3d,ji=e.mx_safepower,Ei=e.mx_separate,Wi=e.mx_splitlr,qi=e.mx_splittb,zi=e.mx_srgb_texture_to_lin_rec709,Zi=e.mx_subtract,Xi=e.mx_timer,Hi=e.mx_transform_uv,Ki=e.mx_unifiednoise2d,Yi=e.mx_unifiednoise3d,Ji=e.mx_worley_noise_float,Qi=e.mx_worley_noise_vec2,$i=e.mx_worley_noise_vec3,en=e.negate,tn=e.neutralToneMapping,rn=e.nodeArray,an=e.nodeImmutable,on=e.nodeObject,nn=e.nodeObjectIntent,ln=e.nodeObjects,sn=e.nodeProxy,cn=e.nodeProxyIntent,mn=e.normalFlat,un=e.normalGeometry,pn=e.normalLocal,dn=e.normalMap,gn=e.normalView,xn=e.normalViewGeometry,hn=e.normalWorld,bn=e.normalWorldGeometry,fn=e.normalize,vn=e.not,wn=e.notEqual,_n=e.numWorkgroups,Sn=e.objectDirection,Tn=e.objectGroup,yn=e.objectPosition,Vn=e.objectRadius,Mn=e.objectScale,Fn=e.objectViewPosition,Dn=e.objectWorldMatrix,In=e.OnBeforeObjectUpdate,Bn=e.OnBeforeMaterialUpdate,Cn=e.OnObjectUpdate,Pn=e.OnMaterialUpdate,An=e.oneMinus,Nn=e.or,Rn=e.orthographicDepthToViewZ,kn=e.oscSawtooth,On=e.oscSine,Ln=e.oscSquare,Gn=e.oscTriangle,Un=e.output,jn=e.outputStruct,En=e.overlay,Wn=e.overloadingFn,qn=e.packHalf2x16,zn=e.packSnorm2x16,Zn=e.packUnorm2x16,Xn=e.parabola,Hn=e.parallaxDirection,Kn=e.parallaxUV,Yn=e.parameter,Jn=e.pass,Qn=e.passTexture,$n=e.pcurve,el=e.perspectiveDepthToViewZ,tl=e.pmremTexture,rl=e.pointShadow,al=e.pointUV,ol=e.pointWidth,il=e.positionGeometry,nl=e.positionLocal,ll=e.positionPrevious,sl=e.positionView,cl=e.positionViewDirection,ml=e.positionWorld,ul=e.positionWorldDirection,pl=e.posterize,dl=e.pow,gl=e.pow2,xl=e.pow3,hl=e.pow4,bl=e.premultiplyAlpha,fl=e.property,vl=e.radians,wl=e.rand,_l=e.range,Sl=e.rangeFog,Tl=e.rangeFogFactor,yl=e.reciprocal,Vl=e.reference,Ml=e.referenceBuffer,Fl=e.reflect,Dl=e.reflectVector,Il=e.reflectView,Bl=e.reflector,Cl=e.refract,Pl=e.refractVector,Al=e.refractView,Nl=e.reinhardToneMapping,Rl=e.remap,kl=e.remapClamp,Ol=e.renderGroup,Ll=e.renderOutput,Gl=e.rendererReference,Ul=e.replaceDefaultUV,jl=e.rotate,El=e.rotateUV,Wl=e.roughness,ql=e.round,zl=e.rtt,Zl=e.sRGBTransferEOTF,Xl=e.sRGBTransferOETF,Hl=e.sample,Kl=e.sampler,Yl=e.samplerComparison,Jl=e.saturate,Ql=e.saturation,$l=e.screen,es=e.screenCoordinate,ts=e.screenDPR,rs=e.screenSize,as=e.screenUV,os=e.scriptable,is=e.scriptableValue,ns=e.select,ls=e.setCurrentStack,ss=e.setName,cs=e.shaderStages,ms=e.shadow,us=e.shadowPositionWorld,ps=e.shapeCircle,ds=e.sharedUniformGroup,gs=e.sheen,xs=e.sheenRoughness,hs=e.shiftLeft,bs=e.shiftRight,fs=e.shininess,vs=e.sign,ws=e.sin,_s=e.sinc,Ss=e.skinning,Ts=e.smoothstep,ys=e.smoothstepElement,Vs=e.specularColor,Ms=e.specularF90,Fs=e.spherizeUV,Ds=e.split,Is=e.spritesheetUV,Bs=e.sqrt,Cs=e.stack,Ps=e.step,As=e.stepElement,Ns=e.storage,Rs=e.storageBarrier,ks=e.storageObject,Os=e.storageTexture,Ls=e.string,Gs=e.struct,Us=e.sub,js=e.subgroupAdd,Es=e.subgroupAll,Ws=e.subgroupAnd,qs=e.subgroupAny,zs=e.subgroupBallot,Zs=e.subgroupBroadcast,Xs=e.subgroupBroadcastFirst,Hs=e.subBuild,Ks=e.subgroupElect,Ys=e.subgroupExclusiveAdd,Js=e.subgroupExclusiveMul,Qs=e.subgroupInclusiveAdd,$s=e.subgroupInclusiveMul,ec=e.subgroupIndex,tc=e.subgroupMax,rc=e.subgroupMin,ac=e.subgroupMul,oc=e.subgroupOr,ic=e.subgroupShuffle,nc=e.subgroupShuffleDown,lc=e.subgroupShuffleUp,sc=e.subgroupShuffleXor,cc=e.subgroupSize,mc=e.subgroupXor,uc=e.tan,pc=e.tangentGeometry,dc=e.tangentLocal,gc=e.tangentView,xc=e.tangentWorld,hc=e.texture,bc=e.texture3D,fc=e.textureBarrier,vc=e.textureBicubic,wc=e.textureBicubicLevel,_c=e.textureCubeUV,Sc=e.textureLoad,Tc=e.textureSize,yc=e.textureLevel,Vc=e.textureStore,Mc=e.thickness,Fc=e.time,Dc=e.toneMapping,Ic=e.toneMappingExposure,Bc=e.toonOutlinePass,Cc=e.transformDirection,Pc=e.transformNormal,Ac=e.transformNormalToView,Nc=e.transformedClearcoatNormalView,Rc=e.transformedNormalView,kc=e.transformedNormalWorld,Oc=e.transmission,Lc=e.transpose,Gc=e.triNoise3D,Uc=e.triplanarTexture,jc=e.triplanarTextures,Ec=e.trunc,Wc=e.uint,qc=e.uintBitsToFloat,zc=e.uniform,Zc=e.uniformArray,Xc=e.uniformCubeTexture,Hc=e.uniformGroup,Kc=e.uniformFlow,Yc=e.uniformTexture,Jc=e.unpackHalf2x16,Qc=e.unpackSnorm2x16,$c=e.unpackUnorm2x16,em=e.unpremultiplyAlpha,tm=e.userData,rm=e.uv,am=e.uvec2,om=e.uvec3,im=e.uvec4,nm=e.varying,lm=e.varyingProperty,sm=e.vec2,cm=e.vec3,mm=e.vec4,um=e.vectorComponents,pm=e.velocity,dm=e.vertexColor,gm=e.vertexIndex,xm=e.vertexStage,hm=e.vibrance,bm=e.viewZToLogarithmicDepth,fm=e.viewZToOrthographicDepth,vm=e.viewZToPerspectiveDepth,wm=e.viewport,_m=e.viewportCoordinate,Sm=e.viewportDepthTexture,Tm=e.viewportLinearDepth,ym=e.viewportMipTexture,Vm=e.viewportResolution,Mm=e.viewportSafeUV,Fm=e.viewportSharedTexture,Dm=e.viewportSize,Im=e.viewportTexture,Bm=e.viewportUV,Cm=e.wgsl,Pm=e.wgslFn,Am=e.workgroupArray,Nm=e.workgroupBarrier,Rm=e.workgroupId,km=e.workingToColorSpace,Om=e.xor;export{t as BRDF_GGX,r as BRDF_Lambert,a as BasicPointShadowFilter,o as BasicShadowFilter,i as Break,n as Const,l as Continue,s as DFGApprox,c as D_GGX,m as Discard,u as EPSILON,p as F_Schlick,d as Fn,M as HALF_PI,g as INFINITY,x as If,h as Loop,b as NodeAccess,f as NodeShaderStage,v as NodeType,w as NodeUpdateType,Bn as OnBeforeMaterialUpdate,In as OnBeforeObjectUpdate,Pn as OnMaterialUpdate,Cn as OnObjectUpdate,_ as PCFShadowFilter,S as PCFSoftShadowFilter,T as PI,y as PI2,F as PointShadowFilter,D as Return,I as Schlick_to_F0,B as ScriptableNodeResources,C as ShaderNode,P as Stack,A as Switch,N as TBNViewMatrix,V as TWO_PI,R as VSMShadowFilter,k as V_GGX_SmithCorrelated,O as Var,L as VarIntent,G as abs,U as acesFilmicToneMapping,j as acos,E as add,W as addMethodChaining,q as addNodeElement,z as agxToneMapping,Z as all,X as alphaT,H as and,K as anisotropy,Y as anisotropyB,J as anisotropyT,Q as any,$ as append,ee as array,te as arrayBuffer,re as asin,ae as assign,oe as atan,ie as atan2,ne as atomicAdd,le as atomicAnd,se as atomicFunc,ce as atomicLoad,me as atomicMax,ue as atomicMin,pe as atomicOr,de as atomicStore,ge as atomicSub,xe as atomicXor,he as attenuationColor,be as attenuationDistance,fe as attribute,ve as attributeArray,we as backgroundBlurriness,_e as backgroundIntensity,Se as backgroundRotation,Te as batch,ye as bentNormalView,Ve as billboarding,Me as bitAnd,Fe as bitNot,De as bitOr,Ie as bitXor,Be as bitangentGeometry,Ce as bitangentLocal,Pe as bitangentView,Ae as bitangentWorld,Ne as bitcast,Re as blendBurn,ke as blendColor,Oe as blendDodge,Le as blendOverlay,Ge as blendScreen,Ue as blur,je as bool,Ee as buffer,We as bufferAttribute,Ze as builtin,Xe as builtinAOContext,He as builtinShadowContext,qe as bumpMap,ze as burn,Ke as bvec2,Ye as bvec3,Je as bvec4,Qe as bypass,$e as cache,et as call,tt as cameraFar,rt as cameraIndex,at as cameraNear,ot as cameraNormalMatrix,it as cameraPosition,nt as cameraProjectionMatrix,lt as cameraProjectionMatrixInverse,st as cameraViewMatrix,ct as cameraViewport,mt as cameraWorldMatrix,ut as cbrt,pt as cdl,dt as ceil,gt as checker,xt as cineonToneMapping,ht as clamp,bt as clearcoat,ft as clearcoatNormalView,vt as clearcoatRoughness,wt as code,_t as color,St as colorSpaceToWorking,Tt as colorToDirection,yt as compute,Vt as computeKernel,Mt as computeSkinning,Ft as context,Dt as convert,It as convertColorSpace,Bt as convertToTexture,Nt as cos,Ct as countLeadingZeros,Pt as countOneBits,At as countTrailingZeros,Rt as cross,kt as cubeTexture,Ot as cubeTextureBase,Lt as dFdx,Gt as dFdy,Ut as dashSize,jt as debug,Et as decrement,Wt as decrementBefore,qt as defaultBuildStages,zt as defaultShaderStages,Zt as defined,Xt as degrees,Ht as deltaTime,Kt as densityFog,Yt as densityFogFactor,Jt as depth,Qt as depthPass,$t as determinant,er as difference,tr as diffuseColor,rr as directPointLight,ar as directionToColor,or as directionToFaceDirection,ir as dispersion,nr as distance,lr as div,sr as dodge,cr as dot,mr as drawIndex,ur as dynamicBufferAttribute,pr as element,dr as emissive,gr as equal,xr as equals,hr as equirectUV,br as exp,fr as exp2,vr as expression,wr as faceDirection,_r as faceForward,Sr as faceforward,Tr as float,yr as floatBitsToInt,Vr as floatBitsToUint,Mr as floor,Fr as fog,Dr as fract,Ir as frameGroup,Br as frameId,Cr as frontFacing,Pr as fwidth,Ar as gain,Nr as gapSize,Rr as getConstNodeType,kr as getCurrentStack,Or as getDirection,Lr as getDistanceAttenuation,Gr as getGeometryRoughness,Ur as getNormalFromDepth,Wr as getParallaxCorrectNormal,qr as getRoughness,zr as getScreenPosition,Zr as getShIrradianceAt,Xr as getShadowMaterial,Hr as getShadowRenderObjectFunction,Kr as getTextureIndex,Yr as getViewPosition,Jr as globalId,Qr as glsl,$r as glslFn,ea as grayscale,ta as greaterThan,ra as greaterThanEqual,aa as hash,oa as highpModelNormalViewMatrix,ia as highpModelViewMatrix,na as hue,la as increment,sa as incrementBefore,ca as instance,ma as instanceIndex,ua as instancedArray,pa as instancedBufferAttribute,da as instancedDynamicBufferAttribute,ga as instancedMesh,xa as int,ha as intBitsToFloat,jr as interleavedGradientNoise,ba as inverse,fa as inverseSqrt,va as inversesqrt,wa as invocationLocalIndex,_a as invocationSubgroupIndex,Sa as ior,Ta as iridescence,ya as iridescenceIOR,Va as iridescenceThickness,Ma as ivec2,Fa as ivec3,Da as ivec4,Ia as js,Ba as label,Ca as length,Pa as lengthSq,Aa as lessThan,Na as lessThanEqual,Ra as lightPosition,ka as lightProjectionUV,Oa as lightShadowMatrix,La as lightTargetDirection,Ga as lightTargetPosition,Ua as lightViewPosition,ja as lightingContext,Ea as lights,Wa as linearDepth,qa as linearToneMapping,za as localId,Za as log,Xa as log2,Ha as logarithmicDepthToViewZ,Ka as luminance,Ya as mat2,Ja as mat3,Qa as mat4,$a as matcapUV,eo as materialAO,to as materialAlphaTest,ro as materialAnisotropy,ao as materialAnisotropyVector,oo as materialAttenuationColor,io as materialAttenuationDistance,no as materialClearcoat,lo as materialClearcoatNormal,so as materialClearcoatRoughness,co as materialColor,mo as materialDispersion,uo as materialEmissive,po as materialEnvIntensity,go as materialEnvRotation,xo as materialIOR,ho as materialIridescence,bo as materialIridescenceIOR,fo as materialIridescenceThickness,vo as materialLightMap,wo as materialLineDashOffset,_o as materialLineDashSize,So as materialLineGapSize,To as materialLineScale,yo as materialLineWidth,Vo as materialMetalness,Mo as materialNormal,Fo as materialOpacity,Do as materialPointSize,Io as materialReference,Bo as materialReflectivity,Co as materialRefractionRatio,Po as materialRotation,Ao as materialRoughness,No as materialSheen,Ro as materialSheenRoughness,ko as materialShininess,Oo as materialSpecular,Lo as materialSpecularColor,Go as materialSpecularIntensity,Uo as materialSpecularStrength,jo as materialThickness,Eo as materialTransmission,Wo as max,qo as maxMipLevel,zo as mediumpModelViewMatrix,Zo as metalness,Xo as min,Ho as mix,Ko as mixElement,Yo as mod,Jo as modInt,Qo as modelDirection,$o as modelNormalMatrix,ei as modelPosition,ti as modelRadius,ri as modelScale,ai as modelViewMatrix,oi as modelViewPosition,ii as modelViewProjection,ni as modelWorldMatrix,li as modelWorldMatrixInverse,si as morphReference,ci as mrt,mi as mul,ui as mx_aastep,pi as mx_add,di as mx_atan2,gi as mx_cell_noise_float,xi as mx_contrast,hi as mx_divide,bi as mx_fractal_noise_float,fi as mx_fractal_noise_vec2,vi as mx_fractal_noise_vec3,wi as mx_fractal_noise_vec4,_i as mx_frame,Si as mx_heighttonormal,Ti as mx_hsvtorgb,yi as mx_ifequal,Vi as mx_ifgreater,Mi as mx_ifgreatereq,Fi as mx_invert,Di as mx_modulo,Ii as mx_multiply,Bi as mx_noise_float,Ci as mx_noise_vec3,Pi as mx_noise_vec4,Ai as mx_place2d,Ni as mx_power,Ri as mx_ramp4,ki as mx_ramplr,Oi as mx_ramptb,Li as mx_rgbtohsv,Gi as mx_rotate2d,Ui as mx_rotate3d,ji as mx_safepower,Ei as mx_separate,Wi as mx_splitlr,qi as mx_splittb,zi as mx_srgb_texture_to_lin_rec709,Zi as mx_subtract,Xi as mx_timer,Hi as mx_transform_uv,Ki as mx_unifiednoise2d,Yi as mx_unifiednoise3d,Ji as mx_worley_noise_float,Qi as mx_worley_noise_vec2,$i as mx_worley_noise_vec3,en as negate,tn as neutralToneMapping,rn as nodeArray,an as nodeImmutable,on as nodeObject,nn as nodeObjectIntent,ln as nodeObjects,sn as nodeProxy,cn as nodeProxyIntent,mn as normalFlat,un as normalGeometry,pn as normalLocal,dn as normalMap,gn as normalView,xn as normalViewGeometry,hn as normalWorld,bn as normalWorldGeometry,fn as normalize,vn as not,wn as notEqual,_n as numWorkgroups,Sn as objectDirection,Tn as objectGroup,yn as objectPosition,Vn as objectRadius,Mn as objectScale,Fn as objectViewPosition,Dn as objectWorldMatrix,An as oneMinus,Nn as or,Rn as orthographicDepthToViewZ,kn as oscSawtooth,On as oscSine,Ln as oscSquare,Gn as oscTriangle,Un as output,jn as outputStruct,En as overlay,Wn as overloadingFn,qn as packHalf2x16,zn as packSnorm2x16,Zn as packUnorm2x16,Xn as parabola,Hn as parallaxDirection,Kn as parallaxUV,Yn as parameter,Jn as pass,Qn as passTexture,$n as pcurve,el as perspectiveDepthToViewZ,tl as pmremTexture,rl as pointShadow,al as pointUV,ol as pointWidth,il as positionGeometry,nl as positionLocal,ll as positionPrevious,sl as positionView,cl as positionViewDirection,ml as positionWorld,ul as positionWorldDirection,pl as posterize,dl as pow,gl as pow2,xl as pow3,hl as pow4,bl as premultiplyAlpha,fl as property,vl as radians,wl as rand,_l as range,Sl as rangeFog,Tl as rangeFogFactor,yl as reciprocal,Vl as reference,Ml as referenceBuffer,Fl as reflect,Dl as reflectVector,Il as reflectView,Bl as reflector,Cl as refract,Pl as refractVector,Al as refractView,Nl as reinhardToneMapping,Rl as remap,kl as remapClamp,Ol as renderGroup,Ll as renderOutput,Gl as rendererReference,Ul as replaceDefaultUV,jl as rotate,El as rotateUV,Wl as roughness,ql as round,zl as rtt,Zl as sRGBTransferEOTF,Xl as sRGBTransferOETF,Hl as sample,Kl as sampler,Yl as samplerComparison,Jl as saturate,Ql as saturation,$l as screen,es as screenCoordinate,ts as screenDPR,rs as screenSize,as as screenUV,os as scriptable,is as scriptableValue,ns as select,ls as setCurrentStack,ss as setName,cs as shaderStages,ms as shadow,us as shadowPositionWorld,ps as shapeCircle,ds as sharedUniformGroup,gs as sheen,xs as sheenRoughness,hs as shiftLeft,bs as shiftRight,fs as shininess,vs as sign,ws as sin,_s as sinc,Ss as skinning,Ts as smoothstep,ys as smoothstepElement,Vs as specularColor,Ms as specularF90,Fs as spherizeUV,Ds as split,Is as spritesheetUV,Bs as sqrt,Cs as stack,Ps as step,As as stepElement,Ns as storage,Rs as storageBarrier,ks as storageObject,Os as storageTexture,Ls as string,Gs as struct,Us as sub,Hs as subBuild,js as subgroupAdd,Es as subgroupAll,Ws as subgroupAnd,qs as subgroupAny,zs as subgroupBallot,Zs as subgroupBroadcast,Xs as subgroupBroadcastFirst,Ks as subgroupElect,Ys as subgroupExclusiveAdd,Js as subgroupExclusiveMul,Qs as subgroupInclusiveAdd,$s as subgroupInclusiveMul,ec as subgroupIndex,tc as subgroupMax,rc as subgroupMin,ac as subgroupMul,oc as subgroupOr,ic as subgroupShuffle,nc as subgroupShuffleDown,lc as subgroupShuffleUp,sc as subgroupShuffleXor,cc as subgroupSize,mc as subgroupXor,uc as tan,pc as tangentGeometry,dc as tangentLocal,gc as tangentView,xc as tangentWorld,hc as texture,bc as texture3D,fc as textureBarrier,vc as textureBicubic,wc as textureBicubicLevel,_c as textureCubeUV,yc as textureLevel,Sc as textureLoad,Tc as textureSize,Vc as textureStore,Mc as thickness,Fc as time,Dc as toneMapping,Ic as toneMappingExposure,Bc as toonOutlinePass,Cc as transformDirection,Pc as transformNormal,Ac as transformNormalToView,Nc as transformedClearcoatNormalView,Rc as transformedNormalView,kc as transformedNormalWorld,Oc as transmission,Lc as transpose,Gc as triNoise3D,Uc as triplanarTexture,jc as triplanarTextures,Ec as trunc,Wc as uint,qc as uintBitsToFloat,zc as uniform,Zc as uniformArray,Xc as uniformCubeTexture,Kc as uniformFlow,Hc as uniformGroup,Yc as uniformTexture,Jc as unpackHalf2x16,Qc as unpackSnorm2x16,$c as unpackUnorm2x16,em as unpremultiplyAlpha,tm as userData,rm as uv,am as uvec2,om as uvec3,im as uvec4,nm as varying,lm as varyingProperty,sm as vec2,cm as vec3,mm as vec4,um as vectorComponents,pm as velocity,dm as vertexColor,gm as vertexIndex,xm as vertexStage,hm as vibrance,bm as viewZToLogarithmicDepth,fm as viewZToOrthographicDepth,vm as viewZToPerspectiveDepth,wm as viewport,_m as viewportCoordinate,Sm as viewportDepthTexture,Tm as viewportLinearDepth,ym as viewportMipTexture,Vm as viewportResolution,Mm as viewportSafeUV,Fm as viewportSharedTexture,Dm as viewportSize,Im as viewportTexture,Bm as viewportUV,Er as vogelDiskSample,Cm as wgsl,Pm as wgslFn,Am as workgroupArray,Nm as workgroupBarrier,Rm as workgroupId,km as workingToColorSpace,Om as xor}; +import{TSL as e}from"three/webgpu";const t=e.BRDF_GGX,r=e.BRDF_Lambert,a=e.BasicPointShadowFilter,o=e.BasicShadowFilter,i=e.Break,n=e.Const,l=e.Continue,s=e.DFGLUT,c=e.D_GGX,m=e.Discard,u=e.EPSILON,p=e.F_Schlick,d=e.Fn,g=e.INFINITY,x=e.If,h=e.Loop,b=e.NodeAccess,f=e.NodeShaderStage,v=e.NodeType,w=e.NodeUpdateType,_=e.PCFShadowFilter,S=e.PCFSoftShadowFilter,T=e.PI,y=e.PI2,V=e.TWO_PI,M=e.HALF_PI,F=e.PointShadowFilter,D=e.Return,I=e.Schlick_to_F0,B=e.ScriptableNodeResources,C=e.ShaderNode,P=e.Stack,A=e.Switch,N=e.TBNViewMatrix,R=e.VSMShadowFilter,k=e.V_GGX_SmithCorrelated,O=e.Var,L=e.VarIntent,U=e.abs,G=e.acesFilmicToneMapping,j=e.acos,E=e.add,W=e.addMethodChaining,q=e.addNodeElement,z=e.agxToneMapping,Z=e.all,X=e.alphaT,H=e.and,K=e.anisotropy,Y=e.anisotropyB,J=e.anisotropyT,Q=e.any,$=e.append,ee=e.array,te=e.arrayBuffer,re=e.asin,ae=e.assign,oe=e.atan,ie=e.atan2,ne=e.atomicAdd,le=e.atomicAnd,se=e.atomicFunc,ce=e.atomicLoad,me=e.atomicMax,ue=e.atomicMin,pe=e.atomicOr,de=e.atomicStore,ge=e.atomicSub,xe=e.atomicXor,he=e.attenuationColor,be=e.attenuationDistance,fe=e.attribute,ve=e.attributeArray,we=e.backgroundBlurriness,_e=e.backgroundIntensity,Se=e.backgroundRotation,Te=e.batch,ye=e.bentNormalView,Ve=e.billboarding,Me=e.bitAnd,Fe=e.bitNot,De=e.bitOr,Ie=e.bitXor,Be=e.bitangentGeometry,Ce=e.bitangentLocal,Pe=e.bitangentView,Ae=e.bitangentWorld,Ne=e.bitcast,Re=e.blendBurn,ke=e.blendColor,Oe=e.blendDodge,Le=e.blendOverlay,Ue=e.blendScreen,Ge=e.blur,je=e.bool,Ee=e.buffer,We=e.bufferAttribute,qe=e.bumpMap,ze=e.burn,Ze=e.builtin,Xe=e.builtinAOContext,He=e.builtinShadowContext,Ke=e.bvec2,Ye=e.bvec3,Je=e.bvec4,Qe=e.bypass,$e=e.cache,et=e.call,tt=e.cameraFar,rt=e.cameraIndex,at=e.cameraNear,ot=e.cameraNormalMatrix,it=e.cameraPosition,nt=e.cameraProjectionMatrix,lt=e.cameraProjectionMatrixInverse,st=e.cameraViewMatrix,ct=e.cameraViewport,mt=e.cameraWorldMatrix,ut=e.cbrt,pt=e.cdl,dt=e.ceil,gt=e.checker,xt=e.cineonToneMapping,ht=e.clamp,bt=e.clearcoat,ft=e.clearcoatNormalView,vt=e.clearcoatRoughness,wt=e.code,_t=e.color,St=e.colorSpaceToWorking,Tt=e.colorToDirection,yt=e.compute,Vt=e.computeKernel,Mt=e.computeSkinning,Ft=e.context,Dt=e.convert,It=e.convertColorSpace,Bt=e.convertToTexture,Ct=e.countLeadingZeros,Pt=e.countOneBits,At=e.countTrailingZeros,Nt=e.cos,Rt=e.cross,kt=e.cubeTexture,Ot=e.cubeTextureBase,Lt=e.dFdx,Ut=e.dFdy,Gt=e.dashSize,jt=e.debug,Et=e.decrement,Wt=e.decrementBefore,qt=e.defaultBuildStages,zt=e.defaultShaderStages,Zt=e.defined,Xt=e.degrees,Ht=e.deltaTime,Kt=e.densityFog,Yt=e.densityFogFactor,Jt=e.depth,Qt=e.depthPass,$t=e.determinant,er=e.difference,tr=e.diffuseColor,rr=e.directPointLight,ar=e.directionToColor,or=e.directionToFaceDirection,ir=e.dispersion,nr=e.distance,lr=e.div,sr=e.dodge,cr=e.dot,mr=e.drawIndex,ur=e.dynamicBufferAttribute,pr=e.element,dr=e.emissive,gr=e.equal,xr=e.equals,hr=e.equirectUV,br=e.exp,fr=e.exp2,vr=e.expression,wr=e.faceDirection,_r=e.faceForward,Sr=e.faceforward,Tr=e.float,yr=e.floatBitsToInt,Vr=e.floatBitsToUint,Mr=e.floor,Fr=e.fog,Dr=e.fract,Ir=e.frameGroup,Br=e.frameId,Cr=e.frontFacing,Pr=e.fwidth,Ar=e.gain,Nr=e.gapSize,Rr=e.getConstNodeType,kr=e.getCurrentStack,Or=e.getDirection,Lr=e.getDistanceAttenuation,Ur=e.getGeometryRoughness,Gr=e.getNormalFromDepth,jr=e.interleavedGradientNoise,Er=e.vogelDiskSample,Wr=e.getParallaxCorrectNormal,qr=e.getRoughness,zr=e.getScreenPosition,Zr=e.getShIrradianceAt,Xr=e.getShadowMaterial,Hr=e.getShadowRenderObjectFunction,Kr=e.getTextureIndex,Yr=e.getViewPosition,Jr=e.globalId,Qr=e.glsl,$r=e.glslFn,ea=e.grayscale,ta=e.greaterThan,ra=e.greaterThanEqual,aa=e.hash,oa=e.highpModelNormalViewMatrix,ia=e.highpModelViewMatrix,na=e.hue,la=e.increment,sa=e.incrementBefore,ca=e.instance,ma=e.instanceIndex,ua=e.instancedArray,pa=e.instancedBufferAttribute,da=e.instancedDynamicBufferAttribute,ga=e.instancedMesh,xa=e.int,ha=e.intBitsToFloat,ba=e.inverse,fa=e.inverseSqrt,va=e.inversesqrt,wa=e.invocationLocalIndex,_a=e.invocationSubgroupIndex,Sa=e.ior,Ta=e.iridescence,ya=e.iridescenceIOR,Va=e.iridescenceThickness,Ma=e.ivec2,Fa=e.ivec3,Da=e.ivec4,Ia=e.js,Ba=e.label,Ca=e.length,Pa=e.lengthSq,Aa=e.lessThan,Na=e.lessThanEqual,Ra=e.lightPosition,ka=e.lightProjectionUV,Oa=e.lightShadowMatrix,La=e.lightTargetDirection,Ua=e.lightTargetPosition,Ga=e.lightViewPosition,ja=e.lightingContext,Ea=e.lights,Wa=e.linearDepth,qa=e.linearToneMapping,za=e.localId,Za=e.log,Xa=e.log2,Ha=e.logarithmicDepthToViewZ,Ka=e.luminance,Ya=e.mat2,Ja=e.mat3,Qa=e.mat4,$a=e.matcapUV,eo=e.materialAO,to=e.materialAlphaTest,ro=e.materialAnisotropy,ao=e.materialAnisotropyVector,oo=e.materialAttenuationColor,io=e.materialAttenuationDistance,no=e.materialClearcoat,lo=e.materialClearcoatNormal,so=e.materialClearcoatRoughness,co=e.materialColor,mo=e.materialDispersion,uo=e.materialEmissive,po=e.materialEnvIntensity,go=e.materialEnvRotation,xo=e.materialIOR,ho=e.materialIridescence,bo=e.materialIridescenceIOR,fo=e.materialIridescenceThickness,vo=e.materialLightMap,wo=e.materialLineDashOffset,_o=e.materialLineDashSize,So=e.materialLineGapSize,To=e.materialLineScale,yo=e.materialLineWidth,Vo=e.materialMetalness,Mo=e.materialNormal,Fo=e.materialOpacity,Do=e.materialPointSize,Io=e.materialReference,Bo=e.materialReflectivity,Co=e.materialRefractionRatio,Po=e.materialRotation,Ao=e.materialRoughness,No=e.materialSheen,Ro=e.materialSheenRoughness,ko=e.materialShininess,Oo=e.materialSpecular,Lo=e.materialSpecularColor,Uo=e.materialSpecularIntensity,Go=e.materialSpecularStrength,jo=e.materialThickness,Eo=e.materialTransmission,Wo=e.max,qo=e.maxMipLevel,zo=e.mediumpModelViewMatrix,Zo=e.metalness,Xo=e.min,Ho=e.mix,Ko=e.mixElement,Yo=e.mod,Jo=e.modInt,Qo=e.modelDirection,$o=e.modelNormalMatrix,ei=e.modelPosition,ti=e.modelRadius,ri=e.modelScale,ai=e.modelViewMatrix,oi=e.modelViewPosition,ii=e.modelViewProjection,ni=e.modelWorldMatrix,li=e.modelWorldMatrixInverse,si=e.morphReference,ci=e.mrt,mi=e.mul,ui=e.mx_aastep,pi=e.mx_add,di=e.mx_atan2,gi=e.mx_cell_noise_float,xi=e.mx_contrast,hi=e.mx_divide,bi=e.mx_fractal_noise_float,fi=e.mx_fractal_noise_vec2,vi=e.mx_fractal_noise_vec3,wi=e.mx_fractal_noise_vec4,_i=e.mx_frame,Si=e.mx_heighttonormal,Ti=e.mx_hsvtorgb,yi=e.mx_ifequal,Vi=e.mx_ifgreater,Mi=e.mx_ifgreatereq,Fi=e.mx_invert,Di=e.mx_modulo,Ii=e.mx_multiply,Bi=e.mx_noise_float,Ci=e.mx_noise_vec3,Pi=e.mx_noise_vec4,Ai=e.mx_place2d,Ni=e.mx_power,Ri=e.mx_ramp4,ki=e.mx_ramplr,Oi=e.mx_ramptb,Li=e.mx_rgbtohsv,Ui=e.mx_rotate2d,Gi=e.mx_rotate3d,ji=e.mx_safepower,Ei=e.mx_separate,Wi=e.mx_splitlr,qi=e.mx_splittb,zi=e.mx_srgb_texture_to_lin_rec709,Zi=e.mx_subtract,Xi=e.mx_timer,Hi=e.mx_transform_uv,Ki=e.mx_unifiednoise2d,Yi=e.mx_unifiednoise3d,Ji=e.mx_worley_noise_float,Qi=e.mx_worley_noise_vec2,$i=e.mx_worley_noise_vec3,en=e.negate,tn=e.neutralToneMapping,rn=e.nodeArray,an=e.nodeImmutable,on=e.nodeObject,nn=e.nodeObjectIntent,ln=e.nodeObjects,sn=e.nodeProxy,cn=e.nodeProxyIntent,mn=e.normalFlat,un=e.normalGeometry,pn=e.normalLocal,dn=e.normalMap,gn=e.normalView,xn=e.normalViewGeometry,hn=e.normalWorld,bn=e.normalWorldGeometry,fn=e.normalize,vn=e.not,wn=e.notEqual,_n=e.numWorkgroups,Sn=e.objectDirection,Tn=e.objectGroup,yn=e.objectPosition,Vn=e.objectRadius,Mn=e.objectScale,Fn=e.objectViewPosition,Dn=e.objectWorldMatrix,In=e.OnBeforeObjectUpdate,Bn=e.OnBeforeMaterialUpdate,Cn=e.OnObjectUpdate,Pn=e.OnMaterialUpdate,An=e.oneMinus,Nn=e.or,Rn=e.orthographicDepthToViewZ,kn=e.oscSawtooth,On=e.oscSine,Ln=e.oscSquare,Un=e.oscTriangle,Gn=e.output,jn=e.outputStruct,En=e.overlay,Wn=e.overloadingFn,qn=e.packHalf2x16,zn=e.packSnorm2x16,Zn=e.packUnorm2x16,Xn=e.parabola,Hn=e.parallaxDirection,Kn=e.parallaxUV,Yn=e.parameter,Jn=e.pass,Qn=e.passTexture,$n=e.pcurve,el=e.perspectiveDepthToViewZ,tl=e.pmremTexture,rl=e.pointShadow,al=e.pointUV,ol=e.pointWidth,il=e.positionGeometry,nl=e.positionLocal,ll=e.positionPrevious,sl=e.positionView,cl=e.positionViewDirection,ml=e.positionWorld,ul=e.positionWorldDirection,pl=e.posterize,dl=e.pow,gl=e.pow2,xl=e.pow3,hl=e.pow4,bl=e.premultiplyAlpha,fl=e.property,vl=e.radians,wl=e.rand,_l=e.range,Sl=e.rangeFog,Tl=e.rangeFogFactor,yl=e.reciprocal,Vl=e.reference,Ml=e.referenceBuffer,Fl=e.reflect,Dl=e.reflectVector,Il=e.reflectView,Bl=e.reflector,Cl=e.refract,Pl=e.refractVector,Al=e.refractView,Nl=e.reinhardToneMapping,Rl=e.remap,kl=e.remapClamp,Ol=e.renderGroup,Ll=e.renderOutput,Ul=e.rendererReference,Gl=e.replaceDefaultUV,jl=e.rotate,El=e.rotateUV,Wl=e.roughness,ql=e.round,zl=e.rtt,Zl=e.sRGBTransferEOTF,Xl=e.sRGBTransferOETF,Hl=e.sample,Kl=e.sampler,Yl=e.samplerComparison,Jl=e.saturate,Ql=e.saturation,$l=e.screen,es=e.screenCoordinate,ts=e.screenDPR,rs=e.screenSize,as=e.screenUV,os=e.scriptable,is=e.scriptableValue,ns=e.select,ls=e.setCurrentStack,ss=e.setName,cs=e.shaderStages,ms=e.shadow,us=e.shadowPositionWorld,ps=e.shapeCircle,ds=e.sharedUniformGroup,gs=e.sheen,xs=e.sheenRoughness,hs=e.shiftLeft,bs=e.shiftRight,fs=e.shininess,vs=e.sign,ws=e.sin,_s=e.sinc,Ss=e.skinning,Ts=e.smoothstep,ys=e.smoothstepElement,Vs=e.specularColor,Ms=e.specularF90,Fs=e.spherizeUV,Ds=e.split,Is=e.spritesheetUV,Bs=e.sqrt,Cs=e.stack,Ps=e.step,As=e.stepElement,Ns=e.storage,Rs=e.storageBarrier,ks=e.storageObject,Os=e.storageTexture,Ls=e.string,Us=e.struct,Gs=e.sub,js=e.subgroupAdd,Es=e.subgroupAll,Ws=e.subgroupAnd,qs=e.subgroupAny,zs=e.subgroupBallot,Zs=e.subgroupBroadcast,Xs=e.subgroupBroadcastFirst,Hs=e.subBuild,Ks=e.subgroupElect,Ys=e.subgroupExclusiveAdd,Js=e.subgroupExclusiveMul,Qs=e.subgroupInclusiveAdd,$s=e.subgroupInclusiveMul,ec=e.subgroupIndex,tc=e.subgroupMax,rc=e.subgroupMin,ac=e.subgroupMul,oc=e.subgroupOr,ic=e.subgroupShuffle,nc=e.subgroupShuffleDown,lc=e.subgroupShuffleUp,sc=e.subgroupShuffleXor,cc=e.subgroupSize,mc=e.subgroupXor,uc=e.tan,pc=e.tangentGeometry,dc=e.tangentLocal,gc=e.tangentView,xc=e.tangentWorld,hc=e.texture,bc=e.texture3D,fc=e.textureBarrier,vc=e.textureBicubic,wc=e.textureBicubicLevel,_c=e.textureCubeUV,Sc=e.textureLoad,Tc=e.textureSize,yc=e.textureLevel,Vc=e.textureStore,Mc=e.thickness,Fc=e.time,Dc=e.toneMapping,Ic=e.toneMappingExposure,Bc=e.toonOutlinePass,Cc=e.transformDirection,Pc=e.transformNormal,Ac=e.transformNormalToView,Nc=e.transformedClearcoatNormalView,Rc=e.transformedNormalView,kc=e.transformedNormalWorld,Oc=e.transmission,Lc=e.transpose,Uc=e.triNoise3D,Gc=e.triplanarTexture,jc=e.triplanarTextures,Ec=e.trunc,Wc=e.uint,qc=e.uintBitsToFloat,zc=e.uniform,Zc=e.uniformArray,Xc=e.uniformCubeTexture,Hc=e.uniformGroup,Kc=e.uniformFlow,Yc=e.uniformTexture,Jc=e.unpackHalf2x16,Qc=e.unpackSnorm2x16,$c=e.unpackUnorm2x16,em=e.unpremultiplyAlpha,tm=e.userData,rm=e.uv,am=e.uvec2,om=e.uvec3,im=e.uvec4,nm=e.varying,lm=e.varyingProperty,sm=e.vec2,cm=e.vec3,mm=e.vec4,um=e.vectorComponents,pm=e.velocity,dm=e.vertexColor,gm=e.vertexIndex,xm=e.vertexStage,hm=e.vibrance,bm=e.viewZToLogarithmicDepth,fm=e.viewZToOrthographicDepth,vm=e.viewZToPerspectiveDepth,wm=e.viewport,_m=e.viewportCoordinate,Sm=e.viewportDepthTexture,Tm=e.viewportLinearDepth,ym=e.viewportMipTexture,Vm=e.viewportResolution,Mm=e.viewportSafeUV,Fm=e.viewportSharedTexture,Dm=e.viewportSize,Im=e.viewportTexture,Bm=e.viewportUV,Cm=e.wgsl,Pm=e.wgslFn,Am=e.workgroupArray,Nm=e.workgroupBarrier,Rm=e.workgroupId,km=e.workingToColorSpace,Om=e.xor;export{t as BRDF_GGX,r as BRDF_Lambert,a as BasicPointShadowFilter,o as BasicShadowFilter,i as Break,n as Const,l as Continue,s as DFGLUT,c as D_GGX,m as Discard,u as EPSILON,p as F_Schlick,d as Fn,M as HALF_PI,g as INFINITY,x as If,h as Loop,b as NodeAccess,f as NodeShaderStage,v as NodeType,w as NodeUpdateType,Bn as OnBeforeMaterialUpdate,In as OnBeforeObjectUpdate,Pn as OnMaterialUpdate,Cn as OnObjectUpdate,_ as PCFShadowFilter,S as PCFSoftShadowFilter,T as PI,y as PI2,F as PointShadowFilter,D as Return,I as Schlick_to_F0,B as ScriptableNodeResources,C as ShaderNode,P as Stack,A as Switch,N as TBNViewMatrix,V as TWO_PI,R as VSMShadowFilter,k as V_GGX_SmithCorrelated,O as Var,L as VarIntent,U as abs,G as acesFilmicToneMapping,j as acos,E as add,W as addMethodChaining,q as addNodeElement,z as agxToneMapping,Z as all,X as alphaT,H as and,K as anisotropy,Y as anisotropyB,J as anisotropyT,Q as any,$ as append,ee as array,te as arrayBuffer,re as asin,ae as assign,oe as atan,ie as atan2,ne as atomicAdd,le as atomicAnd,se as atomicFunc,ce as atomicLoad,me as atomicMax,ue as atomicMin,pe as atomicOr,de as atomicStore,ge as atomicSub,xe as atomicXor,he as attenuationColor,be as attenuationDistance,fe as attribute,ve as attributeArray,we as backgroundBlurriness,_e as backgroundIntensity,Se as backgroundRotation,Te as batch,ye as bentNormalView,Ve as billboarding,Me as bitAnd,Fe as bitNot,De as bitOr,Ie as bitXor,Be as bitangentGeometry,Ce as bitangentLocal,Pe as bitangentView,Ae as bitangentWorld,Ne as bitcast,Re as blendBurn,ke as blendColor,Oe as blendDodge,Le as blendOverlay,Ue as blendScreen,Ge as blur,je as bool,Ee as buffer,We as bufferAttribute,Ze as builtin,Xe as builtinAOContext,He as builtinShadowContext,qe as bumpMap,ze as burn,Ke as bvec2,Ye as bvec3,Je as bvec4,Qe as bypass,$e as cache,et as call,tt as cameraFar,rt as cameraIndex,at as cameraNear,ot as cameraNormalMatrix,it as cameraPosition,nt as cameraProjectionMatrix,lt as cameraProjectionMatrixInverse,st as cameraViewMatrix,ct as cameraViewport,mt as cameraWorldMatrix,ut as cbrt,pt as cdl,dt as ceil,gt as checker,xt as cineonToneMapping,ht as clamp,bt as clearcoat,ft as clearcoatNormalView,vt as clearcoatRoughness,wt as code,_t as color,St as colorSpaceToWorking,Tt as colorToDirection,yt as compute,Vt as computeKernel,Mt as computeSkinning,Ft as context,Dt as convert,It as convertColorSpace,Bt as convertToTexture,Nt as cos,Ct as countLeadingZeros,Pt as countOneBits,At as countTrailingZeros,Rt as cross,kt as cubeTexture,Ot as cubeTextureBase,Lt as dFdx,Ut as dFdy,Gt as dashSize,jt as debug,Et as decrement,Wt as decrementBefore,qt as defaultBuildStages,zt as defaultShaderStages,Zt as defined,Xt as degrees,Ht as deltaTime,Kt as densityFog,Yt as densityFogFactor,Jt as depth,Qt as depthPass,$t as determinant,er as difference,tr as diffuseColor,rr as directPointLight,ar as directionToColor,or as directionToFaceDirection,ir as dispersion,nr as distance,lr as div,sr as dodge,cr as dot,mr as drawIndex,ur as dynamicBufferAttribute,pr as element,dr as emissive,gr as equal,xr as equals,hr as equirectUV,br as exp,fr as exp2,vr as expression,wr as faceDirection,_r as faceForward,Sr as faceforward,Tr as float,yr as floatBitsToInt,Vr as floatBitsToUint,Mr as floor,Fr as fog,Dr as fract,Ir as frameGroup,Br as frameId,Cr as frontFacing,Pr as fwidth,Ar as gain,Nr as gapSize,Rr as getConstNodeType,kr as getCurrentStack,Or as getDirection,Lr as getDistanceAttenuation,Ur as getGeometryRoughness,Gr as getNormalFromDepth,Wr as getParallaxCorrectNormal,qr as getRoughness,zr as getScreenPosition,Zr as getShIrradianceAt,Xr as getShadowMaterial,Hr as getShadowRenderObjectFunction,Kr as getTextureIndex,Yr as getViewPosition,Jr as globalId,Qr as glsl,$r as glslFn,ea as grayscale,ta as greaterThan,ra as greaterThanEqual,aa as hash,oa as highpModelNormalViewMatrix,ia as highpModelViewMatrix,na as hue,la as increment,sa as incrementBefore,ca as instance,ma as instanceIndex,ua as instancedArray,pa as instancedBufferAttribute,da as instancedDynamicBufferAttribute,ga as instancedMesh,xa as int,ha as intBitsToFloat,jr as interleavedGradientNoise,ba as inverse,fa as inverseSqrt,va as inversesqrt,wa as invocationLocalIndex,_a as invocationSubgroupIndex,Sa as ior,Ta as iridescence,ya as iridescenceIOR,Va as iridescenceThickness,Ma as ivec2,Fa as ivec3,Da as ivec4,Ia as js,Ba as label,Ca as length,Pa as lengthSq,Aa as lessThan,Na as lessThanEqual,Ra as lightPosition,ka as lightProjectionUV,Oa as lightShadowMatrix,La as lightTargetDirection,Ua as lightTargetPosition,Ga as lightViewPosition,ja as lightingContext,Ea as lights,Wa as linearDepth,qa as linearToneMapping,za as localId,Za as log,Xa as log2,Ha as logarithmicDepthToViewZ,Ka as luminance,Ya as mat2,Ja as mat3,Qa as mat4,$a as matcapUV,eo as materialAO,to as materialAlphaTest,ro as materialAnisotropy,ao as materialAnisotropyVector,oo as materialAttenuationColor,io as materialAttenuationDistance,no as materialClearcoat,lo as materialClearcoatNormal,so as materialClearcoatRoughness,co as materialColor,mo as materialDispersion,uo as materialEmissive,po as materialEnvIntensity,go as materialEnvRotation,xo as materialIOR,ho as materialIridescence,bo as materialIridescenceIOR,fo as materialIridescenceThickness,vo as materialLightMap,wo as materialLineDashOffset,_o as materialLineDashSize,So as materialLineGapSize,To as materialLineScale,yo as materialLineWidth,Vo as materialMetalness,Mo as materialNormal,Fo as materialOpacity,Do as materialPointSize,Io as materialReference,Bo as materialReflectivity,Co as materialRefractionRatio,Po as materialRotation,Ao as materialRoughness,No as materialSheen,Ro as materialSheenRoughness,ko as materialShininess,Oo as materialSpecular,Lo as materialSpecularColor,Uo as materialSpecularIntensity,Go as materialSpecularStrength,jo as materialThickness,Eo as materialTransmission,Wo as max,qo as maxMipLevel,zo as mediumpModelViewMatrix,Zo as metalness,Xo as min,Ho as mix,Ko as mixElement,Yo as mod,Jo as modInt,Qo as modelDirection,$o as modelNormalMatrix,ei as modelPosition,ti as modelRadius,ri as modelScale,ai as modelViewMatrix,oi as modelViewPosition,ii as modelViewProjection,ni as modelWorldMatrix,li as modelWorldMatrixInverse,si as morphReference,ci as mrt,mi as mul,ui as mx_aastep,pi as mx_add,di as mx_atan2,gi as mx_cell_noise_float,xi as mx_contrast,hi as mx_divide,bi as mx_fractal_noise_float,fi as mx_fractal_noise_vec2,vi as mx_fractal_noise_vec3,wi as mx_fractal_noise_vec4,_i as mx_frame,Si as mx_heighttonormal,Ti as mx_hsvtorgb,yi as mx_ifequal,Vi as mx_ifgreater,Mi as mx_ifgreatereq,Fi as mx_invert,Di as mx_modulo,Ii as mx_multiply,Bi as mx_noise_float,Ci as mx_noise_vec3,Pi as mx_noise_vec4,Ai as mx_place2d,Ni as mx_power,Ri as mx_ramp4,ki as mx_ramplr,Oi as mx_ramptb,Li as mx_rgbtohsv,Ui as mx_rotate2d,Gi as mx_rotate3d,ji as mx_safepower,Ei as mx_separate,Wi as mx_splitlr,qi as mx_splittb,zi as mx_srgb_texture_to_lin_rec709,Zi as mx_subtract,Xi as mx_timer,Hi as mx_transform_uv,Ki as mx_unifiednoise2d,Yi as mx_unifiednoise3d,Ji as mx_worley_noise_float,Qi as mx_worley_noise_vec2,$i as mx_worley_noise_vec3,en as negate,tn as neutralToneMapping,rn as nodeArray,an as nodeImmutable,on as nodeObject,nn as nodeObjectIntent,ln as nodeObjects,sn as nodeProxy,cn as nodeProxyIntent,mn as normalFlat,un as normalGeometry,pn as normalLocal,dn as normalMap,gn as normalView,xn as normalViewGeometry,hn as normalWorld,bn as normalWorldGeometry,fn as normalize,vn as not,wn as notEqual,_n as numWorkgroups,Sn as objectDirection,Tn as objectGroup,yn as objectPosition,Vn as objectRadius,Mn as objectScale,Fn as objectViewPosition,Dn as objectWorldMatrix,An as oneMinus,Nn as or,Rn as orthographicDepthToViewZ,kn as oscSawtooth,On as oscSine,Ln as oscSquare,Un as oscTriangle,Gn as output,jn as outputStruct,En as overlay,Wn as overloadingFn,qn as packHalf2x16,zn as packSnorm2x16,Zn as packUnorm2x16,Xn as parabola,Hn as parallaxDirection,Kn as parallaxUV,Yn as parameter,Jn as pass,Qn as passTexture,$n as pcurve,el as perspectiveDepthToViewZ,tl as pmremTexture,rl as pointShadow,al as pointUV,ol as pointWidth,il as positionGeometry,nl as positionLocal,ll as positionPrevious,sl as positionView,cl as positionViewDirection,ml as positionWorld,ul as positionWorldDirection,pl as posterize,dl as pow,gl as pow2,xl as pow3,hl as pow4,bl as premultiplyAlpha,fl as property,vl as radians,wl as rand,_l as range,Sl as rangeFog,Tl as rangeFogFactor,yl as reciprocal,Vl as reference,Ml as referenceBuffer,Fl as reflect,Dl as reflectVector,Il as reflectView,Bl as reflector,Cl as refract,Pl as refractVector,Al as refractView,Nl as reinhardToneMapping,Rl as remap,kl as remapClamp,Ol as renderGroup,Ll as renderOutput,Ul as rendererReference,Gl as replaceDefaultUV,jl as rotate,El as rotateUV,Wl as roughness,ql as round,zl as rtt,Zl as sRGBTransferEOTF,Xl as sRGBTransferOETF,Hl as sample,Kl as sampler,Yl as samplerComparison,Jl as saturate,Ql as saturation,$l as screen,es as screenCoordinate,ts as screenDPR,rs as screenSize,as as screenUV,os as scriptable,is as scriptableValue,ns as select,ls as setCurrentStack,ss as setName,cs as shaderStages,ms as shadow,us as shadowPositionWorld,ps as shapeCircle,ds as sharedUniformGroup,gs as sheen,xs as sheenRoughness,hs as shiftLeft,bs as shiftRight,fs as shininess,vs as sign,ws as sin,_s as sinc,Ss as skinning,Ts as smoothstep,ys as smoothstepElement,Vs as specularColor,Ms as specularF90,Fs as spherizeUV,Ds as split,Is as spritesheetUV,Bs as sqrt,Cs as stack,Ps as step,As as stepElement,Ns as storage,Rs as storageBarrier,ks as storageObject,Os as storageTexture,Ls as string,Us as struct,Gs as sub,Hs as subBuild,js as subgroupAdd,Es as subgroupAll,Ws as subgroupAnd,qs as subgroupAny,zs as subgroupBallot,Zs as subgroupBroadcast,Xs as subgroupBroadcastFirst,Ks as subgroupElect,Ys as subgroupExclusiveAdd,Js as subgroupExclusiveMul,Qs as subgroupInclusiveAdd,$s as subgroupInclusiveMul,ec as subgroupIndex,tc as subgroupMax,rc as subgroupMin,ac as subgroupMul,oc as subgroupOr,ic as subgroupShuffle,nc as subgroupShuffleDown,lc as subgroupShuffleUp,sc as subgroupShuffleXor,cc as subgroupSize,mc as subgroupXor,uc as tan,pc as tangentGeometry,dc as tangentLocal,gc as tangentView,xc as tangentWorld,hc as texture,bc as texture3D,fc as textureBarrier,vc as textureBicubic,wc as textureBicubicLevel,_c as textureCubeUV,yc as textureLevel,Sc as textureLoad,Tc as textureSize,Vc as textureStore,Mc as thickness,Fc as time,Dc as toneMapping,Ic as toneMappingExposure,Bc as toonOutlinePass,Cc as transformDirection,Pc as transformNormal,Ac as transformNormalToView,Nc as transformedClearcoatNormalView,Rc as transformedNormalView,kc as transformedNormalWorld,Oc as transmission,Lc as transpose,Uc as triNoise3D,Gc as triplanarTexture,jc as triplanarTextures,Ec as trunc,Wc as uint,qc as uintBitsToFloat,zc as uniform,Zc as uniformArray,Xc as uniformCubeTexture,Kc as uniformFlow,Hc as uniformGroup,Yc as uniformTexture,Jc as unpackHalf2x16,Qc as unpackSnorm2x16,$c as unpackUnorm2x16,em as unpremultiplyAlpha,tm as userData,rm as uv,am as uvec2,om as uvec3,im as uvec4,nm as varying,lm as varyingProperty,sm as vec2,cm as vec3,mm as vec4,um as vectorComponents,pm as velocity,dm as vertexColor,gm as vertexIndex,xm as vertexStage,hm as vibrance,bm as viewZToLogarithmicDepth,fm as viewZToOrthographicDepth,vm as viewZToPerspectiveDepth,wm as viewport,_m as viewportCoordinate,Sm as viewportDepthTexture,Tm as viewportLinearDepth,ym as viewportMipTexture,Vm as viewportResolution,Mm as viewportSafeUV,Fm as viewportSharedTexture,Dm as viewportSize,Im as viewportTexture,Bm as viewportUV,Er as vogelDiskSample,Cm as wgsl,Pm as wgslFn,Am as workgroupArray,Nm as workgroupBarrier,Rm as workgroupId,km as workingToColorSpace,Om as xor}; diff --git a/build/three.webgpu.js b/build/three.webgpu.js index 7c740a048487dc..b3ede71f7188ee 100644 --- a/build/three.webgpu.js +++ b/build/three.webgpu.js @@ -5445,8 +5445,8 @@ class AssignNode extends TempNode { const scope = targetNode.getScope(); - const targetProperties = builder.getNodeProperties( scope ); - targetProperties.assign = true; + const scopeData = builder.getDataFromNode( scope ); + scopeData.assign = true; const properties = builder.getNodeProperties( this ); properties.sourceNode = sourceNode; @@ -8255,6 +8255,22 @@ class VarNode extends Node { } + /** + * Checks if this node is used for intent. + * + * @param {NodeBuilder} builder - The node builder. + * @returns {boolean} Whether this node is used for intent. + */ + isIntent( builder ) { + + const data = builder.getDataFromNode( this ); + + if ( data.forceDeclaration === true ) return false; + + return this.intent; + + } + /** * Returns the intent flag of this node. * @@ -8292,49 +8308,58 @@ class VarNode extends Node { isAssign( builder ) { - const properties = builder.getNodeProperties( this ); + const data = builder.getDataFromNode( this ); - let assign = properties.assign; + return data.assign; - if ( assign !== true ) { + } - if ( this.node.isShaderCallNodeInternal && this.node.shaderNode.getLayout() === null ) { + build( ...params ) { - if ( builder.fnCall && builder.fnCall.shaderNode ) { + const builder = params[ 0 ]; - const shaderNodeData = builder.getDataFromNode( this.node.shaderNode ); + if ( this._hasStack( builder ) === false && builder.buildStage === 'setup' ) { - if ( shaderNodeData.hasLoop ) { + if ( builder.context.nodeLoop || builder.context.nodeBlock ) { - assign = true; + let addBefore = false; - } + if ( this.node.isShaderCallNodeInternal && this.node.shaderNode.getLayout() === null ) { - } + if ( builder.fnCall && builder.fnCall.shaderNode ) { - } + const shaderNodeData = builder.getDataFromNode( this.node.shaderNode ); - } + if ( shaderNodeData.hasLoop ) { - return assign; + const data = builder.getDataFromNode( this ); + data.forceDeclaration = true; - } + addBefore = true; - build( ...params ) { + } - const builder = params[ 0 ]; + } - if ( this._hasStack( builder ) === false && builder.buildStage === 'setup' ) { + } - if ( builder.context.nodeLoop || builder.context.nodeBlock ) { + const baseStack = builder.getBaseStack(); + + if ( addBefore ) { + + baseStack.addToStackBefore( this ); + + } else { - builder.getBaseStack().addToStack( this ); + baseStack.addToStack( this ); + + } } } - if ( this.intent === true ) { + if ( this.isIntent( builder ) ) { if ( this.isAssign( builder ) !== true ) { @@ -8370,7 +8395,7 @@ class VarNode extends Node { if ( nodeType == 'void' ) { - if ( this.intent !== true ) { + if ( this.isIntent( builder ) !== true ) { error( 'TSL: ".toVar()" can not be used with void type.' ); @@ -8994,7 +9019,7 @@ const convertColorSpace = ( node, sourceColorSpace, targetColorSpace ) => nodeOb addMethodChaining( 'workingToColorSpace', workingToColorSpace ); addMethodChaining( 'colorSpaceToWorking', colorSpaceToWorking ); -// TODO: Avoid duplicated code and ues only ReferenceBaseNode or ReferenceNode +// TODO: Avoid duplicated code and use only ReferenceBaseNode or ReferenceNode /** * This class is only relevant if the referenced property is array-like. @@ -14630,7 +14655,7 @@ const cubeTexture = ( value = EmptyTexture, uvNode = null, levelNode = null, bia */ const uniformCubeTexture = ( value = EmptyTexture ) => cubeTextureBase( value ); -// TODO: Avoid duplicated code and ues only ReferenceBaseNode or ReferenceNode +// TODO: Avoid duplicated code and use only ReferenceBaseNode or ReferenceNode /** * This class is only relevant if the referenced property is array-like. @@ -17848,7 +17873,20 @@ class SkinningNode extends Node { _frameId.set( skeleton, frame.frameId ); - if ( this.previousBoneMatricesNode !== null ) skeleton.previousBoneMatrices.set( skeleton.boneMatrices ); + if ( this.previousBoneMatricesNode !== null ) { + + if ( skeleton.previousBoneMatrices === null ) { + + // cloned skeletons miss "previousBoneMatrices" in their first updated + + skeleton.previousBoneMatrices = new Float32Array( skeleton.boneMatrices ); + + } + + skeleton.previousBoneMatrices.set( skeleton.boneMatrices ); + + + } skeleton.update(); @@ -23337,7 +23375,7 @@ const DATA = new Uint16Array( [ let lut = null; -const DFGApprox = /*@__PURE__*/ Fn( ( { roughness, dotNV } ) => { +const DFGLUT = /*@__PURE__*/ Fn( ( { roughness, dotNV } ) => { if ( lut === null ) { @@ -23372,8 +23410,8 @@ const BRDF_GGX_Multiscatter = /*@__PURE__*/ Fn( ( { lightDirection, f0, f90, rou const dotNV = normalView.dot( positionViewDirection ).clamp(); // Precomputed DFG values for view and light directions - const dfgV = DFGApprox( { roughness: _roughness, dotNV } ); - const dfgL = DFGApprox( { roughness: _roughness, dotNV: dotNL } ); + const dfgV = DFGLUT( { roughness: _roughness, dotNV } ); + const dfgL = DFGLUT( { roughness: _roughness, dotNV: dotNL } ); // Single-scattering energy for view and light const FssEss_V = f0.mul( dfgV.x ).add( f90.mul( dfgV.y ) ); @@ -23406,7 +23444,7 @@ const EnvironmentBRDF = /*@__PURE__*/ Fn( ( inputs ) => { const { dotNV, specularColor, specularF90, roughness } = inputs; - const fab = DFGApprox( { dotNV, roughness } ); + const fab = DFGLUT( { dotNV, roughness } ); return specularColor.mul( fab.x ).add( specularF90.mul( fab.y ) ); } ); @@ -24288,7 +24326,7 @@ class PhysicalLightingModel extends LightingModel { const dotNV = normalView.dot( positionViewDirection ).clamp(); // @ TODO: Move to core dotNV - const fab = DFGApprox( { roughness, dotNV } ); + const fab = DFGLUT( { roughness, dotNV } ); const Fr = iridescenceF0 ? iridescence.mix( f0, iridescenceF0 ) : f0; @@ -29092,7 +29130,7 @@ class RenderObject { /** * Returns the byte offset into the indirect attribute buffer. * - * @return {number} The byte offset into the indirect attribute buffer. + * @return {number|Array} The byte offset into the indirect attribute buffer. */ getIndirectOffset() { @@ -31324,6 +31362,7 @@ class Bindings extends DataMap { for ( const bindGroup of bindings ) { + this.backend.deleteBindGroupData( bindGroup ); this.delete( bindGroup ); } @@ -31341,6 +31380,7 @@ class Bindings extends DataMap { for ( const bindGroup of bindings ) { + this.backend.deleteBindGroupData( bindGroup ); this.delete( bindGroup ); } @@ -33154,6 +33194,15 @@ class StackNode extends Node { */ this._expressionNode = null; + /** + * The current node being processed. + * + * @private + * @type {Node} + * @default null + */ + this._currentNode = null; + /** * This flag can be used for type testing. * @@ -33187,9 +33236,10 @@ class StackNode extends Node { * Adds a node to this stack. * * @param {Node} node - The node to add. + * @param {number} [index=this.nodes.length] - The index where the node should be added. * @return {StackNode} A reference to this stack node. */ - addToStack( node ) { + addToStack( node, index = this.nodes.length ) { if ( node.isNode !== true ) { @@ -33198,12 +33248,26 @@ class StackNode extends Node { } - this.nodes.push( node ); + this.nodes.splice( index, 0, node ); return this; } + /** + * Adds a node to the stack before the current node. + * + * @param {Node} node - The node to add. + * @return {StackNode} A reference to this stack node. + */ + addToStackBefore( node ) { + + const index = this._currentNode ? this.nodes.indexOf( this._currentNode ) : 0; + + return this.addToStack( node, index ); + + } + /** * Represent an `if` statement in TSL. * @@ -33353,7 +33417,7 @@ class StackNode extends Node { for ( const childNode of this.getChildren() ) { - if ( childNode.isVarNode && childNode.intent === true ) { + if ( childNode.isVarNode && childNode.isIntent( builder ) ) { if ( childNode.isAssign( builder ) !== true ) { @@ -33383,19 +33447,23 @@ class StackNode extends Node { const previousStack = getCurrentStack(); + const buildStage = builder.buildStage; + setCurrentStack( this ); builder.setActiveStack( this ); - const buildStage = builder.buildStage; + // - for ( const node of this.nodes ) { + const buildNode = ( node ) => { + + this._currentNode = node; - if ( node.isVarNode && node.intent === true ) { + if ( node.isVarNode && node.isIntent( builder ) ) { if ( node.isAssign( builder ) !== true ) { - continue; + return; } @@ -33416,7 +33484,7 @@ class StackNode extends Node { if ( node.isVarNode && parents && parents.length === 1 && parents[ 0 ] && parents[ 0 ].isStackNode ) { - continue; // skip var nodes that are only used in .toVarying() + return; // skip var nodes that are only used in .toVarying() } @@ -33424,6 +33492,26 @@ class StackNode extends Node { } + }; + + // + + const nodes = [ ...this.nodes ]; + + for ( const node of nodes ) { + + buildNode( node ); + + } + + this._currentNode = null; + + const newNodes = this.nodes.filter( ( node ) => nodes.indexOf( node ) === -1 ); + + for ( const node of newNodes ) { + + buildNode( node ); + } // @@ -43991,7 +44079,15 @@ class ShadowNode extends ShadowBaseNode { } ).toInspector( `${ inspectName } / Depth`, () => { - return textureLoad( this.shadowMap.depthTexture, uv$1().mul( textureSize( texture( this.shadowMap.depthTexture ) ) ) ).x.oneMinus(); + // TODO: Use linear depth + + if ( this.shadowMap.texture.isCubeTexture ) { + + return cubeTexture( this.shadowMap.texture ).r.oneMinus(); + + } + + return textureLoad( this.shadowMap.depthTexture, uv$1().mul( textureSize( texture( this.shadowMap.depthTexture ) ) ) ).r.oneMinus(); } ); @@ -46864,7 +46960,7 @@ var TSL = /*#__PURE__*/Object.freeze({ Break: Break, Const: Const, Continue: Continue, - DFGApprox: DFGApprox, + DFGLUT: DFGLUT, D_GGX: D_GGX, Discard: Discard, EPSILON: EPSILON, @@ -63742,6 +63838,14 @@ class Backend { } + /** + * Delete GPU data associated with a bind group. + * + * @abstract + * @param {BindGroup} bindGroup - The bind group. + */ + deleteBindGroupData( /*bindGroup*/ ) { } + /** * Deletes an object from the internal data structure. * @@ -71899,7 +72003,7 @@ class WebGPUTextureUtils { */ _getDefaultCubeTextureGPU( format ) { - let defaultCubeTexture = this.defaultTexture[ format ]; + let defaultCubeTexture = this.defaultCubeTexture[ format ]; if ( defaultCubeTexture === undefined ) { @@ -75950,6 +76054,37 @@ class WebGPUAttributeUtils { } +/** +* Class representing a WebGPU bind group layout. +* +*/ +class BindGroupLayout { + + /** + * Constructs a new BindGroupLayout. + * + * @param {GPUBindGroupLayout} layoutGPU - A GPU Bind Group Layout. + */ + constructor( layoutGPU ) { + + /** + * The current GPUBindGroupLayout + * + * @type {GPUBindGroupLayout} + */ + this.layoutGPU = layoutGPU; + + /** + * The number of bind groups that use the current GPUBindGroupLayout + * + * @type {number} + */ + this.usedTimes = 0; + + } + +} + /** * A WebGPU backend utility module for managing bindings. * @@ -75977,11 +76112,11 @@ class WebGPUBindingUtils { this.backend = backend; /** - * A cache for managing bind group layouts. + * A cache that maps combinations of layout entries to existing bind group layouts. * - * @type {WeakMap,GPUBindGroupLayout>} + * @type {Map} */ - this.bindGroupLayoutCache = new WeakMap(); + this.bindGroupLayoutCache = new Map(); } @@ -75996,185 +76131,33 @@ class WebGPUBindingUtils { const backend = this.backend; const device = backend.device; - const entries = []; - - let index = 0; - - for ( const binding of bindGroup.bindings ) { - - const bindingGPU = { - binding: index ++, - visibility: binding.visibility - }; - - if ( binding.isUniformBuffer || binding.isStorageBuffer ) { - - const buffer = {}; // GPUBufferBindingLayout - - if ( binding.isStorageBuffer ) { - - if ( binding.visibility & GPUShaderStage.COMPUTE ) { - - // compute - - if ( binding.access === NodeAccess.READ_WRITE || binding.access === NodeAccess.WRITE_ONLY ) { - - buffer.type = GPUBufferBindingType.Storage; - - } else { - - buffer.type = GPUBufferBindingType.ReadOnlyStorage; - - } - - } else { - - buffer.type = GPUBufferBindingType.ReadOnlyStorage; - - } - - } - - bindingGPU.buffer = buffer; - - } else if ( binding.isSampledTexture && binding.store ) { - - const storageTexture = {}; // GPUStorageTextureBindingLayout - storageTexture.format = this.backend.get( binding.texture ).texture.format; - - const access = binding.access; - - if ( access === NodeAccess.READ_WRITE ) { - - storageTexture.access = GPUStorageTextureAccess.ReadWrite; - - } else if ( access === NodeAccess.WRITE_ONLY ) { - - storageTexture.access = GPUStorageTextureAccess.WriteOnly; - - } else { - - storageTexture.access = GPUStorageTextureAccess.ReadOnly; - - } - - if ( binding.texture.isArrayTexture ) { - - storageTexture.viewDimension = GPUTextureViewDimension.TwoDArray; - - } else if ( binding.texture.is3DTexture ) { - - storageTexture.viewDimension = GPUTextureViewDimension.ThreeD; - - } - - bindingGPU.storageTexture = storageTexture; - - } else if ( binding.isSampledTexture ) { - - const texture = {}; // GPUTextureBindingLayout - - const { primarySamples } = backend.utils.getTextureSampleData( binding.texture ); - - if ( primarySamples > 1 ) { - - texture.multisampled = true; - - if ( ! binding.texture.isDepthTexture ) { - - texture.sampleType = GPUTextureSampleType.UnfilterableFloat; - - } - - } - - if ( binding.texture.isDepthTexture ) { - - if ( backend.compatibilityMode && binding.texture.compareFunction === null ) { - - texture.sampleType = GPUTextureSampleType.UnfilterableFloat; - - } else { - - texture.sampleType = GPUTextureSampleType.Depth; - - } - - } else if ( binding.texture.isDataTexture || binding.texture.isDataArrayTexture || binding.texture.isData3DTexture ) { - - const type = binding.texture.type; - - if ( type === IntType ) { - - texture.sampleType = GPUTextureSampleType.SInt; - - } else if ( type === UnsignedIntType ) { - - texture.sampleType = GPUTextureSampleType.UInt; - - } else if ( type === FloatType ) { - - if ( this.backend.hasFeature( 'float32-filterable' ) ) { - - texture.sampleType = GPUTextureSampleType.Float; - - } else { - - texture.sampleType = GPUTextureSampleType.UnfilterableFloat; - - } - - } - - } - - if ( binding.isSampledCubeTexture ) { - - texture.viewDimension = GPUTextureViewDimension.Cube; - - } else if ( binding.texture.isArrayTexture || binding.texture.isDataArrayTexture || binding.texture.isCompressedArrayTexture ) { - - texture.viewDimension = GPUTextureViewDimension.TwoDArray; - - } else if ( binding.isSampledTexture3D ) { - - texture.viewDimension = GPUTextureViewDimension.ThreeD; - - } - - bindingGPU.texture = texture; - - } else if ( binding.isSampler ) { - - const sampler = {}; // GPUSamplerBindingLayout - - if ( binding.texture.isDepthTexture ) { - - if ( binding.texture.compareFunction !== null ) { - - sampler.type = GPUSamplerBindingType.Comparison; - - } else if ( backend.compatibilityMode ) { + const bindingsData = backend.get( bindGroup ); - sampler.type = GPUSamplerBindingType.NonFiltering; + // When current bind group has already been assigned a layout + if ( bindingsData.bindGroupLayout !== undefined ) { - } + return bindingsData.bindGroupLayout.layoutGPU; - } + } - bindingGPU.sampler = sampler; + const entries = this._createBindingsLayoutEntries( bindGroup ); - } else { + const bindGroupLayoutKey = JSON.stringify( entries ); - error( `WebGPUBindingUtils: Unsupported binding "${ binding }".` ); + let bindGroupLayout = this.bindGroupLayoutCache.get( bindGroupLayoutKey ); - } + if ( bindGroupLayout === undefined ) { - entries.push( bindingGPU ); + bindGroupLayout = new BindGroupLayout( device.createBindGroupLayout( { entries } ) ); + this.bindGroupLayoutCache.set( bindGroupLayoutKey, bindGroupLayout ); } - return device.createBindGroupLayout( { entries } ); + bindingsData.layout = bindGroupLayout; + bindingsData.layout.usedTimes ++; + bindingsData.layoutKey = bindGroupLayoutKey; + + return bindGroupLayout.layoutGPU; } @@ -76188,19 +76171,12 @@ class WebGPUBindingUtils { */ createBindings( bindGroup, bindings, cacheIndex, version = 0 ) { - const { backend, bindGroupLayoutCache } = this; + const { backend } = this; const bindingsData = backend.get( bindGroup ); // setup (static) binding layout and (dynamic) binding group - let bindLayoutGPU = bindGroupLayoutCache.get( bindGroup.bindingsReference ); - - if ( bindLayoutGPU === undefined ) { - - bindLayoutGPU = this.createBindingsLayout( bindGroup ); - bindGroupLayoutCache.set( bindGroup.bindingsReference, bindLayoutGPU ); - - } + const bindLayoutGPU = this.createBindingsLayout( bindGroup ); let bindGroupGPU; @@ -76235,7 +76211,6 @@ class WebGPUBindingUtils { } bindingsData.group = bindGroupGPU; - bindingsData.layout = bindLayoutGPU; } @@ -76297,10 +76272,10 @@ class WebGPUBindingUtils { * Creates a GPU bind group for the camera index. * * @param {Uint32Array} data - The index data. - * @param {GPUBindGroupLayout} layout - The GPU bind group layout. + * @param {GPUBindGroupLayout} layoutGPU - The GPU bind group layout. * @return {GPUBindGroup} The GPU bind group. */ - createBindGroupIndex( data, layout ) { + createBindGroupIndex( data, layoutGPU ) { const backend = this.backend; const device = backend.device; @@ -76320,7 +76295,7 @@ class WebGPUBindingUtils { return device.createBindGroup( { label: 'bindGroupCameraIndex_' + index, - layout, + layout: layoutGPU, entries } ); @@ -76481,6 +76456,242 @@ class WebGPUBindingUtils { } + /** + * Creates a bind group layout entry for the given binding. + * + * @param {Binding} binding - The binding. + * @param {number} index - The index of the bind group layout entry in the bind group layout. + * @return {GPUBindGroupLayoutEntry} The bind group layout entry. + */ + _createBindingLayoutEntry( binding, index ) { + + const backend = this.backend; + + const bindingGPU = { + binding: index, + visibility: binding.visibility + }; + + if ( binding.isUniformBuffer || binding.isStorageBuffer ) { + + const buffer = {}; // GPUBufferBindingLayout + + if ( binding.isStorageBuffer ) { + + if ( binding.visibility & GPUShaderStage.COMPUTE ) { + + // compute + + if ( binding.access === NodeAccess.READ_WRITE || binding.access === NodeAccess.WRITE_ONLY ) { + + buffer.type = GPUBufferBindingType.Storage; + + } else { + + buffer.type = GPUBufferBindingType.ReadOnlyStorage; + + } + + } else { + + buffer.type = GPUBufferBindingType.ReadOnlyStorage; + + } + + } + + bindingGPU.buffer = buffer; + + } else if ( binding.isSampledTexture && binding.store ) { + + const storageTexture = {}; // GPUStorageTextureBindingLayout + storageTexture.format = this.backend.get( binding.texture ).texture.format; + + const access = binding.access; + + if ( access === NodeAccess.READ_WRITE ) { + + storageTexture.access = GPUStorageTextureAccess.ReadWrite; + + } else if ( access === NodeAccess.WRITE_ONLY ) { + + storageTexture.access = GPUStorageTextureAccess.WriteOnly; + + } else { + + storageTexture.access = GPUStorageTextureAccess.ReadOnly; + + } + + if ( binding.texture.isArrayTexture ) { + + storageTexture.viewDimension = GPUTextureViewDimension.TwoDArray; + + } else if ( binding.texture.is3DTexture ) { + + storageTexture.viewDimension = GPUTextureViewDimension.ThreeD; + + } + + bindingGPU.storageTexture = storageTexture; + + } else if ( binding.isSampledTexture ) { + + const texture = {}; // GPUTextureBindingLayout + + const { primarySamples } = backend.utils.getTextureSampleData( binding.texture ); + + if ( primarySamples > 1 ) { + + texture.multisampled = true; + + if ( ! binding.texture.isDepthTexture ) { + + texture.sampleType = GPUTextureSampleType.UnfilterableFloat; + + } + + } + + if ( binding.texture.isDepthTexture ) { + + if ( backend.compatibilityMode && binding.texture.compareFunction === null ) { + + texture.sampleType = GPUTextureSampleType.UnfilterableFloat; + + } else { + + texture.sampleType = GPUTextureSampleType.Depth; + + } + + } else if ( binding.texture.isDataTexture || binding.texture.isDataArrayTexture || binding.texture.isData3DTexture ) { + + const type = binding.texture.type; + + if ( type === IntType ) { + + texture.sampleType = GPUTextureSampleType.SInt; + + } else if ( type === UnsignedIntType ) { + + texture.sampleType = GPUTextureSampleType.UInt; + + } else if ( type === FloatType ) { + + if ( this.backend.hasFeature( 'float32-filterable' ) ) { + + texture.sampleType = GPUTextureSampleType.Float; + + } else { + + texture.sampleType = GPUTextureSampleType.UnfilterableFloat; + + } + + } + + } + + if ( binding.isSampledCubeTexture ) { + + texture.viewDimension = GPUTextureViewDimension.Cube; + + } else if ( binding.texture.isArrayTexture || binding.texture.isDataArrayTexture || binding.texture.isCompressedArrayTexture ) { + + texture.viewDimension = GPUTextureViewDimension.TwoDArray; + + } else if ( binding.isSampledTexture3D ) { + + texture.viewDimension = GPUTextureViewDimension.ThreeD; + + } + + bindingGPU.texture = texture; + + } else if ( binding.isSampler ) { + + const sampler = {}; // GPUSamplerBindingLayout + + if ( binding.texture.isDepthTexture ) { + + if ( binding.texture.compareFunction !== null ) { + + sampler.type = GPUSamplerBindingType.Comparison; + + } else if ( backend.compatibilityMode ) { + + sampler.type = GPUSamplerBindingType.NonFiltering; + + } + + } + + bindingGPU.sampler = sampler; + + } else { + + error( `WebGPUBindingUtils: Unsupported binding "${ binding }".` ); + + } + + return bindingGPU; + + } + + /** + * Creates a GPU bind group layout entries for the given bind group. + * + * @param {BindGroup} bindGroup - The bind group. + * @return {Array} The GPU bind group layout entries. + */ + _createBindingsLayoutEntries( bindGroup ) { + + const entries = []; + let index = 0; + + for ( const binding of bindGroup.bindings ) { + + entries.push( this._createBindingLayoutEntry( binding, index ) ); + index ++; + + } + + return entries; + + } + + /** + * Delete the data associated with a bind group. + * + * @param {BindGroup} bindGroup - The bind group. + */ + deleteBindGroupData( bindGroup ) { + + const { backend } = this; + + const bindingsData = backend.get( bindGroup ); + + // Decrement the layout reference's usedTimes attribute + bindingsData.layout.usedTimes --; + + // Remove reference from map + if ( bindingsData.layout.usedTimes === 0 ) { + + this.bindGroupLayoutCache.delete( bindingsData.layoutKey ); + + } + + bindingsData.layout = null; + + } + + dispose() { + + this.bindGroupLayoutCache.clear(); + + } + } /** @@ -76572,8 +76783,9 @@ class WebGPUPipelineUtils { for ( const bindGroup of renderObject.getBindings() ) { const bindingsData = backend.get( bindGroup ); + const { layoutGPU } = bindingsData.layout; - bindGroupLayouts.push( bindingsData.layout ); + bindGroupLayouts.push( layoutGPU ); } @@ -76807,8 +77019,9 @@ class WebGPUPipelineUtils { for ( const bindingsGroup of bindings ) { const bindingsData = backend.get( bindingsGroup ); + const { layoutGPU } = bindingsData.layout; - bindGroupLayouts.push( bindingsData.layout ); + bindGroupLayouts.push( layoutGPU ); } @@ -79177,8 +79390,13 @@ class WebGPUBackend extends Backend { const buffer = this.get( indirect ).buffer; const indirectOffset = renderObject.getIndirectOffset(); + const indirectOffsets = Array.isArray( indirectOffset ) ? indirectOffset : [ indirectOffset ]; + + for ( let i = 0; i < indirectOffsets.length; i ++ ) { - passEncoderGPU.drawIndexedIndirect( buffer, indirectOffset ); + passEncoderGPU.drawIndexedIndirect( buffer, indirectOffsets[ i ] ); + + } } else { @@ -79198,8 +79416,14 @@ class WebGPUBackend extends Backend { const buffer = this.get( indirect ).buffer; const indirectOffset = renderObject.getIndirectOffset(); + const indirectOffsets = Array.isArray( indirectOffset ) ? indirectOffset : [ indirectOffset ]; + + for ( let i = 0; i < indirectOffsets.length; i ++ ) { + + passEncoderGPU.drawIndirect( buffer, indirectOffsets[ i ] ); + + } - passEncoderGPU.drawIndirect( buffer, indirectOffset ); } else { @@ -79230,7 +79454,9 @@ class WebGPUBackend extends Backend { data[ 0 ] = i; - const bindGroupIndex = this.bindingUtils.createBindGroupIndex( data, bindingsData.layout ); + const { layoutGPU } = bindingsData.layout; + + const bindGroupIndex = this.bindingUtils.createBindGroupIndex( data, layoutGPU ); indexesGPU.push( bindGroupIndex ); @@ -79697,6 +79923,17 @@ class WebGPUBackend extends Backend { } + /** + * Delete data associated with the current bind group. + * + * @param {BindGroup} bindGroup - The bind group. + */ + deleteBindGroupData( bindGroup ) { + + this.bindingUtils.deleteBindGroupData( bindGroup ); + + } + /** * Updates the given bind group definition. * @@ -80052,6 +80289,7 @@ class WebGPUBackend extends Backend { dispose() { this.textureUtils.dispose(); + this.bindingUtils.dispose(); } diff --git a/build/three.webgpu.min.js b/build/three.webgpu.min.js index 7fb29e7ff2dbff..a782af4243ffff 100644 --- a/build/three.webgpu.min.js +++ b/build/three.webgpu.min.js @@ -3,4 +3,4 @@ * Copyright 2010-2025 Three.js Authors * SPDX-License-Identifier: MIT */ -import{Color as e,Vector2 as t,Vector3 as r,Vector4 as s,Matrix2 as i,Matrix3 as n,Matrix4 as a,error as o,EventDispatcher as u,MathUtils as l,warn as d,WebGLCoordinateSystem as c,WebGPUCoordinateSystem as h,ColorManagement as p,SRGBTransfer as g,NoToneMapping as m,StaticDrawUsage as f,InterleavedBufferAttribute as y,InterleavedBuffer as b,DynamicDrawUsage as x,NoColorSpace as T,log as _,warnOnce as v,Texture as N,UnsignedIntType as S,IntType as R,NearestFilter as A,Sphere as E,BackSide as w,DoubleSide as C,Euler as M,CubeTexture as B,CubeReflectionMapping as L,CubeRefractionMapping as P,TangentSpaceNormalMap as F,NoNormalPacking as D,NormalRGPacking as I,NormalGAPacking as U,ObjectSpaceNormalMap as O,RGFormat as V,RED_GREEN_RGTC2_Format as k,RG11_EAC_Format as G,InstancedInterleavedBuffer as z,InstancedBufferAttribute as $,DataArrayTexture as W,FloatType as H,FramebufferTexture as j,LinearMipmapLinearFilter as q,DepthTexture as X,Material as K,LineBasicMaterial as Y,LineDashedMaterial as Q,NoBlending as Z,MeshNormalMaterial as J,SRGBColorSpace as ee,WebGLCubeRenderTarget as te,BoxGeometry as re,Mesh as se,Scene as ie,LinearFilter as ne,CubeCamera as ae,EquirectangularReflectionMapping as oe,EquirectangularRefractionMapping as ue,AddOperation as le,MixOperation as de,MultiplyOperation as ce,MeshBasicMaterial as he,MeshLambertMaterial as pe,MeshPhongMaterial as ge,DataTexture as me,HalfFloatType as fe,ClampToEdgeWrapping as ye,BufferGeometry as be,OrthographicCamera as xe,PerspectiveCamera as Te,RenderTarget as _e,LinearSRGBColorSpace as ve,RGBAFormat as Ne,CubeUVReflectionMapping as Se,BufferAttribute as Re,MeshStandardMaterial as Ae,MeshPhysicalMaterial as Ee,MeshToonMaterial as we,MeshMatcapMaterial as Ce,SpriteMaterial as Me,PointsMaterial as Be,ShadowMaterial as Le,Uint32BufferAttribute as Pe,Uint16BufferAttribute as Fe,arrayNeedsUint32 as De,Camera as Ie,DepthStencilFormat as Ue,DepthFormat as Oe,UnsignedInt248Type as Ve,UnsignedByteType as ke,Plane as Ge,Object3D as ze,LinearMipMapLinearFilter as $e,Float32BufferAttribute as We,UVMapping as He,VSMShadowMap as je,LessCompare as qe,BasicShadowMap as Xe,CubeDepthTexture as Ke,SphereGeometry as Ye,NormalBlending as Qe,LinearMipmapNearestFilter as Ze,NearestMipmapLinearFilter as Je,Float16BufferAttribute as et,REVISION as tt,ArrayCamera as rt,PlaneGeometry as st,FrontSide as it,CustomBlending as nt,AddEquation as at,ZeroFactor as ot,CylinderGeometry as ut,Quaternion as lt,WebXRController as dt,RAD2DEG as ct,PCFShadowMap as ht,FrustumArray as pt,Frustum as gt,RedIntegerFormat as mt,RedFormat as ft,ShortType as yt,ByteType as bt,UnsignedShortType as xt,RGIntegerFormat as Tt,RGBIntegerFormat as _t,RGBFormat as vt,RGBAIntegerFormat as Nt,TimestampQuery as St,createCanvasElement as Rt,ReverseSubtractEquation as At,SubtractEquation as Et,OneMinusDstAlphaFactor as wt,OneMinusDstColorFactor as Ct,OneMinusSrcAlphaFactor as Mt,OneMinusSrcColorFactor as Bt,DstAlphaFactor as Lt,DstColorFactor as Pt,SrcAlphaSaturateFactor as Ft,SrcAlphaFactor as Dt,SrcColorFactor as It,OneFactor as Ut,CullFaceNone as Ot,CullFaceBack as Vt,CullFaceFront as kt,MultiplyBlending as Gt,SubtractiveBlending as zt,AdditiveBlending as $t,NotEqualDepth as Wt,GreaterDepth as Ht,GreaterEqualDepth as jt,EqualDepth as qt,LessEqualDepth as Xt,LessDepth as Kt,AlwaysDepth as Yt,NeverDepth as Qt,UnsignedShort4444Type as Zt,UnsignedShort5551Type as Jt,UnsignedInt5999Type as er,UnsignedInt101111Type as tr,AlphaFormat as rr,RGB_S3TC_DXT1_Format as sr,RGBA_S3TC_DXT1_Format as ir,RGBA_S3TC_DXT3_Format as nr,RGBA_S3TC_DXT5_Format as ar,RGB_PVRTC_4BPPV1_Format as or,RGB_PVRTC_2BPPV1_Format as ur,RGBA_PVRTC_4BPPV1_Format as lr,RGBA_PVRTC_2BPPV1_Format as dr,RGB_ETC1_Format as cr,RGB_ETC2_Format as hr,RGBA_ETC2_EAC_Format as pr,R11_EAC_Format as gr,SIGNED_R11_EAC_Format as mr,SIGNED_RG11_EAC_Format as fr,RGBA_ASTC_4x4_Format as yr,RGBA_ASTC_5x4_Format as br,RGBA_ASTC_5x5_Format as xr,RGBA_ASTC_6x5_Format as Tr,RGBA_ASTC_6x6_Format as _r,RGBA_ASTC_8x5_Format as vr,RGBA_ASTC_8x6_Format as Nr,RGBA_ASTC_8x8_Format as Sr,RGBA_ASTC_10x5_Format as Rr,RGBA_ASTC_10x6_Format as Ar,RGBA_ASTC_10x8_Format as Er,RGBA_ASTC_10x10_Format as wr,RGBA_ASTC_12x10_Format as Cr,RGBA_ASTC_12x12_Format as Mr,RGBA_BPTC_Format as Br,RED_RGTC1_Format as Lr,SIGNED_RED_RGTC1_Format as Pr,SIGNED_RED_GREEN_RGTC2_Format as Fr,MirroredRepeatWrapping as Dr,RepeatWrapping as Ir,NearestMipmapNearestFilter as Ur,NotEqualCompare as Or,GreaterCompare as Vr,GreaterEqualCompare as kr,EqualCompare as Gr,LessEqualCompare as zr,AlwaysCompare as $r,NeverCompare as Wr,LinearTransfer as Hr,getByteLength as jr,isTypedArray as qr,NotEqualStencilFunc as Xr,GreaterStencilFunc as Kr,GreaterEqualStencilFunc as Yr,EqualStencilFunc as Qr,LessEqualStencilFunc as Zr,LessStencilFunc as Jr,AlwaysStencilFunc as es,NeverStencilFunc as ts,DecrementWrapStencilOp as rs,IncrementWrapStencilOp as ss,DecrementStencilOp as is,IncrementStencilOp as ns,InvertStencilOp as as,ReplaceStencilOp as os,ZeroStencilOp as us,KeepStencilOp as ls,MaxEquation as ds,MinEquation as cs,SpotLight as hs,PointLight as ps,DirectionalLight as gs,RectAreaLight as ms,AmbientLight as fs,HemisphereLight as ys,LightProbe as bs,LinearToneMapping as xs,ReinhardToneMapping as Ts,CineonToneMapping as _s,ACESFilmicToneMapping as vs,AgXToneMapping as Ns,NeutralToneMapping as Ss,Group as Rs,Loader as As,FileLoader as Es,MaterialLoader as ws,ObjectLoader as Cs}from"./three.core.min.js";export{AdditiveAnimationBlendMode,AnimationAction,AnimationClip,AnimationLoader,AnimationMixer,AnimationObjectGroup,AnimationUtils,ArcCurve,ArrowHelper,AttachedBindMode,Audio,AudioAnalyser,AudioContext,AudioListener,AudioLoader,AxesHelper,BasicDepthPacking,BatchedMesh,Bone,BooleanKeyframeTrack,Box2,Box3,Box3Helper,BoxHelper,BufferGeometryLoader,Cache,CameraHelper,CanvasTexture,CapsuleGeometry,CatmullRomCurve3,CircleGeometry,Clock,ColorKeyframeTrack,CompressedArrayTexture,CompressedCubeTexture,CompressedTexture,CompressedTextureLoader,ConeGeometry,ConstantAlphaFactor,ConstantColorFactor,Controls,CubeTextureLoader,CubicBezierCurve,CubicBezierCurve3,CubicInterpolant,CullFaceFrontBack,Curve,CurvePath,CustomToneMapping,Cylindrical,Data3DTexture,DataTextureLoader,DataUtils,DefaultLoadingManager,DetachedBindMode,DirectionalLightHelper,DiscreteInterpolant,DodecahedronGeometry,DynamicCopyUsage,DynamicReadUsage,EdgesGeometry,EllipseCurve,ExternalTexture,ExtrudeGeometry,Fog,FogExp2,GLBufferAttribute,GLSL1,GLSL3,GridHelper,HemisphereLightHelper,IcosahedronGeometry,IdentityDepthPacking,ImageBitmapLoader,ImageLoader,ImageUtils,InstancedBufferGeometry,InstancedMesh,Int16BufferAttribute,Int32BufferAttribute,Int8BufferAttribute,Interpolant,InterpolateDiscrete,InterpolateLinear,InterpolateSmooth,InterpolationSamplingMode,InterpolationSamplingType,KeyframeTrack,LOD,LatheGeometry,Layers,Light,Line,Line3,LineCurve,LineCurve3,LineLoop,LineSegments,LinearInterpolant,LinearMipMapNearestFilter,LoaderUtils,LoadingManager,LoopOnce,LoopPingPong,LoopRepeat,MOUSE,MeshDepthMaterial,MeshDistanceMaterial,NearestMipMapLinearFilter,NearestMipMapNearestFilter,NormalAnimationBlendMode,NumberKeyframeTrack,OctahedronGeometry,OneMinusConstantAlphaFactor,OneMinusConstantColorFactor,PCFSoftShadowMap,Path,PlaneHelper,PointLightHelper,Points,PolarGridHelper,PolyhedronGeometry,PositionalAudio,PropertyBinding,PropertyMixer,QuadraticBezierCurve,QuadraticBezierCurve3,QuaternionKeyframeTrack,QuaternionLinearInterpolant,RGBADepthPacking,RGBDepthPacking,RGB_BPTC_SIGNED_Format,RGB_BPTC_UNSIGNED_Format,RGDepthPacking,RawShaderMaterial,Ray,Raycaster,RenderTarget3D,RingGeometry,ShaderMaterial,Shape,ShapeGeometry,ShapePath,ShapeUtils,Skeleton,SkeletonHelper,SkinnedMesh,Source,Spherical,SphericalHarmonics3,SplineCurve,SpotLightHelper,Sprite,StaticCopyUsage,StaticReadUsage,StereoCamera,StreamCopyUsage,StreamDrawUsage,StreamReadUsage,StringKeyframeTrack,TOUCH,TetrahedronGeometry,TextureLoader,TextureUtils,Timer,TorusGeometry,TorusKnotGeometry,Triangle,TriangleFanDrawMode,TriangleStripDrawMode,TrianglesDrawMode,TubeGeometry,Uint8BufferAttribute,Uint8ClampedBufferAttribute,Uniform,UniformsGroup,VectorKeyframeTrack,VideoFrameTexture,VideoTexture,WebGL3DRenderTarget,WebGLArrayRenderTarget,WebGLRenderTarget,WireframeGeometry,WrapAroundEnding,ZeroCurvatureEnding,ZeroSlopeEnding,getConsoleFunction,setConsoleFunction}from"./three.core.min.js";const Ms=["alphaMap","alphaTest","anisotropy","anisotropyMap","anisotropyRotation","aoMap","aoMapIntensity","attenuationColor","attenuationDistance","bumpMap","clearcoat","clearcoatMap","clearcoatNormalMap","clearcoatNormalScale","clearcoatRoughness","color","dispersion","displacementMap","emissive","emissiveIntensity","emissiveMap","envMap","envMapIntensity","gradientMap","ior","iridescence","iridescenceIOR","iridescenceMap","iridescenceThicknessMap","lightMap","lightMapIntensity","map","matcap","metalness","metalnessMap","normalMap","normalScale","opacity","roughness","roughnessMap","sheen","sheenColor","sheenColorMap","sheenRoughnessMap","shininess","specular","specularColor","specularColorMap","specularIntensity","specularIntensityMap","specularMap","thickness","transmission","transmissionMap"],Bs=new WeakMap;class Ls{constructor(e){this.renderObjects=new WeakMap,this.hasNode=this.containsNode(e),this.hasAnimation=!0===e.object.isSkinnedMesh,this.refreshUniforms=Ms,this.renderId=0}firstInitialization(e){return!1===this.renderObjects.has(e)&&(this.getRenderObjectData(e),!0)}needsVelocity(e){const t=e.getMRT();return null!==t&&t.has("velocity")}getRenderObjectData(e){let t=this.renderObjects.get(e);if(void 0===t){const{geometry:r,material:s,object:i}=e;if(t={material:this.getMaterialData(s),geometry:{id:r.id,attributes:this.getAttributesData(r.attributes),indexVersion:r.index?r.index.version:null,drawRange:{start:r.drawRange.start,count:r.drawRange.count}},worldMatrix:i.matrixWorld.clone()},i.center&&(t.center=i.center.clone()),i.morphTargetInfluences&&(t.morphTargetInfluences=i.morphTargetInfluences.slice()),null!==e.bundle&&(t.version=e.bundle.version),t.material.transmission>0){const{width:r,height:s}=e.context;t.bufferWidth=r,t.bufferHeight=s}t.lights=this.getLightsData(e.lightsNode.getLights()),this.renderObjects.set(e,t)}return t}getAttributesData(e){const t={};for(const r in e){const s=e[r];t[r]={version:s.version}}return t}containsNode(e){const t=e.material;for(const e in t)if(t[e]&&t[e].isNode)return!0;return!!(e.context.modelViewMatrix||e.context.modelNormalViewMatrix||e.context.getAO||e.context.getShadow)}getMaterialData(e){const t={};for(const r of this.refreshUniforms){const s=e[r];null!=s&&("object"==typeof s&&void 0!==s.clone?!0===s.isTexture?t[r]={id:s.id,version:s.version}:t[r]=s.clone():t[r]=s)}return t}equals(e,t){const{object:r,material:s,geometry:i}=e,n=this.getRenderObjectData(e);if(!0!==n.worldMatrix.equals(r.matrixWorld))return n.worldMatrix.copy(r.matrixWorld),!1;const a=n.material;for(const e in a){const t=a[e],r=s[e];if(void 0!==t.equals){if(!1===t.equals(r))return t.copy(r),!1}else if(!0===r.isTexture){if(t.id!==r.id||t.version!==r.version)return t.id=r.id,t.version=r.version,!1}else if(t!==r)return a[e]=r,!1}if(a.transmission>0){const{width:t,height:r}=e.context;if(n.bufferWidth!==t||n.bufferHeight!==r)return n.bufferWidth=t,n.bufferHeight=r,!1}const o=n.geometry,u=i.attributes,l=o.attributes,d=Object.keys(l),c=Object.keys(u);if(o.id!==i.id)return o.id=i.id,!1;if(d.length!==c.length)return n.geometry.attributes=this.getAttributesData(u),!1;for(const e of d){const t=l[e],r=u[e];if(void 0===r)return delete l[e],!1;if(t.version!==r.version)return t.version=r.version,!1}const h=i.index,p=o.indexVersion,g=h?h.version:null;if(p!==g)return o.indexVersion=g,!1;if(o.drawRange.start!==i.drawRange.start||o.drawRange.count!==i.drawRange.count)return o.drawRange.start=i.drawRange.start,o.drawRange.count=i.drawRange.count,!1;if(n.morphTargetInfluences){let e=!1;for(let t=0;t>>16,2246822507),r^=Math.imul(s^s>>>13,3266489909),s=Math.imul(s^s>>>16,2246822507),s^=Math.imul(r^r>>>13,3266489909),4294967296*(2097151&s)+(r>>>0)}const Fs=e=>Ps(e),Ds=e=>Ps(e),Is=(...e)=>Ps(e),Us=new Map([[1,"float"],[2,"vec2"],[3,"vec3"],[4,"vec4"],[9,"mat3"],[16,"mat4"]]),Os=new WeakMap;function Vs(e){return Us.get(e)}function ks(e){if(/[iu]?vec\d/.test(e))return e.startsWith("ivec")?Int32Array:e.startsWith("uvec")?Uint32Array:Float32Array;if(/mat\d/.test(e))return Float32Array;if(/float/.test(e))return Float32Array;if(/uint/.test(e))return Uint32Array;if(/int/.test(e))return Int32Array;throw new Error(`THREE.NodeUtils: Unsupported type: ${e}`)}function Gs(e){return/float|int|uint/.test(e)?1:/vec2/.test(e)?2:/vec3/.test(e)?3:/vec4/.test(e)||/mat2/.test(e)?4:/mat3/.test(e)?9:/mat4/.test(e)?16:void o("TSL: Unsupported type:",e)}function zs(e){return/float|int|uint/.test(e)?1:/vec2/.test(e)?2:/vec3/.test(e)?3:/vec4/.test(e)||/mat2/.test(e)?4:/mat3/.test(e)?12:/mat4/.test(e)?16:void o("TSL: Unsupported type:",e)}function $s(e){return/float|int|uint/.test(e)?4:/vec2/.test(e)?8:/vec3/.test(e)||/vec4/.test(e)?16:/mat2/.test(e)?8:/mat3/.test(e)||/mat4/.test(e)?16:void o("TSL: Unsupported type:",e)}function Ws(e){if(null==e)return null;const t=typeof e;return!0===e.isNode?"node":"number"===t?"float":"boolean"===t?"bool":"string"===t?"string":"function"===t?"shader":!0===e.isVector2?"vec2":!0===e.isVector3?"vec3":!0===e.isVector4?"vec4":!0===e.isMatrix2?"mat2":!0===e.isMatrix3?"mat3":!0===e.isMatrix4?"mat4":!0===e.isColor?"color":e instanceof ArrayBuffer?"ArrayBuffer":null}function Hs(o,...u){const l=o?o.slice(-4):void 0;return 1===u.length&&("vec2"===l?u=[u[0],u[0]]:"vec3"===l?u=[u[0],u[0],u[0]]:"vec4"===l&&(u=[u[0],u[0],u[0],u[0]])),"color"===o?new e(...u):"vec2"===l?new t(...u):"vec3"===l?new r(...u):"vec4"===l?new s(...u):"mat2"===l?new i(...u):"mat3"===l?new n(...u):"mat4"===l?new a(...u):"bool"===o?u[0]||!1:"float"===o||"int"===o||"uint"===o?u[0]||0:"string"===o?u[0]||"":"ArrayBuffer"===o?Xs(u[0]):null}function js(e){let t=Os.get(e);return void 0===t&&(t={},Os.set(e,t)),t}function qs(e){let t="";const r=new Uint8Array(e);for(let e=0;ee.charCodeAt(0)).buffer}var Ks=Object.freeze({__proto__:null,arrayBufferToBase64:qs,base64ToArrayBuffer:Xs,getAlignmentFromType:$s,getDataFromObject:js,getLengthFromType:Gs,getMemoryLengthFromType:zs,getTypeFromLength:Vs,getTypedArrayFromType:ks,getValueFromType:Hs,getValueType:Ws,hash:Is,hashArray:Ds,hashString:Fs});const Ys={VERTEX:"vertex",FRAGMENT:"fragment"},Qs={NONE:"none",FRAME:"frame",RENDER:"render",OBJECT:"object"},Zs={BOOLEAN:"bool",INTEGER:"int",FLOAT:"float",VECTOR2:"vec2",VECTOR3:"vec3",VECTOR4:"vec4",MATRIX2:"mat2",MATRIX3:"mat3",MATRIX4:"mat4"},Js={READ_ONLY:"readOnly",WRITE_ONLY:"writeOnly",READ_WRITE:"readWrite"},ei=["fragment","vertex"],ti=["setup","analyze","generate"],ri=[...ei,"compute"],si=["x","y","z","w"],ii={analyze:"setup",generate:"analyze"};let ni=0;class ai extends u{static get type(){return"Node"}constructor(e=null){super(),this.nodeType=e,this.updateType=Qs.NONE,this.updateBeforeType=Qs.NONE,this.updateAfterType=Qs.NONE,this.uuid=l.generateUUID(),this.version=0,this.name="",this.global=!1,this.parents=!1,this.isNode=!0,this._beforeNodes=null,this._cacheKey=null,this._cacheKeyVersion=0,Object.defineProperty(this,"id",{value:ni++})}set needsUpdate(e){!0===e&&this.version++}get type(){return this.constructor.type}onUpdate(e,t){return this.updateType=t,this.update=e.bind(this),this}onFrameUpdate(e){return this.onUpdate(e,Qs.FRAME)}onRenderUpdate(e){return this.onUpdate(e,Qs.RENDER)}onObjectUpdate(e){return this.onUpdate(e,Qs.OBJECT)}onReference(e){return this.updateReference=e.bind(this),this}updateReference(){return this}isGlobal(){return this.global}*getChildren(){for(const{childNode:e}of this._getChildren())yield e}dispose(){this.dispatchEvent({type:"dispose"})}traverse(e){e(this);for(const t of this.getChildren())t.traverse(e)}_getChildren(e=new Set){const t=[];e.add(this);for(const r of Object.getOwnPropertyNames(this)){const s=this[r];if(!0!==r.startsWith("_")&&!e.has(s))if(!0===Array.isArray(s))for(let e=0;e0&&(e.inputNodes=r)}deserialize(e){if(void 0!==e.inputNodes){const t=e.meta.nodes;for(const r in e.inputNodes)if(Array.isArray(e.inputNodes[r])){const s=[];for(const i of e.inputNodes[r])s.push(t[i]);this[r]=s}else if("object"==typeof e.inputNodes[r]){const s={};for(const i in e.inputNodes[r]){const n=e.inputNodes[r][i];s[i]=t[n]}this[r]=s}else{const s=e.inputNodes[r];this[r]=t[s]}}}toJSON(e){const{uuid:t,type:r}=this,s=void 0===e||"string"==typeof e;s&&(e={textures:{},images:{},nodes:{}});let i=e.nodes[t];function n(e){const t=[];for(const r in e){const s=e[r];delete s.metadata,t.push(s)}return t}if(void 0===i&&(i={uuid:t,type:r,meta:e,metadata:{version:4.7,type:"Node",generator:"Node.toJSON"}},!0!==s&&(e.nodes[i.uuid]=i),this.serialize(i),delete i.meta),s){const t=n(e.textures),r=n(e.images),s=n(e.nodes);t.length>0&&(i.textures=t),r.length>0&&(i.images=r),s.length>0&&(i.nodes=s)}return i}}class oi extends ai{static get type(){return"ArrayElementNode"}constructor(e,t){super(),this.node=e,this.indexNode=t,this.isArrayElementNode=!0}getNodeType(e){return this.node.getElementType(e)}generate(e){const t=this.indexNode.getNodeType(e);return`${this.node.build(e)}[ ${this.indexNode.build(e,!e.isVector(t)&&e.isInteger(t)?t:"uint")} ]`}}class ui extends ai{static get type(){return"ConvertNode"}constructor(e,t){super(),this.node=e,this.convertTo=t}getNodeType(e){const t=this.node.getNodeType(e);let r=null;for(const s of this.convertTo.split("|"))null!==r&&e.getTypeLength(t)!==e.getTypeLength(s)||(r=s);return r}serialize(e){super.serialize(e),e.convertTo=this.convertTo}deserialize(e){super.deserialize(e),this.convertTo=e.convertTo}generate(e,t){const r=this.node,s=this.getNodeType(e),i=r.build(e,s);return e.format(i,s,t)}}class li extends ai{static get type(){return"TempNode"}constructor(e=null){super(e),this.isTempNode=!0}hasDependencies(e){return e.getDataFromNode(this).usageCount>1}build(e,t){if("generate"===e.getBuildStage()){const r=e.getVectorType(this.getNodeType(e,t)),s=e.getDataFromNode(this);if(void 0!==s.propertyName)return e.format(s.propertyName,r,t);if("void"!==r&&"void"!==t&&this.hasDependencies(e)){const i=super.build(e,r),n=e.getVarFromNode(this,null,r),a=e.getPropertyName(n);return e.addLineFlowCode(`${a} = ${i}`,this),s.snippet=i,s.propertyName=a,e.format(s.propertyName,r,t)}}return super.build(e,t)}}class di extends li{static get type(){return"JoinNode"}constructor(e=[],t=null){super(t),this.nodes=e}getNodeType(e){return null!==this.nodeType?e.getVectorType(this.nodeType):e.getTypeFromLength(this.nodes.reduce((t,r)=>t+e.getTypeLength(r.getNodeType(e)),0))}generate(e,t){const r=this.getNodeType(e),s=e.getTypeLength(r),i=this.nodes,n=e.getComponentType(r),a=[];let u=0;for(const t of i){if(u>=s){o(`TSL: Length of parameters exceeds maximum length of function '${r}()' type.`);break}let i,l=t.getNodeType(e),d=e.getTypeLength(l);u+d>s&&(o(`TSL: Length of '${r}()' data exceeds maximum length of output type.`),d=s-u,l=e.getTypeFromLength(d)),u+=d,i=t.build(e,l);if(e.getComponentType(l)!==n){const t=e.getTypeFromLength(d,n);i=e.format(i,l,t)}a.push(i)}const l=`${e.getType(r)}( ${a.join(", ")} )`;return e.format(l,r,t)}}const ci=si.join("");class hi extends ai{static get type(){return"SplitNode"}constructor(e,t="x"){super(),this.node=e,this.components=t,this.isSplitNode=!0}getVectorLength(){let e=this.components.length;for(const t of this.components)e=Math.max(si.indexOf(t)+1,e);return e}getComponentType(e){return e.getComponentType(this.node.getNodeType(e))}getNodeType(e){return e.getTypeFromLength(this.components.length,this.getComponentType(e))}getScope(){return this.node.getScope()}generate(e,t){const r=this.node,s=e.getTypeLength(r.getNodeType(e));let i=null;if(s>1){let n=null;this.getVectorLength()>=s&&(n=e.getTypeFromLength(this.getVectorLength(),this.getComponentType(e)));const a=r.build(e,n);i=this.components.length===s&&this.components===ci.slice(0,this.components.length)?e.format(a,n,t):e.format(`${a}.${this.components}`,this.getNodeType(e),t)}else i=r.build(e,t);return i}serialize(e){super.serialize(e),e.components=this.components}deserialize(e){super.deserialize(e),this.components=e.components}}class pi extends li{static get type(){return"SetNode"}constructor(e,t,r){super(),this.sourceNode=e,this.components=t,this.targetNode=r}getNodeType(e){return this.sourceNode.getNodeType(e)}generate(e){const{sourceNode:t,components:r,targetNode:s}=this,i=this.getNodeType(e),n=e.getComponentType(s.getNodeType(e)),a=e.getTypeFromLength(r.length,n),o=s.build(e,a),u=t.build(e,i),l=e.getTypeLength(i),d=[];for(let e=0;e(e=>e.replace(/r|s/g,"x").replace(/g|t/g,"y").replace(/b|p/g,"z").replace(/a|q/g,"w"))(e).split("").sort().join("");ai.prototype.assign=function(...e){if(!0!==this.isStackNode)return null!==xi?xi.assign(this,...e):o("TSL: No stack defined for assign operation. Make sure the assign is inside a Fn()."),this;{const t=Ti.get("assign");return this.addToStack(t(...e))}},ai.prototype.toVarIntent=function(){return this},ai.prototype.get=function(e){return new bi(this,e)};const Ni={};function Si(e,t,r){Ni[e]=Ni[t]=Ni[r]={get(){this._cache=this._cache||{};let t=this._cache[e];return void 0===t&&(t=new hi(this,e),this._cache[e]=t),t},set(t){this[e].assign(Yi(t))}};const s=e.toUpperCase(),i=t.toUpperCase(),n=r.toUpperCase();ai.prototype["set"+s]=ai.prototype["set"+i]=ai.prototype["set"+n]=function(t){const r=vi(e);return new pi(this,r,Yi(t))},ai.prototype["flip"+s]=ai.prototype["flip"+i]=ai.prototype["flip"+n]=function(){const t=vi(e);return new gi(this,t)}}const Ri=["x","y","z","w"],Ai=["r","g","b","a"],Ei=["s","t","p","q"];for(let e=0;e<4;e++){let t=Ri[e],r=Ai[e],s=Ei[e];Si(t,r,s);for(let i=0;i<4;i++){t=Ri[e]+Ri[i],r=Ai[e]+Ai[i],s=Ei[e]+Ei[i],Si(t,r,s);for(let n=0;n<4;n++){t=Ri[e]+Ri[i]+Ri[n],r=Ai[e]+Ai[i]+Ai[n],s=Ei[e]+Ei[i]+Ei[n],Si(t,r,s);for(let a=0;a<4;a++)t=Ri[e]+Ri[i]+Ri[n]+Ri[a],r=Ai[e]+Ai[i]+Ai[n]+Ai[a],s=Ei[e]+Ei[i]+Ei[n]+Ei[a],Si(t,r,s)}}}for(let e=0;e<32;e++)Ni[e]={get(){this._cache=this._cache||{};let t=this._cache[e];return void 0===t&&(t=new oi(this,new yi(e,"uint")),this._cache[e]=t),t},set(t){this[e].assign(Yi(t))}};Object.defineProperties(ai.prototype,Ni);const wi=new WeakMap,Ci=function(e,t=null){for(const r in e)e[r]=Yi(e[r],t);return e},Mi=function(e,t=null){const r=e.length;for(let s=0;su?(o(`TSL: "${r}" parameter length exceeds limit.`),t.slice(0,u)):t}return null===t?n=(...t)=>i(new e(...Ji(d(t)))):null!==r?(r=Yi(r),n=(...s)=>i(new e(t,...Ji(d(s)),r))):n=(...r)=>i(new e(t,...Ji(d(r)))),n.setParameterLength=(...e)=>(1===e.length?a=u=e[0]:2===e.length&&([a,u]=e),n),n.setName=e=>(l=e,n),n},Li=function(e,...t){return Yi(new e(...Ji(t)))};class Pi extends ai{constructor(e,t){super(),this.shaderNode=e,this.rawInputs=t,this.isShaderCallNodeInternal=!0}getNodeType(e){return this.shaderNode.nodeType||this.getOutputNode(e).getNodeType(e)}getElementType(e){return this.getOutputNode(e).getElementType(e)}getMemberType(e,t){return this.getOutputNode(e).getMemberType(e,t)}call(e){const{shaderNode:t,rawInputs:r}=this,s=e.getNodeProperties(t),i=e.getClosestSubBuild(t.subBuilds)||"",n=i||"default";if(s[n])return s[n];const a=e.subBuildFn,o=e.fnCall;e.subBuildFn=i,e.fnCall=this;let u=null;if(t.layout){let s=wi.get(e.constructor);void 0===s&&(s=new WeakMap,wi.set(e.constructor,s));let i=s.get(t);void 0===i&&(i=Yi(e.buildFunctionNode(t)),s.set(t,i)),e.addInclude(i);const n=r?function(e){let t;Zi(e);t=e[0]&&(e[0].isNode||Object.getPrototypeOf(e[0])!==Object.prototype)?[...e]:e[0];return t}(r):null;u=Yi(i.call(n))}else{const s=new Proxy(e,{get:(e,t,r)=>{let s;return s=Symbol.iterator===t?function*(){yield}:Reflect.get(e,t,r),s}}),i=r?function(e){let t=0;return Zi(e),new Proxy(e,{get:(r,s,i)=>{let n;if("length"===s)return n=e.length,n;if(Symbol.iterator===s)n=function*(){for(const t of e)yield Yi(t)};else{if(e.length>0)if(Object.getPrototypeOf(e[0])===Object.prototype){const r=e[0];n=void 0===r[s]?r[t++]:Reflect.get(r,s,i)}else e[0]instanceof ai&&(n=void 0===e[s]?e[t++]:Reflect.get(e,s,i));else n=Reflect.get(r,s,i);n=Yi(n)}return n}})}(r):null,n=Array.isArray(r)?r.length>0:null!==r,a=t.jsFunc,o=n||a.length>1?a(i,s):a(s);u=Yi(o)}return e.subBuildFn=a,e.fnCall=o,t.once&&(s[n]=u),u}setupOutput(e){return e.addStack(),e.stack.outputNode=this.call(e),e.removeStack()}getOutputNode(e){const t=e.getNodeProperties(this),r=e.getSubBuildOutput(this);return t[r]=t[r]||this.setupOutput(e),t[r].subBuild=e.getClosestSubBuild(this),t[r]}build(e,t=null){let r=null;const s=e.getBuildStage(),i=e.getNodeProperties(this),n=e.getSubBuildOutput(this),a=this.getOutputNode(e),o=e.fnCall;if(e.fnCall=this,"setup"===s){const t=e.getSubBuildProperty("initialized",this);if(!0!==i[t]&&(i[t]=!0,i[n]=this.getOutputNode(e),i[n].build(e),this.shaderNode.subBuilds))for(const t of e.chaining){const r=e.getDataFromNode(t,"any");r.subBuilds=r.subBuilds||new Set;for(const e of this.shaderNode.subBuilds)r.subBuilds.add(e)}r=i[n]}else"analyze"===s?a.build(e,t):"generate"===s&&(r=a.build(e,t)||"");return e.fnCall=o,r}}class Fi extends ai{constructor(e,t){super(t),this.jsFunc=e,this.layout=null,this.global=!0,this.once=!1}setLayout(e){return this.layout=e,this}getLayout(){return this.layout}call(e=null){return new Pi(this,e)}setup(){return this.call()}}const Di=[!1,!0],Ii=[0,1,2,3],Ui=[-1,-2],Oi=[.5,1.5,1/3,1e-6,1e6,Math.PI,2*Math.PI,1/Math.PI,2/Math.PI,1/(2*Math.PI),Math.PI/2],Vi=new Map;for(const e of Di)Vi.set(e,new yi(e));const ki=new Map;for(const e of Ii)ki.set(e,new yi(e,"uint"));const Gi=new Map([...ki].map(e=>new yi(e.value,"int")));for(const e of Ui)Gi.set(e,new yi(e,"int"));const zi=new Map([...Gi].map(e=>new yi(e.value)));for(const e of Oi)zi.set(e,new yi(e));for(const e of Oi)zi.set(-e,new yi(-e));const $i={bool:Vi,uint:ki,ints:Gi,float:zi},Wi=new Map([...Vi,...zi]),Hi=(e,t)=>Wi.has(e)?Wi.get(e):!0===e.isNode?e:new yi(e,t),ji=function(e,t=null){return(...r)=>{for(const t of r)if(void 0===t)return o(`TSL: Invalid parameter for the type "${e}".`),Yi(new yi(0,e));if((0===r.length||!["bool","float","int","uint"].includes(e)&&r.every(e=>{const t=typeof e;return"object"!==t&&"function"!==t}))&&(r=[Hs(e,...r)]),1===r.length&&null!==t&&t.has(r[0]))return Qi(t.get(r[0]));if(1===r.length){const t=Hi(r[0],e);return t.nodeType===e?Qi(t):Qi(new ui(t,e))}const s=r.map(e=>Hi(e));return Qi(new di(s,e))}},qi=e=>"object"==typeof e&&null!==e?e.value:e,Xi=e=>null!=e?e.nodeType||e.convertTo||("string"==typeof e?e:null):null;function Ki(e,t){return new Fi(e,t)}const Yi=(e,t=null)=>function(e,t=null){const r=Ws(e);return"node"===r?e:null===t&&("float"===r||"boolean"===r)||r&&"shader"!==r&&"string"!==r?Yi(Hi(e,t)):"shader"===r?e.isFn?e:an(e):e}(e,t),Qi=(e,t=null)=>Yi(e,t).toVarIntent(),Zi=(e,t=null)=>new Ci(e,t),Ji=(e,t=null)=>new Mi(e,t),en=(e,t=null,r=null,s=null)=>new Bi(e,t,r,s),tn=(e,...t)=>new Li(e,...t),rn=(e,t=null,r=null,s={})=>new Bi(e,t,r,{...s,intent:!0});let sn=0;class nn extends ai{constructor(e,t=null){super();let r=null;null!==t&&("object"==typeof t?r=t.return:("string"==typeof t?r=t:o("TSL: Invalid layout type."),t=null)),this.shaderNode=new Ki(e,r),null!==t&&this.setLayout(t),this.isFn=!0}setLayout(e){const t=this.shaderNode.nodeType;if("object"!=typeof e.inputs){const r={name:"fn"+sn++,type:t,inputs:[]};for(const t in e)"return"!==t&&r.inputs.push({name:t,type:e[t]});e=r}return this.shaderNode.setLayout(e),this}getNodeType(e){return this.shaderNode.getNodeType(e)||"float"}call(...e){const t=this.shaderNode.call(e);return"void"===this.shaderNode.nodeType&&t.toStack(),t.toVarIntent()}once(e=null){return this.shaderNode.once=!0,this.shaderNode.subBuilds=e,this}generate(e){const t=this.getNodeType(e);return o('TSL: "Fn()" was declared but not invoked. Try calling it like "Fn()( ...params )".'),e.generateConst(t)}}function an(e,t=null){const r=new nn(e,t);return new Proxy(()=>{},{apply:(e,t,s)=>r.call(...s),get:(e,t,s)=>Reflect.get(r,t,s),set:(e,t,s,i)=>Reflect.set(r,t,s,i)})}const on=e=>{xi=e},un=()=>xi,ln=(...e)=>xi.If(...e);function dn(e){return xi&&xi.addToStack(e),e}_i("toStack",dn);const cn=new ji("color"),hn=new ji("float",$i.float),pn=new ji("int",$i.ints),gn=new ji("uint",$i.uint),mn=new ji("bool",$i.bool),fn=new ji("vec2"),yn=new ji("ivec2"),bn=new ji("uvec2"),xn=new ji("bvec2"),Tn=new ji("vec3"),_n=new ji("ivec3"),vn=new ji("uvec3"),Nn=new ji("bvec3"),Sn=new ji("vec4"),Rn=new ji("ivec4"),An=new ji("uvec4"),En=new ji("bvec4"),wn=new ji("mat2"),Cn=new ji("mat3"),Mn=new ji("mat4");_i("toColor",cn),_i("toFloat",hn),_i("toInt",pn),_i("toUint",gn),_i("toBool",mn),_i("toVec2",fn),_i("toIVec2",yn),_i("toUVec2",bn),_i("toBVec2",xn),_i("toVec3",Tn),_i("toIVec3",_n),_i("toUVec3",vn),_i("toBVec3",Nn),_i("toVec4",Sn),_i("toIVec4",Rn),_i("toUVec4",An),_i("toBVec4",En),_i("toMat2",wn),_i("toMat3",Cn),_i("toMat4",Mn);const Bn=en(oi).setParameterLength(2),Ln=(e,t)=>Yi(new ui(Yi(e),t));_i("element",Bn),_i("convert",Ln);_i("append",e=>(d("TSL: .append() has been renamed to .toStack()."),dn(e)));class Pn extends ai{static get type(){return"PropertyNode"}constructor(e,t=null,r=!1){super(e),this.name=t,this.varying=r,this.isPropertyNode=!0,this.global=!0}customCacheKey(){return Fs(this.type+":"+(this.name||"")+":"+(this.varying?"1":"0"))}getHash(e){return this.name||super.getHash(e)}generate(e){let t;return!0===this.varying?(t=e.getVaryingFromNode(this,this.name),t.needsInterpolation=!0):t=e.getVarFromNode(this,this.name),e.getPropertyName(t)}}const Fn=(e,t)=>Yi(new Pn(e,t)),Dn=(e,t)=>Yi(new Pn(e,t,!0)),In=tn(Pn,"vec4","DiffuseColor"),Un=tn(Pn,"vec3","DiffuseContribution"),On=tn(Pn,"vec3","EmissiveColor"),Vn=tn(Pn,"float","Roughness"),kn=tn(Pn,"float","Metalness"),Gn=tn(Pn,"float","Clearcoat"),zn=tn(Pn,"float","ClearcoatRoughness"),$n=tn(Pn,"vec3","Sheen"),Wn=tn(Pn,"float","SheenRoughness"),Hn=tn(Pn,"float","Iridescence"),jn=tn(Pn,"float","IridescenceIOR"),qn=tn(Pn,"float","IridescenceThickness"),Xn=tn(Pn,"float","AlphaT"),Kn=tn(Pn,"float","Anisotropy"),Yn=tn(Pn,"vec3","AnisotropyT"),Qn=tn(Pn,"vec3","AnisotropyB"),Zn=tn(Pn,"color","SpecularColor"),Jn=tn(Pn,"color","SpecularColorBlended"),ea=tn(Pn,"float","SpecularF90"),ta=tn(Pn,"float","Shininess"),ra=tn(Pn,"vec4","Output"),sa=tn(Pn,"float","dashSize"),ia=tn(Pn,"float","gapSize"),na=tn(Pn,"float","pointWidth"),aa=tn(Pn,"float","IOR"),oa=tn(Pn,"float","Transmission"),ua=tn(Pn,"float","Thickness"),la=tn(Pn,"float","AttenuationDistance"),da=tn(Pn,"color","AttenuationColor"),ca=tn(Pn,"float","Dispersion");class ha extends ai{static get type(){return"UniformGroupNode"}constructor(e,t=!1,r=1){super("string"),this.name=e,this.shared=t,this.order=r,this.isUniformGroup=!0}serialize(e){super.serialize(e),e.name=this.name,e.version=this.version,e.shared=this.shared}deserialize(e){super.deserialize(e),this.name=e.name,this.version=e.version,this.shared=e.shared}}const pa=e=>new ha(e),ga=(e,t=0)=>new ha(e,!0,t),ma=ga("frame"),fa=ga("render"),ya=pa("object");class ba extends mi{static get type(){return"UniformNode"}constructor(e,t=null){super(e,t),this.isUniformNode=!0,this.name="",this.groupNode=ya}setName(e){return this.name=e,this}label(e){return d('TSL: "label()" has been deprecated. Use "setName()" instead.'),this.setName(e)}setGroup(e){return this.groupNode=e,this}getGroup(){return this.groupNode}getUniformHash(e){return this.getHash(e)}onUpdate(e,t){return e=e.bind(this),super.onUpdate(t=>{const r=e(t,this);void 0!==r&&(this.value=r)},t)}getInputType(e){let t=super.getInputType(e);return"bool"===t&&(t="uint"),t}generate(e,t){const r=this.getNodeType(e),s=this.getUniformHash(e);let i=e.getNodeFromHash(s);void 0===i&&(e.setHashNode(this,s),i=this);const n=i.getInputType(e),a=e.getUniformFromNode(i,n,e.shaderStage,this.name||e.context.nodeName),o=e.getPropertyName(a);void 0!==e.context.nodeName&&delete e.context.nodeName;let u=o;if("bool"===r){const t=e.getDataFromNode(this);let s=t.propertyName;if(void 0===s){const i=e.getVarFromNode(this,null,"bool");s=e.getPropertyName(i),t.propertyName=s,u=e.format(o,n,r),e.addLineFlowCode(`${s} = ${u}`,this)}u=s}return e.format(u,r,t)}}const xa=(e,t)=>{const r=Xi(t||e);if(r===e&&(e=Hs(r)),e&&!0===e.isNode){let t=e.value;e.traverse(e=>{!0===e.isConstNode&&(t=e.value)}),e=t}return Yi(new ba(e,r))};class Ta extends li{static get type(){return"ArrayNode"}constructor(e,t,r=null){super(e),this.count=t,this.values=r,this.isArrayNode=!0}getArrayCount(){return this.count}getNodeType(e){return null===this.nodeType&&(this.nodeType=this.values[0].getNodeType(e)),this.nodeType}getElementType(e){return this.getNodeType(e)}generate(e){const t=this.getNodeType(e);return e.generateArray(t,this.count,this.values)}}const _a=(...e)=>{let t;if(1===e.length){const r=e[0];t=new Ta(null,r.length,r)}else{const r=e[0],s=e[1];t=new Ta(r,s)}return Yi(t)};_i("toArray",(e,t)=>_a(Array(t).fill(e)));class va extends li{static get type(){return"AssignNode"}constructor(e,t){super(),this.targetNode=e,this.sourceNode=t,this.isAssignNode=!0}hasDependencies(){return!1}getNodeType(e,t){return"void"!==t?this.targetNode.getNodeType(e):"void"}needsSplitAssign(e){const{targetNode:t}=this;if(!1===e.isAvailable("swizzleAssign")&&t.isSplitNode&&t.components.length>1){const r=e.getTypeLength(t.node.getNodeType(e));return si.join("").slice(0,r)!==t.components}return!1}setup(e){const{targetNode:t,sourceNode:r}=this,s=t.getScope();e.getNodeProperties(s).assign=!0;const i=e.getNodeProperties(this);i.sourceNode=r,i.targetNode=t.context({assign:!0})}generate(e,t){const{targetNode:r,sourceNode:s}=e.getNodeProperties(this),i=this.needsSplitAssign(e),n=r.build(e),a=r.getNodeType(e),o=s.build(e,a),u=s.getNodeType(e),l=e.getDataFromNode(this);let d;if(!0===l.initialized)"void"!==t&&(d=n);else if(i){const s=e.getVarFromNode(this,null,a),i=e.getPropertyName(s);e.addLineFlowCode(`${i} = ${o}`,this);const u=r.node,l=u.node.context({assign:!0}).build(e);for(let t=0;t{const s=r.type;let i;return i="pointer"===s?"&"+t.build(e):t.build(e,s),i};if(Array.isArray(i)){if(i.length>s.length)o("TSL: The number of provided parameters exceeds the expected number of inputs in 'Fn()'."),i.length=s.length;else if(i.length(t=t.length>1||t[0]&&!0===t[0].isNode?Ji(t):Zi(t[0]),new Sa(Yi(e),t));_i("call",Ra);const Aa={"==":"equal","!=":"notEqual","<":"lessThan",">":"greaterThan","<=":"lessThanEqual",">=":"greaterThanEqual","%":"mod"};class Ea extends li{static get type(){return"OperatorNode"}constructor(e,t,r,...s){if(super(),s.length>0){let i=new Ea(e,t,r);for(let t=0;t>"===r||"<<"===r)return e.getIntegerType(n);if("!"===r||"&&"===r||"||"===r||"^^"===r)return"bool";if("=="===r||"!="===r||"<"===r||">"===r||"<="===r||">="===r){const t=Math.max(e.getTypeLength(n),e.getTypeLength(a));return t>1?`bvec${t}`:"bool"}if(e.isMatrix(n)){if("float"===a)return n;if(e.isVector(a))return e.getVectorFromMatrix(n);if(e.isMatrix(a))return n}else if(e.isMatrix(a)){if("float"===n)return a;if(e.isVector(n))return e.getVectorFromMatrix(a)}return e.getTypeLength(a)>e.getTypeLength(n)?a:n}generate(e,t){const r=this.op,{aNode:s,bNode:i}=this,n=this.getNodeType(e,t);let a=null,o=null;"void"!==n?(a=s.getNodeType(e),o=i?i.getNodeType(e):null,"<"===r||">"===r||"<="===r||">="===r||"=="===r||"!="===r?e.isVector(a)?o=a:e.isVector(o)?a=o:a!==o&&(a=o="float"):">>"===r||"<<"===r?(a=n,o=e.changeComponentType(o,"uint")):"%"===r?(a=n,o=e.isInteger(a)&&e.isInteger(o)?o:a):e.isMatrix(a)?"float"===o?o="float":e.isVector(o)?o=e.getVectorFromMatrix(a):e.isMatrix(o)||(a=o=n):a=e.isMatrix(o)?"float"===a?"float":e.isVector(a)?e.getVectorFromMatrix(o):o=n:o=n):a=o=n;const u=s.build(e,a),l=i?i.build(e,o):null,d=e.getFunctionOperator(r);if("void"!==t){const s=e.renderer.coordinateSystem===c;if("=="===r||"!="===r||"<"===r||">"===r||"<="===r||">="===r)return s&&e.isVector(a)?e.format(`${this.getOperatorMethod(e,t)}( ${u}, ${l} )`,n,t):e.format(`( ${u} ${r} ${l} )`,n,t);if("%"===r)return e.isInteger(o)?e.format(`( ${u} % ${l} )`,n,t):e.format(`${this.getOperatorMethod(e,n)}( ${u}, ${l} )`,n,t);if("!"===r||"~"===r)return e.format(`(${r}${u})`,a,t);if(d)return e.format(`${d}( ${u}, ${l} )`,n,t);if(e.isMatrix(a)&&"float"===o)return e.format(`( ${l} ${r} ${u} )`,n,t);if("float"===a&&e.isMatrix(o))return e.format(`${u} ${r} ${l}`,n,t);{let i=`( ${u} ${r} ${l} )`;return!s&&"bool"===n&&e.isVector(a)&&e.isVector(o)&&(i=`all${i}`),e.format(i,n,t)}}if("void"!==a)return d?e.format(`${d}( ${u}, ${l} )`,n,t):e.isMatrix(a)&&"float"===o?e.format(`${l} ${r} ${u}`,n,t):e.format(`${u} ${r} ${l}`,n,t)}serialize(e){super.serialize(e),e.op=this.op}deserialize(e){super.deserialize(e),this.op=e.op}}const wa=rn(Ea,"+").setParameterLength(2,1/0).setName("add"),Ca=rn(Ea,"-").setParameterLength(2,1/0).setName("sub"),Ma=rn(Ea,"*").setParameterLength(2,1/0).setName("mul"),Ba=rn(Ea,"/").setParameterLength(2,1/0).setName("div"),La=rn(Ea,"%").setParameterLength(2).setName("mod"),Pa=rn(Ea,"==").setParameterLength(2).setName("equal"),Fa=rn(Ea,"!=").setParameterLength(2).setName("notEqual"),Da=rn(Ea,"<").setParameterLength(2).setName("lessThan"),Ia=rn(Ea,">").setParameterLength(2).setName("greaterThan"),Ua=rn(Ea,"<=").setParameterLength(2).setName("lessThanEqual"),Oa=rn(Ea,">=").setParameterLength(2).setName("greaterThanEqual"),Va=rn(Ea,"&&").setParameterLength(2,1/0).setName("and"),ka=rn(Ea,"||").setParameterLength(2,1/0).setName("or"),Ga=rn(Ea,"!").setParameterLength(1).setName("not"),za=rn(Ea,"^^").setParameterLength(2).setName("xor"),$a=rn(Ea,"&").setParameterLength(2).setName("bitAnd"),Wa=rn(Ea,"~").setParameterLength(1).setName("bitNot"),Ha=rn(Ea,"|").setParameterLength(2).setName("bitOr"),ja=rn(Ea,"^").setParameterLength(2).setName("bitXor"),qa=rn(Ea,"<<").setParameterLength(2).setName("shiftLeft"),Xa=rn(Ea,">>").setParameterLength(2).setName("shiftRight"),Ka=an(([e])=>(e.addAssign(1),e)),Ya=an(([e])=>(e.subAssign(1),e)),Qa=an(([e])=>{const t=pn(e).toConst();return e.addAssign(1),t}),Za=an(([e])=>{const t=pn(e).toConst();return e.subAssign(1),t});_i("add",wa),_i("sub",Ca),_i("mul",Ma),_i("div",Ba),_i("mod",La),_i("equal",Pa),_i("notEqual",Fa),_i("lessThan",Da),_i("greaterThan",Ia),_i("lessThanEqual",Ua),_i("greaterThanEqual",Oa),_i("and",Va),_i("or",ka),_i("not",Ga),_i("xor",za),_i("bitAnd",$a),_i("bitNot",Wa),_i("bitOr",Ha),_i("bitXor",ja),_i("shiftLeft",qa),_i("shiftRight",Xa),_i("incrementBefore",Ka),_i("decrementBefore",Ya),_i("increment",Qa),_i("decrement",Za);const Ja=(e,t)=>(d('TSL: "modInt()" is deprecated. Use "mod( int( ... ) )" instead.'),La(pn(e),pn(t)));_i("modInt",Ja);class eo extends li{static get type(){return"MathNode"}constructor(e,t,r=null,s=null){if(super(),(e===eo.MAX||e===eo.MIN)&&arguments.length>3){let i=new eo(e,t,r);for(let t=2;tn&&i>a?t:n>a?r:a>i?s:t}getNodeType(e){const t=this.method;return t===eo.LENGTH||t===eo.DISTANCE||t===eo.DOT?"float":t===eo.CROSS?"vec3":t===eo.ALL||t===eo.ANY?"bool":t===eo.EQUALS?e.changeComponentType(this.aNode.getNodeType(e),"bool"):this.getInputType(e)}setup(e){const{aNode:t,bNode:r,method:s}=this;let i=null;if(s===eo.ONE_MINUS)i=Ca(1,t);else if(s===eo.RECIPROCAL)i=Ba(1,t);else if(s===eo.DIFFERENCE)i=wo(Ca(t,r));else if(s===eo.TRANSFORM_DIRECTION){let s=t,n=r;e.isMatrix(s.getNodeType(e))?n=Sn(Tn(n),0):s=Sn(Tn(s),0);const a=Ma(s,n).xyz;i=To(a)}return null!==i?i:super.setup(e)}generate(e,t){if(e.getNodeProperties(this).outputNode)return super.generate(e,t);let r=this.method;const s=this.getNodeType(e),i=this.getInputType(e),n=this.aNode,a=this.bNode,o=this.cNode,u=e.renderer.coordinateSystem;if(r===eo.NEGATE)return e.format("( - "+n.build(e,i)+" )",s,t);{const l=[];return r===eo.CROSS?l.push(n.build(e,s),a.build(e,s)):u===c&&r===eo.STEP?l.push(n.build(e,1===e.getTypeLength(n.getNodeType(e))?"float":i),a.build(e,i)):u!==c||r!==eo.MIN&&r!==eo.MAX?r===eo.REFRACT?l.push(n.build(e,i),a.build(e,i),o.build(e,"float")):r===eo.MIX?l.push(n.build(e,i),a.build(e,i),o.build(e,1===e.getTypeLength(o.getNodeType(e))?"float":i)):(u===h&&r===eo.ATAN&&null!==a&&(r="atan2"),"fragment"===e.shaderStage||r!==eo.DFDX&&r!==eo.DFDY||(d(`TSL: '${r}' is not supported in the ${e.shaderStage} stage.`),r="/*"+r+"*/"),l.push(n.build(e,i)),null!==a&&l.push(a.build(e,i)),null!==o&&l.push(o.build(e,i))):l.push(n.build(e,i),a.build(e,1===e.getTypeLength(a.getNodeType(e))?"float":i)),e.format(`${e.getMethod(r,s)}( ${l.join(", ")} )`,s,t)}}serialize(e){super.serialize(e),e.method=this.method}deserialize(e){super.deserialize(e),this.method=e.method}}eo.ALL="all",eo.ANY="any",eo.RADIANS="radians",eo.DEGREES="degrees",eo.EXP="exp",eo.EXP2="exp2",eo.LOG="log",eo.LOG2="log2",eo.SQRT="sqrt",eo.INVERSE_SQRT="inversesqrt",eo.FLOOR="floor",eo.CEIL="ceil",eo.NORMALIZE="normalize",eo.FRACT="fract",eo.SIN="sin",eo.COS="cos",eo.TAN="tan",eo.ASIN="asin",eo.ACOS="acos",eo.ATAN="atan",eo.ABS="abs",eo.SIGN="sign",eo.LENGTH="length",eo.NEGATE="negate",eo.ONE_MINUS="oneMinus",eo.DFDX="dFdx",eo.DFDY="dFdy",eo.ROUND="round",eo.RECIPROCAL="reciprocal",eo.TRUNC="trunc",eo.FWIDTH="fwidth",eo.TRANSPOSE="transpose",eo.DETERMINANT="determinant",eo.INVERSE="inverse",eo.EQUALS="equals",eo.MIN="min",eo.MAX="max",eo.STEP="step",eo.REFLECT="reflect",eo.DISTANCE="distance",eo.DIFFERENCE="difference",eo.DOT="dot",eo.CROSS="cross",eo.POW="pow",eo.TRANSFORM_DIRECTION="transformDirection",eo.MIX="mix",eo.CLAMP="clamp",eo.REFRACT="refract",eo.SMOOTHSTEP="smoothstep",eo.FACEFORWARD="faceforward";const to=hn(1e-6),ro=hn(1e6),so=hn(Math.PI),io=hn(2*Math.PI),no=hn(2*Math.PI),ao=hn(.5*Math.PI),oo=rn(eo,eo.ALL).setParameterLength(1),uo=rn(eo,eo.ANY).setParameterLength(1),lo=rn(eo,eo.RADIANS).setParameterLength(1),co=rn(eo,eo.DEGREES).setParameterLength(1),ho=rn(eo,eo.EXP).setParameterLength(1),po=rn(eo,eo.EXP2).setParameterLength(1),go=rn(eo,eo.LOG).setParameterLength(1),mo=rn(eo,eo.LOG2).setParameterLength(1),fo=rn(eo,eo.SQRT).setParameterLength(1),yo=rn(eo,eo.INVERSE_SQRT).setParameterLength(1),bo=rn(eo,eo.FLOOR).setParameterLength(1),xo=rn(eo,eo.CEIL).setParameterLength(1),To=rn(eo,eo.NORMALIZE).setParameterLength(1),_o=rn(eo,eo.FRACT).setParameterLength(1),vo=rn(eo,eo.SIN).setParameterLength(1),No=rn(eo,eo.COS).setParameterLength(1),So=rn(eo,eo.TAN).setParameterLength(1),Ro=rn(eo,eo.ASIN).setParameterLength(1),Ao=rn(eo,eo.ACOS).setParameterLength(1),Eo=rn(eo,eo.ATAN).setParameterLength(1,2),wo=rn(eo,eo.ABS).setParameterLength(1),Co=rn(eo,eo.SIGN).setParameterLength(1),Mo=rn(eo,eo.LENGTH).setParameterLength(1),Bo=rn(eo,eo.NEGATE).setParameterLength(1),Lo=rn(eo,eo.ONE_MINUS).setParameterLength(1),Po=rn(eo,eo.DFDX).setParameterLength(1),Fo=rn(eo,eo.DFDY).setParameterLength(1),Do=rn(eo,eo.ROUND).setParameterLength(1),Io=rn(eo,eo.RECIPROCAL).setParameterLength(1),Uo=rn(eo,eo.TRUNC).setParameterLength(1),Oo=rn(eo,eo.FWIDTH).setParameterLength(1),Vo=rn(eo,eo.TRANSPOSE).setParameterLength(1),ko=rn(eo,eo.DETERMINANT).setParameterLength(1),Go=rn(eo,eo.INVERSE).setParameterLength(1),zo=(e,t)=>(d('TSL: "equals" is deprecated. Use "equal" inside a vector instead, like: "bvec*( equal( ... ) )"'),Pa(e,t)),$o=rn(eo,eo.MIN).setParameterLength(2,1/0),Wo=rn(eo,eo.MAX).setParameterLength(2,1/0),Ho=rn(eo,eo.STEP).setParameterLength(2),jo=rn(eo,eo.REFLECT).setParameterLength(2),qo=rn(eo,eo.DISTANCE).setParameterLength(2),Xo=rn(eo,eo.DIFFERENCE).setParameterLength(2),Ko=rn(eo,eo.DOT).setParameterLength(2),Yo=rn(eo,eo.CROSS).setParameterLength(2),Qo=rn(eo,eo.POW).setParameterLength(2),Zo=e=>Ma(e,e),Jo=e=>Ma(e,e,e),eu=e=>Ma(e,e,e,e),tu=rn(eo,eo.TRANSFORM_DIRECTION).setParameterLength(2),ru=e=>Ma(Co(e),Qo(wo(e),1/3)),su=e=>Ko(e,e),iu=rn(eo,eo.MIX).setParameterLength(3),nu=(e,t=0,r=1)=>Yi(new eo(eo.CLAMP,Yi(e),Yi(t),Yi(r))),au=e=>nu(e),ou=rn(eo,eo.REFRACT).setParameterLength(3),uu=rn(eo,eo.SMOOTHSTEP).setParameterLength(3),lu=rn(eo,eo.FACEFORWARD).setParameterLength(3),du=an(([e])=>{const t=Ko(e.xy,fn(12.9898,78.233)),r=La(t,so);return _o(vo(r).mul(43758.5453))}),cu=(e,t,r)=>iu(t,r,e),hu=(e,t,r)=>uu(t,r,e),pu=(e,t)=>Ho(t,e),gu=(e,t)=>(d('TSL: "atan2" is overloaded. Use "atan" instead.'),Eo(e,t)),mu=lu,fu=yo;_i("all",oo),_i("any",uo),_i("equals",zo),_i("radians",lo),_i("degrees",co),_i("exp",ho),_i("exp2",po),_i("log",go),_i("log2",mo),_i("sqrt",fo),_i("inverseSqrt",yo),_i("floor",bo),_i("ceil",xo),_i("normalize",To),_i("fract",_o),_i("sin",vo),_i("cos",No),_i("tan",So),_i("asin",Ro),_i("acos",Ao),_i("atan",Eo),_i("abs",wo),_i("sign",Co),_i("length",Mo),_i("lengthSq",su),_i("negate",Bo),_i("oneMinus",Lo),_i("dFdx",Po),_i("dFdy",Fo),_i("round",Do),_i("reciprocal",Io),_i("trunc",Uo),_i("fwidth",Oo),_i("atan2",gu),_i("min",$o),_i("max",Wo),_i("step",pu),_i("reflect",jo),_i("distance",qo),_i("dot",Ko),_i("cross",Yo),_i("pow",Qo),_i("pow2",Zo),_i("pow3",Jo),_i("pow4",eu),_i("transformDirection",tu),_i("mix",cu),_i("clamp",nu),_i("refract",ou),_i("smoothstep",hu),_i("faceForward",lu),_i("difference",Xo),_i("saturate",au),_i("cbrt",ru),_i("transpose",Vo),_i("determinant",ko),_i("inverse",Go),_i("rand",du);class yu extends ai{static get type(){return"ConditionalNode"}constructor(e,t,r=null){super(),this.condNode=e,this.ifNode=t,this.elseNode=r}getNodeType(e){const{ifNode:t,elseNode:r}=e.getNodeProperties(this);if(void 0===t)return e.flowBuildStage(this,"setup"),this.getNodeType(e);const s=t.getNodeType(e);if(null!==r){const t=r.getNodeType(e);if(e.getTypeLength(t)>e.getTypeLength(s))return t}return s}setup(e){const t=this.condNode,r=this.ifNode.isolate(),s=this.elseNode?this.elseNode.isolate():null,i=e.context.nodeBlock;e.getDataFromNode(r).parentNodeBlock=i,null!==s&&(e.getDataFromNode(s).parentNodeBlock=i);const n=e.context.uniformFlow,a=e.getNodeProperties(this);a.condNode=t,a.ifNode=n?r:r.context({nodeBlock:r}),a.elseNode=s?n?s:s.context({nodeBlock:s}):null}generate(e,t){const r=this.getNodeType(e),s=e.getDataFromNode(this);if(void 0!==s.nodeProperty)return s.nodeProperty;const{condNode:i,ifNode:n,elseNode:a}=e.getNodeProperties(this),o=e.currentFunctionNode,u="void"!==t,l=u?Fn(r).build(e):"";s.nodeProperty=l;const c=i.build(e,"bool");if(e.context.uniformFlow&&null!==a){const s=n.build(e,r),i=a.build(e,r),o=e.getTernary(c,s,i);return e.format(o,r,t)}e.addFlowCode(`\n${e.tab}if ( ${c} ) {\n\n`).addFlowTab();let h=n.build(e,r);if(h&&(u?h=l+" = "+h+";":(h="return "+h+";",null===o&&(d("TSL: Return statement used in an inline 'Fn()'. Define a layout struct to allow return values."),h="// "+h))),e.removeFlowTab().addFlowCode(e.tab+"\t"+h+"\n\n"+e.tab+"}"),null!==a){e.addFlowCode(" else {\n\n").addFlowTab();let t=a.build(e,r);t&&(u?t=l+" = "+t+";":(t="return "+t+";",null===o&&(d("TSL: Return statement used in an inline 'Fn()'. Define a layout struct to allow return values."),t="// "+t))),e.removeFlowTab().addFlowCode(e.tab+"\t"+t+"\n\n"+e.tab+"}\n\n")}else e.addFlowCode("\n\n");return e.format(l,r,t)}}const bu=en(yu).setParameterLength(2,3);_i("select",bu);class xu extends ai{static get type(){return"ContextNode"}constructor(e=null,t={}){super(),this.isContextNode=!0,this.node=e,this.value=t}getScope(){return this.node.getScope()}getNodeType(e){return this.node.getNodeType(e)}getFlowContextData(){const e=[];return this.traverse(t=>{!0===t.isContextNode&&e.push(t.value)}),Object.assign({},...e)}getMemberType(e,t){return this.node.getMemberType(e,t)}analyze(e){const t=e.addContext(this.value);this.node.build(e),e.setContext(t)}setup(e){const t=e.addContext(this.value);this.node.build(e),e.setContext(t)}generate(e,t){const r=e.addContext(this.value),s=this.node.build(e,t);return e.setContext(r),s}}const Tu=(e=null,t={})=>{let r=e;return null!==r&&!0===r.isNode||(t=r||t,r=null),new xu(r,t)},_u=e=>Tu(e,{uniformFlow:!0}),vu=(e,t)=>Tu(e,{nodeName:t});function Nu(e,t,r=null){return Tu(r,{getShadow:({light:r,shadowColorNode:s})=>t===r?s.mul(e):s})}function Su(e,t=null){return Tu(t,{getAO:(t,{material:r})=>!0===r.transparent?t:null!==t?t.mul(e):e})}function Ru(e,t){return d('TSL: "label()" has been deprecated. Use "setName()" instead.'),vu(e,t)}_i("context",Tu),_i("label",Ru),_i("uniformFlow",_u),_i("setName",vu),_i("builtinShadowContext",(e,t,r)=>Nu(t,r,e)),_i("builtinAOContext",(e,t)=>Su(t,e));class Au extends ai{static get type(){return"VarNode"}constructor(e,t=null,r=!1){super(),this.node=e,this.name=t,this.global=!0,this.isVarNode=!0,this.readOnly=r,this.parents=!0,this.intent=!1}setIntent(e){return this.intent=e,this}getIntent(){return this.intent}getMemberType(e,t){return this.node.getMemberType(e,t)}getElementType(e){return this.node.getElementType(e)}getNodeType(e){return this.node.getNodeType(e)}getArrayCount(e){return this.node.getArrayCount(e)}isAssign(e){let t=e.getNodeProperties(this).assign;if(!0!==t&&this.node.isShaderCallNodeInternal&&null===this.node.shaderNode.getLayout()&&e.fnCall&&e.fnCall.shaderNode){e.getDataFromNode(this.node.shaderNode).hasLoop&&(t=!0)}return t}build(...e){const t=e[0];return!1===this._hasStack(t)&&"setup"===t.buildStage&&(t.context.nodeLoop||t.context.nodeBlock)&&t.getBaseStack().addToStack(this),!0===this.intent&&!0!==this.isAssign(t)?this.node.build(...e):super.build(...e)}generate(e){const{node:t,name:r,readOnly:s}=this,{renderer:i}=e,n=!0===i.backend.isWebGPUBackend;let a=!1,u=!1;s&&(a=e.isDeterministic(t),u=n?s:a);const l=this.getNodeType(e);if("void"==l){!0!==this.intent&&o('TSL: ".toVar()" can not be used with void type.');return t.build(e)}const d=e.getVectorType(l),c=t.build(e,d),h=e.getVarFromNode(this,r,d,void 0,u),p=e.getPropertyName(h);let g=p;if(u)if(n)g=a?`const ${p}`:`let ${p}`;else{const r=t.getArrayCount(e);g=`const ${e.getVar(h.type,p,r)}`}return e.addLineFlowCode(`${g} = ${c}`,this),p}_hasStack(e){return void 0!==e.getDataFromNode(this).stack}}const Eu=en(Au),wu=(e,t=null)=>Eu(e,t).toStack(),Cu=(e,t=null)=>Eu(e,t,!0).toStack(),Mu=e=>Eu(e).setIntent(!0).toStack();_i("toVar",wu),_i("toConst",Cu),_i("toVarIntent",Mu);class Bu extends ai{static get type(){return"SubBuild"}constructor(e,t,r=null){super(r),this.node=e,this.name=t,this.isSubBuildNode=!0}getNodeType(e){if(null!==this.nodeType)return this.nodeType;e.addSubBuild(this.name);const t=this.node.getNodeType(e);return e.removeSubBuild(),t}build(e,...t){e.addSubBuild(this.name);const r=this.node.build(e,...t);return e.removeSubBuild(),r}}const Lu=(e,t,r=null)=>Yi(new Bu(Yi(e),t,r));class Pu extends ai{static get type(){return"VaryingNode"}constructor(e,t=null){super(),this.node=e,this.name=t,this.isVaryingNode=!0,this.interpolationType=null,this.interpolationSampling=null,this.global=!0}setInterpolation(e,t=null){return this.interpolationType=e,this.interpolationSampling=t,this}getHash(e){return this.name||super.getHash(e)}getNodeType(e){return this.node.getNodeType(e)}setupVarying(e){const t=e.getNodeProperties(this);let r=t.varying;if(void 0===r){const s=this.name,i=this.getNodeType(e),n=this.interpolationType,a=this.interpolationSampling;t.varying=r=e.getVaryingFromNode(this,s,i,n,a),t.node=Lu(this.node,"VERTEX")}return r.needsInterpolation||(r.needsInterpolation="fragment"===e.shaderStage),r}setup(e){this.setupVarying(e),e.flowNodeFromShaderStage(Ys.VERTEX,this.node)}analyze(e){this.setupVarying(e),e.flowNodeFromShaderStage(Ys.VERTEX,this.node)}generate(e){const t=e.getSubBuildProperty("property",e.currentStack),r=e.getNodeProperties(this),s=this.setupVarying(e);if(void 0===r[t]){const i=this.getNodeType(e),n=e.getPropertyName(s,Ys.VERTEX);e.flowNodeFromShaderStage(Ys.VERTEX,r.node,i,n),r[t]=n}return e.getPropertyName(s)}}const Fu=en(Pu).setParameterLength(1,2),Du=e=>Fu(e);_i("toVarying",Fu),_i("toVertexStage",Du),_i("varying",(...e)=>(d("TSL: .varying() has been renamed to .toVarying()."),Fu(...e))),_i("vertexStage",(...e)=>(d("TSL: .vertexStage() has been renamed to .toVertexStage()."),Fu(...e)));const Iu=an(([e])=>{const t=e.mul(.9478672986).add(.0521327014).pow(2.4),r=e.mul(.0773993808),s=e.lessThanEqual(.04045);return iu(t,r,s)}).setLayout({name:"sRGBTransferEOTF",type:"vec3",inputs:[{name:"color",type:"vec3"}]}),Uu=an(([e])=>{const t=e.pow(.41666).mul(1.055).sub(.055),r=e.mul(12.92),s=e.lessThanEqual(.0031308);return iu(t,r,s)}).setLayout({name:"sRGBTransferOETF",type:"vec3",inputs:[{name:"color",type:"vec3"}]}),Ou="WorkingColorSpace";class Vu extends li{static get type(){return"ColorSpaceNode"}constructor(e,t,r){super("vec4"),this.colorNode=e,this.source=t,this.target=r}resolveColorSpace(e,t){return t===Ou?p.workingColorSpace:"OutputColorSpace"===t?e.context.outputColorSpace||e.renderer.outputColorSpace:t}setup(e){const{colorNode:t}=this,r=this.resolveColorSpace(e,this.source),s=this.resolveColorSpace(e,this.target);let i=t;return!1!==p.enabled&&r!==s&&r&&s?(p.getTransfer(r)===g&&(i=Sn(Iu(i.rgb),i.a)),p.getPrimaries(r)!==p.getPrimaries(s)&&(i=Sn(Cn(p._getMatrix(new n,r,s)).mul(i.rgb),i.a)),p.getTransfer(s)===g&&(i=Sn(Uu(i.rgb),i.a)),i):i}}const ku=(e,t)=>Yi(new Vu(Yi(e),Ou,t)),Gu=(e,t)=>Yi(new Vu(Yi(e),t,Ou));_i("workingToColorSpace",ku),_i("colorSpaceToWorking",Gu);let zu=class extends oi{static get type(){return"ReferenceElementNode"}constructor(e,t){super(e,t),this.referenceNode=e,this.isReferenceElementNode=!0}getNodeType(){return this.referenceNode.uniformType}generate(e){const t=super.generate(e),r=this.referenceNode.getNodeType(),s=this.getNodeType();return e.format(t,r,s)}};class $u extends ai{static get type(){return"ReferenceBaseNode"}constructor(e,t,r=null,s=null){super(),this.property=e,this.uniformType=t,this.object=r,this.count=s,this.properties=e.split("."),this.reference=r,this.node=null,this.group=null,this.updateType=Qs.OBJECT}setGroup(e){return this.group=e,this}element(e){return Yi(new zu(this,Yi(e)))}setNodeType(e){const t=xa(null,e);null!==this.group&&t.setGroup(this.group),this.node=t}getNodeType(e){return null===this.node&&(this.updateReference(e),this.updateValue()),this.node.getNodeType(e)}getValueFromReference(e=this.reference){const{properties:t}=this;let r=e[t[0]];for(let e=1;eYi(new Wu(e,t,r));class ju extends li{static get type(){return"ToneMappingNode"}constructor(e,t=Xu,r=null){super("vec3"),this._toneMapping=e,this.exposureNode=t,this.colorNode=r}customCacheKey(){return Is(this._toneMapping)}setToneMapping(e){return this._toneMapping=e,this}getToneMapping(){return this._toneMapping}setup(e){const t=this.colorNode||e.context.color,r=this._toneMapping;if(r===m)return t;let s=null;const i=e.renderer.library.getToneMappingFunction(r);return null!==i?s=Sn(i(t.rgb,this.exposureNode),t.a):(o("ToneMappingNode: Unsupported Tone Mapping configuration.",r),s=t),s}}const qu=(e,t,r)=>Yi(new ju(e,Yi(t),Yi(r))),Xu=Hu("toneMappingExposure","float");_i("toneMapping",(e,t,r)=>qu(t,r,e));const Ku=new WeakMap;function Yu(e,t){let r=Ku.get(e);return void 0===r&&(r=new b(e,t),Ku.set(e,r)),r}class Qu extends mi{static get type(){return"BufferAttributeNode"}constructor(e,t=null,r=0,s=0){super(e,t),this.isBufferNode=!0,this.bufferType=t,this.bufferStride=r,this.bufferOffset=s,this.usage=f,this.instanced=!1,this.attribute=null,this.global=!0,e&&!0===e.isBufferAttribute&&e.itemSize<=4&&(this.attribute=e,this.usage=e.usage,this.instanced=e.isInstancedBufferAttribute)}getHash(e){if(0===this.bufferStride&&0===this.bufferOffset){let t=e.globalCache.getData(this.value);return void 0===t&&(t={node:this},e.globalCache.setData(this.value,t)),t.node.uuid}return this.uuid}getNodeType(e){return null===this.bufferType&&(this.bufferType=e.getTypeFromAttribute(this.attribute)),this.bufferType}setup(e){if(null!==this.attribute)return;const t=this.getNodeType(e),r=e.getTypeLength(t),s=this.value,i=this.bufferStride||r,n=this.bufferOffset;let a;a=!0===s.isInterleavedBuffer?s:!0===s.isBufferAttribute?Yu(s.array,i):Yu(s,i);const o=new y(a,r,n);a.setUsage(this.usage),this.attribute=o,this.attribute.isInstancedBufferAttribute=this.instanced}generate(e){const t=this.getNodeType(e),r=e.getBufferAttributeFromNode(this,t),s=e.getPropertyName(r);let i=null;if("vertex"===e.shaderStage||"compute"===e.shaderStage)this.name=s,i=s;else{i=Fu(this).build(e,t)}return i}getInputType(){return"bufferAttribute"}setUsage(e){return this.usage=e,this.attribute&&!0===this.attribute.isBufferAttribute&&(this.attribute.usage=e),this}setInstanced(e){return this.instanced=e,this}}function Zu(e,t=null,r=0,s=0,i=f,n=!1){return"mat3"===t||null===t&&9===e.itemSize?Cn(new Qu(e,"vec3",9,0).setUsage(i).setInstanced(n),new Qu(e,"vec3",9,3).setUsage(i).setInstanced(n),new Qu(e,"vec3",9,6).setUsage(i).setInstanced(n)):"mat4"===t||null===t&&16===e.itemSize?Mn(new Qu(e,"vec4",16,0).setUsage(i).setInstanced(n),new Qu(e,"vec4",16,4).setUsage(i).setInstanced(n),new Qu(e,"vec4",16,8).setUsage(i).setInstanced(n),new Qu(e,"vec4",16,12).setUsage(i).setInstanced(n)):new Qu(e,t,r,s)}const Ju=(e,t=null,r=0,s=0)=>Zu(e,t,r,s),el=(e,t=null,r=0,s=0)=>Zu(e,t,r,s,f,!0),tl=(e,t=null,r=0,s=0)=>Zu(e,t,r,s,x,!0);_i("toAttribute",e=>Ju(e.value));class rl extends ai{static get type(){return"ComputeNode"}constructor(e,t){super("void"),this.isComputeNode=!0,this.computeNode=e,this.workgroupSize=t,this.count=null,this.version=1,this.name="",this.updateBeforeType=Qs.OBJECT,this.onInitFunction=null}setCount(e){return this.count=e,this}getCount(){return this.count}dispose(){this.dispatchEvent({type:"dispose"})}setName(e){return this.name=e,this}label(e){return d('TSL: "label()" has been deprecated. Use "setName()" instead.'),this.setName(e)}onInit(e){return this.onInitFunction=e,this}updateBefore({renderer:e}){e.compute(this)}setup(e){const t=this.computeNode.build(e);if(t){e.getNodeProperties(this).outputComputeNode=t.outputNode,t.outputNode=null}return t}generate(e,t){const{shaderStage:r}=e;if("compute"===r){const t=this.computeNode.build(e,"void");""!==t&&e.addLineFlowCode(t,this)}else{const r=e.getNodeProperties(this).outputComputeNode;if(r)return r.build(e,t)}}}const sl=(e,t=[64])=>{(0===t.length||t.length>3)&&o("TSL: compute() workgroupSize must have 1, 2, or 3 elements");for(let e=0;esl(e,r).setCount(t);_i("compute",il),_i("computeKernel",sl);class nl extends ai{static get type(){return"IsolateNode"}constructor(e,t=!0){super(),this.node=e,this.parent=t,this.isIsolateNode=!0}getNodeType(e){const t=e.getCache(),r=e.getCacheFromNode(this,this.parent);e.setCache(r);const s=this.node.getNodeType(e);return e.setCache(t),s}build(e,...t){const r=e.getCache(),s=e.getCacheFromNode(this,this.parent);e.setCache(s);const i=this.node.build(e,...t);return e.setCache(r),i}setParent(e){return this.parent=e,this}getParent(){return this.parent}}const al=e=>new nl(Yi(e));function ol(e,t=!0){return d('TSL: "cache()" has been deprecated. Use "isolate()" instead.'),al(e).setParent(t)}_i("cache",ol),_i("isolate",al);class ul extends ai{static get type(){return"BypassNode"}constructor(e,t){super(),this.isBypassNode=!0,this.outputNode=e,this.callNode=t}getNodeType(e){return this.outputNode.getNodeType(e)}generate(e){const t=this.callNode.build(e,"void");return""!==t&&e.addLineFlowCode(t,this),this.outputNode.build(e)}}const ll=en(ul).setParameterLength(2);_i("bypass",ll);class dl extends ai{static get type(){return"RemapNode"}constructor(e,t,r,s=hn(0),i=hn(1)){super(),this.node=e,this.inLowNode=t,this.inHighNode=r,this.outLowNode=s,this.outHighNode=i,this.doClamp=!0}setup(){const{node:e,inLowNode:t,inHighNode:r,outLowNode:s,outHighNode:i,doClamp:n}=this;let a=e.sub(t).div(r.sub(t));return!0===n&&(a=a.clamp()),a.mul(i.sub(s)).add(s)}}const cl=en(dl,null,null,{doClamp:!1}).setParameterLength(3,5),hl=en(dl).setParameterLength(3,5);_i("remap",cl),_i("remapClamp",hl);class pl extends ai{static get type(){return"ExpressionNode"}constructor(e="",t="void"){super(t),this.snippet=e}generate(e,t){const r=this.getNodeType(e),s=this.snippet;if("void"!==r)return e.format(s,r,t);e.addLineFlowCode(s,this)}}const gl=en(pl).setParameterLength(1,2),ml=e=>(e?bu(e,gl("discard")):gl("discard")).toStack();_i("discard",ml);class fl extends li{static get type(){return"RenderOutputNode"}constructor(e,t,r){super("vec4"),this.colorNode=e,this._toneMapping=t,this.outputColorSpace=r,this.isRenderOutputNode=!0}setToneMapping(e){return this._toneMapping=e,this}getToneMapping(){return this._toneMapping}setup({context:e}){let t=this.colorNode||e.color;const r=(null!==this._toneMapping?this._toneMapping:e.toneMapping)||m,s=(null!==this.outputColorSpace?this.outputColorSpace:e.outputColorSpace)||T;return r!==m&&(t=t.toneMapping(r)),s!==T&&s!==p.workingColorSpace&&(t=t.workingToColorSpace(s)),t}}const yl=(e,t=null,r=null)=>Yi(new fl(Yi(e),t,r));_i("renderOutput",yl);class bl extends li{static get type(){return"DebugNode"}constructor(e,t=null){super(),this.node=e,this.callback=t}getNodeType(e){return this.node.getNodeType(e)}setup(e){return this.node.build(e)}analyze(e){return this.node.build(e)}generate(e){const t=this.callback,r=this.node.build(e),s="--- TSL debug - "+e.shaderStage+" shader ---",i="-".repeat(s.length);let n="";return n+="// #"+s+"#\n",n+=e.flow.code.replace(/^\t/gm,"")+"\n",n+="/* ... */ "+r+" /* ... */\n",n+="// #"+i+"#\n",null!==t?t(e,n):_(n),r}}const xl=(e,t=null)=>Yi(new bl(Yi(e),t)).toStack();_i("debug",xl);class Tl{constructor(){this._renderer=null,this.currentFrame=null}get nodeFrame(){return this._renderer._nodes.nodeFrame}setRenderer(e){return this._renderer=e,this}getRenderer(){return this._renderer}init(){}begin(){}finish(){}inspect(){}computeAsync(){}beginCompute(){}finishCompute(){}beginRender(){}finishRender(){}copyTextureToTexture(){}copyFramebufferToTexture(){}}class _l extends ai{static get type(){return"InspectorNode"}constructor(e,t="",r=null){super(),this.node=e,this.name=t,this.callback=r,this.updateType=Qs.FRAME,this.isInspectorNode=!0}getName(){return this.name||this.node.name}update(e){e.renderer.inspector.inspect(this)}getNodeType(e){return this.node.getNodeType(e)}setup(e){let t=this.node;return!0===e.context.inspector&&null!==this.callback&&(t=this.callback(t)),!0!==e.renderer.backend.isWebGPUBackend&&e.renderer.inspector.constructor!==Tl&&v('TSL: ".toInspector()" is only available with WebGPU.'),t}}function vl(e,t="",r=null){return(e=Yi(e)).before(new _l(e,t,r))}_i("toInspector",vl);class Nl extends ai{static get type(){return"AttributeNode"}constructor(e,t=null){super(t),this.global=!0,this._attributeName=e}getHash(e){return this.getAttributeName(e)}getNodeType(e){let t=this.nodeType;if(null===t){const r=this.getAttributeName(e);if(e.hasGeometryAttribute(r)){const s=e.geometry.getAttribute(r);t=e.getTypeFromAttribute(s)}else t="float"}return t}setAttributeName(e){return this._attributeName=e,this}getAttributeName(){return this._attributeName}generate(e){const t=this.getAttributeName(e),r=this.getNodeType(e);if(!0===e.hasGeometryAttribute(t)){const s=e.geometry.getAttribute(t),i=e.getTypeFromAttribute(s),n=e.getAttribute(t,i);if("vertex"===e.shaderStage)return e.format(n.name,i,r);return Fu(this).build(e,r)}return d(`AttributeNode: Vertex attribute "${t}" not found on geometry.`),e.generateConst(r)}serialize(e){super.serialize(e),e.global=this.global,e._attributeName=this._attributeName}deserialize(e){super.deserialize(e),this.global=e.global,this._attributeName=e._attributeName}}const Sl=(e,t=null)=>Yi(new Nl(e,t)),Rl=(e=0)=>Sl("uv"+(e>0?e:""),"vec2");class Al extends ai{static get type(){return"TextureSizeNode"}constructor(e,t=null){super("uvec2"),this.isTextureSizeNode=!0,this.textureNode=e,this.levelNode=t}generate(e,t){const r=this.textureNode.build(e,"property"),s=null===this.levelNode?"0":this.levelNode.build(e,"int");return e.format(`${e.getMethod("textureDimensions")}( ${r}, ${s} )`,this.getNodeType(e),t)}}const El=en(Al).setParameterLength(1,2);class wl extends ba{static get type(){return"MaxMipLevelNode"}constructor(e){super(0),this._textureNode=e,this.updateType=Qs.FRAME}get textureNode(){return this._textureNode}get texture(){return this._textureNode.value}update(){const e=this.texture,t=e.images,r=t&&t.length>0?t[0]&&t[0].image||t[0]:e.image;if(r&&void 0!==r.width){const{width:e,height:t}=r;this.value=Math.log2(Math.max(e,t))}}}const Cl=en(wl).setParameterLength(1),Ml=new N;class Bl extends ba{static get type(){return"TextureNode"}constructor(e=Ml,t=null,r=null,s=null){super(e),this.isTextureNode=!0,this.uvNode=t,this.levelNode=r,this.biasNode=s,this.compareNode=null,this.depthNode=null,this.gradNode=null,this.offsetNode=null,this.sampler=!0,this.updateMatrix=!1,this.updateType=Qs.NONE,this.referenceNode=null,this._value=e,this._matrixUniform=null,this._flipYUniform=null,this.setUpdateMatrix(null===t)}set value(e){this.referenceNode?this.referenceNode.value=e:this._value=e}get value(){return this.referenceNode?this.referenceNode.value:this._value}getUniformHash(){return this.value.uuid}getNodeType(){return!0===this.value.isDepthTexture?"float":this.value.type===S?"uvec4":this.value.type===R?"ivec4":"vec4"}getInputType(){return"texture"}getDefaultUV(){return Rl(this.value.channel)}updateReference(){return this.value}getTransformedUV(e){return null===this._matrixUniform&&(this._matrixUniform=xa(this.value.matrix)),this._matrixUniform.mul(Tn(e,1)).xy}setUpdateMatrix(e){return this.updateMatrix=e,this}setupUV(e,t){return e.isFlipY()&&(null===this._flipYUniform&&(this._flipYUniform=xa(!1)),t=t.toVar(),t=this.sampler?this._flipYUniform.select(t.flipY(),t):this._flipYUniform.select(t.setY(pn(El(this,this.levelNode).y).sub(t.y).sub(1)),t)),t}setup(e){const t=e.getNodeProperties(this);t.referenceNode=this.referenceNode;const r=this.value;if(!r||!0!==r.isTexture)throw new Error("THREE.TSL: `texture( value )` function expects a valid instance of THREE.Texture().");const s=an(()=>{let t=this.uvNode;return null!==t&&!0!==e.context.forceUVContext||!e.context.getUV||(t=e.context.getUV(this,e)),t||(t=this.getDefaultUV()),!0===this.updateMatrix&&(t=this.getTransformedUV(t)),t=this.setupUV(e,t),this.updateType=null!==this._matrixUniform||null!==this._flipYUniform?Qs.OBJECT:Qs.NONE,t})();let i=this.levelNode;null===i&&e.context.getTextureLevel&&(i=e.context.getTextureLevel(this)),t.uvNode=s,t.levelNode=i,t.biasNode=this.biasNode,t.compareNode=this.compareNode,t.gradNode=this.gradNode,t.depthNode=this.depthNode,t.offsetNode=this.offsetNode}generateUV(e,t){return t.build(e,!0===this.sampler?"vec2":"ivec2")}generateOffset(e,t){return t.build(e,"ivec2")}generateSnippet(e,t,r,s,i,n,a,o,u){const l=this.value;let d;return d=i?e.generateTextureBias(l,t,r,i,n,u):o?e.generateTextureGrad(l,t,r,o,n,u):a?e.generateTextureCompare(l,t,r,a,n,u):!1===this.sampler?e.generateTextureLoad(l,t,r,s,n,u):s?e.generateTextureLevel(l,t,r,s,n,u):e.generateTexture(l,t,r,n,u),d}generate(e,t){const r=this.value,s=e.getNodeProperties(this),i=super.generate(e,"property");if(/^sampler/.test(t))return i+"_sampler";if(e.isReference(t))return i;{const n=e.getDataFromNode(this);let a=n.propertyName;if(void 0===a){const{uvNode:t,levelNode:r,biasNode:o,compareNode:u,depthNode:l,gradNode:d,offsetNode:c}=s,h=this.generateUV(e,t),p=r?r.build(e,"float"):null,g=o?o.build(e,"float"):null,m=l?l.build(e,"int"):null,f=u?u.build(e,"float"):null,y=d?[d[0].build(e,"vec2"),d[1].build(e,"vec2")]:null,b=c?this.generateOffset(e,c):null,x=e.getVarFromNode(this);a=e.getPropertyName(x);const T=this.generateSnippet(e,i,h,p,g,m,f,y,b);e.addLineFlowCode(`${a} = ${T}`,this),n.snippet=T,n.propertyName=a}let o=a;const u=this.getNodeType(e);return e.needsToWorkingColorSpace(r)&&(o=Gu(gl(o,u),r.colorSpace).setup(e).build(e,u)),e.format(o,u,t)}}setSampler(e){return this.sampler=e,this}getSampler(){return this.sampler}uv(e){return d("TextureNode: .uv() has been renamed. Use .sample() instead."),this.sample(e)}sample(e){const t=this.clone();return t.uvNode=Yi(e),t.referenceNode=this.getBase(),Yi(t)}load(e){return this.sample(e).setSampler(!1)}blur(e){const t=this.clone();t.biasNode=Yi(e).mul(Cl(t)),t.referenceNode=this.getBase();const r=t.value;return!1===t.generateMipmaps&&(r&&!1===r.generateMipmaps||r.minFilter===A||r.magFilter===A)&&(d("TSL: texture().blur() requires mipmaps and sampling. Use .generateMipmaps=true and .minFilter/.magFilter=THREE.LinearFilter in the Texture."),t.biasNode=null),Yi(t)}level(e){const t=this.clone();return t.levelNode=Yi(e),t.referenceNode=this.getBase(),Yi(t)}size(e){return El(this,e)}bias(e){const t=this.clone();return t.biasNode=Yi(e),t.referenceNode=this.getBase(),Yi(t)}getBase(){return this.referenceNode?this.referenceNode.getBase():this}compare(e){const t=this.clone();return t.compareNode=Yi(e),t.referenceNode=this.getBase(),Yi(t)}grad(e,t){const r=this.clone();return r.gradNode=[Yi(e),Yi(t)],r.referenceNode=this.getBase(),Yi(r)}depth(e){const t=this.clone();return t.depthNode=Yi(e),t.referenceNode=this.getBase(),Yi(t)}offset(e){const t=this.clone();return t.offsetNode=Yi(e),t.referenceNode=this.getBase(),Yi(t)}serialize(e){super.serialize(e),e.value=this.value.toJSON(e.meta).uuid,e.sampler=this.sampler,e.updateMatrix=this.updateMatrix,e.updateType=this.updateType}deserialize(e){super.deserialize(e),this.value=e.meta.textures[e.value],this.sampler=e.sampler,this.updateMatrix=e.updateMatrix,this.updateType=e.updateType}update(){const e=this.value,t=this._matrixUniform;null!==t&&(t.value=e.matrix),!0===e.matrixAutoUpdate&&e.updateMatrix();const r=this._flipYUniform;null!==r&&(r.value=e.image instanceof ImageBitmap&&!0===e.flipY||!0===e.isRenderTargetTexture||!0===e.isFramebufferTexture||!0===e.isDepthTexture)}clone(){const e=new this.constructor(this.value,this.uvNode,this.levelNode,this.biasNode);return e.sampler=this.sampler,e.depthNode=this.depthNode,e.compareNode=this.compareNode,e.gradNode=this.gradNode,e.offsetNode=this.offsetNode,e}}const Ll=en(Bl).setParameterLength(1,4).setName("texture"),Pl=(e=Ml,t=null,r=null,s=null)=>{let i;return e&&!0===e.isTextureNode?(i=Yi(e.clone()),i.referenceNode=e.getBase(),null!==t&&(i.uvNode=Yi(t)),null!==r&&(i.levelNode=Yi(r)),null!==s&&(i.biasNode=Yi(s))):i=Ll(e,t,r,s),i},Fl=(...e)=>Pl(...e).setSampler(!1);class Dl extends ba{static get type(){return"BufferNode"}constructor(e,t,r=0){super(e,t),this.isBufferNode=!0,this.bufferType=t,this.bufferCount=r,this.updateRanges=[]}addUpdateRange(e,t){this.updateRanges.push({start:e,count:t})}clearUpdateRanges(){this.updateRanges.length=0}getElementType(e){return this.getNodeType(e)}getInputType(){return"buffer"}}const Il=(e,t,r)=>Yi(new Dl(e,t,r));class Ul extends oi{static get type(){return"UniformArrayElementNode"}constructor(e,t){super(e,t),this.isArrayBufferElementNode=!0}generate(e){const t=super.generate(e),r=this.getNodeType(),s=this.node.getPaddedType();return e.format(t,s,r)}}class Ol extends Dl{static get type(){return"UniformArrayNode"}constructor(e,t=null){super(null),this.array=e,this.elementType=null===t?Ws(e[0]):t,this.paddedType=this.getPaddedType(),this.updateType=Qs.RENDER,this.isArrayBufferNode=!0}getNodeType(){return this.paddedType}getElementType(){return this.elementType}getPaddedType(){const e=this.elementType;let t="vec4";return"mat2"===e?t="mat2":!0===/mat/.test(e)?t="mat4":"i"===e.charAt(0)?t="ivec4":"u"===e.charAt(0)&&(t="uvec4"),t}update(){const{array:e,value:t}=this,r=this.elementType;if("float"===r||"int"===r||"uint"===r)for(let r=0;rYi(new Ol(e,t));const kl=en(class extends ai{constructor(e){super("float"),this.name=e,this.isBuiltinNode=!0}generate(){return this.name}}).setParameterLength(1);let Gl,zl;class $l extends ai{static get type(){return"ScreenNode"}constructor(e){super(),this.scope=e,this._output=null,this.isViewportNode=!0}getNodeType(){return this.scope===$l.DPR?"float":this.scope===$l.VIEWPORT?"vec4":"vec2"}getUpdateType(){let e=Qs.NONE;return this.scope!==$l.SIZE&&this.scope!==$l.VIEWPORT&&this.scope!==$l.DPR||(e=Qs.RENDER),this.updateType=e,e}update({renderer:e}){const t=e.getRenderTarget();this.scope===$l.VIEWPORT?null!==t?zl.copy(t.viewport):(e.getViewport(zl),zl.multiplyScalar(e.getPixelRatio())):this.scope===$l.DPR?this._output.value=e.getPixelRatio():null!==t?(Gl.width=t.width,Gl.height=t.height):e.getDrawingBufferSize(Gl)}setup(){const e=this.scope;let r=null;return r=e===$l.SIZE?xa(Gl||(Gl=new t)):e===$l.VIEWPORT?xa(zl||(zl=new s)):e===$l.DPR?xa(1):fn(ql.div(jl)),this._output=r,r}generate(e){if(this.scope===$l.COORDINATE){let t=e.getFragCoord();if(e.isFlipY()){const r=e.getNodeProperties(jl).outputNode.build(e);t=`${e.getType("vec2")}( ${t}.x, ${r}.y - ${t}.y )`}return t}return super.generate(e)}}$l.COORDINATE="coordinate",$l.VIEWPORT="viewport",$l.SIZE="size",$l.UV="uv",$l.DPR="dpr";const Wl=tn($l,$l.DPR),Hl=tn($l,$l.UV),jl=tn($l,$l.SIZE),ql=tn($l,$l.COORDINATE),Xl=tn($l,$l.VIEWPORT),Kl=Xl.zw,Yl=ql.sub(Xl.xy),Ql=Yl.div(Kl),Zl=an(()=>(d('TSL: "viewportResolution" is deprecated. Use "screenSize" instead.'),jl),"vec2").once()(),Jl=xa(0,"uint").setName("u_cameraIndex").setGroup(ga("cameraIndex")).toVarying("v_cameraIndex"),ed=xa("float").setName("cameraNear").setGroup(fa).onRenderUpdate(({camera:e})=>e.near),td=xa("float").setName("cameraFar").setGroup(fa).onRenderUpdate(({camera:e})=>e.far),rd=an(({camera:e})=>{let t;if(e.isArrayCamera&&e.cameras.length>0){const r=[];for(const t of e.cameras)r.push(t.projectionMatrix);t=Vl(r).setGroup(fa).setName("cameraProjectionMatrices").element(e.isMultiViewCamera?kl("gl_ViewID_OVR"):Jl).toConst("cameraProjectionMatrix")}else t=xa("mat4").setName("cameraProjectionMatrix").setGroup(fa).onRenderUpdate(({camera:e})=>e.projectionMatrix);return t}).once()(),sd=an(({camera:e})=>{let t;if(e.isArrayCamera&&e.cameras.length>0){const r=[];for(const t of e.cameras)r.push(t.projectionMatrixInverse);t=Vl(r).setGroup(fa).setName("cameraProjectionMatricesInverse").element(e.isMultiViewCamera?kl("gl_ViewID_OVR"):Jl).toConst("cameraProjectionMatrixInverse")}else t=xa("mat4").setName("cameraProjectionMatrixInverse").setGroup(fa).onRenderUpdate(({camera:e})=>e.projectionMatrixInverse);return t}).once()(),id=an(({camera:e})=>{let t;if(e.isArrayCamera&&e.cameras.length>0){const r=[];for(const t of e.cameras)r.push(t.matrixWorldInverse);t=Vl(r).setGroup(fa).setName("cameraViewMatrices").element(e.isMultiViewCamera?kl("gl_ViewID_OVR"):Jl).toConst("cameraViewMatrix")}else t=xa("mat4").setName("cameraViewMatrix").setGroup(fa).onRenderUpdate(({camera:e})=>e.matrixWorldInverse);return t}).once()(),nd=an(({camera:e})=>{let t;if(e.isArrayCamera&&e.cameras.length>0){const r=[];for(const t of e.cameras)r.push(t.matrixWorld);t=Vl(r).setGroup(fa).setName("cameraWorldMatrices").element(e.isMultiViewCamera?kl("gl_ViewID_OVR"):Jl).toConst("cameraWorldMatrix")}else t=xa("mat4").setName("cameraWorldMatrix").setGroup(fa).onRenderUpdate(({camera:e})=>e.matrixWorld);return t}).once()(),ad=an(({camera:e})=>{let t;if(e.isArrayCamera&&e.cameras.length>0){const r=[];for(const t of e.cameras)r.push(t.normalMatrix);t=Vl(r).setGroup(fa).setName("cameraNormalMatrices").element(e.isMultiViewCamera?kl("gl_ViewID_OVR"):Jl).toConst("cameraNormalMatrix")}else t=xa("mat3").setName("cameraNormalMatrix").setGroup(fa).onRenderUpdate(({camera:e})=>e.normalMatrix);return t}).once()(),od=an(({camera:e})=>{let t;if(e.isArrayCamera&&e.cameras.length>0){const s=[];for(let t=0,i=e.cameras.length;t{const r=e.cameras,s=t.array;for(let e=0,t=r.length;et.value.setFromMatrixPosition(e.matrixWorld));return t}).once()(),ud=an(({camera:e})=>{let t;if(e.isArrayCamera&&e.cameras.length>0){const r=[];for(const t of e.cameras)r.push(t.viewport);t=Vl(r,"vec4").setGroup(fa).setName("cameraViewports").element(Jl).toConst("cameraViewport")}else t=Sn(0,0,jl.x,jl.y).toConst("cameraViewport");return t}).once()(),ld=new E;class dd extends ai{static get type(){return"Object3DNode"}constructor(e,t=null){super(),this.scope=e,this.object3d=t,this.updateType=Qs.OBJECT,this.uniformNode=new ba(null)}getNodeType(){const e=this.scope;return e===dd.WORLD_MATRIX?"mat4":e===dd.POSITION||e===dd.VIEW_POSITION||e===dd.DIRECTION||e===dd.SCALE?"vec3":e===dd.RADIUS?"float":void 0}update(e){const t=this.object3d,s=this.uniformNode,i=this.scope;if(i===dd.WORLD_MATRIX)s.value=t.matrixWorld;else if(i===dd.POSITION)s.value=s.value||new r,s.value.setFromMatrixPosition(t.matrixWorld);else if(i===dd.SCALE)s.value=s.value||new r,s.value.setFromMatrixScale(t.matrixWorld);else if(i===dd.DIRECTION)s.value=s.value||new r,t.getWorldDirection(s.value);else if(i===dd.VIEW_POSITION){const i=e.camera;s.value=s.value||new r,s.value.setFromMatrixPosition(t.matrixWorld),s.value.applyMatrix4(i.matrixWorldInverse)}else if(i===dd.RADIUS){const r=e.object.geometry;null===r.boundingSphere&&r.computeBoundingSphere(),ld.copy(r.boundingSphere).applyMatrix4(t.matrixWorld),s.value=ld.radius}}generate(e){const t=this.scope;return t===dd.WORLD_MATRIX?this.uniformNode.nodeType="mat4":t===dd.POSITION||t===dd.VIEW_POSITION||t===dd.DIRECTION||t===dd.SCALE?this.uniformNode.nodeType="vec3":t===dd.RADIUS&&(this.uniformNode.nodeType="float"),this.uniformNode.build(e)}serialize(e){super.serialize(e),e.scope=this.scope}deserialize(e){super.deserialize(e),this.scope=e.scope}}dd.WORLD_MATRIX="worldMatrix",dd.POSITION="position",dd.SCALE="scale",dd.VIEW_POSITION="viewPosition",dd.DIRECTION="direction",dd.RADIUS="radius";const cd=en(dd,dd.DIRECTION).setParameterLength(1),hd=en(dd,dd.WORLD_MATRIX).setParameterLength(1),pd=en(dd,dd.POSITION).setParameterLength(1),gd=en(dd,dd.SCALE).setParameterLength(1),md=en(dd,dd.VIEW_POSITION).setParameterLength(1),fd=en(dd,dd.RADIUS).setParameterLength(1);class yd extends dd{static get type(){return"ModelNode"}constructor(e){super(e)}update(e){this.object3d=e.object,super.update(e)}}const bd=tn(yd,yd.DIRECTION),xd=tn(yd,yd.WORLD_MATRIX),Td=tn(yd,yd.POSITION),_d=tn(yd,yd.SCALE),vd=tn(yd,yd.VIEW_POSITION),Nd=tn(yd,yd.RADIUS),Sd=xa(new n).onObjectUpdate(({object:e},t)=>t.value.getNormalMatrix(e.matrixWorld)),Rd=xa(new a).onObjectUpdate(({object:e},t)=>t.value.copy(e.matrixWorld).invert()),Ad=an(e=>e.context.modelViewMatrix||Ed).once()().toVar("modelViewMatrix"),Ed=id.mul(xd),wd=an(e=>(e.context.isHighPrecisionModelViewMatrix=!0,xa("mat4").onObjectUpdate(({object:e,camera:t})=>e.modelViewMatrix.multiplyMatrices(t.matrixWorldInverse,e.matrixWorld)))).once()().toVar("highpModelViewMatrix"),Cd=an(e=>{const t=e.context.isHighPrecisionModelViewMatrix;return xa("mat3").onObjectUpdate(({object:e,camera:r})=>(!0!==t&&e.modelViewMatrix.multiplyMatrices(r.matrixWorldInverse,e.matrixWorld),e.normalMatrix.getNormalMatrix(e.modelViewMatrix)))}).once()().toVar("highpModelNormalViewMatrix"),Md=Sl("position","vec3"),Bd=Md.toVarying("positionLocal"),Ld=Md.toVarying("positionPrevious"),Pd=an(e=>xd.mul(Bd).xyz.toVarying(e.getSubBuildProperty("v_positionWorld")),"vec3").once(["POSITION"])(),Fd=an(()=>Bd.transformDirection(xd).toVarying("v_positionWorldDirection").normalize().toVar("positionWorldDirection"),"vec3").once(["POSITION"])(),Dd=an(e=>e.context.setupPositionView().toVarying("v_positionView"),"vec3").once(["POSITION"])(),Id=an(e=>{let t;return t=e.camera.isOrthographicCamera?Tn(0,0,1):Dd.negate().toVarying("v_positionViewDirection").normalize(),t.toVar("positionViewDirection")},"vec3").once(["POSITION"])();class Ud extends ai{static get type(){return"FrontFacingNode"}constructor(){super("bool"),this.isFrontFacingNode=!0}generate(e){if("fragment"!==e.shaderStage)return"true";const{material:t}=e;return t.side===w?"false":e.getFrontFacing()}}const Od=tn(Ud),Vd=hn(Od).mul(2).sub(1),kd=an(([e],{material:t})=>{const r=t.side;return r===w?e=e.mul(-1):r===C&&(e=e.mul(Vd)),e}),Gd=Sl("normal","vec3"),zd=an(e=>!1===e.geometry.hasAttribute("normal")?(d('TSL: Vertex attribute "normal" not found on geometry.'),Tn(0,1,0)):Gd,"vec3").once()().toVar("normalLocal"),$d=Dd.dFdx().cross(Dd.dFdy()).normalize().toVar("normalFlat"),Wd=an(e=>{let t;return t=!0===e.material.flatShading?$d:Yd(zd).toVarying("v_normalViewGeometry").normalize(),t},"vec3").once()().toVar("normalViewGeometry"),Hd=an(e=>{let t=Wd.transformDirection(id);return!0!==e.material.flatShading&&(t=t.toVarying("v_normalWorldGeometry")),t.normalize().toVar("normalWorldGeometry")},"vec3").once()(),jd=an(({subBuildFn:e,material:t,context:r})=>{let s;return"NORMAL"===e||"VERTEX"===e?(s=Wd,!0!==t.flatShading&&(s=kd(s))):s=r.setupNormal().context({getUV:null}),s},"vec3").once(["NORMAL","VERTEX"])().toVar("normalView"),qd=jd.transformDirection(id).toVar("normalWorld"),Xd=an(({subBuildFn:e,context:t})=>{let r;return r="NORMAL"===e||"VERTEX"===e?jd:t.setupClearcoatNormal().context({getUV:null}),r},"vec3").once(["NORMAL","VERTEX"])().toVar("clearcoatNormalView"),Kd=an(([e,t=xd])=>{const r=Cn(t),s=e.div(Tn(r[0].dot(r[0]),r[1].dot(r[1]),r[2].dot(r[2])));return r.mul(s).xyz}),Yd=an(([e],t)=>{const r=t.context.modelNormalViewMatrix;if(r)return r.transformDirection(e);const s=Sd.mul(e);return id.transformDirection(s)}),Qd=an(()=>(d('TSL: "transformedNormalView" is deprecated. Use "normalView" instead.'),jd)).once(["NORMAL","VERTEX"])(),Zd=an(()=>(d('TSL: "transformedNormalWorld" is deprecated. Use "normalWorld" instead.'),qd)).once(["NORMAL","VERTEX"])(),Jd=an(()=>(d('TSL: "transformedClearcoatNormalView" is deprecated. Use "clearcoatNormalView" instead.'),Xd)).once(["NORMAL","VERTEX"])(),ec=new M,tc=new a,rc=xa(0).onReference(({material:e})=>e).onObjectUpdate(({material:e})=>e.refractionRatio),sc=xa(1).onReference(({material:e})=>e).onObjectUpdate(function({material:e,scene:t}){return e.envMap?e.envMapIntensity:t.environmentIntensity}),ic=xa(new a).onReference(function(e){return e.material}).onObjectUpdate(function({material:e,scene:t}){const r=null!==t.environment&&null===e.envMap?t.environmentRotation:e.envMapRotation;return r?(ec.copy(r),tc.makeRotationFromEuler(ec)):tc.identity(),tc}),nc=Id.negate().reflect(jd),ac=Id.negate().refract(jd,rc),oc=nc.transformDirection(id).toVar("reflectVector"),uc=ac.transformDirection(id).toVar("reflectVector"),lc=new B;class dc extends Bl{static get type(){return"CubeTextureNode"}constructor(e,t=null,r=null,s=null){super(e,t,r,s),this.isCubeTextureNode=!0}getInputType(){return!0===this.value.isDepthTexture?"cubeDepthTexture":"cubeTexture"}getDefaultUV(){const e=this.value;return e.mapping===L?oc:e.mapping===P?uc:(o('CubeTextureNode: Mapping "%s" not supported.',e.mapping),Tn(0,0,0))}setUpdateMatrix(){}setupUV(e,t){const r=this.value;return!0===r.isDepthTexture?e.renderer.coordinateSystem===h?Tn(t.x,t.y.negate(),t.z):t:(e.renderer.coordinateSystem!==h&&r.isRenderTargetTexture||(t=Tn(t.x.negate(),t.yz)),ic.mul(t))}generateUV(e,t){return t.build(e,!0===this.sampler?"vec3":"ivec3")}}const cc=en(dc).setParameterLength(1,4).setName("cubeTexture"),hc=(e=lc,t=null,r=null,s=null)=>{let i;return e&&!0===e.isCubeTextureNode?(i=Yi(e.clone()),i.referenceNode=e,null!==t&&(i.uvNode=Yi(t)),null!==r&&(i.levelNode=Yi(r)),null!==s&&(i.biasNode=Yi(s))):i=cc(e,t,r,s),i};class pc extends oi{static get type(){return"ReferenceElementNode"}constructor(e,t){super(e,t),this.referenceNode=e,this.isReferenceElementNode=!0}getNodeType(){return this.referenceNode.uniformType}generate(e){const t=super.generate(e),r=this.referenceNode.getNodeType(),s=this.getNodeType();return e.format(t,r,s)}}class gc extends ai{static get type(){return"ReferenceNode"}constructor(e,t,r=null,s=null){super(),this.property=e,this.uniformType=t,this.object=r,this.count=s,this.properties=e.split("."),this.reference=r,this.node=null,this.group=null,this.name=null,this.updateType=Qs.OBJECT}element(e){return Yi(new pc(this,Yi(e)))}setGroup(e){return this.group=e,this}setName(e){return this.name=e,this}label(e){return d('TSL: "label()" has been deprecated. Use "setName()" instead.'),this.setName(e)}setNodeType(e){let t=null;t=null!==this.count?Il(null,e,this.count):Array.isArray(this.getValueFromReference())?Vl(null,e):"texture"===e?Pl(null):"cubeTexture"===e?hc(null):xa(null,e),null!==this.group&&t.setGroup(this.group),null!==this.name&&t.setName(this.name),this.node=t}getNodeType(e){return null===this.node&&(this.updateReference(e),this.updateValue()),this.node.getNodeType(e)}getValueFromReference(e=this.reference){const{properties:t}=this;let r=e[t[0]];for(let e=1;eYi(new gc(e,t,r)),fc=(e,t,r,s)=>Yi(new gc(e,t,s,r));class yc extends gc{static get type(){return"MaterialReferenceNode"}constructor(e,t,r=null){super(e,t,r),this.material=r,this.isMaterialReferenceNode=!0}updateReference(e){return this.reference=null!==this.material?this.material:e.material,this.reference}}const bc=(e,t,r=null)=>Yi(new yc(e,t,r)),xc=Rl(),Tc=Dd.dFdx(),_c=Dd.dFdy(),vc=xc.dFdx(),Nc=xc.dFdy(),Sc=jd,Rc=_c.cross(Sc),Ac=Sc.cross(Tc),Ec=Rc.mul(vc.x).add(Ac.mul(Nc.x)),wc=Rc.mul(vc.y).add(Ac.mul(Nc.y)),Cc=Ec.dot(Ec).max(wc.dot(wc)),Mc=Cc.equal(0).select(0,Cc.inverseSqrt()),Bc=Ec.mul(Mc).toVar("tangentViewFrame"),Lc=wc.mul(Mc).toVar("bitangentViewFrame"),Pc=Sl("tangent","vec4"),Fc=Pc.xyz.toVar("tangentLocal"),Dc=an(({subBuildFn:e,geometry:t,material:r})=>{let s;return s="VERTEX"===e||t.hasAttribute("tangent")?Ad.mul(Sn(Fc,0)).xyz.toVarying("v_tangentView").normalize():Bc,!0!==r.flatShading&&(s=kd(s)),s},"vec3").once(["NORMAL","VERTEX"])().toVar("tangentView"),Ic=Dc.transformDirection(id).toVarying("v_tangentWorld").normalize().toVar("tangentWorld"),Uc=an(([e,t],{subBuildFn:r,material:s})=>{let i=e.mul(Pc.w).xyz;return"NORMAL"===r&&!0!==s.flatShading&&(i=i.toVarying(t)),i}).once(["NORMAL"]),Oc=Uc(Gd.cross(Pc),"v_bitangentGeometry").normalize().toVar("bitangentGeometry"),Vc=Uc(zd.cross(Fc),"v_bitangentLocal").normalize().toVar("bitangentLocal"),kc=an(({subBuildFn:e,geometry:t,material:r})=>{let s;return s="VERTEX"===e||t.hasAttribute("tangent")?Uc(jd.cross(Dc),"v_bitangentView").normalize():Lc,!0!==r.flatShading&&(s=kd(s)),s},"vec3").once(["NORMAL","VERTEX"])().toVar("bitangentView"),Gc=Uc(qd.cross(Ic),"v_bitangentWorld").normalize().toVar("bitangentWorld"),zc=Cn(Dc,kc,jd).toVar("TBNViewMatrix"),$c=Id.mul(zc),Wc=an(()=>{let e=Qn.cross(Id);return e=e.cross(Qn).normalize(),e=iu(e,jd,Kn.mul(Vn.oneMinus()).oneMinus().pow2().pow2()).normalize(),e}).once()(),Hc=e=>Yi(e).mul(.5).add(.5),jc=e=>Tn(e,fo(au(hn(1).sub(Ko(e,e)))));class qc extends li{static get type(){return"NormalMapNode"}constructor(e,t=null){super("vec3"),this.node=e,this.scaleNode=t,this.normalMapType=F,this.unpackNormalMode=D}setup({material:e}){const{normalMapType:t,scaleNode:r,unpackNormalMode:s}=this;let i=this.node.mul(2).sub(1);if(t===F?s===I?i=jc(i.xy):s===U?i=jc(i.yw):s!==D&&console.error(`THREE.NodeMaterial: Unexpected unpack normal mode: ${s}`):s!==D&&console.error(`THREE.NodeMaterial: Normal map type '${t}' is not compatible with unpack normal mode '${s}'`),null!==r){let t=r;!0===e.flatShading&&(t=kd(t)),i=Tn(i.xy.mul(t),i.z)}let n=null;return t===O?n=Yd(i):t===F?n=zc.mul(i).normalize():(o(`NodeMaterial: Unsupported normal map type: ${t}`),n=jd),n}}const Xc=en(qc).setParameterLength(1,2),Kc=an(({textureNode:e,bumpScale:t})=>{const r=t=>e.isolate().context({getUV:e=>t(e.uvNode||Rl()),forceUVContext:!0}),s=hn(r(e=>e));return fn(hn(r(e=>e.add(e.dFdx()))).sub(s),hn(r(e=>e.add(e.dFdy()))).sub(s)).mul(t)}),Yc=an(e=>{const{surf_pos:t,surf_norm:r,dHdxy:s}=e,i=t.dFdx().normalize(),n=r,a=t.dFdy().normalize().cross(n),o=n.cross(i),u=i.dot(a).mul(Vd),l=u.sign().mul(s.x.mul(a).add(s.y.mul(o)));return u.abs().mul(r).sub(l).normalize()});class Qc extends li{static get type(){return"BumpMapNode"}constructor(e,t=null){super("vec3"),this.textureNode=e,this.scaleNode=t}setup(){const e=null!==this.scaleNode?this.scaleNode:1,t=Kc({textureNode:this.textureNode,bumpScale:e});return Yc({surf_pos:Dd,surf_norm:jd,dHdxy:t})}}const Zc=en(Qc).setParameterLength(1,2),Jc=new Map;class eh extends ai{static get type(){return"MaterialNode"}constructor(e){super(),this.scope=e}getCache(e,t){let r=Jc.get(e);return void 0===r&&(r=bc(e,t),Jc.set(e,r)),r}getFloat(e){return this.getCache(e,"float")}getColor(e){return this.getCache(e,"color")}getTexture(e){return this.getCache("map"===e?"map":e+"Map","texture")}setup(e){const t=e.context.material,r=this.scope;let s=null;if(r===eh.COLOR){const e=void 0!==t.color?this.getColor(r):Tn();s=t.map&&!0===t.map.isTexture?e.mul(this.getTexture("map")):e}else if(r===eh.OPACITY){const e=this.getFloat(r);s=t.alphaMap&&!0===t.alphaMap.isTexture?e.mul(this.getTexture("alpha")):e}else if(r===eh.SPECULAR_STRENGTH)s=t.specularMap&&!0===t.specularMap.isTexture?this.getTexture("specular").r:hn(1);else if(r===eh.SPECULAR_INTENSITY){const e=this.getFloat(r);s=t.specularIntensityMap&&!0===t.specularIntensityMap.isTexture?e.mul(this.getTexture(r).a):e}else if(r===eh.SPECULAR_COLOR){const e=this.getColor(r);s=t.specularColorMap&&!0===t.specularColorMap.isTexture?e.mul(this.getTexture(r).rgb):e}else if(r===eh.ROUGHNESS){const e=this.getFloat(r);s=t.roughnessMap&&!0===t.roughnessMap.isTexture?e.mul(this.getTexture(r).g):e}else if(r===eh.METALNESS){const e=this.getFloat(r);s=t.metalnessMap&&!0===t.metalnessMap.isTexture?e.mul(this.getTexture(r).b):e}else if(r===eh.EMISSIVE){const e=this.getFloat("emissiveIntensity"),i=this.getColor(r).mul(e);s=t.emissiveMap&&!0===t.emissiveMap.isTexture?i.mul(this.getTexture(r)):i}else if(r===eh.NORMAL)t.normalMap?(s=Xc(this.getTexture("normal"),this.getCache("normalScale","vec2")),s.normalMapType=t.normalMapType,t.normalMap.format!=V&&t.normalMap.format!=k&&t.normalMap.format!=G||(s.unpackNormalMode=I)):s=t.bumpMap?Zc(this.getTexture("bump").r,this.getFloat("bumpScale")):jd;else if(r===eh.CLEARCOAT){const e=this.getFloat(r);s=t.clearcoatMap&&!0===t.clearcoatMap.isTexture?e.mul(this.getTexture(r).r):e}else if(r===eh.CLEARCOAT_ROUGHNESS){const e=this.getFloat(r);s=t.clearcoatRoughnessMap&&!0===t.clearcoatRoughnessMap.isTexture?e.mul(this.getTexture(r).r):e}else if(r===eh.CLEARCOAT_NORMAL)s=t.clearcoatNormalMap?Xc(this.getTexture(r),this.getCache(r+"Scale","vec2")):jd;else if(r===eh.SHEEN){const e=this.getColor("sheenColor").mul(this.getFloat("sheen"));s=t.sheenColorMap&&!0===t.sheenColorMap.isTexture?e.mul(this.getTexture("sheenColor").rgb):e}else if(r===eh.SHEEN_ROUGHNESS){const e=this.getFloat(r);s=t.sheenRoughnessMap&&!0===t.sheenRoughnessMap.isTexture?e.mul(this.getTexture(r).a):e,s=s.clamp(1e-4,1)}else if(r===eh.ANISOTROPY)if(t.anisotropyMap&&!0===t.anisotropyMap.isTexture){const e=this.getTexture(r);s=wn(Oh.x,Oh.y,Oh.y.negate(),Oh.x).mul(e.rg.mul(2).sub(fn(1)).normalize().mul(e.b))}else s=Oh;else if(r===eh.IRIDESCENCE_THICKNESS){const e=mc("1","float",t.iridescenceThicknessRange);if(t.iridescenceThicknessMap){const i=mc("0","float",t.iridescenceThicknessRange);s=e.sub(i).mul(this.getTexture(r).g).add(i)}else s=e}else if(r===eh.TRANSMISSION){const e=this.getFloat(r);s=t.transmissionMap?e.mul(this.getTexture(r).r):e}else if(r===eh.THICKNESS){const e=this.getFloat(r);s=t.thicknessMap?e.mul(this.getTexture(r).g):e}else if(r===eh.IOR)s=this.getFloat(r);else if(r===eh.LIGHT_MAP)s=this.getTexture(r).rgb.mul(this.getFloat("lightMapIntensity"));else if(r===eh.AO)s=this.getTexture(r).r.sub(1).mul(this.getFloat("aoMapIntensity")).add(1);else if(r===eh.LINE_DASH_OFFSET)s=t.dashOffset?this.getFloat(r):hn(0);else{const t=this.getNodeType(e);s=this.getCache(r,t)}return s}}eh.ALPHA_TEST="alphaTest",eh.COLOR="color",eh.OPACITY="opacity",eh.SHININESS="shininess",eh.SPECULAR="specular",eh.SPECULAR_STRENGTH="specularStrength",eh.SPECULAR_INTENSITY="specularIntensity",eh.SPECULAR_COLOR="specularColor",eh.REFLECTIVITY="reflectivity",eh.ROUGHNESS="roughness",eh.METALNESS="metalness",eh.NORMAL="normal",eh.CLEARCOAT="clearcoat",eh.CLEARCOAT_ROUGHNESS="clearcoatRoughness",eh.CLEARCOAT_NORMAL="clearcoatNormal",eh.EMISSIVE="emissive",eh.ROTATION="rotation",eh.SHEEN="sheen",eh.SHEEN_ROUGHNESS="sheenRoughness",eh.ANISOTROPY="anisotropy",eh.IRIDESCENCE="iridescence",eh.IRIDESCENCE_IOR="iridescenceIOR",eh.IRIDESCENCE_THICKNESS="iridescenceThickness",eh.IOR="ior",eh.TRANSMISSION="transmission",eh.THICKNESS="thickness",eh.ATTENUATION_DISTANCE="attenuationDistance",eh.ATTENUATION_COLOR="attenuationColor",eh.LINE_SCALE="scale",eh.LINE_DASH_SIZE="dashSize",eh.LINE_GAP_SIZE="gapSize",eh.LINE_WIDTH="linewidth",eh.LINE_DASH_OFFSET="dashOffset",eh.POINT_SIZE="size",eh.DISPERSION="dispersion",eh.LIGHT_MAP="light",eh.AO="ao";const th=tn(eh,eh.ALPHA_TEST),rh=tn(eh,eh.COLOR),sh=tn(eh,eh.SHININESS),ih=tn(eh,eh.EMISSIVE),nh=tn(eh,eh.OPACITY),ah=tn(eh,eh.SPECULAR),oh=tn(eh,eh.SPECULAR_INTENSITY),uh=tn(eh,eh.SPECULAR_COLOR),lh=tn(eh,eh.SPECULAR_STRENGTH),dh=tn(eh,eh.REFLECTIVITY),ch=tn(eh,eh.ROUGHNESS),hh=tn(eh,eh.METALNESS),ph=tn(eh,eh.NORMAL),gh=tn(eh,eh.CLEARCOAT),mh=tn(eh,eh.CLEARCOAT_ROUGHNESS),fh=tn(eh,eh.CLEARCOAT_NORMAL),yh=tn(eh,eh.ROTATION),bh=tn(eh,eh.SHEEN),xh=tn(eh,eh.SHEEN_ROUGHNESS),Th=tn(eh,eh.ANISOTROPY),_h=tn(eh,eh.IRIDESCENCE),vh=tn(eh,eh.IRIDESCENCE_IOR),Nh=tn(eh,eh.IRIDESCENCE_THICKNESS),Sh=tn(eh,eh.TRANSMISSION),Rh=tn(eh,eh.THICKNESS),Ah=tn(eh,eh.IOR),Eh=tn(eh,eh.ATTENUATION_DISTANCE),wh=tn(eh,eh.ATTENUATION_COLOR),Ch=tn(eh,eh.LINE_SCALE),Mh=tn(eh,eh.LINE_DASH_SIZE),Bh=tn(eh,eh.LINE_GAP_SIZE),Lh=tn(eh,eh.LINE_WIDTH),Ph=tn(eh,eh.LINE_DASH_OFFSET),Fh=tn(eh,eh.POINT_SIZE),Dh=tn(eh,eh.DISPERSION),Ih=tn(eh,eh.LIGHT_MAP),Uh=tn(eh,eh.AO),Oh=xa(new t).onReference(function(e){return e.material}).onRenderUpdate(function({material:e}){this.value.set(e.anisotropy*Math.cos(e.anisotropyRotation),e.anisotropy*Math.sin(e.anisotropyRotation))}),Vh=an(e=>e.context.setupModelViewProjection(),"vec4").once()().toVarying("v_modelViewProjection");class kh extends oi{static get type(){return"StorageArrayElementNode"}constructor(e,t){super(e,t),this.isStorageArrayElementNode=!0}set storageBufferNode(e){this.node=e}get storageBufferNode(){return this.node}getMemberType(e,t){const r=this.storageBufferNode.structTypeNode;return r?r.getMemberType(e,t):"void"}setup(e){return!1===e.isAvailable("storageBuffer")&&!0===this.node.isPBO&&e.setupPBO(this.node),super.setup(e)}generate(e,t){let r;const s=e.context.assign;if(r=!1===e.isAvailable("storageBuffer")?!0!==this.node.isPBO||!0===s||!this.node.value.isInstancedBufferAttribute&&"compute"===e.shaderStage?this.node.build(e):e.generatePBO(this):super.generate(e),!0!==s){const s=this.getNodeType(e);r=e.format(r,s,t)}return r}}const Gh=en(kh).setParameterLength(2);class zh extends Dl{static get type(){return"StorageBufferNode"}constructor(e,t=null,r=0){let s,i=null;t&&t.isStruct?(s="struct",i=t.layout,(e.isStorageBufferAttribute||e.isStorageInstancedBufferAttribute)&&(r=e.count)):null===t&&(e.isStorageBufferAttribute||e.isStorageInstancedBufferAttribute)?(s=Vs(e.itemSize),r=e.count):s=t,super(e,s,r),this.isStorageBufferNode=!0,this.structTypeNode=i,this.access=Js.READ_WRITE,this.isAtomic=!1,this.isPBO=!1,this._attribute=null,this._varying=null,this.global=!0,!0!==e.isStorageBufferAttribute&&!0!==e.isStorageInstancedBufferAttribute&&(e.isInstancedBufferAttribute?e.isStorageInstancedBufferAttribute=!0:e.isStorageBufferAttribute=!0)}getHash(e){if(0===this.bufferCount){let t=e.globalCache.getData(this.value);return void 0===t&&(t={node:this},e.globalCache.setData(this.value,t)),t.node.uuid}return this.uuid}getInputType(){return this.value.isIndirectStorageBufferAttribute?"indirectStorageBuffer":"storageBuffer"}element(e){return Gh(this,e)}setPBO(e){return this.isPBO=e,this}getPBO(){return this.isPBO}setAccess(e){return this.access=e,this}toReadOnly(){return this.setAccess(Js.READ_ONLY)}setAtomic(e){return this.isAtomic=e,this}toAtomic(){return this.setAtomic(!0)}getAttributeData(){return null===this._attribute&&(this._attribute=Ju(this.value),this._varying=Fu(this._attribute)),{attribute:this._attribute,varying:this._varying}}getNodeType(e){if(null!==this.structTypeNode)return this.structTypeNode.getNodeType(e);if(e.isAvailable("storageBuffer")||e.isAvailable("indirectStorageBuffer"))return super.getNodeType(e);const{attribute:t}=this.getAttributeData();return t.getNodeType(e)}getMemberType(e,t){return null!==this.structTypeNode?this.structTypeNode.getMemberType(e,t):"void"}generate(e){if(null!==this.structTypeNode&&this.structTypeNode.build(e),e.isAvailable("storageBuffer")||e.isAvailable("indirectStorageBuffer"))return super.generate(e);const{attribute:t,varying:r}=this.getAttributeData(),s=r.build(e);return e.registerTransform(s,t),s}}const $h=(e,t=null,r=0)=>Yi(new zh(e,t,r));class Wh extends ai{static get type(){return"IndexNode"}constructor(e){super("uint"),this.scope=e,this.isIndexNode=!0}generate(e){const t=this.getNodeType(e),r=this.scope;let s,i;if(r===Wh.VERTEX)s=e.getVertexIndex();else if(r===Wh.INSTANCE)s=e.getInstanceIndex();else if(r===Wh.DRAW)s=e.getDrawIndex();else if(r===Wh.INVOCATION_LOCAL)s=e.getInvocationLocalIndex();else if(r===Wh.INVOCATION_SUBGROUP)s=e.getInvocationSubgroupIndex();else{if(r!==Wh.SUBGROUP)throw new Error("THREE.IndexNode: Unknown scope: "+r);s=e.getSubgroupIndex()}if("vertex"===e.shaderStage||"compute"===e.shaderStage)i=s;else{i=Fu(this).build(e,t)}return i}}Wh.VERTEX="vertex",Wh.INSTANCE="instance",Wh.SUBGROUP="subgroup",Wh.INVOCATION_LOCAL="invocationLocal",Wh.INVOCATION_SUBGROUP="invocationSubgroup",Wh.DRAW="draw";const Hh=tn(Wh,Wh.VERTEX),jh=tn(Wh,Wh.INSTANCE),qh=tn(Wh,Wh.SUBGROUP),Xh=tn(Wh,Wh.INVOCATION_SUBGROUP),Kh=tn(Wh,Wh.INVOCATION_LOCAL),Yh=tn(Wh,Wh.DRAW);class Qh extends ai{static get type(){return"InstanceNode"}constructor(e,t,r=null){super("void"),this.count=e,this.instanceMatrix=t,this.instanceColor=r,this.instanceMatrixNode=null,this.instanceColorNode=null,this.updateType=Qs.FRAME,this.buffer=null,this.bufferColor=null}get isStorageMatrix(){const{instanceMatrix:e}=this;return e&&!0===e.isStorageInstancedBufferAttribute}get isStorageColor(){const{instanceColor:e}=this;return e&&!0===e.isStorageInstancedBufferAttribute}setup(e){const{instanceMatrix:t,instanceColor:r,isStorageMatrix:s,isStorageColor:i}=this,{count:n}=t;let{instanceMatrixNode:a,instanceColorNode:o}=this;if(null===a){if(s)a=$h(t,"mat4",Math.max(n,1)).element(jh);else if(n<=1e3)a=Il(t.array,"mat4",Math.max(n,1)).element(jh);else{const e=new z(t.array,16,1);this.buffer=e;const r=t.usage===x?tl:el,s=[r(e,"vec4",16,0),r(e,"vec4",16,4),r(e,"vec4",16,8),r(e,"vec4",16,12)];a=Mn(...s)}this.instanceMatrixNode=a}if(r&&null===o){if(i)o=$h(r,"vec3",Math.max(r.count,1)).element(jh);else{const e=new $(r.array,3),t=r.usage===x?tl:el;this.bufferColor=e,o=Tn(t(e,"vec3",3,0))}this.instanceColorNode=o}const u=a.mul(Bd).xyz;if(Bd.assign(u),e.hasGeometryAttribute("normal")){const e=Kd(zd,a);zd.assign(e)}null!==this.instanceColorNode&&Dn("vec3","vInstanceColor").assign(this.instanceColorNode)}update(){null!==this.buffer&&!0!==this.isStorageMatrix&&(this.buffer.clearUpdateRanges(),this.buffer.updateRanges.push(...this.instanceMatrix.updateRanges),this.instanceMatrix.usage!==x&&this.instanceMatrix.version!==this.buffer.version&&(this.buffer.version=this.instanceMatrix.version)),this.instanceColor&&null!==this.bufferColor&&!0!==this.isStorageColor&&(this.bufferColor.clearUpdateRanges(),this.bufferColor.updateRanges.push(...this.instanceColor.updateRanges),this.instanceColor.usage!==x&&this.instanceColor.version!==this.bufferColor.version&&(this.bufferColor.version=this.instanceColor.version))}}const Zh=en(Qh).setParameterLength(2,3);class Jh extends Qh{static get type(){return"InstancedMeshNode"}constructor(e){const{count:t,instanceMatrix:r,instanceColor:s}=e;super(t,r,s),this.instancedMesh=e}}const ep=en(Jh).setParameterLength(1);class tp extends ai{static get type(){return"BatchNode"}constructor(e){super("void"),this.batchMesh=e,this.batchingIdNode=null}setup(e){null===this.batchingIdNode&&(null===e.getDrawIndex()?this.batchingIdNode=jh:this.batchingIdNode=Yh);const t=an(([e])=>{const t=pn(El(Fl(this.batchMesh._indirectTexture),0).x).toConst(),r=pn(e).mod(t).toConst(),s=pn(e).div(t).toConst();return Fl(this.batchMesh._indirectTexture,yn(r,s)).x}).setLayout({name:"getIndirectIndex",type:"uint",inputs:[{name:"id",type:"int"}]}),r=t(pn(this.batchingIdNode)),s=this.batchMesh._matricesTexture,i=pn(El(Fl(s),0).x).toConst(),n=hn(r).mul(4).toInt().toConst(),a=n.mod(i).toConst(),o=n.div(i).toConst(),u=Mn(Fl(s,yn(a,o)),Fl(s,yn(a.add(1),o)),Fl(s,yn(a.add(2),o)),Fl(s,yn(a.add(3),o))),l=this.batchMesh._colorsTexture;if(null!==l){const e=an(([e])=>{const t=pn(El(Fl(l),0).x).toConst(),r=e,s=r.mod(t).toConst(),i=r.div(t).toConst();return Fl(l,yn(s,i)).rgb}).setLayout({name:"getBatchingColor",type:"vec3",inputs:[{name:"id",type:"int"}]}),t=e(r);Dn("vec3","vBatchColor").assign(t)}const d=Cn(u);Bd.assign(u.mul(Bd));const c=zd.div(Tn(d[0].dot(d[0]),d[1].dot(d[1]),d[2].dot(d[2]))),h=d.mul(c).xyz;zd.assign(h),e.hasGeometryAttribute("tangent")&&Fc.mulAssign(d)}}const rp=en(tp).setParameterLength(1),sp=new WeakMap;class ip extends ai{static get type(){return"SkinningNode"}constructor(e){super("void"),this.skinnedMesh=e,this.updateType=Qs.OBJECT,this.skinIndexNode=Sl("skinIndex","uvec4"),this.skinWeightNode=Sl("skinWeight","vec4"),this.bindMatrixNode=mc("bindMatrix","mat4"),this.bindMatrixInverseNode=mc("bindMatrixInverse","mat4"),this.boneMatricesNode=fc("skeleton.boneMatrices","mat4",e.skeleton.bones.length),this.positionNode=Bd,this.toPositionNode=Bd,this.previousBoneMatricesNode=null}getSkinnedPosition(e=this.boneMatricesNode,t=this.positionNode){const{skinIndexNode:r,skinWeightNode:s,bindMatrixNode:i,bindMatrixInverseNode:n}=this,a=e.element(r.x),o=e.element(r.y),u=e.element(r.z),l=e.element(r.w),d=i.mul(t),c=wa(a.mul(s.x).mul(d),o.mul(s.y).mul(d),u.mul(s.z).mul(d),l.mul(s.w).mul(d));return n.mul(c).xyz}getSkinnedNormal(e=this.boneMatricesNode,t=zd){const{skinIndexNode:r,skinWeightNode:s,bindMatrixNode:i,bindMatrixInverseNode:n}=this,a=e.element(r.x),o=e.element(r.y),u=e.element(r.z),l=e.element(r.w);let d=wa(s.x.mul(a),s.y.mul(o),s.z.mul(u),s.w.mul(l));return d=n.mul(d).mul(i),d.transformDirection(t).xyz}getPreviousSkinnedPosition(e){const t=e.object;return null===this.previousBoneMatricesNode&&(t.skeleton.previousBoneMatrices=new Float32Array(t.skeleton.boneMatrices),this.previousBoneMatricesNode=fc("skeleton.previousBoneMatrices","mat4",t.skeleton.bones.length)),this.getSkinnedPosition(this.previousBoneMatricesNode,Ld)}needsPreviousBoneMatrices(e){const t=e.renderer.getMRT();return t&&t.has("velocity")||!0===js(e.object).useVelocity}setup(e){this.needsPreviousBoneMatrices(e)&&Ld.assign(this.getPreviousSkinnedPosition(e));const t=this.getSkinnedPosition();if(this.toPositionNode&&this.toPositionNode.assign(t),e.hasGeometryAttribute("normal")){const t=this.getSkinnedNormal();zd.assign(t),e.hasGeometryAttribute("tangent")&&Fc.assign(t)}return t}generate(e,t){if("void"!==t)return super.generate(e,t)}update(e){const t=e.object&&e.object.skeleton?e.object.skeleton:this.skinnedMesh.skeleton;sp.get(t)!==e.frameId&&(sp.set(t,e.frameId),null!==this.previousBoneMatricesNode&&t.previousBoneMatrices.set(t.boneMatrices),t.update())}}const np=e=>Yi(new ip(e));class ap extends ai{static get type(){return"LoopNode"}constructor(e=[]){super("void"),this.params=e}getVarName(e){return String.fromCharCode("i".charCodeAt(0)+e)}getProperties(e){const t=e.getNodeProperties(this);if(void 0!==t.stackNode)return t;const r={};for(let e=0,t=this.params.length-1;eNumber(l)?">=":"<")),a)n=`while ( ${l} )`;else{const r={start:u,end:l},s=r.start,i=r.end;let a;const g=()=>h.includes("<")?"+=":"-=";if(null!=p)switch(typeof p){case"function":a=e.flowStagesNode(t.updateNode,"void").code.replace(/\t|;/g,"");break;case"number":a=d+" "+g()+" "+e.generateConst(c,p);break;case"string":a=d+" "+p;break;default:p.isNode?a=d+" "+g()+" "+p.build(e):(o("TSL: 'Loop( { update: ... } )' is not a function, string or number."),a="break /* invalid update */")}else p="int"===c||"uint"===c?h.includes("<")?"++":"--":g()+" 1.",a=d+" "+p;n=`for ( ${e.getVar(c,d)+" = "+s}; ${d+" "+h+" "+i}; ${a} )`}e.addFlowCode((0===s?"\n":"")+e.tab+n+" {\n\n").addFlowTab()}const i=s.build(e,"void");t.returnsNode.build(e,"void"),e.removeFlowTab().addFlowCode("\n"+e.tab+i);for(let t=0,r=this.params.length-1;tnew ap(Ji(e,"int")).toStack(),up=()=>gl("break").toStack(),lp=new WeakMap,dp=new s,cp=an(({bufferMap:e,influence:t,stride:r,width:s,depth:i,offset:n})=>{const a=pn(Hh).mul(r).add(n),o=a.div(s),u=a.sub(o.mul(s));return Fl(e,yn(u,o)).depth(i).xyz.mul(t)});class hp extends ai{static get type(){return"MorphNode"}constructor(e){super("void"),this.mesh=e,this.morphBaseInfluence=xa(1),this.updateType=Qs.OBJECT}setup(e){const{geometry:r}=e,s=void 0!==r.morphAttributes.position,i=r.hasAttribute("normal")&&void 0!==r.morphAttributes.normal,n=r.morphAttributes.position||r.morphAttributes.normal||r.morphAttributes.color,a=void 0!==n?n.length:0,{texture:o,stride:u,size:l}=function(e){const r=void 0!==e.morphAttributes.position,s=void 0!==e.morphAttributes.normal,i=void 0!==e.morphAttributes.color,n=e.morphAttributes.position||e.morphAttributes.normal||e.morphAttributes.color,a=void 0!==n?n.length:0;let o=lp.get(e);if(void 0===o||o.count!==a){void 0!==o&&o.texture.dispose();const u=e.morphAttributes.position||[],l=e.morphAttributes.normal||[],d=e.morphAttributes.color||[];let c=0;!0===r&&(c=1),!0===s&&(c=2),!0===i&&(c=3);let h=e.attributes.position.count*c,p=1;const g=4096;h>g&&(p=Math.ceil(h/g),h=g);const m=new Float32Array(h*p*4*a),f=new W(m,h,p,a);f.type=H,f.needsUpdate=!0;const y=4*c;for(let x=0;x{const t=hn(0).toVar();this.mesh.count>1&&null!==this.mesh.morphTexture&&void 0!==this.mesh.morphTexture?t.assign(Fl(this.mesh.morphTexture,yn(pn(e).add(1),pn(jh))).r):t.assign(mc("morphTargetInfluences","float").element(e).toVar()),ln(t.notEqual(0),()=>{!0===s&&Bd.addAssign(cp({bufferMap:o,influence:t,stride:u,width:d,depth:e,offset:pn(0)})),!0===i&&zd.addAssign(cp({bufferMap:o,influence:t,stride:u,width:d,depth:e,offset:pn(1)}))})})}update(){const e=this.morphBaseInfluence;this.mesh.geometry.morphTargetsRelative?e.value=1:e.value=1-this.mesh.morphTargetInfluences.reduce((e,t)=>e+t,0)}}const pp=en(hp).setParameterLength(1);class gp extends ai{static get type(){return"LightingNode"}constructor(){super("vec3"),this.isLightingNode=!0}}class mp extends gp{static get type(){return"AONode"}constructor(e=null){super(),this.aoNode=e}setup(e){e.context.ambientOcclusion.mulAssign(this.aoNode)}}class fp extends xu{static get type(){return"LightingContextNode"}constructor(e,t=null,r=null,s=null){super(e),this.lightingModel=t,this.backdropNode=r,this.backdropAlphaNode=s,this._value=null}getContext(){const{backdropNode:e,backdropAlphaNode:t}=this,r={directDiffuse:Tn().toVar("directDiffuse"),directSpecular:Tn().toVar("directSpecular"),indirectDiffuse:Tn().toVar("indirectDiffuse"),indirectSpecular:Tn().toVar("indirectSpecular")};return{radiance:Tn().toVar("radiance"),irradiance:Tn().toVar("irradiance"),iblIrradiance:Tn().toVar("iblIrradiance"),ambientOcclusion:hn(1).toVar("ambientOcclusion"),reflectedLight:r,backdrop:e,backdropAlpha:t}}setup(e){return this.value=this._value||(this._value=this.getContext()),this.value.lightingModel=this.lightingModel||e.context.lightingModel,super.setup(e)}}const yp=en(fp);class bp extends gp{static get type(){return"IrradianceNode"}constructor(e){super(),this.node=e}setup(e){e.context.irradiance.addAssign(this.node)}}const xp=new t;class Tp extends Bl{static get type(){return"ViewportTextureNode"}constructor(e=Hl,t=null,r=null){let s=null;null===r?(s=new j,s.minFilter=q,r=s):s=r,super(r,e,t),this.generateMipmaps=!1,this.defaultFramebuffer=s,this.isOutputTextureNode=!0,this.updateBeforeType=Qs.FRAME,this._cacheTextures=new WeakMap}getTextureForReference(e=null){let t,r;if(this.referenceNode?(t=this.referenceNode.defaultFramebuffer,r=this.referenceNode._cacheTextures):(t=this.defaultFramebuffer,r=this._cacheTextures),null===e)return t;if(!1===r.has(e)){const s=t.clone();r.set(e,s)}return r.get(e)}updateReference(e){const t=e.renderer.getRenderTarget();return this.value=this.getTextureForReference(t),this.value}updateBefore(e){const t=e.renderer,r=t.getRenderTarget();null===r?t.getDrawingBufferSize(xp):xp.set(r.width,r.height);const s=this.getTextureForReference(r);s.image.width===xp.width&&s.image.height===xp.height||(s.image.width=xp.width,s.image.height=xp.height,s.needsUpdate=!0);const i=s.generateMipmaps;s.generateMipmaps=this.generateMipmaps,t.copyFramebufferToTexture(s),s.generateMipmaps=i}clone(){const e=new this.constructor(this.uvNode,this.levelNode,this.value);return e.generateMipmaps=this.generateMipmaps,e}}const _p=en(Tp).setParameterLength(0,3),vp=en(Tp,null,null,{generateMipmaps:!0}).setParameterLength(0,3);let Np=null;class Sp extends Tp{static get type(){return"ViewportDepthTextureNode"}constructor(e=Hl,t=null){null===Np&&(Np=new X),super(e,t,Np)}getTextureForReference(){return Np}}const Rp=en(Sp).setParameterLength(0,2);class Ap extends ai{static get type(){return"ViewportDepthNode"}constructor(e,t=null){super("float"),this.scope=e,this.valueNode=t,this.isViewportDepthNode=!0}generate(e){const{scope:t}=this;return t===Ap.DEPTH_BASE?e.getFragDepth():super.generate(e)}setup({camera:e}){const{scope:t}=this,r=this.valueNode;let s=null;if(t===Ap.DEPTH_BASE)null!==r&&(s=Bp().assign(r));else if(t===Ap.DEPTH)s=e.isPerspectiveCamera?wp(Dd.z,ed,td):Ep(Dd.z,ed,td);else if(t===Ap.LINEAR_DEPTH)if(null!==r)if(e.isPerspectiveCamera){const e=Cp(r,ed,td);s=Ep(e,ed,td)}else s=r;else s=Ep(Dd.z,ed,td);return s}}Ap.DEPTH_BASE="depthBase",Ap.DEPTH="depth",Ap.LINEAR_DEPTH="linearDepth";const Ep=(e,t,r)=>e.add(t).div(t.sub(r)),wp=(e,t,r)=>t.add(e).mul(r).div(r.sub(t).mul(e)),Cp=(e,t,r)=>t.mul(r).div(r.sub(t).mul(e).sub(r)),Mp=(e,t,r)=>{t=t.max(1e-6).toVar();const s=mo(e.negate().div(t)),i=mo(r.div(t));return s.div(i)},Bp=en(Ap,Ap.DEPTH_BASE),Lp=tn(Ap,Ap.DEPTH),Pp=en(Ap,Ap.LINEAR_DEPTH).setParameterLength(0,1),Fp=Pp(Rp());Lp.assign=e=>Bp(e);class Dp extends ai{static get type(){return"ClippingNode"}constructor(e=Dp.DEFAULT){super(),this.scope=e}setup(e){super.setup(e);const t=e.clippingContext,{intersectionPlanes:r,unionPlanes:s}=t;return this.hardwareClipping=e.material.hardwareClipping,this.scope===Dp.ALPHA_TO_COVERAGE?this.setupAlphaToCoverage(r,s):this.scope===Dp.HARDWARE?this.setupHardwareClipping(s,e):this.setupDefault(r,s)}setupAlphaToCoverage(e,t){return an(()=>{const r=hn().toVar("distanceToPlane"),s=hn().toVar("distanceToGradient"),i=hn(1).toVar("clipOpacity"),n=t.length;if(!1===this.hardwareClipping&&n>0){const e=Vl(t).setGroup(fa);op(n,({i:t})=>{const n=e.element(t);r.assign(Dd.dot(n.xyz).negate().add(n.w)),s.assign(r.fwidth().div(2)),i.mulAssign(uu(s.negate(),s,r))})}const a=e.length;if(a>0){const t=Vl(e).setGroup(fa),n=hn(1).toVar("intersectionClipOpacity");op(a,({i:e})=>{const i=t.element(e);r.assign(Dd.dot(i.xyz).negate().add(i.w)),s.assign(r.fwidth().div(2)),n.mulAssign(uu(s.negate(),s,r).oneMinus())}),i.mulAssign(n.oneMinus())}In.a.mulAssign(i),In.a.equal(0).discard()})()}setupDefault(e,t){return an(()=>{const r=t.length;if(!1===this.hardwareClipping&&r>0){const e=Vl(t).setGroup(fa);op(r,({i:t})=>{const r=e.element(t);Dd.dot(r.xyz).greaterThan(r.w).discard()})}const s=e.length;if(s>0){const t=Vl(e).setGroup(fa),r=mn(!0).toVar("clipped");op(s,({i:e})=>{const s=t.element(e);r.assign(Dd.dot(s.xyz).greaterThan(s.w).and(r))}),r.discard()}})()}setupHardwareClipping(e,t){const r=e.length;return t.enableHardwareClipping(r),an(()=>{const s=Vl(e).setGroup(fa),i=kl(t.getClipDistance());op(r,({i:e})=>{const t=s.element(e),r=Dd.dot(t.xyz).sub(t.w).negate();i.element(e).assign(r)})})()}}Dp.ALPHA_TO_COVERAGE="alphaToCoverage",Dp.DEFAULT="default",Dp.HARDWARE="hardware";const Ip=an(([e])=>_o(Ma(1e4,vo(Ma(17,e.x).add(Ma(.1,e.y)))).mul(wa(.1,wo(vo(Ma(13,e.y).add(e.x))))))),Up=an(([e])=>Ip(fn(Ip(e.xy),e.z))),Op=an(([e])=>{const t=Wo(Mo(Po(e.xyz)),Mo(Fo(e.xyz))),r=hn(1).div(hn(.05).mul(t)).toVar("pixScale"),s=fn(po(bo(mo(r))),po(xo(mo(r)))),i=fn(Up(bo(s.x.mul(e.xyz))),Up(bo(s.y.mul(e.xyz)))),n=_o(mo(r)),a=wa(Ma(n.oneMinus(),i.x),Ma(n,i.y)),o=$o(n,n.oneMinus()),u=Tn(a.mul(a).div(Ma(2,o).mul(Ca(1,o))),a.sub(Ma(.5,o)).div(Ca(1,o)),Ca(1,Ca(1,a).mul(Ca(1,a)).div(Ma(2,o).mul(Ca(1,o))))),l=a.lessThan(o.oneMinus()).select(a.lessThan(o).select(u.x,u.y),u.z);return nu(l,1e-6,1)}).setLayout({name:"getAlphaHashThreshold",type:"float",inputs:[{name:"position",type:"vec3"}]});class Vp extends Nl{static get type(){return"VertexColorNode"}constructor(e){super(null,"vec4"),this.isVertexColorNode=!0,this.index=e}getAttributeName(){const e=this.index;return"color"+(e>0?e:"")}generate(e){const t=this.getAttributeName(e);let r;return r=!0===e.hasGeometryAttribute(t)?super.generate(e):e.generateConst(this.nodeType,new s(1,1,1,1)),r}serialize(e){super.serialize(e),e.index=this.index}deserialize(e){super.deserialize(e),this.index=e.index}}const kp=(e=0)=>Yi(new Vp(e)),Gp=an(([e,t])=>$o(1,e.oneMinus().div(t)).oneMinus()).setLayout({name:"blendBurn",type:"vec3",inputs:[{name:"base",type:"vec3"},{name:"blend",type:"vec3"}]}),zp=an(([e,t])=>$o(e.div(t.oneMinus()),1)).setLayout({name:"blendDodge",type:"vec3",inputs:[{name:"base",type:"vec3"},{name:"blend",type:"vec3"}]}),$p=an(([e,t])=>e.oneMinus().mul(t.oneMinus()).oneMinus()).setLayout({name:"blendScreen",type:"vec3",inputs:[{name:"base",type:"vec3"},{name:"blend",type:"vec3"}]}),Wp=an(([e,t])=>iu(e.mul(2).mul(t),e.oneMinus().mul(2).mul(t.oneMinus()).oneMinus(),Ho(.5,e))).setLayout({name:"blendOverlay",type:"vec3",inputs:[{name:"base",type:"vec3"},{name:"blend",type:"vec3"}]}),Hp=an(([e,t])=>{const r=t.a.add(e.a.mul(t.a.oneMinus()));return Sn(t.rgb.mul(t.a).add(e.rgb.mul(e.a).mul(t.a.oneMinus())).div(r),r)}).setLayout({name:"blendColor",type:"vec4",inputs:[{name:"base",type:"vec4"},{name:"blend",type:"vec4"}]}),jp=an(([e])=>Sn(e.rgb.mul(e.a),e.a),{color:"vec4",return:"vec4"}),qp=an(([e])=>(ln(e.a.equal(0),()=>Sn(0)),Sn(e.rgb.div(e.a),e.a)),{color:"vec4",return:"vec4"});class Xp extends K{static get type(){return"NodeMaterial"}get type(){return this.constructor.type}set type(e){}constructor(){super(),this.isNodeMaterial=!0,this.fog=!0,this.lights=!1,this.hardwareClipping=!1,this.lightsNode=null,this.envNode=null,this.aoNode=null,this.colorNode=null,this.normalNode=null,this.opacityNode=null,this.backdropNode=null,this.backdropAlphaNode=null,this.alphaTestNode=null,this.maskNode=null,this.positionNode=null,this.geometryNode=null,this.depthNode=null,this.receivedShadowPositionNode=null,this.castShadowPositionNode=null,this.receivedShadowNode=null,this.castShadowNode=null,this.outputNode=null,this.mrtNode=null,this.fragmentNode=null,this.vertexNode=null,this.contextNode=null,Object.defineProperty(this,"shadowPositionNode",{get:()=>this.receivedShadowPositionNode,set:e=>{d('NodeMaterial: ".shadowPositionNode" was renamed to ".receivedShadowPositionNode".'),this.receivedShadowPositionNode=e}})}_getNodeChildren(){const e=[];for(const t of Object.getOwnPropertyNames(this)){if(!0===t.startsWith("_"))continue;const r=this[t];r&&!0===r.isNode&&e.push({property:t,childNode:r})}return e}customProgramCacheKey(){const e=[];for(const{property:t,childNode:r}of this._getNodeChildren())e.push(Fs(t.slice(0,-4)),r.getCacheKey());return this.type+Ds(e)}build(e){this.setup(e)}setupObserver(e){return new Ls(e)}setup(e){e.context.setupNormal=()=>Lu(this.setupNormal(e),"NORMAL","vec3"),e.context.setupPositionView=()=>this.setupPositionView(e),e.context.setupModelViewProjection=()=>this.setupModelViewProjection(e);const t=e.renderer,r=t.getRenderTarget();!0===t.contextNode.isContextNode?e.context={...e.context,...t.contextNode.getFlowContextData()}:o('NodeMaterial: "renderer.contextNode" must be an instance of `context()`.'),null!==this.contextNode&&(!0===this.contextNode.isContextNode?e.context={...e.context,...this.contextNode.getFlowContextData()}:o('NodeMaterial: "material.contextNode" must be an instance of `context()`.')),e.addStack();const s=Lu(this.setupVertex(e),"VERTEX"),i=this.vertexNode||s;let n;e.stack.outputNode=i,this.setupHardwareClipping(e),null!==this.geometryNode&&(e.stack.outputNode=e.stack.outputNode.bypass(this.geometryNode)),e.addFlow("vertex",e.removeStack()),e.addStack();const a=this.setupClipping(e);if(!0!==this.depthWrite&&!0!==this.depthTest||(null!==r?!0===r.depthBuffer&&this.setupDepth(e):!0===t.depth&&this.setupDepth(e)),null===this.fragmentNode){this.setupDiffuseColor(e),this.setupVariants(e);const s=this.setupLighting(e);null!==a&&e.stack.addToStack(a);const i=Sn(s,In.a).max(0);n=this.setupOutput(e,i),ra.assign(n);const o=null!==this.outputNode;if(o&&(n=this.outputNode),e.context.getOutput&&(n=e.context.getOutput(n,e)),null!==r){const e=t.getMRT(),r=this.mrtNode;null!==e?(o&&ra.assign(n),n=e,null!==r&&(n=e.merge(r))):null!==r&&(n=r)}}else{let t=this.fragmentNode;!0!==t.isOutputStructNode&&(t=Sn(t)),n=this.setupOutput(e,t)}e.stack.outputNode=n,e.addFlow("fragment",e.removeStack()),e.observer=this.setupObserver(e)}setupClipping(e){if(null===e.clippingContext)return null;const{unionPlanes:t,intersectionPlanes:r}=e.clippingContext;let s=null;if(t.length>0||r.length>0){const t=e.renderer.currentSamples;this.alphaToCoverage&&t>1?s=Yi(new Dp(Dp.ALPHA_TO_COVERAGE)):e.stack.addToStack(Yi(new Dp))}return s}setupHardwareClipping(e){if(this.hardwareClipping=!1,null===e.clippingContext)return;const t=e.clippingContext.unionPlanes.length;t>0&&t<=8&&e.isAvailable("clipDistance")&&(e.stack.addToStack(Yi(new Dp(Dp.HARDWARE))),this.hardwareClipping=!0)}setupDepth(e){const{renderer:t,camera:r}=e;let s=this.depthNode;if(null===s){const e=t.getMRT();e&&e.has("depth")?s=e.get("depth"):!0===t.logarithmicDepthBuffer&&(s=r.isPerspectiveCamera?Mp(Dd.z,ed,td):Ep(Dd.z,ed,td))}null!==s&&Lp.assign(s).toStack()}setupPositionView(){return Ad.mul(Bd).xyz}setupModelViewProjection(){return rd.mul(Dd)}setupVertex(e){return e.addStack(),this.setupPosition(e),e.context.vertex=e.removeStack(),Vh}setupPosition(e){const{object:t,geometry:r}=e;if((r.morphAttributes.position||r.morphAttributes.normal||r.morphAttributes.color)&&pp(t).toStack(),!0===t.isSkinnedMesh&&np(t).toStack(),this.displacementMap){const e=bc("displacementMap","texture"),t=bc("displacementScale","float"),r=bc("displacementBias","float");Bd.addAssign(zd.normalize().mul(e.x.mul(t).add(r)))}return t.isBatchedMesh&&rp(t).toStack(),t.isInstancedMesh&&t.instanceMatrix&&!0===t.instanceMatrix.isInstancedBufferAttribute&&ep(t).toStack(),null!==this.positionNode&&Bd.assign(Lu(this.positionNode,"POSITION","vec3")),Bd}setupDiffuseColor(e){const{object:t,geometry:r}=e;null!==this.maskNode&&mn(this.maskNode).not().discard();let s=this.colorNode?Sn(this.colorNode):rh;if(!0===this.vertexColors&&r.hasAttribute("color")&&(s=s.mul(kp())),t.instanceColor){s=Dn("vec3","vInstanceColor").mul(s)}if(t.isBatchedMesh&&t._colorsTexture){s=Dn("vec3","vBatchColor").mul(s)}In.assign(s);const i=this.opacityNode?hn(this.opacityNode):nh;In.a.assign(In.a.mul(i));let n=null;(null!==this.alphaTestNode||this.alphaTest>0)&&(n=null!==this.alphaTestNode?hn(this.alphaTestNode):th,!0===this.alphaToCoverage?(In.a=uu(n,n.add(Oo(In.a)),In.a),In.a.lessThanEqual(0).discard()):In.a.lessThanEqual(n).discard()),!0===this.alphaHash&&In.a.lessThan(Op(Bd)).discard(),e.isOpaque()&&In.a.assign(1)}setupVariants(){}setupOutgoingLight(){return!0===this.lights?Tn(0):In.rgb}setupNormal(){return this.normalNode?Tn(this.normalNode):ph}setupEnvironment(){let e=null;return this.envNode?e=this.envNode:this.envMap&&(e=this.envMap.isCubeTexture?bc("envMap","cubeTexture"):bc("envMap","texture")),e}setupLightMap(e){let t=null;return e.material.lightMap&&(t=new bp(Ih)),t}setupLights(e){const t=[],r=this.setupEnvironment(e);r&&r.isLightingNode&&t.push(r);const s=this.setupLightMap(e);s&&s.isLightingNode&&t.push(s);let i=this.aoNode;null===i&&e.material.aoMap&&(i=Uh),e.context.getAO&&(i=e.context.getAO(i,e)),i&&t.push(new mp(i));let n=this.lightsNode||e.lightsNode;return t.length>0&&(n=e.renderer.lighting.createNode([...n.getLights(),...t])),n}setupLightingModel(){}setupLighting(e){const{material:t}=e,{backdropNode:r,backdropAlphaNode:s,emissiveNode:i}=this,n=!0===this.lights||null!==this.lightsNode?this.setupLights(e):null;let a=this.setupOutgoingLight(e);if(n&&n.getScope().hasLights){const t=this.setupLightingModel(e)||null;a=yp(n,t,r,s)}else null!==r&&(a=Tn(null!==s?iu(a,r,s):r));return(i&&!0===i.isNode||t.emissive&&!0===t.emissive.isColor)&&(On.assign(Tn(i||ih)),a=a.add(On)),a}setupFog(e,t){const r=e.fogNode;return r&&(ra.assign(t),t=Sn(r.toVar())),t}setupPremultipliedAlpha(e,t){return jp(t)}setupOutput(e,t){return!0===this.fog&&(t=this.setupFog(e,t)),!0===this.premultipliedAlpha&&(t=this.setupPremultipliedAlpha(e,t)),t}setDefaultValues(e){for(const t in e){const r=e[t];void 0===this[t]&&(this[t]=r,r&&r.clone&&(this[t]=r.clone()))}const t=Object.getOwnPropertyDescriptors(e.constructor.prototype);for(const e in t)void 0===Object.getOwnPropertyDescriptor(this.constructor.prototype,e)&&void 0!==t[e].get&&Object.defineProperty(this.constructor.prototype,e,t[e])}toJSON(e){const t=void 0===e||"string"==typeof e;t&&(e={textures:{},images:{},nodes:{}});const r=K.prototype.toJSON.call(this,e);r.inputNodes={};for(const{property:t,childNode:s}of this._getNodeChildren())r.inputNodes[t]=s.toJSON(e).uuid;function s(e){const t=[];for(const r in e){const s=e[r];delete s.metadata,t.push(s)}return t}if(t){const t=s(e.textures),i=s(e.images),n=s(e.nodes);t.length>0&&(r.textures=t),i.length>0&&(r.images=i),n.length>0&&(r.nodes=n)}return r}copy(e){return this.lightsNode=e.lightsNode,this.envNode=e.envNode,this.aoNode=e.aoNode,this.colorNode=e.colorNode,this.normalNode=e.normalNode,this.opacityNode=e.opacityNode,this.backdropNode=e.backdropNode,this.backdropAlphaNode=e.backdropAlphaNode,this.alphaTestNode=e.alphaTestNode,this.maskNode=e.maskNode,this.positionNode=e.positionNode,this.geometryNode=e.geometryNode,this.depthNode=e.depthNode,this.receivedShadowPositionNode=e.receivedShadowPositionNode,this.castShadowPositionNode=e.castShadowPositionNode,this.receivedShadowNode=e.receivedShadowNode,this.castShadowNode=e.castShadowNode,this.outputNode=e.outputNode,this.mrtNode=e.mrtNode,this.fragmentNode=e.fragmentNode,this.vertexNode=e.vertexNode,this.contextNode=e.contextNode,super.copy(e)}}const Kp=new Y;class Yp extends Xp{static get type(){return"LineBasicNodeMaterial"}constructor(e){super(),this.isLineBasicNodeMaterial=!0,this.setDefaultValues(Kp),this.setValues(e)}}const Qp=new Q;class Zp extends Xp{static get type(){return"LineDashedNodeMaterial"}constructor(e){super(),this.isLineDashedNodeMaterial=!0,this.setDefaultValues(Qp),this.dashOffset=0,this.offsetNode=null,this.dashScaleNode=null,this.dashSizeNode=null,this.gapSizeNode=null,this.setValues(e)}setupVariants(){const e=this.offsetNode?hn(this.offsetNode):Ph,t=this.dashScaleNode?hn(this.dashScaleNode):Ch,r=this.dashSizeNode?hn(this.dashSizeNode):Mh,s=this.gapSizeNode?hn(this.gapSizeNode):Bh;sa.assign(r),ia.assign(s);const i=Fu(Sl("lineDistance").mul(t));(e?i.add(e):i).mod(sa.add(ia)).greaterThan(sa).discard()}}let Jp=null;class eg extends Tp{static get type(){return"ViewportSharedTextureNode"}constructor(e=Hl,t=null){null===Jp&&(Jp=new j),super(e,t,Jp)}getTextureForReference(){return Jp}updateReference(){return this}}const tg=en(eg).setParameterLength(0,2),rg=new Q;class sg extends Xp{static get type(){return"Line2NodeMaterial"}constructor(e={}){super(),this.isLine2NodeMaterial=!0,this.setDefaultValues(rg),this.useColor=e.vertexColors,this.dashOffset=0,this.lineColorNode=null,this.offsetNode=null,this.dashScaleNode=null,this.dashSizeNode=null,this.gapSizeNode=null,this.blending=Z,this._useDash=e.dashed,this._useAlphaToCoverage=!0,this._useWorldUnits=!1,this.setValues(e)}setup(e){const{renderer:t}=e,r=this._useAlphaToCoverage,s=this.useColor,i=this._useDash,n=this._useWorldUnits,a=an(({start:e,end:t})=>{const r=rd.element(2).element(2),s=rd.element(3).element(2).mul(-.5).div(r).sub(e.z).div(t.z.sub(e.z));return Sn(iu(e.xyz,t.xyz,s),t.w)}).setLayout({name:"trimSegment",type:"vec4",inputs:[{name:"start",type:"vec4"},{name:"end",type:"vec4"}]});this.vertexNode=an(()=>{const e=Sl("instanceStart"),t=Sl("instanceEnd"),r=Sn(Ad.mul(Sn(e,1))).toVar("start"),s=Sn(Ad.mul(Sn(t,1))).toVar("end");if(i){const e=this.dashScaleNode?hn(this.dashScaleNode):Ch,t=this.offsetNode?hn(this.offsetNode):Ph,r=Sl("instanceDistanceStart"),s=Sl("instanceDistanceEnd");let i=Md.y.lessThan(.5).select(e.mul(r),e.mul(s));i=i.add(t),Dn("float","lineDistance").assign(i)}n&&(Dn("vec3","worldStart").assign(r.xyz),Dn("vec3","worldEnd").assign(s.xyz));const o=Xl.z.div(Xl.w),u=rd.element(2).element(3).equal(-1);ln(u,()=>{ln(r.z.lessThan(0).and(s.z.greaterThan(0)),()=>{s.assign(a({start:r,end:s}))}).ElseIf(s.z.lessThan(0).and(r.z.greaterThanEqual(0)),()=>{r.assign(a({start:s,end:r}))})});const l=rd.mul(r),d=rd.mul(s),c=l.xyz.div(l.w),h=d.xyz.div(d.w),p=h.xy.sub(c.xy).toVar();p.x.assign(p.x.mul(o)),p.assign(p.normalize());const g=Sn().toVar();if(n){const e=s.xyz.sub(r.xyz).normalize(),t=iu(r.xyz,s.xyz,.5).normalize(),n=e.cross(t).normalize(),a=e.cross(n),o=Dn("vec4","worldPos");o.assign(Md.y.lessThan(.5).select(r,s));const u=Lh.mul(.5);o.addAssign(Sn(Md.x.lessThan(0).select(n.mul(u),n.mul(u).negate()),0)),i||(o.addAssign(Sn(Md.y.lessThan(.5).select(e.mul(u).negate(),e.mul(u)),0)),o.addAssign(Sn(a.mul(u),0)),ln(Md.y.greaterThan(1).or(Md.y.lessThan(0)),()=>{o.subAssign(Sn(a.mul(2).mul(u),0))})),g.assign(rd.mul(o));const l=Tn().toVar();l.assign(Md.y.lessThan(.5).select(c,h)),g.z.assign(l.z.mul(g.w))}else{const e=fn(p.y,p.x.negate()).toVar("offset");p.x.assign(p.x.div(o)),e.x.assign(e.x.div(o)),e.assign(Md.x.lessThan(0).select(e.negate(),e)),ln(Md.y.lessThan(0),()=>{e.assign(e.sub(p))}).ElseIf(Md.y.greaterThan(1),()=>{e.assign(e.add(p))}),e.assign(e.mul(Lh)),e.assign(e.div(Xl.w.div(Wl))),g.assign(Md.y.lessThan(.5).select(l,d)),e.assign(e.mul(g.w)),g.assign(g.add(Sn(e,0,0)))}return g})();const o=an(({p1:e,p2:t,p3:r,p4:s})=>{const i=e.sub(r),n=s.sub(r),a=t.sub(e),o=i.dot(n),u=n.dot(a),l=i.dot(a),d=n.dot(n),c=a.dot(a).mul(d).sub(u.mul(u)),h=o.mul(u).sub(l.mul(d)).div(c).clamp(),p=o.add(u.mul(h)).div(d).clamp();return fn(h,p)});if(this.colorNode=an(()=>{const e=Rl();if(i){const t=this.dashSizeNode?hn(this.dashSizeNode):Mh,r=this.gapSizeNode?hn(this.gapSizeNode):Bh;sa.assign(t),ia.assign(r);const s=Dn("float","lineDistance");e.y.lessThan(-1).or(e.y.greaterThan(1)).discard(),s.mod(sa.add(ia)).greaterThan(sa).discard()}const a=hn(1).toVar("alpha");if(n){const e=Dn("vec3","worldStart"),s=Dn("vec3","worldEnd"),n=Dn("vec4","worldPos").xyz.normalize().mul(1e5),u=s.sub(e),l=o({p1:e,p2:s,p3:Tn(0,0,0),p4:n}),d=e.add(u.mul(l.x)),c=n.mul(l.y),h=d.sub(c).length().div(Lh);if(!i)if(r&&t.currentSamples>0){const e=h.fwidth();a.assign(uu(e.negate().add(.5),e.add(.5),h).oneMinus())}else h.greaterThan(.5).discard()}else if(r&&t.currentSamples>0){const t=e.x,r=e.y.greaterThan(0).select(e.y.sub(1),e.y.add(1)),s=t.mul(t).add(r.mul(r)),i=hn(s.fwidth()).toVar("dlen");ln(e.y.abs().greaterThan(1),()=>{a.assign(uu(i.oneMinus(),i.add(1),s).oneMinus())})}else ln(e.y.abs().greaterThan(1),()=>{const t=e.x,r=e.y.greaterThan(0).select(e.y.sub(1),e.y.add(1));t.mul(t).add(r.mul(r)).greaterThan(1).discard()});let u;if(this.lineColorNode)u=this.lineColorNode;else if(s){const e=Sl("instanceColorStart"),t=Sl("instanceColorEnd");u=Md.y.lessThan(.5).select(e,t).mul(rh)}else u=rh;return Sn(u,a)})(),this.transparent){const e=this.opacityNode?hn(this.opacityNode):nh;this.outputNode=Sn(this.colorNode.rgb.mul(e).add(tg().rgb.mul(e.oneMinus())),this.colorNode.a)}super.setup(e)}get worldUnits(){return this._useWorldUnits}set worldUnits(e){this._useWorldUnits!==e&&(this._useWorldUnits=e,this.needsUpdate=!0)}get dashed(){return this._useDash}set dashed(e){this._useDash!==e&&(this._useDash=e,this.needsUpdate=!0)}get alphaToCoverage(){return this._useAlphaToCoverage}set alphaToCoverage(e){this._useAlphaToCoverage!==e&&(this._useAlphaToCoverage=e,this.needsUpdate=!0)}}const ig=new J;class ng extends Xp{static get type(){return"MeshNormalNodeMaterial"}constructor(e){super(),this.isMeshNormalNodeMaterial=!0,this.setDefaultValues(ig),this.setValues(e)}setupDiffuseColor(){const e=this.opacityNode?hn(this.opacityNode):nh;In.assign(Gu(Sn(Hc(jd),e),ee))}}const ag=an(([e=Fd])=>{const t=e.z.atan(e.x).mul(1/(2*Math.PI)).add(.5),r=e.y.clamp(-1,1).asin().mul(1/Math.PI).add(.5);return fn(t,r)});class og extends te{constructor(e=1,t={}){super(e,t),this.isCubeRenderTarget=!0}fromEquirectangularTexture(e,t){const r=t.minFilter,s=t.generateMipmaps;t.generateMipmaps=!0,this.texture.type=t.type,this.texture.colorSpace=t.colorSpace,this.texture.generateMipmaps=t.generateMipmaps,this.texture.minFilter=t.minFilter,this.texture.magFilter=t.magFilter;const i=new re(5,5,5),n=ag(Fd),a=new Xp;a.colorNode=Pl(t,n,0),a.side=w,a.blending=Z;const o=new se(i,a),u=new ie;u.add(o),t.minFilter===q&&(t.minFilter=ne);const l=new ae(1,10,this),d=e.getMRT();return e.setMRT(null),l.update(e,u),e.setMRT(d),t.minFilter=r,t.currentGenerateMipmaps=s,o.geometry.dispose(),o.material.dispose(),this}}const ug=new WeakMap;class lg extends li{static get type(){return"CubeMapNode"}constructor(e){super("vec3"),this.envNode=e,this._cubeTexture=null,this._cubeTextureNode=hc(null);const t=new B;t.isRenderTargetTexture=!0,this._defaultTexture=t,this.updateBeforeType=Qs.RENDER}updateBefore(e){const{renderer:t,material:r}=e,s=this.envNode;if(s.isTextureNode||s.isMaterialReferenceNode){const e=s.isTextureNode?s.value:r[s.property];if(e&&e.isTexture){const r=e.mapping;if(r===oe||r===ue){if(ug.has(e)){const t=ug.get(e);cg(t,e.mapping),this._cubeTexture=t}else{const r=e.image;if(function(e){return null!=e&&e.height>0}(r)){const s=new og(r.height);s.fromEquirectangularTexture(t,e),cg(s.texture,e.mapping),this._cubeTexture=s.texture,ug.set(e,s.texture),e.addEventListener("dispose",dg)}else this._cubeTexture=this._defaultTexture}this._cubeTextureNode.value=this._cubeTexture}else this._cubeTextureNode=this.envNode}}}setup(e){return this.updateBefore(e),this._cubeTextureNode}}function dg(e){const t=e.target;t.removeEventListener("dispose",dg);const r=ug.get(t);void 0!==r&&(ug.delete(t),r.dispose())}function cg(e,t){t===oe?e.mapping=L:t===ue&&(e.mapping=P)}const hg=en(lg).setParameterLength(1);class pg extends gp{static get type(){return"BasicEnvironmentNode"}constructor(e=null){super(),this.envNode=e}setup(e){e.context.environment=hg(this.envNode)}}class gg extends gp{static get type(){return"BasicLightMapNode"}constructor(e=null){super(),this.lightMapNode=e}setup(e){const t=hn(1/Math.PI);e.context.irradianceLightMap=this.lightMapNode.mul(t)}}class mg{start(e){e.lightsNode.setupLights(e,e.lightsNode.getLightNodes(e)),this.indirect(e)}finish(){}direct(){}directRectArea(){}indirect(){}ambientOcclusion(){}}class fg extends mg{constructor(){super()}indirect({context:e}){const t=e.ambientOcclusion,r=e.reflectedLight,s=e.irradianceLightMap;r.indirectDiffuse.assign(Sn(0)),s?r.indirectDiffuse.addAssign(s):r.indirectDiffuse.addAssign(Sn(1,1,1,0)),r.indirectDiffuse.mulAssign(t),r.indirectDiffuse.mulAssign(In.rgb)}finish(e){const{material:t,context:r}=e,s=r.outgoingLight,i=e.context.environment;if(i)switch(t.combine){case ce:s.rgb.assign(iu(s.rgb,s.rgb.mul(i.rgb),lh.mul(dh)));break;case de:s.rgb.assign(iu(s.rgb,i.rgb,lh.mul(dh)));break;case le:s.rgb.addAssign(i.rgb.mul(lh.mul(dh)));break;default:d("BasicLightingModel: Unsupported .combine value:",t.combine)}}}const yg=new he;class bg extends Xp{static get type(){return"MeshBasicNodeMaterial"}constructor(e){super(),this.isMeshBasicNodeMaterial=!0,this.lights=!0,this.setDefaultValues(yg),this.setValues(e)}setupNormal(){return kd(Wd)}setupEnvironment(e){const t=super.setupEnvironment(e);return t?new pg(t):null}setupLightMap(e){let t=null;return e.material.lightMap&&(t=new gg(Ih)),t}setupOutgoingLight(){return In.rgb}setupLightingModel(){return new fg}}const xg=an(({f0:e,f90:t,dotVH:r})=>{const s=r.mul(-5.55473).sub(6.98316).mul(r).exp2();return e.mul(s.oneMinus()).add(t.mul(s))}),Tg=an(e=>e.diffuseColor.mul(1/Math.PI)),_g=an(({dotNH:e})=>ta.mul(hn(.5)).add(1).mul(hn(1/Math.PI)).mul(e.pow(ta))),vg=an(({lightDirection:e})=>{const t=e.add(Id).normalize(),r=jd.dot(t).clamp(),s=Id.dot(t).clamp(),i=xg({f0:Zn,f90:1,dotVH:s}),n=hn(.25),a=_g({dotNH:r});return i.mul(n).mul(a)});class Ng extends fg{constructor(e=!0){super(),this.specular=e}direct({lightDirection:e,lightColor:t,reflectedLight:r}){const s=jd.dot(e).clamp().mul(t);r.directDiffuse.addAssign(s.mul(Tg({diffuseColor:In.rgb}))),!0===this.specular&&r.directSpecular.addAssign(s.mul(vg({lightDirection:e})).mul(lh))}indirect(e){const{ambientOcclusion:t,irradiance:r,reflectedLight:s}=e.context;s.indirectDiffuse.addAssign(r.mul(Tg({diffuseColor:In}))),s.indirectDiffuse.mulAssign(t)}}const Sg=new pe;class Rg extends Xp{static get type(){return"MeshLambertNodeMaterial"}constructor(e){super(),this.isMeshLambertNodeMaterial=!0,this.lights=!0,this.setDefaultValues(Sg),this.setValues(e)}setupEnvironment(e){const t=super.setupEnvironment(e);return t?new pg(t):null}setupLightingModel(){return new Ng(!1)}}const Ag=new ge;class Eg extends Xp{static get type(){return"MeshPhongNodeMaterial"}constructor(e){super(),this.isMeshPhongNodeMaterial=!0,this.lights=!0,this.shininessNode=null,this.specularNode=null,this.setDefaultValues(Ag),this.setValues(e)}setupEnvironment(e){const t=super.setupEnvironment(e);return t?new pg(t):null}setupLightingModel(){return new Ng}setupVariants(){const e=(this.shininessNode?hn(this.shininessNode):sh).max(1e-4);ta.assign(e);const t=this.specularNode||ah;Zn.assign(t)}copy(e){return this.shininessNode=e.shininessNode,this.specularNode=e.specularNode,super.copy(e)}}const wg=an(e=>{if(!1===e.geometry.hasAttribute("normal"))return hn(0);const t=Wd.dFdx().abs().max(Wd.dFdy().abs());return t.x.max(t.y).max(t.z)}),Cg=an(e=>{const{roughness:t}=e,r=wg();let s=t.max(.0525);return s=s.add(r),s=s.min(1),s}),Mg=an(({alpha:e,dotNL:t,dotNV:r})=>{const s=e.pow2(),i=t.mul(s.add(s.oneMinus().mul(r.pow2())).sqrt()),n=r.mul(s.add(s.oneMinus().mul(t.pow2())).sqrt());return Ba(.5,i.add(n).max(to))}).setLayout({name:"V_GGX_SmithCorrelated",type:"float",inputs:[{name:"alpha",type:"float"},{name:"dotNL",type:"float"},{name:"dotNV",type:"float"}]}),Bg=an(({alphaT:e,alphaB:t,dotTV:r,dotBV:s,dotTL:i,dotBL:n,dotNV:a,dotNL:o})=>{const u=o.mul(Tn(e.mul(r),t.mul(s),a).length()),l=a.mul(Tn(e.mul(i),t.mul(n),o).length());return Ba(.5,u.add(l))}).setLayout({name:"V_GGX_SmithCorrelated_Anisotropic",type:"float",inputs:[{name:"alphaT",type:"float",qualifier:"in"},{name:"alphaB",type:"float",qualifier:"in"},{name:"dotTV",type:"float",qualifier:"in"},{name:"dotBV",type:"float",qualifier:"in"},{name:"dotTL",type:"float",qualifier:"in"},{name:"dotBL",type:"float",qualifier:"in"},{name:"dotNV",type:"float",qualifier:"in"},{name:"dotNL",type:"float",qualifier:"in"}]}),Lg=an(({alpha:e,dotNH:t})=>{const r=e.pow2(),s=t.pow2().mul(r.oneMinus()).oneMinus();return r.div(s.pow2()).mul(1/Math.PI)}).setLayout({name:"D_GGX",type:"float",inputs:[{name:"alpha",type:"float"},{name:"dotNH",type:"float"}]}),Pg=hn(1/Math.PI),Fg=an(({alphaT:e,alphaB:t,dotNH:r,dotTH:s,dotBH:i})=>{const n=e.mul(t),a=Tn(t.mul(s),e.mul(i),n.mul(r)),o=a.dot(a),u=n.div(o);return Pg.mul(n.mul(u.pow2()))}).setLayout({name:"D_GGX_Anisotropic",type:"float",inputs:[{name:"alphaT",type:"float",qualifier:"in"},{name:"alphaB",type:"float",qualifier:"in"},{name:"dotNH",type:"float",qualifier:"in"},{name:"dotTH",type:"float",qualifier:"in"},{name:"dotBH",type:"float",qualifier:"in"}]}),Dg=an(({lightDirection:e,f0:t,f90:r,roughness:s,f:i,normalView:n=jd,USE_IRIDESCENCE:a,USE_ANISOTROPY:o})=>{const u=s.pow2(),l=e.add(Id).normalize(),d=n.dot(e).clamp(),c=n.dot(Id).clamp(),h=n.dot(l).clamp(),p=Id.dot(l).clamp();let g,m,f=xg({f0:t,f90:r,dotVH:p});if(qi(a)&&(f=Hn.mix(f,i)),qi(o)){const t=Yn.dot(e),r=Yn.dot(Id),s=Yn.dot(l),i=Qn.dot(e),n=Qn.dot(Id),a=Qn.dot(l);g=Bg({alphaT:Xn,alphaB:u,dotTV:r,dotBV:n,dotTL:t,dotBL:i,dotNV:c,dotNL:d}),m=Fg({alphaT:Xn,alphaB:u,dotNH:h,dotTH:s,dotBH:a})}else g=Mg({alpha:u,dotNL:d,dotNV:c}),m=Lg({alpha:u,dotNH:h});return f.mul(g).mul(m)}),Ig=new Uint16Array([12469,15057,12620,14925,13266,14620,13807,14376,14323,13990,14545,13625,14713,13328,14840,12882,14931,12528,14996,12233,15039,11829,15066,11525,15080,11295,15085,10976,15082,10705,15073,10495,13880,14564,13898,14542,13977,14430,14158,14124,14393,13732,14556,13410,14702,12996,14814,12596,14891,12291,14937,11834,14957,11489,14958,11194,14943,10803,14921,10506,14893,10278,14858,9960,14484,14039,14487,14025,14499,13941,14524,13740,14574,13468,14654,13106,14743,12678,14818,12344,14867,11893,14889,11509,14893,11180,14881,10751,14852,10428,14812,10128,14765,9754,14712,9466,14764,13480,14764,13475,14766,13440,14766,13347,14769,13070,14786,12713,14816,12387,14844,11957,14860,11549,14868,11215,14855,10751,14825,10403,14782,10044,14729,9651,14666,9352,14599,9029,14967,12835,14966,12831,14963,12804,14954,12723,14936,12564,14917,12347,14900,11958,14886,11569,14878,11247,14859,10765,14828,10401,14784,10011,14727,9600,14660,9289,14586,8893,14508,8533,15111,12234,15110,12234,15104,12216,15092,12156,15067,12010,15028,11776,14981,11500,14942,11205,14902,10752,14861,10393,14812,9991,14752,9570,14682,9252,14603,8808,14519,8445,14431,8145,15209,11449,15208,11451,15202,11451,15190,11438,15163,11384,15117,11274,15055,10979,14994,10648,14932,10343,14871,9936,14803,9532,14729,9218,14645,8742,14556,8381,14461,8020,14365,7603,15273,10603,15272,10607,15267,10619,15256,10631,15231,10614,15182,10535,15118,10389,15042,10167,14963,9787,14883,9447,14800,9115,14710,8665,14615,8318,14514,7911,14411,7507,14279,7198,15314,9675,15313,9683,15309,9712,15298,9759,15277,9797,15229,9773,15166,9668,15084,9487,14995,9274,14898,8910,14800,8539,14697,8234,14590,7790,14479,7409,14367,7067,14178,6621,15337,8619,15337,8631,15333,8677,15325,8769,15305,8871,15264,8940,15202,8909,15119,8775,15022,8565,14916,8328,14804,8009,14688,7614,14569,7287,14448,6888,14321,6483,14088,6171,15350,7402,15350,7419,15347,7480,15340,7613,15322,7804,15287,7973,15229,8057,15148,8012,15046,7846,14933,7611,14810,7357,14682,7069,14552,6656,14421,6316,14251,5948,14007,5528,15356,5942,15356,5977,15353,6119,15348,6294,15332,6551,15302,6824,15249,7044,15171,7122,15070,7050,14949,6861,14818,6611,14679,6349,14538,6067,14398,5651,14189,5311,13935,4958,15359,4123,15359,4153,15356,4296,15353,4646,15338,5160,15311,5508,15263,5829,15188,6042,15088,6094,14966,6001,14826,5796,14678,5543,14527,5287,14377,4985,14133,4586,13869,4257,15360,1563,15360,1642,15358,2076,15354,2636,15341,3350,15317,4019,15273,4429,15203,4732,15105,4911,14981,4932,14836,4818,14679,4621,14517,4386,14359,4156,14083,3795,13808,3437,15360,122,15360,137,15358,285,15355,636,15344,1274,15322,2177,15281,2765,15215,3223,15120,3451,14995,3569,14846,3567,14681,3466,14511,3305,14344,3121,14037,2800,13753,2467,15360,0,15360,1,15359,21,15355,89,15346,253,15325,479,15287,796,15225,1148,15133,1492,15008,1749,14856,1882,14685,1886,14506,1783,14324,1608,13996,1398,13702,1183]);let Ug=null;const Og=an(({roughness:e,dotNV:t})=>{null===Ug&&(Ug=new me(Ig,16,16,V,fe),Ug.name="DFG_LUT",Ug.minFilter=ne,Ug.magFilter=ne,Ug.wrapS=ye,Ug.wrapT=ye,Ug.generateMipmaps=!1,Ug.needsUpdate=!0);const r=fn(e,t);return Pl(Ug,r).rg}),Vg=an(({lightDirection:e,f0:t,f90:r,roughness:s,f:i,USE_IRIDESCENCE:n,USE_ANISOTROPY:a})=>{const o=Dg({lightDirection:e,f0:t,f90:r,roughness:s,f:i,USE_IRIDESCENCE:n,USE_ANISOTROPY:a}),u=jd.dot(e).clamp(),l=jd.dot(Id).clamp(),d=Og({roughness:s,dotNV:l}),c=Og({roughness:s,dotNV:u}),h=t.mul(d.x).add(r.mul(d.y)),p=t.mul(c.x).add(r.mul(c.y)),g=d.x.add(d.y),m=c.x.add(c.y),f=hn(1).sub(g),y=hn(1).sub(m),b=t.add(t.oneMinus().mul(.047619)),x=h.mul(p).mul(b).div(hn(1).sub(f.mul(y).mul(b).mul(b)).add(to)),T=f.mul(y),_=x.mul(T);return o.add(_)}),kg=an(e=>{const{dotNV:t,specularColor:r,specularF90:s,roughness:i}=e,n=Og({dotNV:t,roughness:i});return r.mul(n.x).add(s.mul(n.y))}),Gg=an(({f:e,f90:t,dotVH:r})=>{const s=r.oneMinus().saturate(),i=s.mul(s),n=s.mul(i,i).clamp(0,.9999);return e.sub(Tn(t).mul(n)).div(n.oneMinus())}).setLayout({name:"Schlick_to_F0",type:"vec3",inputs:[{name:"f",type:"vec3"},{name:"f90",type:"float"},{name:"dotVH",type:"float"}]}),zg=an(({roughness:e,dotNH:t})=>{const r=e.pow2(),s=hn(1).div(r),i=t.pow2().oneMinus().max(.0078125);return hn(2).add(s).mul(i.pow(s.mul(.5))).div(2*Math.PI)}).setLayout({name:"D_Charlie",type:"float",inputs:[{name:"roughness",type:"float"},{name:"dotNH",type:"float"}]}),$g=an(({dotNV:e,dotNL:t})=>hn(1).div(hn(4).mul(t.add(e).sub(t.mul(e))))).setLayout({name:"V_Neubelt",type:"float",inputs:[{name:"dotNV",type:"float"},{name:"dotNL",type:"float"}]}),Wg=an(({lightDirection:e})=>{const t=e.add(Id).normalize(),r=jd.dot(e).clamp(),s=jd.dot(Id).clamp(),i=jd.dot(t).clamp(),n=zg({roughness:Wn,dotNH:i}),a=$g({dotNV:s,dotNL:r});return $n.mul(n).mul(a)}),Hg=an(({N:e,V:t,roughness:r})=>{const s=e.dot(t).saturate(),i=fn(r,s.oneMinus().sqrt());return i.assign(i.mul(.984375).add(.0078125)),i}).setLayout({name:"LTC_Uv",type:"vec2",inputs:[{name:"N",type:"vec3"},{name:"V",type:"vec3"},{name:"roughness",type:"float"}]}),jg=an(({f:e})=>{const t=e.length();return Wo(t.mul(t).add(e.z).div(t.add(1)),0)}).setLayout({name:"LTC_ClippedSphereFormFactor",type:"float",inputs:[{name:"f",type:"vec3"}]}),qg=an(({v1:e,v2:t})=>{const r=e.dot(t),s=r.abs().toVar(),i=s.mul(.0145206).add(.4965155).mul(s).add(.8543985).toVar(),n=s.add(4.1616724).mul(s).add(3.417594).toVar(),a=i.div(n),o=r.greaterThan(0).select(a,Wo(r.mul(r).oneMinus(),1e-7).inverseSqrt().mul(.5).sub(a));return e.cross(t).mul(o)}).setLayout({name:"LTC_EdgeVectorFormFactor",type:"vec3",inputs:[{name:"v1",type:"vec3"},{name:"v2",type:"vec3"}]}),Xg=an(({N:e,V:t,P:r,mInv:s,p0:i,p1:n,p2:a,p3:o})=>{const u=n.sub(i).toVar(),l=o.sub(i).toVar(),d=u.cross(l),c=Tn().toVar();return ln(d.dot(r.sub(i)).greaterThanEqual(0),()=>{const u=t.sub(e.mul(t.dot(e))).normalize(),l=e.cross(u).negate(),d=s.mul(Cn(u,l,e).transpose()).toVar(),h=d.mul(i.sub(r)).normalize().toVar(),p=d.mul(n.sub(r)).normalize().toVar(),g=d.mul(a.sub(r)).normalize().toVar(),m=d.mul(o.sub(r)).normalize().toVar(),f=Tn(0).toVar();f.addAssign(qg({v1:h,v2:p})),f.addAssign(qg({v1:p,v2:g})),f.addAssign(qg({v1:g,v2:m})),f.addAssign(qg({v1:m,v2:h})),c.assign(Tn(jg({f:f})))}),c}).setLayout({name:"LTC_Evaluate",type:"vec3",inputs:[{name:"N",type:"vec3"},{name:"V",type:"vec3"},{name:"P",type:"vec3"},{name:"mInv",type:"mat3"},{name:"p0",type:"vec3"},{name:"p1",type:"vec3"},{name:"p2",type:"vec3"},{name:"p3",type:"vec3"}]}),Kg=an(({P:e,p0:t,p1:r,p2:s,p3:i})=>{const n=r.sub(t).toVar(),a=i.sub(t).toVar(),o=n.cross(a),u=Tn().toVar();return ln(o.dot(e.sub(t)).greaterThanEqual(0),()=>{const n=t.sub(e).normalize().toVar(),a=r.sub(e).normalize().toVar(),o=s.sub(e).normalize().toVar(),l=i.sub(e).normalize().toVar(),d=Tn(0).toVar();d.addAssign(qg({v1:n,v2:a})),d.addAssign(qg({v1:a,v2:o})),d.addAssign(qg({v1:o,v2:l})),d.addAssign(qg({v1:l,v2:n})),u.assign(Tn(jg({f:d.abs()})))}),u}).setLayout({name:"LTC_Evaluate",type:"vec3",inputs:[{name:"P",type:"vec3"},{name:"p0",type:"vec3"},{name:"p1",type:"vec3"},{name:"p2",type:"vec3"},{name:"p3",type:"vec3"}]}),Yg=1/6,Qg=e=>Ma(Yg,Ma(e,Ma(e,e.negate().add(3)).sub(3)).add(1)),Zg=e=>Ma(Yg,Ma(e,Ma(e,Ma(3,e).sub(6))).add(4)),Jg=e=>Ma(Yg,Ma(e,Ma(e,Ma(-3,e).add(3)).add(3)).add(1)),em=e=>Ma(Yg,Qo(e,3)),tm=e=>Qg(e).add(Zg(e)),rm=e=>Jg(e).add(em(e)),sm=e=>wa(-1,Zg(e).div(Qg(e).add(Zg(e)))),im=e=>wa(1,em(e).div(Jg(e).add(em(e)))),nm=(e,t,r)=>{const s=e.uvNode,i=Ma(s,t.zw).add(.5),n=bo(i),a=_o(i),o=tm(a.x),u=rm(a.x),l=sm(a.x),d=im(a.x),c=sm(a.y),h=im(a.y),p=fn(n.x.add(l),n.y.add(c)).sub(.5).mul(t.xy),g=fn(n.x.add(d),n.y.add(c)).sub(.5).mul(t.xy),m=fn(n.x.add(l),n.y.add(h)).sub(.5).mul(t.xy),f=fn(n.x.add(d),n.y.add(h)).sub(.5).mul(t.xy),y=tm(a.y).mul(wa(o.mul(e.sample(p).level(r)),u.mul(e.sample(g).level(r)))),b=rm(a.y).mul(wa(o.mul(e.sample(m).level(r)),u.mul(e.sample(f).level(r))));return y.add(b)},am=an(([e,t])=>{const r=fn(e.size(pn(t))),s=fn(e.size(pn(t.add(1)))),i=Ba(1,r),n=Ba(1,s),a=nm(e,Sn(i,r),bo(t)),o=nm(e,Sn(n,s),xo(t));return _o(t).mix(a,o)}),om=an(([e,t])=>{const r=t.mul(Cl(e));return am(e,r)}),um=an(([e,t,r,s,i])=>{const n=Tn(ou(t.negate(),To(e),Ba(1,s))),a=Tn(Mo(i[0].xyz),Mo(i[1].xyz),Mo(i[2].xyz));return To(n).mul(r.mul(a))}).setLayout({name:"getVolumeTransmissionRay",type:"vec3",inputs:[{name:"n",type:"vec3"},{name:"v",type:"vec3"},{name:"thickness",type:"float"},{name:"ior",type:"float"},{name:"modelMatrix",type:"mat4"}]}),lm=an(([e,t])=>e.mul(nu(t.mul(2).sub(2),0,1))).setLayout({name:"applyIorToRoughness",type:"float",inputs:[{name:"roughness",type:"float"},{name:"ior",type:"float"}]}),dm=vp(),cm=vp(),hm=an(([e,t,r],{material:s})=>{const i=(s.side===w?dm:cm).sample(e),n=mo(jl.x).mul(lm(t,r));return am(i,n)}),pm=an(([e,t,r])=>(ln(r.notEqual(0),()=>{const s=go(t).negate().div(r);return ho(s.negate().mul(e))}),Tn(1))).setLayout({name:"volumeAttenuation",type:"vec3",inputs:[{name:"transmissionDistance",type:"float"},{name:"attenuationColor",type:"vec3"},{name:"attenuationDistance",type:"float"}]}),gm=an(([e,t,r,s,i,n,a,o,u,l,d,c,h,p,g])=>{let m,f;if(g){m=Sn().toVar(),f=Tn().toVar();const i=d.sub(1).mul(g.mul(.025)),n=Tn(d.sub(i),d,d.add(i));op({start:0,end:3},({i:i})=>{const d=n.element(i),g=um(e,t,c,d,o),y=a.add(g),b=l.mul(u.mul(Sn(y,1))),x=fn(b.xy.div(b.w)).toVar();x.addAssign(1),x.divAssign(2),x.assign(fn(x.x,x.y.oneMinus()));const T=hm(x,r,d);m.element(i).assign(T.element(i)),m.a.addAssign(T.a),f.element(i).assign(s.element(i).mul(pm(Mo(g),h,p).element(i)))}),m.a.divAssign(3)}else{const i=um(e,t,c,d,o),n=a.add(i),g=l.mul(u.mul(Sn(n,1))),y=fn(g.xy.div(g.w)).toVar();y.addAssign(1),y.divAssign(2),y.assign(fn(y.x,y.y.oneMinus())),m=hm(y,r,d),f=s.mul(pm(Mo(i),h,p))}const y=f.rgb.mul(m.rgb),b=e.dot(t).clamp(),x=Tn(kg({dotNV:b,specularColor:i,specularF90:n,roughness:r})),T=f.r.add(f.g,f.b).div(3);return Sn(x.oneMinus().mul(y),m.a.oneMinus().mul(T).oneMinus())}),mm=Cn(3.2404542,-.969266,.0556434,-1.5371385,1.8760108,-.2040259,-.4985314,.041556,1.0572252),fm=(e,t)=>e.sub(t).div(e.add(t)).pow2(),ym=an(({outsideIOR:e,eta2:t,cosTheta1:r,thinFilmThickness:s,baseF0:i})=>{const n=iu(e,t,uu(0,.03,s)),a=e.div(n).pow2().mul(r.pow2().oneMinus()).oneMinus();ln(a.lessThan(0),()=>Tn(1));const o=a.sqrt(),u=fm(n,e),l=xg({f0:u,f90:1,dotVH:r}),d=l.oneMinus(),c=n.lessThan(e).select(Math.PI,0),h=hn(Math.PI).sub(c),p=(e=>{const t=e.sqrt();return Tn(1).add(t).div(Tn(1).sub(t))})(i.clamp(0,.9999)),g=fm(p,n.toVec3()),m=xg({f0:g,f90:1,dotVH:o}),f=Tn(p.x.lessThan(n).select(Math.PI,0),p.y.lessThan(n).select(Math.PI,0),p.z.lessThan(n).select(Math.PI,0)),y=n.mul(s,o,2),b=Tn(h).add(f),x=l.mul(m).clamp(1e-5,.9999),T=x.sqrt(),_=d.pow2().mul(m).div(Tn(1).sub(x)),v=l.add(_).toVar(),N=_.sub(d).toVar();return op({start:1,end:2,condition:"<=",name:"m"},({m:e})=>{N.mulAssign(T);const t=((e,t)=>{const r=e.mul(2*Math.PI*1e-9),s=Tn(54856e-17,44201e-17,52481e-17),i=Tn(1681e3,1795300,2208400),n=Tn(43278e5,93046e5,66121e5),a=hn(9747e-17*Math.sqrt(2*Math.PI*45282e5)).mul(r.mul(2239900).add(t.x).cos()).mul(r.pow2().mul(-45282e5).exp());let o=s.mul(n.mul(2*Math.PI).sqrt()).mul(i.mul(r).add(t).cos()).mul(r.pow2().negate().mul(n).exp());return o=Tn(o.x.add(a),o.y,o.z).div(1.0685e-7),mm.mul(o)})(hn(e).mul(y),hn(e).mul(b)).mul(2);v.addAssign(N.mul(t))}),v.max(Tn(0))}).setLayout({name:"evalIridescence",type:"vec3",inputs:[{name:"outsideIOR",type:"float"},{name:"eta2",type:"float"},{name:"cosTheta1",type:"float"},{name:"thinFilmThickness",type:"float"},{name:"baseF0",type:"vec3"}]}),bm=an(({normal:e,viewDir:t,roughness:r})=>{const s=e.dot(t).saturate(),i=r.mul(r),n=r.add(.1).reciprocal(),a=hn(-1.9362).add(r.mul(1.0678)).add(i.mul(.4573)).sub(n.mul(.8469)),o=hn(-.6014).add(r.mul(.5538)).sub(i.mul(.467)).sub(n.mul(.1255));return a.mul(s).add(o).exp().saturate()}),xm=Tn(.04),Tm=hn(1);class _m extends mg{constructor(e=!1,t=!1,r=!1,s=!1,i=!1,n=!1){super(),this.clearcoat=e,this.sheen=t,this.iridescence=r,this.anisotropy=s,this.transmission=i,this.dispersion=n,this.clearcoatRadiance=null,this.clearcoatSpecularDirect=null,this.clearcoatSpecularIndirect=null,this.sheenSpecularDirect=null,this.sheenSpecularIndirect=null,this.iridescenceFresnel=null,this.iridescenceF0=null,this.iridescenceF0Dielectric=null,this.iridescenceF0Metallic=null}start(e){if(!0===this.clearcoat&&(this.clearcoatRadiance=Tn().toVar("clearcoatRadiance"),this.clearcoatSpecularDirect=Tn().toVar("clearcoatSpecularDirect"),this.clearcoatSpecularIndirect=Tn().toVar("clearcoatSpecularIndirect")),!0===this.sheen&&(this.sheenSpecularDirect=Tn().toVar("sheenSpecularDirect"),this.sheenSpecularIndirect=Tn().toVar("sheenSpecularIndirect")),!0===this.iridescence){const e=jd.dot(Id).clamp(),t=ym({outsideIOR:hn(1),eta2:jn,cosTheta1:e,thinFilmThickness:qn,baseF0:Zn}),r=ym({outsideIOR:hn(1),eta2:jn,cosTheta1:e,thinFilmThickness:qn,baseF0:In.rgb});this.iridescenceFresnel=iu(t,r,kn),this.iridescenceF0Dielectric=Gg({f:t,f90:1,dotVH:e}),this.iridescenceF0Metallic=Gg({f:r,f90:1,dotVH:e}),this.iridescenceF0=iu(this.iridescenceF0Dielectric,this.iridescenceF0Metallic,kn)}if(!0===this.transmission){const t=Pd,r=od.sub(Pd).normalize(),s=qd,i=e.context;i.backdrop=gm(s,r,Vn,Un,Jn,ea,t,xd,id,rd,aa,ua,da,la,this.dispersion?ca:null),i.backdropAlpha=oa,In.a.mulAssign(iu(1,i.backdrop.a,oa))}super.start(e)}computeMultiscattering(e,t,r,s,i=null){const n=jd.dot(Id).clamp(),a=Og({roughness:Vn,dotNV:n}),o=i?Hn.mix(s,i):s,u=o.mul(a.x).add(r.mul(a.y)),l=a.x.add(a.y).oneMinus(),d=o.add(o.oneMinus().mul(.047619)),c=u.mul(d).div(l.mul(d).oneMinus());e.addAssign(u),t.addAssign(c.mul(l))}direct({lightDirection:e,lightColor:t,reflectedLight:r}){const s=jd.dot(e).clamp().mul(t).toVar();if(!0===this.sheen){this.sheenSpecularDirect.addAssign(s.mul(Wg({lightDirection:e})));const t=bm({normal:jd,viewDir:Id,roughness:Wn}),r=bm({normal:jd,viewDir:e,roughness:Wn}),i=$n.r.max($n.g).max($n.b).mul(t.max(r)).oneMinus();s.mulAssign(i)}if(!0===this.clearcoat){const r=Xd.dot(e).clamp().mul(t);this.clearcoatSpecularDirect.addAssign(r.mul(Dg({lightDirection:e,f0:xm,f90:Tm,roughness:zn,normalView:Xd})))}r.directDiffuse.addAssign(s.mul(Tg({diffuseColor:Un}))),r.directSpecular.addAssign(s.mul(Vg({lightDirection:e,f0:Jn,f90:1,roughness:Vn,f:this.iridescenceFresnel,USE_IRIDESCENCE:this.iridescence,USE_ANISOTROPY:this.anisotropy})))}directRectArea({lightColor:e,lightPosition:t,halfWidth:r,halfHeight:s,reflectedLight:i,ltc_1:n,ltc_2:a}){const o=t.add(r).sub(s),u=t.sub(r).sub(s),l=t.sub(r).add(s),d=t.add(r).add(s),c=jd,h=Id,p=Dd.toVar(),g=Hg({N:c,V:h,roughness:Vn}),m=n.sample(g).toVar(),f=a.sample(g).toVar(),y=Cn(Tn(m.x,0,m.y),Tn(0,1,0),Tn(m.z,0,m.w)).toVar(),b=Jn.mul(f.x).add(Jn.oneMinus().mul(f.y)).toVar();i.directSpecular.addAssign(e.mul(b).mul(Xg({N:c,V:h,P:p,mInv:y,p0:o,p1:u,p2:l,p3:d}))),i.directDiffuse.addAssign(e.mul(Un).mul(Xg({N:c,V:h,P:p,mInv:Cn(1,0,0,0,1,0,0,0,1),p0:o,p1:u,p2:l,p3:d})))}indirect(e){this.indirectDiffuse(e),this.indirectSpecular(e),this.ambientOcclusion(e)}indirectDiffuse(e){const{irradiance:t,reflectedLight:r}=e.context,s=t.mul(Tg({diffuseColor:Un})).toVar();if(!0===this.sheen){const e=bm({normal:jd,viewDir:Id,roughness:Wn}),t=$n.r.max($n.g).max($n.b).mul(e).oneMinus();s.mulAssign(t)}r.indirectDiffuse.addAssign(s)}indirectSpecular(e){const{radiance:t,iblIrradiance:r,reflectedLight:s}=e.context;if(!0===this.sheen&&this.sheenSpecularIndirect.addAssign(r.mul($n,bm({normal:jd,viewDir:Id,roughness:Wn}))),!0===this.clearcoat){const e=Xd.dot(Id).clamp(),t=kg({dotNV:e,specularColor:xm,specularF90:Tm,roughness:zn});this.clearcoatSpecularIndirect.addAssign(this.clearcoatRadiance.mul(t))}const i=Tn().toVar("singleScatteringDielectric"),n=Tn().toVar("multiScatteringDielectric"),a=Tn().toVar("singleScatteringMetallic"),o=Tn().toVar("multiScatteringMetallic");this.computeMultiscattering(i,n,ea,Zn,this.iridescenceF0Dielectric),this.computeMultiscattering(a,o,ea,In.rgb,this.iridescenceF0Metallic);const u=iu(i,a,kn),l=iu(n,o,kn),d=i.add(n),c=Un.mul(d.oneMinus()),h=r.mul(1/Math.PI),p=t.mul(u).add(l.mul(h)).toVar(),g=c.mul(h).toVar();if(!0===this.sheen){const e=bm({normal:jd,viewDir:Id,roughness:Wn}),t=$n.r.max($n.g).max($n.b).mul(e).oneMinus();p.mulAssign(t),g.mulAssign(t)}s.indirectSpecular.addAssign(p),s.indirectDiffuse.addAssign(g)}ambientOcclusion(e){const{ambientOcclusion:t,reflectedLight:r}=e.context,s=jd.dot(Id).clamp().add(t),i=Vn.mul(-16).oneMinus().negate().exp2(),n=t.sub(s.pow(i).oneMinus()).clamp();!0===this.clearcoat&&this.clearcoatSpecularIndirect.mulAssign(t),!0===this.sheen&&this.sheenSpecularIndirect.mulAssign(t),r.indirectDiffuse.mulAssign(t),r.indirectSpecular.mulAssign(n)}finish({context:e}){const{outgoingLight:t}=e;if(!0===this.clearcoat){const e=Xd.dot(Id).clamp(),r=xg({dotVH:e,f0:xm,f90:Tm}),s=t.mul(Gn.mul(r).oneMinus()).add(this.clearcoatSpecularDirect.add(this.clearcoatSpecularIndirect).mul(Gn));t.assign(s)}if(!0===this.sheen){const e=t.add(this.sheenSpecularDirect,this.sheenSpecularIndirect.mul(1/Math.PI));t.assign(e)}}}const vm=hn(1),Nm=hn(-2),Sm=hn(.8),Rm=hn(-1),Am=hn(.4),Em=hn(2),wm=hn(.305),Cm=hn(3),Mm=hn(.21),Bm=hn(4),Lm=hn(4),Pm=hn(16),Fm=an(([e])=>{const t=Tn(wo(e)).toVar(),r=hn(-1).toVar();return ln(t.x.greaterThan(t.z),()=>{ln(t.x.greaterThan(t.y),()=>{r.assign(bu(e.x.greaterThan(0),0,3))}).Else(()=>{r.assign(bu(e.y.greaterThan(0),1,4))})}).Else(()=>{ln(t.z.greaterThan(t.y),()=>{r.assign(bu(e.z.greaterThan(0),2,5))}).Else(()=>{r.assign(bu(e.y.greaterThan(0),1,4))})}),r}).setLayout({name:"getFace",type:"float",inputs:[{name:"direction",type:"vec3"}]}),Dm=an(([e,t])=>{const r=fn().toVar();return ln(t.equal(0),()=>{r.assign(fn(e.z,e.y).div(wo(e.x)))}).ElseIf(t.equal(1),()=>{r.assign(fn(e.x.negate(),e.z.negate()).div(wo(e.y)))}).ElseIf(t.equal(2),()=>{r.assign(fn(e.x.negate(),e.y).div(wo(e.z)))}).ElseIf(t.equal(3),()=>{r.assign(fn(e.z.negate(),e.y).div(wo(e.x)))}).ElseIf(t.equal(4),()=>{r.assign(fn(e.x.negate(),e.z).div(wo(e.y)))}).Else(()=>{r.assign(fn(e.x,e.y).div(wo(e.z)))}),Ma(.5,r.add(1))}).setLayout({name:"getUV",type:"vec2",inputs:[{name:"direction",type:"vec3"},{name:"face",type:"float"}]}),Im=an(([e])=>{const t=hn(0).toVar();return ln(e.greaterThanEqual(Sm),()=>{t.assign(vm.sub(e).mul(Rm.sub(Nm)).div(vm.sub(Sm)).add(Nm))}).ElseIf(e.greaterThanEqual(Am),()=>{t.assign(Sm.sub(e).mul(Em.sub(Rm)).div(Sm.sub(Am)).add(Rm))}).ElseIf(e.greaterThanEqual(wm),()=>{t.assign(Am.sub(e).mul(Cm.sub(Em)).div(Am.sub(wm)).add(Em))}).ElseIf(e.greaterThanEqual(Mm),()=>{t.assign(wm.sub(e).mul(Bm.sub(Cm)).div(wm.sub(Mm)).add(Cm))}).Else(()=>{t.assign(hn(-2).mul(mo(Ma(1.16,e))))}),t}).setLayout({name:"roughnessToMip",type:"float",inputs:[{name:"roughness",type:"float"}]}),Um=an(([e,t])=>{const r=e.toVar();r.assign(Ma(2,r).sub(1));const s=Tn(r,1).toVar();return ln(t.equal(0),()=>{s.assign(s.zyx)}).ElseIf(t.equal(1),()=>{s.assign(s.xzy),s.xz.mulAssign(-1)}).ElseIf(t.equal(2),()=>{s.x.mulAssign(-1)}).ElseIf(t.equal(3),()=>{s.assign(s.zyx),s.xz.mulAssign(-1)}).ElseIf(t.equal(4),()=>{s.assign(s.xzy),s.xy.mulAssign(-1)}).ElseIf(t.equal(5),()=>{s.z.mulAssign(-1)}),s}).setLayout({name:"getDirection",type:"vec3",inputs:[{name:"uv",type:"vec2"},{name:"face",type:"float"}]}),Om=an(([e,t,r,s,i,n])=>{const a=hn(r),o=Tn(t),u=nu(Im(a),Nm,n),l=_o(u),d=bo(u),c=Tn(Vm(e,o,d,s,i,n)).toVar();return ln(l.notEqual(0),()=>{const t=Tn(Vm(e,o,d.add(1),s,i,n)).toVar();c.assign(iu(c,t,l))}),c}),Vm=an(([e,t,r,s,i,n])=>{const a=hn(r).toVar(),o=Tn(t),u=hn(Fm(o)).toVar(),l=hn(Wo(Lm.sub(a),0)).toVar();a.assign(Wo(a,Lm));const d=hn(po(a)).toVar(),c=fn(Dm(o,u).mul(d.sub(2)).add(1)).toVar();return ln(u.greaterThan(2),()=>{c.y.addAssign(d),u.subAssign(3)}),c.x.addAssign(u.mul(d)),c.x.addAssign(l.mul(Ma(3,Pm))),c.y.addAssign(Ma(4,po(n).sub(d))),c.x.mulAssign(s),c.y.mulAssign(i),e.sample(c).grad(fn(),fn())}),km=an(({envMap:e,mipInt:t,outputDirection:r,theta:s,axis:i,CUBEUV_TEXEL_WIDTH:n,CUBEUV_TEXEL_HEIGHT:a,CUBEUV_MAX_MIP:o})=>{const u=No(s),l=r.mul(u).add(i.cross(r).mul(vo(s))).add(i.mul(i.dot(r).mul(u.oneMinus())));return Vm(e,l,t,n,a,o)}),Gm=an(({n:e,latitudinal:t,poleAxis:r,outputDirection:s,weights:i,samples:n,dTheta:a,mipInt:o,envMap:u,CUBEUV_TEXEL_WIDTH:l,CUBEUV_TEXEL_HEIGHT:d,CUBEUV_MAX_MIP:c})=>{const h=Tn(bu(t,r,Yo(r,s))).toVar();ln(h.equal(Tn(0)),()=>{h.assign(Tn(s.z,0,s.x.negate()))}),h.assign(To(h));const p=Tn().toVar();return p.addAssign(i.element(0).mul(km({theta:0,axis:h,outputDirection:s,mipInt:o,envMap:u,CUBEUV_TEXEL_WIDTH:l,CUBEUV_TEXEL_HEIGHT:d,CUBEUV_MAX_MIP:c}))),op({start:pn(1),end:e},({i:e})=>{ln(e.greaterThanEqual(n),()=>{up()});const t=hn(a.mul(hn(e))).toVar();p.addAssign(i.element(e).mul(km({theta:t.mul(-1),axis:h,outputDirection:s,mipInt:o,envMap:u,CUBEUV_TEXEL_WIDTH:l,CUBEUV_TEXEL_HEIGHT:d,CUBEUV_MAX_MIP:c}))),p.addAssign(i.element(e).mul(km({theta:t,axis:h,outputDirection:s,mipInt:o,envMap:u,CUBEUV_TEXEL_WIDTH:l,CUBEUV_TEXEL_HEIGHT:d,CUBEUV_MAX_MIP:c})))}),Sn(p,1)}),zm=an(([e])=>{const t=gn(e).toVar();return t.assign(t.shiftLeft(gn(16)).bitOr(t.shiftRight(gn(16)))),t.assign(t.bitAnd(gn(1431655765)).shiftLeft(gn(1)).bitOr(t.bitAnd(gn(2863311530)).shiftRight(gn(1)))),t.assign(t.bitAnd(gn(858993459)).shiftLeft(gn(2)).bitOr(t.bitAnd(gn(3435973836)).shiftRight(gn(2)))),t.assign(t.bitAnd(gn(252645135)).shiftLeft(gn(4)).bitOr(t.bitAnd(gn(4042322160)).shiftRight(gn(4)))),t.assign(t.bitAnd(gn(16711935)).shiftLeft(gn(8)).bitOr(t.bitAnd(gn(4278255360)).shiftRight(gn(8)))),hn(t).mul(2.3283064365386963e-10)}),$m=an(([e,t])=>fn(hn(e).div(hn(t)),zm(e))),Wm=an(([e,t,r])=>{const s=Tn(t).toVar(),i=hn(r),n=i.mul(i).toVar(),a=To(Tn(n.mul(s.x),n.mul(s.y),s.z)).toVar(),o=a.x.mul(a.x).add(a.y.mul(a.y)),u=bu(o.greaterThan(0),Tn(a.y.negate(),a.x,0).div(fo(o)),Tn(1,0,0)).toVar(),l=Yo(a,u).toVar(),d=fo(e.x),c=Ma(2,3.14159265359).mul(e.y),h=d.mul(No(c)).toVar(),p=d.mul(vo(c)).toVar(),g=Ma(.5,a.z.add(1));p.assign(g.oneMinus().mul(fo(h.mul(h).oneMinus())).add(g.mul(p)));const m=u.mul(h).add(l.mul(p)).add(a.mul(fo(Wo(0,h.mul(h).add(p.mul(p)).oneMinus()))));return To(Tn(n.mul(m.x),n.mul(m.y),Wo(0,m.z)))}),Hm=an(({roughness:e,mipInt:t,envMap:r,N_immutable:s,GGX_SAMPLES:i,CUBEUV_TEXEL_WIDTH:n,CUBEUV_TEXEL_HEIGHT:a,CUBEUV_MAX_MIP:o})=>{const u=Tn(s).toVar(),l=Tn(0).toVar(),d=hn(0).toVar();return ln(e.lessThan(.001),()=>{l.assign(Vm(r,u,t,n,a,o))}).Else(()=>{const s=bu(wo(u.z).lessThan(.999),Tn(0,0,1),Tn(1,0,0)),c=To(Yo(s,u)).toVar(),h=Yo(u,c).toVar();op({start:gn(0),end:i},({i:s})=>{const p=$m(s,i),g=Wm(p,Tn(0,0,1),e),m=To(c.mul(g.x).add(h.mul(g.y)).add(u.mul(g.z))),f=To(m.mul(Ko(u,m).mul(2)).sub(u)),y=Wo(Ko(u,f),0);ln(y.greaterThan(0),()=>{const e=Vm(r,f,t,n,a,o);l.addAssign(e.mul(y)),d.addAssign(y)})}),ln(d.greaterThan(0),()=>{l.assign(l.div(d))})}),Sn(l,1)}),jm=[.125,.215,.35,.446,.526,.582],qm=20,Xm=new xe(-1,1,1,-1,0,1),Km=new Te(90,1),Ym=new e;let Qm=null,Zm=0,Jm=0;const ef=new r,tf=new WeakMap,rf=[3,1,5,0,4,2],sf=Um(Rl(),Sl("faceIndex")).normalize(),nf=Tn(sf.x,sf.y,sf.z);class af{constructor(e){this._renderer=e,this._pingPongRenderTarget=null,this._lodMax=0,this._cubeSize=0,this._sizeLods=[],this._sigmas=[],this._lodMeshes=[],this._blurMaterial=null,this._ggxMaterial=null,this._cubemapMaterial=null,this._equirectMaterial=null,this._backgroundBox=null}get _hasInitialized(){return this._renderer.hasInitialized()}fromScene(e,t=0,r=.1,s=100,i={}){const{size:n=256,position:a=ef,renderTarget:o=null}=i;if(this._setSize(n),!1===this._hasInitialized){d('PMREMGenerator: ".fromScene()" called before the backend is initialized. Try using "await renderer.init()" instead.');const n=o||this._allocateTarget();return i.renderTarget=n,this.fromSceneAsync(e,t,r,s,i),n}Qm=this._renderer.getRenderTarget(),Zm=this._renderer.getActiveCubeFace(),Jm=this._renderer.getActiveMipmapLevel();const u=o||this._allocateTarget();return u.depthBuffer=!0,this._init(u),this._sceneToCubeUV(e,r,s,u,a),t>0&&this._blur(u,0,0,t),this._applyPMREM(u),this._cleanup(u),u}async fromSceneAsync(e,t=0,r=.1,s=100,i={}){return v('PMREMGenerator: ".fromSceneAsync()" is deprecated. Use "await renderer.init()" instead.'),await this._renderer.init(),this.fromScene(e,t,r,s,i)}fromEquirectangular(e,t=null){if(!1===this._hasInitialized){d('PMREMGenerator: .fromEquirectangular() called before the backend is initialized. Try using "await renderer.init()" instead.'),this._setSizeFromTexture(e);const r=t||this._allocateTarget();return this.fromEquirectangularAsync(e,r),r}return this._fromTexture(e,t)}async fromEquirectangularAsync(e,t=null){return v('PMREMGenerator: ".fromEquirectangularAsync()" is deprecated. Use "await renderer.init()" instead.'),await this._renderer.init(),this._fromTexture(e,t)}fromCubemap(e,t=null){if(!1===this._hasInitialized){d("PMREMGenerator: .fromCubemap() called before the backend is initialized. Try using .fromCubemapAsync() instead."),this._setSizeFromTexture(e);const r=t||this._allocateTarget();return this.fromCubemapAsync(e,t),r}return this._fromTexture(e,t)}async fromCubemapAsync(e,t=null){return v('PMREMGenerator: ".fromCubemapAsync()" is deprecated. Use "await renderer.init()" instead.'),await this._renderer.init(),this._fromTexture(e,t)}async compileCubemapShader(){null===this._cubemapMaterial&&(this._cubemapMaterial=df(),await this._compileMaterial(this._cubemapMaterial))}async compileEquirectangularShader(){null===this._equirectMaterial&&(this._equirectMaterial=cf(),await this._compileMaterial(this._equirectMaterial))}dispose(){this._dispose(),null!==this._cubemapMaterial&&this._cubemapMaterial.dispose(),null!==this._equirectMaterial&&this._equirectMaterial.dispose(),null!==this._backgroundBox&&(this._backgroundBox.geometry.dispose(),this._backgroundBox.material.dispose())}_setSizeFromTexture(e){e.mapping===L||e.mapping===P?this._setSize(0===e.image.length?16:e.image[0].width||e.image[0].image.width):this._setSize(e.image.width/4)}_setSize(e){this._lodMax=Math.floor(Math.log2(e)),this._cubeSize=Math.pow(2,this._lodMax)}_dispose(){null!==this._blurMaterial&&this._blurMaterial.dispose(),null!==this._ggxMaterial&&this._ggxMaterial.dispose(),null!==this._pingPongRenderTarget&&this._pingPongRenderTarget.dispose();for(let e=0;ee-4?o=jm[a-e+4-1]:0===a&&(o=0),r.push(o);const u=1/(n-2),l=-u,d=1+u,c=[l,l,d,l,d,d,l,l,d,d,l,d],h=6,p=6,g=3,m=2,f=1,y=new Float32Array(g*p*h),b=new Float32Array(m*p*h),x=new Float32Array(f*p*h);for(let e=0;e2?0:-1,s=[t,r,0,t+2/3,r,0,t+2/3,r+1,0,t,r,0,t+2/3,r+1,0,t,r+1,0],i=rf[e];y.set(s,g*p*i),b.set(c,m*p*i);const n=[i,i,i,i,i,i];x.set(n,f*p*i)}const T=new be;T.setAttribute("position",new Re(y,g)),T.setAttribute("uv",new Re(b,m)),T.setAttribute("faceIndex",new Re(x,f)),s.push(new se(T,null)),i>4&&i--}return{lodMeshes:s,sizeLods:t,sigmas:r}}(t)),this._blurMaterial=function(e,t,s){const i=Vl(new Array(qm).fill(0)),n=xa(new r(0,1,0)),a=xa(0),o=hn(qm),u=xa(0),l=xa(1),d=Pl(),c=xa(0),h=hn(1/t),p=hn(1/s),g=hn(e),m={n:o,latitudinal:u,weights:i,poleAxis:n,outputDirection:nf,dTheta:a,samples:l,envMap:d,mipInt:c,CUBEUV_TEXEL_WIDTH:h,CUBEUV_TEXEL_HEIGHT:p,CUBEUV_MAX_MIP:g},f=lf("blur");return f.fragmentNode=Gm({...m,latitudinal:u.equal(1)}),tf.set(f,m),f}(t,e.width,e.height),this._ggxMaterial=function(e,t,r){const s=Pl(),i=xa(0),n=xa(0),a=hn(1/t),o=hn(1/r),u=hn(e),l={envMap:s,roughness:i,mipInt:n,CUBEUV_TEXEL_WIDTH:a,CUBEUV_TEXEL_HEIGHT:o,CUBEUV_MAX_MIP:u},d=lf("ggx");return d.fragmentNode=Hm({...l,N_immutable:nf,GGX_SAMPLES:gn(512)}),tf.set(d,l),d}(t,e.width,e.height)}}async _compileMaterial(e){const t=new se(new be,e);await this._renderer.compile(t,Xm)}_sceneToCubeUV(e,t,r,s,i){const n=Km;n.near=t,n.far=r;const a=[1,1,1,1,-1,1],o=[1,-1,1,-1,1,-1],u=this._renderer,l=u.autoClear;u.getClearColor(Ym),u.autoClear=!1,null===this._backgroundBox&&(this._backgroundBox=new se(new re,new he({name:"PMREM.Background",side:w,depthWrite:!1,depthTest:!1})));const d=this._backgroundBox,c=d.material;let h=!1;const p=e.background;p?p.isColor&&(c.color.copy(p),e.background=null,h=!0):(c.color.copy(Ym),h=!0),u.setRenderTarget(s),u.clear(),h&&u.render(d,n);for(let t=0;t<6;t++){const r=t%3;0===r?(n.up.set(0,a[t],0),n.position.set(i.x,i.y,i.z),n.lookAt(i.x+o[t],i.y,i.z)):1===r?(n.up.set(0,0,a[t]),n.position.set(i.x,i.y,i.z),n.lookAt(i.x,i.y+o[t],i.z)):(n.up.set(0,a[t],0),n.position.set(i.x,i.y,i.z),n.lookAt(i.x,i.y,i.z+o[t]));const l=this._cubeSize;uf(s,r*l,t>2?l:0,l,l),u.render(e,n)}u.autoClear=l,e.background=p}_textureToCubeUV(e,t){const r=this._renderer,s=e.mapping===L||e.mapping===P;s?null===this._cubemapMaterial&&(this._cubemapMaterial=df(e)):null===this._equirectMaterial&&(this._equirectMaterial=cf(e));const i=s?this._cubemapMaterial:this._equirectMaterial;i.fragmentNode.value=e;const n=this._lodMeshes[0];n.material=i;const a=this._cubeSize;uf(t,0,0,3*a,2*a),r.setRenderTarget(t),r.render(n,Xm)}_applyPMREM(e){const t=this._renderer,r=t.autoClear;t.autoClear=!1;const s=this._lodMeshes.length;for(let t=1;tc-4?r-c+4:0),g=4*(this._cubeSize-h);e.texture.frame=(e.texture.frame||0)+1,o.envMap.value=e.texture,o.roughness.value=d,o.mipInt.value=c-t,uf(i,p,g,3*h,2*h),s.setRenderTarget(i),s.render(a,Xm),i.texture.frame=(i.texture.frame||0)+1,o.envMap.value=i.texture,o.roughness.value=0,o.mipInt.value=c-r,uf(e,p,g,3*h,2*h),s.setRenderTarget(e),s.render(a,Xm)}_blur(e,t,r,s,i){const n=this._pingPongRenderTarget;this._halfBlur(e,n,t,r,s,"latitudinal",i),this._halfBlur(n,e,r,r,s,"longitudinal",i)}_halfBlur(e,t,r,s,i,n,a){const u=this._renderer,l=this._blurMaterial;"latitudinal"!==n&&"longitudinal"!==n&&o("blur direction must be either latitudinal or longitudinal!");const c=this._lodMeshes[s];c.material=l;const h=tf.get(l),p=this._sizeLods[r]-1,g=isFinite(i)?Math.PI/(2*p):2*Math.PI/39,m=i/g,f=isFinite(i)?1+Math.floor(3*m):qm;f>qm&&d(`sigmaRadians, ${i}, is too large and will clip, as it requested ${f} samples when the maximum is set to 20`);const y=[];let b=0;for(let e=0;ex-4?s-x+4:0),4*(this._cubeSize-T),3*T,2*T),u.setRenderTarget(t),u.render(c,Xm)}}function of(e,t){const r=new _e(e,t,{magFilter:ne,minFilter:ne,generateMipmaps:!1,type:fe,format:Ne,colorSpace:ve});return r.texture.mapping=Se,r.texture.name="PMREM.cubeUv",r.texture.isPMREMTexture=!0,r.scissorTest=!0,r}function uf(e,t,r,s,i){e.viewport.set(t,r,s,i),e.scissor.set(t,r,s,i)}function lf(e){const t=new Xp;return t.depthTest=!1,t.depthWrite=!1,t.blending=Z,t.name=`PMREM_${e}`,t}function df(e){const t=lf("cubemap");return t.fragmentNode=hc(e,nf),t}function cf(e){const t=lf("equirect");return t.fragmentNode=Pl(e,ag(nf),0),t}const hf=new WeakMap;function pf(e,t,r){const s=function(e){let t=hf.get(e);void 0===t&&(t=new WeakMap,hf.set(e,t));return t}(t);let i=s.get(e);if((void 0!==i?i.pmremVersion:-1)!==e.pmremVersion){const t=e.image;if(e.isCubeTexture){if(!function(e){if(null==e)return!1;let t=0;const r=6;for(let s=0;s0}(t))return null;i=r.fromEquirectangular(e,i)}i.pmremVersion=e.pmremVersion,s.set(e,i)}return i.texture}class gf extends li{static get type(){return"PMREMNode"}constructor(e,t=null,r=null){super("vec3"),this._value=e,this._pmrem=null,this.uvNode=t,this.levelNode=r,this._generator=null;const s=new N;s.isRenderTargetTexture=!0,this._texture=Pl(s),this._width=xa(0),this._height=xa(0),this._maxMip=xa(0),this.updateBeforeType=Qs.RENDER}set value(e){this._value=e,this._pmrem=null}get value(){return this._value}updateFromTexture(e){const t=function(e){const t=Math.log2(e)-2,r=1/e;return{texelWidth:1/(3*Math.max(Math.pow(2,t),112)),texelHeight:r,maxMip:t}}(e.image.height);this._texture.value=e,this._width.value=t.texelWidth,this._height.value=t.texelHeight,this._maxMip.value=t.maxMip}updateBefore(e){let t=this._pmrem;const r=t?t.pmremVersion:-1,s=this._value;r!==s.pmremVersion&&(t=!0===s.isPMREMTexture?s:pf(s,e.renderer,this._generator),null!==t&&(this._pmrem=t,this.updateFromTexture(t)))}setup(e){null===this._generator&&(this._generator=new af(e.renderer)),this.updateBefore(e);let t=this.uvNode;null===t&&e.context.getUV&&(t=e.context.getUV(this,e)),t=ic.mul(Tn(t.x,t.y.negate(),t.z));let r=this.levelNode;return null===r&&e.context.getTextureLevel&&(r=e.context.getTextureLevel(this)),Om(this._texture,t,r,this._width,this._height,this._maxMip)}dispose(){super.dispose(),null!==this._generator&&this._generator.dispose()}}const mf=en(gf).setParameterLength(1,3),ff=new WeakMap;class yf extends gp{static get type(){return"EnvironmentNode"}constructor(e=null){super(),this.envNode=e}setup(e){const{material:t}=e;let r=this.envNode;if(r.isTextureNode||r.isMaterialReferenceNode){const e=r.isTextureNode?r.value:t[r.property];let s=ff.get(e);void 0===s&&(s=mf(e),ff.set(e,s)),r=s}const s=!0===t.useAnisotropy||t.anisotropy>0?Wc:jd,i=r.context(bf(Vn,s)).mul(sc),n=r.context(xf(qd)).mul(Math.PI).mul(sc),a=al(i),o=al(n);e.context.radiance.addAssign(a),e.context.iblIrradiance.addAssign(o);const u=e.context.lightingModel.clearcoatRadiance;if(u){const e=r.context(bf(zn,Xd)).mul(sc),t=al(e);u.addAssign(t)}}}const bf=(e,t)=>{let r=null;return{getUV:()=>(null===r&&(r=Id.negate().reflect(t),r=eu(e).mix(r,t).normalize(),r=r.transformDirection(id)),r),getTextureLevel:()=>e}},xf=e=>({getUV:()=>e,getTextureLevel:()=>hn(1)}),Tf=new Ae;class _f extends Xp{static get type(){return"MeshStandardNodeMaterial"}constructor(e){super(),this.isMeshStandardNodeMaterial=!0,this.lights=!0,this.emissiveNode=null,this.metalnessNode=null,this.roughnessNode=null,this.setDefaultValues(Tf),this.setValues(e)}setupEnvironment(e){let t=super.setupEnvironment(e);return null===t&&e.environmentNode&&(t=e.environmentNode),t?new yf(t):null}setupLightingModel(){return new _m}setupSpecular(){const e=iu(Tn(.04),In.rgb,kn);Zn.assign(Tn(.04)),Jn.assign(e),ea.assign(1)}setupVariants(){const e=this.metalnessNode?hn(this.metalnessNode):hh;kn.assign(e);let t=this.roughnessNode?hn(this.roughnessNode):ch;t=Cg({roughness:t}),Vn.assign(t),this.setupSpecular(),Un.assign(In.rgb.mul(e.oneMinus()))}copy(e){return this.emissiveNode=e.emissiveNode,this.metalnessNode=e.metalnessNode,this.roughnessNode=e.roughnessNode,super.copy(e)}}const vf=new Ee;class Nf extends _f{static get type(){return"MeshPhysicalNodeMaterial"}constructor(e){super(),this.isMeshPhysicalNodeMaterial=!0,this.clearcoatNode=null,this.clearcoatRoughnessNode=null,this.clearcoatNormalNode=null,this.sheenNode=null,this.sheenRoughnessNode=null,this.iridescenceNode=null,this.iridescenceIORNode=null,this.iridescenceThicknessNode=null,this.specularIntensityNode=null,this.specularColorNode=null,this.iorNode=null,this.transmissionNode=null,this.thicknessNode=null,this.attenuationDistanceNode=null,this.attenuationColorNode=null,this.dispersionNode=null,this.anisotropyNode=null,this.setDefaultValues(vf),this.setValues(e)}get useClearcoat(){return this.clearcoat>0||null!==this.clearcoatNode}get useIridescence(){return this.iridescence>0||null!==this.iridescenceNode}get useSheen(){return this.sheen>0||null!==this.sheenNode}get useAnisotropy(){return this.anisotropy>0||null!==this.anisotropyNode}get useTransmission(){return this.transmission>0||null!==this.transmissionNode}get useDispersion(){return this.dispersion>0||null!==this.dispersionNode}setupSpecular(){const e=this.iorNode?hn(this.iorNode):Ah;aa.assign(e),Zn.assign($o(Zo(aa.sub(1).div(aa.add(1))).mul(uh),Tn(1)).mul(oh)),Jn.assign(iu(Zn,In.rgb,kn)),ea.assign(iu(oh,1,kn))}setupLightingModel(){return new _m(this.useClearcoat,this.useSheen,this.useIridescence,this.useAnisotropy,this.useTransmission,this.useDispersion)}setupVariants(e){if(super.setupVariants(e),this.useClearcoat){const e=this.clearcoatNode?hn(this.clearcoatNode):gh,t=this.clearcoatRoughnessNode?hn(this.clearcoatRoughnessNode):mh;Gn.assign(e),zn.assign(Cg({roughness:t}))}if(this.useSheen){const e=this.sheenNode?Tn(this.sheenNode):bh,t=this.sheenRoughnessNode?hn(this.sheenRoughnessNode):xh;$n.assign(e),Wn.assign(t)}if(this.useIridescence){const e=this.iridescenceNode?hn(this.iridescenceNode):_h,t=this.iridescenceIORNode?hn(this.iridescenceIORNode):vh,r=this.iridescenceThicknessNode?hn(this.iridescenceThicknessNode):Nh;Hn.assign(e),jn.assign(t),qn.assign(r)}if(this.useAnisotropy){const e=(this.anisotropyNode?fn(this.anisotropyNode):Th).toVar();Kn.assign(e.length()),ln(Kn.equal(0),()=>{e.assign(fn(1,0))}).Else(()=>{e.divAssign(fn(Kn)),Kn.assign(Kn.saturate())}),Xn.assign(Kn.pow2().mix(Vn.pow2(),1)),Yn.assign(zc[0].mul(e.x).add(zc[1].mul(e.y))),Qn.assign(zc[1].mul(e.x).sub(zc[0].mul(e.y)))}if(this.useTransmission){const e=this.transmissionNode?hn(this.transmissionNode):Sh,t=this.thicknessNode?hn(this.thicknessNode):Rh,r=this.attenuationDistanceNode?hn(this.attenuationDistanceNode):Eh,s=this.attenuationColorNode?Tn(this.attenuationColorNode):wh;if(oa.assign(e),ua.assign(t),la.assign(r),da.assign(s),this.useDispersion){const e=this.dispersionNode?hn(this.dispersionNode):Dh;ca.assign(e)}}}setupClearcoatNormal(){return this.clearcoatNormalNode?Tn(this.clearcoatNormalNode):fh}setup(e){e.context.setupClearcoatNormal=()=>Lu(this.setupClearcoatNormal(e),"NORMAL","vec3"),super.setup(e)}copy(e){return this.clearcoatNode=e.clearcoatNode,this.clearcoatRoughnessNode=e.clearcoatRoughnessNode,this.clearcoatNormalNode=e.clearcoatNormalNode,this.sheenNode=e.sheenNode,this.sheenRoughnessNode=e.sheenRoughnessNode,this.iridescenceNode=e.iridescenceNode,this.iridescenceIORNode=e.iridescenceIORNode,this.iridescenceThicknessNode=e.iridescenceThicknessNode,this.specularIntensityNode=e.specularIntensityNode,this.specularColorNode=e.specularColorNode,this.transmissionNode=e.transmissionNode,this.thicknessNode=e.thicknessNode,this.attenuationDistanceNode=e.attenuationDistanceNode,this.attenuationColorNode=e.attenuationColorNode,this.dispersionNode=e.dispersionNode,this.anisotropyNode=e.anisotropyNode,super.copy(e)}}class Sf extends _m{constructor(e=!1,t=!1,r=!1,s=!1,i=!1,n=!1,a=!1){super(e,t,r,s,i,n),this.useSSS=a}direct({lightDirection:e,lightColor:t,reflectedLight:r},s){if(!0===this.useSSS){const i=s.material,{thicknessColorNode:n,thicknessDistortionNode:a,thicknessAmbientNode:o,thicknessAttenuationNode:u,thicknessPowerNode:l,thicknessScaleNode:d}=i,c=e.add(jd.mul(a)).normalize(),h=hn(Id.dot(c.negate()).saturate().pow(l).mul(d)),p=Tn(h.add(o).mul(n));r.directDiffuse.addAssign(p.mul(u.mul(t)))}super.direct({lightDirection:e,lightColor:t,reflectedLight:r},s)}}class Rf extends Nf{static get type(){return"MeshSSSNodeMaterial"}constructor(e){super(e),this.thicknessColorNode=null,this.thicknessDistortionNode=hn(.1),this.thicknessAmbientNode=hn(0),this.thicknessAttenuationNode=hn(.1),this.thicknessPowerNode=hn(2),this.thicknessScaleNode=hn(10)}get useSSS(){return null!==this.thicknessColorNode}setupLightingModel(){return new Sf(this.useClearcoat,this.useSheen,this.useIridescence,this.useAnisotropy,this.useTransmission,this.useDispersion,this.useSSS)}copy(e){return this.thicknessColorNode=e.thicknessColorNode,this.thicknessDistortionNode=e.thicknessDistortionNode,this.thicknessAmbientNode=e.thicknessAmbientNode,this.thicknessAttenuationNode=e.thicknessAttenuationNode,this.thicknessPowerNode=e.thicknessPowerNode,this.thicknessScaleNode=e.thicknessScaleNode,super.copy(e)}}const Af=an(({normal:e,lightDirection:t,builder:r})=>{const s=e.dot(t),i=fn(s.mul(.5).add(.5),0);if(r.material.gradientMap){const e=bc("gradientMap","texture").context({getUV:()=>i});return Tn(e.r)}{const e=i.fwidth().mul(.5);return iu(Tn(.7),Tn(1),uu(hn(.7).sub(e.x),hn(.7).add(e.x),i.x))}});class Ef extends mg{direct({lightDirection:e,lightColor:t,reflectedLight:r},s){const i=Af({normal:Gd,lightDirection:e,builder:s}).mul(t);r.directDiffuse.addAssign(i.mul(Tg({diffuseColor:In.rgb})))}indirect(e){const{ambientOcclusion:t,irradiance:r,reflectedLight:s}=e.context;s.indirectDiffuse.addAssign(r.mul(Tg({diffuseColor:In}))),s.indirectDiffuse.mulAssign(t)}}const wf=new we;class Cf extends Xp{static get type(){return"MeshToonNodeMaterial"}constructor(e){super(),this.isMeshToonNodeMaterial=!0,this.lights=!0,this.setDefaultValues(wf),this.setValues(e)}setupLightingModel(){return new Ef}}const Mf=an(()=>{const e=Tn(Id.z,0,Id.x.negate()).normalize(),t=Id.cross(e);return fn(e.dot(jd),t.dot(jd)).mul(.495).add(.5)}).once(["NORMAL","VERTEX"])().toVar("matcapUV"),Bf=new Ce;class Lf extends Xp{static get type(){return"MeshMatcapNodeMaterial"}constructor(e){super(),this.isMeshMatcapNodeMaterial=!0,this.setDefaultValues(Bf),this.setValues(e)}setupVariants(e){const t=Mf;let r;r=e.material.matcap?bc("matcap","texture").context({getUV:()=>t}):Tn(iu(.2,.8,t.y)),In.rgb.mulAssign(r.rgb)}}class Pf extends li{static get type(){return"RotateNode"}constructor(e,t){super(),this.positionNode=e,this.rotationNode=t}getNodeType(e){return this.positionNode.getNodeType(e)}setup(e){const{rotationNode:t,positionNode:r}=this;if("vec2"===this.getNodeType(e)){const e=t.cos(),s=t.sin();return wn(e,s,s.negate(),e).mul(r)}{const e=t,s=Mn(Sn(1,0,0,0),Sn(0,No(e.x),vo(e.x).negate(),0),Sn(0,vo(e.x),No(e.x),0),Sn(0,0,0,1)),i=Mn(Sn(No(e.y),0,vo(e.y),0),Sn(0,1,0,0),Sn(vo(e.y).negate(),0,No(e.y),0),Sn(0,0,0,1)),n=Mn(Sn(No(e.z),vo(e.z).negate(),0,0),Sn(vo(e.z),No(e.z),0,0),Sn(0,0,1,0),Sn(0,0,0,1));return s.mul(i).mul(n).mul(Sn(r,1)).xyz}}}const Ff=en(Pf).setParameterLength(2),Df=new Me;class If extends Xp{static get type(){return"SpriteNodeMaterial"}constructor(e){super(),this.isSpriteNodeMaterial=!0,this._useSizeAttenuation=!0,this.positionNode=null,this.rotationNode=null,this.scaleNode=null,this.transparent=!0,this.setDefaultValues(Df),this.setValues(e)}setupPositionView(e){const{object:t,camera:r}=e,{positionNode:s,rotationNode:i,scaleNode:n,sizeAttenuation:a}=this,o=Ad.mul(Tn(s||0));let u=fn(xd[0].xyz.length(),xd[1].xyz.length());null!==n&&(u=u.mul(fn(n))),r.isPerspectiveCamera&&!1===a&&(u=u.mul(o.z.negate()));let l=Md.xy;if(t.center&&!0===t.center.isVector2){const e=((e,t,r)=>Yi(new $u(e,t,r)))("center","vec2",t);l=l.sub(e.sub(.5))}l=l.mul(u);const d=hn(i||yh),c=Ff(l,d);return Sn(o.xy.add(c),o.zw)}copy(e){return this.positionNode=e.positionNode,this.rotationNode=e.rotationNode,this.scaleNode=e.scaleNode,super.copy(e)}get sizeAttenuation(){return this._useSizeAttenuation}set sizeAttenuation(e){this._useSizeAttenuation!==e&&(this._useSizeAttenuation=e,this.needsUpdate=!0)}}const Uf=new Be,Of=new t;class Vf extends If{static get type(){return"PointsNodeMaterial"}constructor(e){super(),this.sizeNode=null,this.isPointsNodeMaterial=!0,this.setDefaultValues(Uf),this.setValues(e)}setupPositionView(){const{positionNode:e}=this;return Ad.mul(Tn(e||Bd)).xyz}setupVertexSprite(e){const{material:t,camera:r}=e,{rotationNode:s,scaleNode:i,sizeNode:n,sizeAttenuation:a}=this;let o=super.setupVertex(e);if(!0!==t.isNodeMaterial)return o;let u=null!==n?fn(n):Fh;u=u.mul(Wl),r.isPerspectiveCamera&&!0===a&&(u=u.mul(kf.div(Dd.z.negate()))),i&&i.isNode&&(u=u.mul(fn(i)));let l=Md.xy;if(s&&s.isNode){const e=hn(s);l=Ff(l,e)}return l=l.mul(u),l=l.div(Kl.div(2)),l=l.mul(o.w),o=o.add(Sn(l,0,0)),o}setupVertex(e){return e.object.isPoints?super.setupVertex(e):this.setupVertexSprite(e)}get alphaToCoverage(){return this._useAlphaToCoverage}set alphaToCoverage(e){this._useAlphaToCoverage!==e&&(this._useAlphaToCoverage=e,this.needsUpdate=!0)}}const kf=xa(1).onFrameUpdate(function({renderer:e}){const t=e.getSize(Of);this.value=.5*t.y});class Gf extends mg{constructor(){super(),this.shadowNode=hn(1).toVar("shadowMask")}direct({lightNode:e}){null!==e.shadowNode&&this.shadowNode.mulAssign(e.shadowNode)}finish({context:e}){In.a.mulAssign(this.shadowNode.oneMinus()),e.outgoingLight.rgb.assign(In.rgb)}}const zf=new Le;class $f extends Xp{static get type(){return"ShadowNodeMaterial"}constructor(e){super(),this.isShadowNodeMaterial=!0,this.lights=!0,this.transparent=!0,this.setDefaultValues(zf),this.setValues(e)}setupLightingModel(){return new Gf}}const Wf=Fn("vec3"),Hf=Fn("vec3"),jf=Fn("vec3");class qf extends mg{constructor(){super()}start(e){const{material:t}=e,r=Fn("vec3"),s=Fn("vec3");ln(od.sub(Pd).length().greaterThan(Nd.mul(2)),()=>{r.assign(od),s.assign(Pd)}).Else(()=>{r.assign(Pd),s.assign(od)});const i=s.sub(r),n=xa("int").onRenderUpdate(({material:e})=>e.steps),a=i.length().div(n).toVar(),o=i.normalize().toVar(),u=hn(0).toVar(),l=Tn(1).toVar();t.offsetNode&&u.addAssign(t.offsetNode.mul(a)),op(n,()=>{const s=r.add(o.mul(u)),i=id.mul(Sn(s,1)).xyz;let n;null!==t.depthNode&&(Hf.assign(Pp(wp(i.z,ed,td))),e.context.sceneDepthNode=Pp(t.depthNode).toVar()),e.context.positionWorld=s,e.context.shadowPositionWorld=s,e.context.positionView=i,Wf.assign(0),t.scatteringNode&&(n=t.scatteringNode({positionRay:s})),super.start(e),n&&Wf.mulAssign(n);const d=Wf.mul(.01).negate().mul(a).exp();l.mulAssign(d),u.addAssign(a)}),jf.addAssign(l.saturate().oneMinus())}scatteringLight(e,t){const r=t.context.sceneDepthNode;r?ln(r.greaterThanEqual(Hf),()=>{Wf.addAssign(e)}):Wf.addAssign(e)}direct({lightNode:e,lightColor:t},r){if(void 0===e.light.distance)return;const s=t.xyz.toVar();s.mulAssign(e.shadowNode),this.scatteringLight(s,r)}directRectArea({lightColor:e,lightPosition:t,halfWidth:r,halfHeight:s},i){const n=t.add(r).sub(s),a=t.sub(r).sub(s),o=t.sub(r).add(s),u=t.add(r).add(s),l=i.context.positionView,d=e.xyz.mul(Kg({P:l,p0:n,p1:a,p2:o,p3:u})).pow(1.5);this.scatteringLight(d,i)}finish(e){e.context.outgoingLight.assign(jf)}}class Xf extends Xp{static get type(){return"VolumeNodeMaterial"}constructor(e){super(),this.isVolumeNodeMaterial=!0,this.steps=25,this.offsetNode=null,this.scatteringNode=null,this.lights=!0,this.transparent=!0,this.side=w,this.depthTest=!1,this.depthWrite=!1,this.setValues(e)}setupLightingModel(){return new qf}}class Kf{constructor(e,t,r){this.renderer=e,this.nodes=t,this.info=r,this._context="undefined"!=typeof self?self:null,this._animationLoop=null,this._requestId=null}start(){const e=(t,r)=>{this._requestId=this._context.requestAnimationFrame(e),!0===this.info.autoReset&&this.info.reset(),this.nodes.nodeFrame.update(),this.info.frame=this.nodes.nodeFrame.frameId,this.renderer._inspector.begin(),null!==this._animationLoop&&this._animationLoop(t,r),this.renderer._inspector.finish()};e()}stop(){this._context.cancelAnimationFrame(this._requestId),this._requestId=null}getAnimationLoop(){return this._animationLoop}setAnimationLoop(e){this._animationLoop=e}getContext(){return this._context}setContext(e){this._context=e}dispose(){this.stop()}}class Yf{constructor(){this.weakMap=new WeakMap}get(e){let t=this.weakMap;for(let r=0;r{this.dispose()},this.onGeometryDispose=()=>{this.attributes=null,this.attributesId=null},this.material.addEventListener("dispose",this.onMaterialDispose),this.geometry.addEventListener("dispose",this.onGeometryDispose)}updateClipping(e){this.clippingContext=e}get clippingNeedsUpdate(){return null!==this.clippingContext&&this.clippingContext.cacheKey!==this.clippingContextCacheKey&&(this.clippingContextCacheKey=this.clippingContext.cacheKey,!0)}get hardwareClippingPlanes(){return!0===this.material.hardwareClipping?this.clippingContext.unionClippingCount:0}getNodeBuilderState(){return this._nodeBuilderState||(this._nodeBuilderState=this._nodes.getForRender(this))}getMonitor(){return this._monitor||(this._monitor=this.getNodeBuilderState().observer)}getBindings(){return this._bindings||(this._bindings=this.getNodeBuilderState().createBindings())}getBindingGroup(e){for(const t of this.getBindings())if(t.name===e)return t}getIndex(){return this._geometries.getIndex(this)}getIndirect(){return this._geometries.getIndirect(this)}getIndirectOffset(){return this._geometries.getIndirectOffset(this)}getChainArray(){return[this.object,this.material,this.context,this.lightsNode]}setGeometry(e){this.geometry=e,this.attributes=null,this.attributesId=null}getAttributes(){if(null!==this.attributes)return this.attributes;const e=this.getNodeBuilderState().nodeAttributes,t=this.geometry,r=[],s=new Set,i={};for(const n of e){let e;if(n.node&&n.node.attribute?e=n.node.attribute:(e=t.getAttribute(n.name),i[n.name]=e.version),void 0===e)continue;r.push(e);const a=e.isInterleavedBufferAttribute?e.data:e;s.add(a)}return this.attributes=r,this.attributesId=i,this.vertexBuffers=Array.from(s.values()),r}getVertexBuffers(){return null===this.vertexBuffers&&this.getAttributes(),this.vertexBuffers}getDrawParameters(){const{object:e,material:t,geometry:r,group:s,drawRange:i}=this,n=this.drawParams||(this.drawParams={vertexCount:0,firstVertex:0,instanceCount:0,firstInstance:0}),a=this.getIndex(),o=null!==a;let u=1;if(!0===r.isInstancedBufferGeometry?u=r.instanceCount:void 0!==e.count&&(u=Math.max(0,e.count)),0===u)return null;if(n.instanceCount=u,!0===e.isBatchedMesh)return n;let l=1;!0!==t.wireframe||e.isPoints||e.isLineSegments||e.isLine||e.isLineLoop||(l=2);let d=i.start*l,c=(i.start+i.count)*l;null!==s&&(d=Math.max(d,s.start*l),c=Math.min(c,(s.start+s.count)*l));const h=r.attributes.position;let p=1/0;o?p=a.count:null!=h&&(p=h.count),d=Math.max(d,0),c=Math.min(c,p);const g=c-d;return g<0||g===1/0?null:(n.vertexCount=g,n.firstVertex=d,n)}getGeometryCacheKey(){const{geometry:e}=this;let t="";for(const r of Object.keys(e.attributes).sort()){const s=e.attributes[r];t+=r+",",s.data&&(t+=s.data.stride+","),s.offset&&(t+=s.offset+","),s.itemSize&&(t+=s.itemSize+","),s.normalized&&(t+="n,")}for(const r of Object.keys(e.morphAttributes).sort()){const s=e.morphAttributes[r];t+="morph-"+r+",";for(let e=0,r=s.length;e1||Array.isArray(e.morphTargetInfluences))&&(s+=e.uuid+","),s+=this.context.id+",",s+=e.receiveShadow+",",Fs(s)}get needsGeometryUpdate(){if(this.geometry.id!==this.object.geometry.id)return!0;if(null!==this.attributes){const e=this.attributesId;for(const t in e){const r=this.geometry.getAttribute(t);if(void 0===r||e[t]!==r.id)return!0}}return!1}get needsUpdate(){return this.initialNodesCacheKey!==this.getDynamicCacheKey()||this.clippingNeedsUpdate}getDynamicCacheKey(){let e=0;return!0!==this.material.isShadowPassMaterial&&(e=this._nodes.getCacheKey(this.scene,this.lightsNode)),this.camera.isArrayCamera&&(e=Is(e,this.camera.cameras.length)),this.object.receiveShadow&&(e=Is(e,1)),e=Is(e,this.camera.id,this.renderer.contextNode.id,this.renderer.contextNode.version),e}getCacheKey(){return this.getMaterialCacheKey()+this.getDynamicCacheKey()}dispose(){this.material.removeEventListener("dispose",this.onMaterialDispose),this.geometry.removeEventListener("dispose",this.onGeometryDispose),this.onDispose()}}const Jf=[];class ey{constructor(e,t,r,s,i,n){this.renderer=e,this.nodes=t,this.geometries=r,this.pipelines=s,this.bindings=i,this.info=n,this.chainMaps={}}get(e,t,r,s,i,n,a,o){const u=this.getChainMap(o);Jf[0]=e,Jf[1]=t,Jf[2]=n,Jf[3]=i;let l=u.get(Jf);return void 0===l?(l=this.createRenderObject(this.nodes,this.geometries,this.renderer,e,t,r,s,i,n,a,o),u.set(Jf,l)):(l.updateClipping(a),l.needsGeometryUpdate&&l.setGeometry(e.geometry),(l.version!==t.version||l.needsUpdate)&&(l.initialCacheKey!==l.getCacheKey()?(l.dispose(),l=this.get(e,t,r,s,i,n,a,o)):l.version=t.version)),Jf.length=0,l}getChainMap(e="default"){return this.chainMaps[e]||(this.chainMaps[e]=new Yf)}dispose(){this.chainMaps={}}createRenderObject(e,t,r,s,i,n,a,o,u,l,d){const c=this.getChainMap(d),h=new Zf(e,t,r,s,i,n,a,o,u,l);return h.onDispose=()=>{this.pipelines.delete(h),this.bindings.deleteForRender(h),this.nodes.delete(h),c.delete(h.getChainArray())},h}}class ty{constructor(){this.data=new WeakMap}get(e){let t=this.data.get(e);return void 0===t&&(t={},this.data.set(e,t)),t}delete(e){let t=null;return this.data.has(e)&&(t=this.data.get(e),this.data.delete(e)),t}has(e){return this.data.has(e)}dispose(){this.data=new WeakMap}}const ry=1,sy=2,iy=3,ny=4,ay=16;class oy extends ty{constructor(e){super(),this.backend=e}delete(e){const t=super.delete(e);return null!==t&&this.backend.destroyAttribute(e),t}update(e,t){const r=this.get(e);if(void 0===r.version)t===ry?this.backend.createAttribute(e):t===sy?this.backend.createIndexAttribute(e):t===iy?this.backend.createStorageAttribute(e):t===ny&&this.backend.createIndirectStorageAttribute(e),r.version=this._getBufferAttribute(e).version;else{const t=this._getBufferAttribute(e);(r.version{this.info.memory.geometries--;const s=t.index,i=e.getAttributes();null!==s&&this.attributes.delete(s);for(const e of i)this.attributes.delete(e);const n=this.wireframes.get(t);void 0!==n&&this.attributes.delete(n),t.removeEventListener("dispose",r),this._geometryDisposeListeners.delete(t)};t.addEventListener("dispose",r),this._geometryDisposeListeners.set(t,r)}updateAttributes(e){const t=e.getAttributes();for(const e of t)e.isStorageBufferAttribute||e.isStorageInstancedBufferAttribute?this.updateAttribute(e,iy):this.updateAttribute(e,ry);const r=this.getIndex(e);null!==r&&this.updateAttribute(r,sy);const s=e.geometry.indirect;null!==s&&this.updateAttribute(s,ny)}updateAttribute(e,t){const r=this.info.render.calls;e.isInterleavedBufferAttribute?void 0===this.attributeCall.get(e)?(this.attributes.update(e,t),this.attributeCall.set(e,r)):this.attributeCall.get(e.data)!==r&&(this.attributes.update(e,t),this.attributeCall.set(e.data,r),this.attributeCall.set(e,r)):this.attributeCall.get(e)!==r&&(this.attributes.update(e,t),this.attributeCall.set(e,r))}getIndirect(e){return e.geometry.indirect}getIndirectOffset(e){return e.geometry.indirectOffset}getIndex(e){const{geometry:t,material:r}=e;let s=t.index;if(!0===r.wireframe){const e=this.wireframes;let r=e.get(t);void 0===r?(r=ly(t),e.set(t,r)):r.version!==uy(t)&&(this.attributes.delete(r),r=ly(t),e.set(t,r)),s=r}return s}dispose(){for(const[e,t]of this._geometryDisposeListeners.entries())e.removeEventListener("dispose",t);this._geometryDisposeListeners.clear()}}class cy{constructor(){this.autoReset=!0,this.frame=0,this.calls=0,this.render={calls:0,frameCalls:0,drawCalls:0,triangles:0,points:0,lines:0,timestamp:0},this.compute={calls:0,frameCalls:0,timestamp:0},this.memory={geometries:0,textures:0}}update(e,t,r){this.render.drawCalls++,e.isMesh||e.isSprite?this.render.triangles+=r*(t/3):e.isPoints?this.render.points+=r*t:e.isLineSegments?this.render.lines+=r*(t/2):e.isLine?this.render.lines+=r*(t-1):o("WebGPUInfo: Unknown object type.")}reset(){this.render.drawCalls=0,this.render.frameCalls=0,this.compute.frameCalls=0,this.render.triangles=0,this.render.points=0,this.render.lines=0}dispose(){this.reset(),this.calls=0,this.render.calls=0,this.compute.calls=0,this.render.timestamp=0,this.compute.timestamp=0,this.memory.geometries=0,this.memory.textures=0}}class hy{constructor(e){this.cacheKey=e,this.usedTimes=0}}class py extends hy{constructor(e,t,r){super(e),this.vertexProgram=t,this.fragmentProgram=r}}class gy extends hy{constructor(e,t){super(e),this.computeProgram=t,this.isComputePipeline=!0}}let my=0;class fy{constructor(e,t,r,s=null,i=null){this.id=my++,this.code=e,this.stage=t,this.name=r,this.transforms=s,this.attributes=i,this.usedTimes=0}}class yy extends ty{constructor(e,t){super(),this.backend=e,this.nodes=t,this.bindings=null,this.caches=new Map,this.programs={vertex:new Map,fragment:new Map,compute:new Map}}getForCompute(e,t){const{backend:r}=this,s=this.get(e);if(this._needsComputeUpdate(e)){const i=s.pipeline;i&&(i.usedTimes--,i.computeProgram.usedTimes--);const n=this.nodes.getForCompute(e);let a=this.programs.compute.get(n.computeShader);void 0===a&&(i&&0===i.computeProgram.usedTimes&&this._releaseProgram(i.computeProgram),a=new fy(n.computeShader,"compute",e.name,n.transforms,n.nodeAttributes),this.programs.compute.set(n.computeShader,a),r.createProgram(a));const o=this._getComputeCacheKey(e,a);let u=this.caches.get(o);void 0===u&&(i&&0===i.usedTimes&&this._releasePipeline(i),u=this._getComputePipeline(e,a,o,t)),u.usedTimes++,a.usedTimes++,s.version=e.version,s.pipeline=u}return s.pipeline}getForRender(e,t=null){const{backend:r}=this,s=this.get(e);if(this._needsRenderUpdate(e)){const i=s.pipeline;i&&(i.usedTimes--,i.vertexProgram.usedTimes--,i.fragmentProgram.usedTimes--);const n=e.getNodeBuilderState(),a=e.material?e.material.name:"";let o=this.programs.vertex.get(n.vertexShader);void 0===o&&(i&&0===i.vertexProgram.usedTimes&&this._releaseProgram(i.vertexProgram),o=new fy(n.vertexShader,"vertex",a),this.programs.vertex.set(n.vertexShader,o),r.createProgram(o));let u=this.programs.fragment.get(n.fragmentShader);void 0===u&&(i&&0===i.fragmentProgram.usedTimes&&this._releaseProgram(i.fragmentProgram),u=new fy(n.fragmentShader,"fragment",a),this.programs.fragment.set(n.fragmentShader,u),r.createProgram(u));const l=this._getRenderCacheKey(e,o,u);let d=this.caches.get(l);void 0===d?(i&&0===i.usedTimes&&this._releasePipeline(i),d=this._getRenderPipeline(e,o,u,l,t)):e.pipeline=d,d.usedTimes++,o.usedTimes++,u.usedTimes++,s.pipeline=d}return s.pipeline}delete(e){const t=this.get(e).pipeline;return t&&(t.usedTimes--,0===t.usedTimes&&this._releasePipeline(t),t.isComputePipeline?(t.computeProgram.usedTimes--,0===t.computeProgram.usedTimes&&this._releaseProgram(t.computeProgram)):(t.fragmentProgram.usedTimes--,t.vertexProgram.usedTimes--,0===t.vertexProgram.usedTimes&&this._releaseProgram(t.vertexProgram),0===t.fragmentProgram.usedTimes&&this._releaseProgram(t.fragmentProgram))),super.delete(e)}dispose(){super.dispose(),this.caches=new Map,this.programs={vertex:new Map,fragment:new Map,compute:new Map}}updateForRender(e){this.getForRender(e)}_getComputePipeline(e,t,r,s){r=r||this._getComputeCacheKey(e,t);let i=this.caches.get(r);return void 0===i&&(i=new gy(r,t),this.caches.set(r,i),this.backend.createComputePipeline(i,s)),i}_getRenderPipeline(e,t,r,s,i){s=s||this._getRenderCacheKey(e,t,r);let n=this.caches.get(s);return void 0===n&&(n=new py(s,t,r),this.caches.set(s,n),e.pipeline=n,this.backend.createRenderPipeline(e,i)),n}_getComputeCacheKey(e,t){return e.id+","+t.id}_getRenderCacheKey(e,t,r){return t.id+","+r.id+","+this.backend.getRenderCacheKey(e)}_releasePipeline(e){this.caches.delete(e.cacheKey)}_releaseProgram(e){const t=e.code,r=e.stage;this.programs[r].delete(t)}_needsComputeUpdate(e){const t=this.get(e);return void 0===t.pipeline||t.version!==e.version}_needsRenderUpdate(e){return void 0===this.get(e).pipeline||this.backend.needsRenderUpdate(e)}}class by extends ty{constructor(e,t,r,s,i,n){super(),this.backend=e,this.textures=r,this.pipelines=i,this.attributes=s,this.nodes=t,this.info=n,this.pipelines.bindings=this}getForRender(e){const t=e.getBindings();for(const e of t){const r=this.get(e);void 0===r.bindGroup&&(this._init(e),this.backend.createBindings(e,t,0),r.bindGroup=e)}return t}getForCompute(e){const t=this.nodes.getForCompute(e).bindings;for(const e of t){const r=this.get(e);void 0===r.bindGroup&&(this._init(e),this.backend.createBindings(e,t,0),r.bindGroup=e)}return t}updateForCompute(e){this._updateBindings(this.getForCompute(e))}updateForRender(e){this._updateBindings(this.getForRender(e))}deleteForCompute(e){const t=this.nodes.getForCompute(e).bindings;for(const e of t)this.delete(e)}deleteForRender(e){const t=e.getBindings();for(const e of t)this.delete(e)}_updateBindings(e){for(const t of e)this._update(t,e)}_init(e){for(const t of e.bindings)if(t.isSampledTexture)this.textures.updateTexture(t.texture);else if(t.isSampler)this.textures.updateSampler(t.texture);else if(t.isStorageBuffer){const e=t.attribute,r=e.isIndirectStorageBufferAttribute?ny:iy;this.attributes.update(e,r)}}_update(e,t){const{backend:r}=this;let s=!1,i=!0,n=0,a=0;for(const t of e.bindings){if(!1!==this.nodes.updateGroup(t)){if(t.isStorageBuffer){const e=t.attribute,r=e.isIndirectStorageBufferAttribute?ny:iy;this.attributes.update(e,r)}if(t.isUniformBuffer){t.update()&&r.updateBinding(t)}else if(t.isSampledTexture){const e=t.update(),o=t.texture,u=this.textures.get(o);e&&(this.textures.updateTexture(o),t.generation!==u.generation&&(t.generation=u.generation,s=!0,i=!1));if(void 0!==r.get(o).externalTexture||u.isDefaultTexture?i=!1:(n=10*n+o.id,a+=o.version),!0===o.isStorageTexture&&!0===o.mipmapsAutoUpdate){const e=this.get(o);!0===t.store?e.needsMipmap=!0:this.textures.needsMipmaps(o)&&!0===e.needsMipmap&&(this.backend.generateMipmaps(o),e.needsMipmap=!1)}}else if(t.isSampler){if(t.update()){const e=this.textures.updateSampler(t.texture);t.samplerKey!==e&&(t.samplerKey=e,s=!0,i=!1)}}}}!0===s&&this.backend.updateBindings(e,t,i?n:0,a)}}function xy(e,t){return e.groupOrder!==t.groupOrder?e.groupOrder-t.groupOrder:e.renderOrder!==t.renderOrder?e.renderOrder-t.renderOrder:e.z!==t.z?e.z-t.z:e.id-t.id}function Ty(e,t){return e.groupOrder!==t.groupOrder?e.groupOrder-t.groupOrder:e.renderOrder!==t.renderOrder?e.renderOrder-t.renderOrder:e.z!==t.z?t.z-e.z:e.id-t.id}function _y(e){return(e.transmission>0||e.transmissionNode&&e.transmissionNode.isNode)&&e.side===C&&!1===e.forceSinglePass}class vy{constructor(e,t,r){this.renderItems=[],this.renderItemsIndex=0,this.opaque=[],this.transparentDoublePass=[],this.transparent=[],this.bundles=[],this.lightsNode=e.getNode(t,r),this.lightsArray=[],this.scene=t,this.camera=r,this.occlusionQueryCount=0}begin(){return this.renderItemsIndex=0,this.opaque.length=0,this.transparentDoublePass.length=0,this.transparent.length=0,this.bundles.length=0,this.lightsArray.length=0,this.occlusionQueryCount=0,this}getNextRenderItem(e,t,r,s,i,n,a){let o=this.renderItems[this.renderItemsIndex];return void 0===o?(o={id:e.id,object:e,geometry:t,material:r,groupOrder:s,renderOrder:e.renderOrder,z:i,group:n,clippingContext:a},this.renderItems[this.renderItemsIndex]=o):(o.id=e.id,o.object=e,o.geometry=t,o.material=r,o.groupOrder=s,o.renderOrder=e.renderOrder,o.z=i,o.group=n,o.clippingContext=a),this.renderItemsIndex++,o}push(e,t,r,s,i,n,a){const o=this.getNextRenderItem(e,t,r,s,i,n,a);!0===e.occlusionTest&&this.occlusionQueryCount++,!0===r.transparent||r.transmission>0||r.transmissionNode&&r.transmissionNode.isNode||r.backdropNode&&r.backdropNode.isNode?(_y(r)&&this.transparentDoublePass.push(o),this.transparent.push(o)):this.opaque.push(o)}unshift(e,t,r,s,i,n,a){const o=this.getNextRenderItem(e,t,r,s,i,n,a);!0===r.transparent||r.transmission>0||r.transmissionNode&&r.transmissionNode.isNode||r.backdropNode&&r.backdropNode.isNode?(_y(r)&&this.transparentDoublePass.unshift(o),this.transparent.unshift(o)):this.opaque.unshift(o)}pushBundle(e){this.bundles.push(e)}pushLight(e){this.lightsArray.push(e)}sort(e,t){this.opaque.length>1&&this.opaque.sort(e||xy),this.transparentDoublePass.length>1&&this.transparentDoublePass.sort(t||Ty),this.transparent.length>1&&this.transparent.sort(t||Ty)}finish(){this.lightsNode.setLights(this.lightsArray);for(let e=this.renderItemsIndex,t=this.renderItems.length;e>t,u=a.height>>t;let l=e.depthTexture||i[t];const d=!0===e.depthBuffer||!0===e.stencilBuffer;let c=!1;void 0===l&&d&&(l=new X,l.format=e.stencilBuffer?Ue:Oe,l.type=e.stencilBuffer?Ve:S,l.image.width=o,l.image.height=u,l.image.depth=a.depth,l.renderTarget=e,l.isArrayTexture=!0===e.multiview&&a.depth>1,i[t]=l),r.width===a.width&&a.height===r.height||(c=!0,l&&(l.needsUpdate=!0,l.image.width=o,l.image.height=u,l.image.depth=l.isArrayTexture?l.image.depth:1)),r.width=a.width,r.height=a.height,r.textures=n,r.depthTexture=l||null,r.depth=e.depthBuffer,r.stencil=e.stencilBuffer,r.renderTarget=e,r.sampleCount!==s&&(c=!0,l&&(l.needsUpdate=!0),r.sampleCount=s);const h={sampleCount:s};if(!0!==e.isXRRenderTarget){for(let e=0;e{this._destroyRenderTarget(e)},e.addEventListener("dispose",r.onDispose))}updateTexture(e,t={}){const r=this.get(e);if(!0===r.initialized&&r.version===e.version)return;const s=e.isRenderTargetTexture||e.isDepthTexture||e.isFramebufferTexture,i=this.backend;if(s&&!0===r.initialized&&i.destroyTexture(e),e.isFramebufferTexture){const t=this.renderer.getRenderTarget();e.type=t?t.texture.type:ke}const{width:n,height:a,depth:o}=this.getSize(e);if(t.width=n,t.height=a,t.depth=o,t.needsMipmaps=this.needsMipmaps(e),t.levels=t.needsMipmaps?this.getMipLevels(e,n,a):1,e.isCubeTexture&&e.mipmaps.length>0&&t.levels++,s||!0===e.isStorageTexture||!0===e.isExternalTexture)i.createTexture(e,t),r.generation=e.version;else if(e.version>0){const s=e.image;if(void 0===s)d("Renderer: Texture marked for update but image is undefined.");else if(!1===s.complete)d("Renderer: Texture marked for update but image is incomplete.");else{if(e.images){const r=[];for(const t of e.images)r.push(t);t.images=r}else t.image=s;void 0!==r.isDefaultTexture&&!0!==r.isDefaultTexture||(i.createTexture(e,t),r.isDefaultTexture=!1,r.generation=e.version),!0===e.source.dataReady&&i.updateTexture(e,t);const n=!0===e.isStorageTexture&&!1===e.mipmapsAutoUpdate;t.needsMipmaps&&0===e.mipmaps.length&&!n&&i.generateMipmaps(e),e.onUpdate&&e.onUpdate(e)}}else i.createDefaultTexture(e),r.isDefaultTexture=!0,r.generation=e.version;!0!==r.initialized&&(r.initialized=!0,r.generation=e.version,this.info.memory.textures++,e.isVideoTexture&&p.getTransfer(e.colorSpace)!==g&&d("WebGPURenderer: Video textures must use a color space with a sRGB transfer function, e.g. SRGBColorSpace."),r.onDispose=()=>{this._destroyTexture(e)},e.addEventListener("dispose",r.onDispose)),r.version=e.version}updateSampler(e){return this.backend.updateSampler(e)}getSize(e,t=Ly){let r=e.images?e.images[0]:e.image;return r?(void 0!==r.image&&(r=r.image),"undefined"!=typeof HTMLVideoElement&&r instanceof HTMLVideoElement?(t.width=r.videoWidth||1,t.height=r.videoHeight||1,t.depth=1):"undefined"!=typeof VideoFrame&&r instanceof VideoFrame?(t.width=r.displayWidth||1,t.height=r.displayHeight||1,t.depth=1):(t.width=r.width||1,t.height=r.height||1,t.depth=e.isCubeTexture?6:r.depth||1)):t.width=t.height=t.depth=1,t}getMipLevels(e,t,r){let s;return s=e.mipmaps.length>0?e.mipmaps.length:!0===e.isCompressedTexture?1:Math.floor(Math.log2(Math.max(t,r)))+1,s}needsMipmaps(e){return!0===e.generateMipmaps||e.mipmaps.length>0}_destroyRenderTarget(e){if(!0===this.has(e)){const t=this.get(e),r=t.textures,s=t.depthTexture;e.removeEventListener("dispose",t.onDispose);for(let e=0;e=2)for(let r=0;r"string"==typeof t?{name:e,type:t,atomic:!1}:{name:e,type:t.type,atomic:t.atomic||!1})),this.name=t,this.isStructLayoutNode=!0}getLength(){const e=Float32Array.BYTES_PER_ELEMENT;let t=1,r=0;for(const s of this.membersLayout){const i=s.type,n=zs(i),a=$s(i)/e;t=Math.max(t,a);const o=r%t%a;0!==o&&(r+=a-o),r+=n}return Math.ceil(r/t)*t}getMemberType(e,t){const r=this.membersLayout.find(e=>e.name===t);return r?r.type:"void"}getNodeType(e){return e.getStructTypeFromNode(this,this.membersLayout,this.name).name}setup(e){e.getStructTypeFromNode(this,this.membersLayout,this.name),e.addInclude(this)}generate(e){return this.getNodeType(e)}}class Vy extends ai{static get type(){return"StructNode"}constructor(e,t){super("vec3"),this.structTypeNode=e,this.values=t,this.isStructNode=!0}getNodeType(e){return this.structTypeNode.getNodeType(e)}getMemberType(e,t){return this.structTypeNode.getMemberType(e,t)}generate(e){const t=e.getVarFromNode(this),r=t.type,s=e.getPropertyName(t);return e.addLineFlowCode(`${s} = ${e.generateStruct(r,this.structTypeNode.membersLayout,this.values)}`,this),t.name}}class ky extends ai{static get type(){return"OutputStructNode"}constructor(...e){super(),this.members=e,this.isOutputStructNode=!0}getNodeType(e){const t=e.getNodeProperties(this);if(void 0===t.membersLayout){const r=this.members,s=[];for(let t=0;tnew Hy(e,"uint","float"),Xy={};class Ky extends eo{static get type(){return"BitcountNode"}constructor(e,t){super(e,t),this.isBitcountNode=!0}_resolveElementType(e,t,r){"int"===r?t.assign(jy(e,"uint")):t.assign(e)}_returnDataNode(e){switch(e){case"uint":return gn;case"int":return pn;case"uvec2":return bn;case"uvec3":return vn;case"uvec4":return An;case"ivec2":return yn;case"ivec3":return _n;case"ivec4":return Rn}}_createTrailingZerosBaseLayout(e,t){const r=this._returnDataNode(t);return an(([e])=>{const s=gn(0);this._resolveElementType(e,s,t);const i=hn(s.bitAnd(Bo(s))),n=qy(i).shiftRight(23).sub(127);return r(n)}).setLayout({name:e,type:t,inputs:[{name:"value",type:t}]})}_createLeadingZerosBaseLayout(e,t){const r=this._returnDataNode(t);return an(([e])=>{ln(e.equal(gn(0)),()=>gn(32));const s=gn(0),i=gn(0);return this._resolveElementType(e,s,t),ln(s.shiftRight(16).equal(0),()=>{i.addAssign(16),s.shiftLeftAssign(16)}),ln(s.shiftRight(24).equal(0),()=>{i.addAssign(8),s.shiftLeftAssign(8)}),ln(s.shiftRight(28).equal(0),()=>{i.addAssign(4),s.shiftLeftAssign(4)}),ln(s.shiftRight(30).equal(0),()=>{i.addAssign(2),s.shiftLeftAssign(2)}),ln(s.shiftRight(31).equal(0),()=>{i.addAssign(1)}),r(i)}).setLayout({name:e,type:t,inputs:[{name:"value",type:t}]})}_createOneBitsBaseLayout(e,t){const r=this._returnDataNode(t);return an(([e])=>{const s=gn(0);this._resolveElementType(e,s,t),s.assign(s.sub(s.shiftRight(gn(1)).bitAnd(gn(1431655765)))),s.assign(s.bitAnd(gn(858993459)).add(s.shiftRight(gn(2)).bitAnd(gn(858993459))));const i=s.add(s.shiftRight(gn(4))).bitAnd(gn(252645135)).mul(gn(16843009)).shiftRight(gn(24));return r(i)}).setLayout({name:e,type:t,inputs:[{name:"value",type:t}]})}_createMainLayout(e,t,r,s){const i=this._returnDataNode(t);return an(([e])=>{if(1===r)return i(s(e));{const t=i(0),n=["x","y","z","w"];for(let i=0;id(r))()}}Ky.COUNT_TRAILING_ZEROS="countTrailingZeros",Ky.COUNT_LEADING_ZEROS="countLeadingZeros",Ky.COUNT_ONE_BITS="countOneBits";const Yy=rn(Ky,Ky.COUNT_TRAILING_ZEROS).setParameterLength(1),Qy=rn(Ky,Ky.COUNT_LEADING_ZEROS).setParameterLength(1),Zy=rn(Ky,Ky.COUNT_ONE_BITS).setParameterLength(1),Jy=an(([e])=>{const t=e.toUint().mul(747796405).add(2891336453),r=t.shiftRight(t.shiftRight(28).add(4)).bitXor(t).mul(277803737);return r.shiftRight(22).bitXor(r).toFloat().mul(1/2**32)}),eb=(e,t)=>Qo(Ma(4,e.mul(Ca(1,e))),t);class tb extends li{static get type(){return"PackFloatNode"}constructor(e,t){super(),this.vectorNode=t,this.encoding=e,this.isPackFloatNode=!0}getNodeType(){return"uint"}generate(e){const t=this.vectorNode.getNodeType(e);return`${e.getFloatPackingMethod(this.encoding)}(${this.vectorNode.build(e,t)})`}}const rb=rn(tb,"snorm").setParameterLength(1),sb=rn(tb,"unorm").setParameterLength(1),ib=rn(tb,"float16").setParameterLength(1);class nb extends li{static get type(){return"UnpackFloatNode"}constructor(e,t){super(),this.uintNode=t,this.encoding=e,this.isUnpackFloatNode=!0}getNodeType(){return"vec2"}generate(e){const t=this.uintNode.getNodeType(e);return`${e.getFloatUnpackingMethod(this.encoding)}(${this.uintNode.build(e,t)})`}}const ab=rn(nb,"snorm").setParameterLength(1),ob=rn(nb,"unorm").setParameterLength(1),ub=rn(nb,"float16").setParameterLength(1),lb=an(([e])=>e.fract().sub(.5).abs()).setLayout({name:"tri",type:"float",inputs:[{name:"x",type:"float"}]}),db=an(([e])=>Tn(lb(e.z.add(lb(e.y.mul(1)))),lb(e.z.add(lb(e.x.mul(1)))),lb(e.y.add(lb(e.x.mul(1)))))).setLayout({name:"tri3",type:"vec3",inputs:[{name:"p",type:"vec3"}]}),cb=an(([e,t,r])=>{const s=Tn(e).toVar(),i=hn(1.4).toVar(),n=hn(0).toVar(),a=Tn(s).toVar();return op({start:hn(0),end:hn(3),type:"float",condition:"<="},()=>{const e=Tn(db(a.mul(2))).toVar();s.addAssign(e.add(r.mul(hn(.1).mul(t)))),a.mulAssign(1.8),i.mulAssign(1.5),s.mulAssign(1.2);const o=hn(lb(s.z.add(lb(s.x.add(lb(s.y)))))).toVar();n.addAssign(o.div(i)),a.addAssign(.14)}),n}).setLayout({name:"triNoise3D",type:"float",inputs:[{name:"position",type:"vec3"},{name:"speed",type:"float"},{name:"time",type:"float"}]});class hb extends ai{static get type(){return"FunctionOverloadingNode"}constructor(e=[],...t){super(),this.functionNodes=e,this.parametersNodes=t,this._candidateFn=null,this.global=!0}getNodeType(e){return this.getCandidateFn(e).shaderNode.layout.type}getCandidateFn(e){const t=this.parametersNodes;let r=this._candidateFn;if(null===r){let s=null,i=-1;for(const r of this.functionNodes){const n=r.shaderNode.layout;if(null===n)throw new Error("FunctionOverloadingNode: FunctionNode must be a layout.");const a=n.inputs;if(t.length===a.length){let n=0;for(let r=0;ri&&(s=r,i=n)}}this._candidateFn=r=s}return r}setup(e){return this.getCandidateFn(e)(...this.parametersNodes)}}const pb=en(hb),gb=e=>(...t)=>pb(e,...t),mb=xa(0).setGroup(fa).onRenderUpdate(e=>e.time),fb=xa(0).setGroup(fa).onRenderUpdate(e=>e.deltaTime),yb=xa(0,"uint").setGroup(fa).onRenderUpdate(e=>e.frameId);const bb=an(([e,t,r=fn(.5)])=>Ff(e.sub(r),t).add(r)),xb=an(([e,t,r=fn(.5)])=>{const s=e.sub(r),i=s.dot(s),n=i.mul(i).mul(t);return e.add(s.mul(n))}),Tb=an(({position:e=null,horizontal:t=!0,vertical:r=!1})=>{let s;null!==e?(s=xd.toVar(),s[3][0]=e.x,s[3][1]=e.y,s[3][2]=e.z):s=xd;const i=id.mul(s);return qi(t)&&(i[0][0]=xd[0].length(),i[0][1]=0,i[0][2]=0),qi(r)&&(i[1][0]=0,i[1][1]=xd[1].length(),i[1][2]=0),i[2][0]=0,i[2][1]=0,i[2][2]=1,rd.mul(i).mul(Bd)}),_b=an(([e=null])=>{const t=Pp();return Pp(Rp(e)).sub(t).lessThan(0).select(Hl,e)});class vb extends ai{static get type(){return"SpriteSheetUVNode"}constructor(e,t=Rl(),r=hn(0)){super("vec2"),this.countNode=e,this.uvNode=t,this.frameNode=r}setup(){const{frameNode:e,uvNode:t,countNode:r}=this,{width:s,height:i}=r,n=e.mod(s.mul(i)).floor(),a=n.mod(s),o=i.sub(n.add(1).div(s).ceil()),u=r.reciprocal(),l=fn(a,o);return t.add(l).mul(u)}}const Nb=en(vb).setParameterLength(3),Sb=an(([e,t=null,r=null,s=hn(1),i=Bd,n=zd])=>{let a=n.abs().normalize();a=a.div(a.dot(Tn(1)));const o=i.yz.mul(s),u=i.zx.mul(s),l=i.xy.mul(s),d=e.value,c=null!==t?t.value:d,h=null!==r?r.value:d,p=Pl(d,o).mul(a.x),g=Pl(c,u).mul(a.y),m=Pl(h,l).mul(a.z);return wa(p,g,m)}),Rb=new Ge,Ab=new r,Eb=new r,wb=new r,Cb=new a,Mb=new r(0,0,-1),Bb=new s,Lb=new r,Pb=new r,Fb=new s,Db=new t,Ib=new _e,Ub=Hl.flipX();Ib.depthTexture=new X(1,1);let Ob=!1;class Vb extends Bl{static get type(){return"ReflectorNode"}constructor(e={}){super(e.defaultTexture||Ib.texture,Ub),this._reflectorBaseNode=e.reflector||new kb(this,e),this._depthNode=null,this.setUpdateMatrix(!1)}get reflector(){return this._reflectorBaseNode}get target(){return this._reflectorBaseNode.target}getDepthNode(){if(null===this._depthNode){if(!0!==this._reflectorBaseNode.depth)throw new Error("THREE.ReflectorNode: Depth node can only be requested when the reflector is created with { depth: true }. ");this._depthNode=Yi(new Vb({defaultTexture:Ib.depthTexture,reflector:this._reflectorBaseNode}))}return this._depthNode}setup(e){return e.object.isQuadMesh||this._reflectorBaseNode.build(e),super.setup(e)}clone(){const e=new this.constructor(this.reflectorNode);return e.uvNode=this.uvNode,e.levelNode=this.levelNode,e.biasNode=this.biasNode,e.sampler=this.sampler,e.depthNode=this.depthNode,e.compareNode=this.compareNode,e.gradNode=this.gradNode,e.offsetNode=this.offsetNode,e._reflectorBaseNode=this._reflectorBaseNode,e}dispose(){super.dispose(),this._reflectorBaseNode.dispose()}}class kb extends ai{static get type(){return"ReflectorBaseNode"}constructor(e,t={}){super();const{target:r=new ze,resolutionScale:s=1,generateMipmaps:i=!1,bounces:n=!0,depth:a=!1,samples:o=0}=t;this.textureNode=e,this.target=r,this.resolutionScale=s,void 0!==t.resolution&&(v('ReflectorNode: The "resolution" parameter has been renamed to "resolutionScale".'),this.resolutionScale=t.resolution),this.generateMipmaps=i,this.bounces=n,this.depth=a,this.samples=o,this.updateBeforeType=n?Qs.RENDER:Qs.FRAME,this.virtualCameras=new WeakMap,this.renderTargets=new Map,this.forceUpdate=!1,this.hasOutput=!1}_updateResolution(e,t){const r=this.resolutionScale;t.getDrawingBufferSize(Db),e.setSize(Math.round(Db.width*r),Math.round(Db.height*r))}setup(e){return this._updateResolution(Ib,e.renderer),super.setup(e)}dispose(){super.dispose();for(const e of this.renderTargets.values())e.dispose()}getVirtualCamera(e){let t=this.virtualCameras.get(e);return void 0===t&&(t=e.clone(),this.virtualCameras.set(e,t)),t}getRenderTarget(e){let t=this.renderTargets.get(e);return void 0===t&&(t=new _e(0,0,{type:fe,samples:this.samples}),!0===this.generateMipmaps&&(t.texture.minFilter=$e,t.texture.generateMipmaps=!0),!0===this.depth&&(t.depthTexture=new X),this.renderTargets.set(e,t)),t}updateBefore(e){if(!1===this.bounces&&Ob)return!1;Ob=!0;const{scene:t,camera:r,renderer:s,material:i}=e,{target:n}=this,a=this.getVirtualCamera(r),o=this.getRenderTarget(a);s.getDrawingBufferSize(Db),this._updateResolution(o,s),Eb.setFromMatrixPosition(n.matrixWorld),wb.setFromMatrixPosition(r.matrixWorld),Cb.extractRotation(n.matrixWorld),Ab.set(0,0,1),Ab.applyMatrix4(Cb),Lb.subVectors(Eb,wb);let u=!1;if(!0===Lb.dot(Ab)>0&&!1===this.forceUpdate){if(!1===this.hasOutput)return void(Ob=!1);u=!0}Lb.reflect(Ab).negate(),Lb.add(Eb),Cb.extractRotation(r.matrixWorld),Mb.set(0,0,-1),Mb.applyMatrix4(Cb),Mb.add(wb),Pb.subVectors(Eb,Mb),Pb.reflect(Ab).negate(),Pb.add(Eb),a.coordinateSystem=r.coordinateSystem,a.position.copy(Lb),a.up.set(0,1,0),a.up.applyMatrix4(Cb),a.up.reflect(Ab),a.lookAt(Pb),a.near=r.near,a.far=r.far,a.updateMatrixWorld(),a.projectionMatrix.copy(r.projectionMatrix),Rb.setFromNormalAndCoplanarPoint(Ab,Eb),Rb.applyMatrix4(a.matrixWorldInverse),Bb.set(Rb.normal.x,Rb.normal.y,Rb.normal.z,Rb.constant);const l=a.projectionMatrix;Fb.x=(Math.sign(Bb.x)+l.elements[8])/l.elements[0],Fb.y=(Math.sign(Bb.y)+l.elements[9])/l.elements[5],Fb.z=-1,Fb.w=(1+l.elements[10])/l.elements[14],Bb.multiplyScalar(1/Bb.dot(Fb));l.elements[2]=Bb.x,l.elements[6]=Bb.y,l.elements[10]=s.coordinateSystem===h?Bb.z-0:Bb.z+1-0,l.elements[14]=Bb.w,this.textureNode.value=o.texture,!0===this.depth&&(this.textureNode.getDepthNode().value=o.depthTexture),i.visible=!1;const d=s.getRenderTarget(),c=s.getMRT(),p=s.autoClear;s.setMRT(null),s.setRenderTarget(o),s.autoClear=!0;const g=t.name;t.name=(t.name||"Scene")+" [ Reflector ]",u?(s.clear(),this.hasOutput=!1):(s.render(t,a),this.hasOutput=!0),t.name=g,s.setMRT(c),s.setRenderTarget(d),s.autoClear=p,i.visible=!0,Ob=!1,this.forceUpdate=!1}get resolution(){return v('ReflectorNode: The "resolution" property has been renamed to "resolutionScale".'),this.resolutionScale}set resolution(e){v('ReflectorNode: The "resolution" property has been renamed to "resolutionScale".'),this.resolutionScale=e}}const Gb=new xe(-1,1,1,-1,0,1);class zb extends be{constructor(e=!1){super();const t=!1===e?[0,-1,0,1,2,1]:[0,2,0,0,2,0];this.setAttribute("position",new We([-1,3,0,-1,-1,0,3,-1,0],3)),this.setAttribute("uv",new We(t,2))}}const $b=new zb;class Wb extends se{constructor(e=null){super($b,e),this.camera=Gb,this.isQuadMesh=!0}async renderAsync(e){v('QuadMesh: "renderAsync()" has been deprecated. Use "render()" and "await renderer.init();" when creating the renderer.'),await e.init(),e.render(this,Gb)}render(e){e.render(this,Gb)}}const Hb=new t;class jb extends Bl{static get type(){return"RTTNode"}constructor(e,t=null,r=null,s={type:fe}){const i=new _e(t,r,s);super(i.texture,Rl()),this.isRTTNode=!0,this.node=e,this.width=t,this.height=r,this.pixelRatio=1,this.renderTarget=i,this.textureNeedsUpdate=!0,this.autoUpdate=!0,this._rttNode=null,this._quadMesh=new Wb(new Xp),this.updateBeforeType=Qs.RENDER}get autoResize(){return null===this.width}setup(e){return this._rttNode=this.node.context(e.getSharedContext()),this._quadMesh.material.name="RTT",this._quadMesh.material.needsUpdate=!0,super.setup(e)}setSize(e,t){this.width=e,this.height=t;const r=e*this.pixelRatio,s=t*this.pixelRatio;this.renderTarget.setSize(r,s),this.textureNeedsUpdate=!0}setPixelRatio(e){this.pixelRatio=e,this.setSize(this.width,this.height)}updateBefore({renderer:e}){if(!1===this.textureNeedsUpdate&&!1===this.autoUpdate)return;if(this.textureNeedsUpdate=!1,!0===this.autoResize){const t=e.getPixelRatio(),r=e.getSize(Hb),s=Math.floor(r.width*t),i=Math.floor(r.height*t);s===this.renderTarget.width&&i===this.renderTarget.height||(this.renderTarget.setSize(s,i),this.textureNeedsUpdate=!0)}let t="RTT";this.node.name&&(t=this.node.name+" [ "+t+" ]"),this._quadMesh.material.fragmentNode=this._rttNode,this._quadMesh.name=t;const r=e.getRenderTarget();e.setRenderTarget(this.renderTarget),this._quadMesh.render(e),e.setRenderTarget(r)}clone(){const e=new Bl(this.value,this.uvNode,this.levelNode);return e.sampler=this.sampler,e.referenceNode=this,e}}const qb=(e,...t)=>Yi(new jb(Yi(e),...t)),Xb=an(([e,t,r],s)=>{let i;s.renderer.coordinateSystem===h?(e=fn(e.x,e.y.oneMinus()).mul(2).sub(1),i=Sn(Tn(e,t),1)):i=Sn(Tn(e.x,e.y.oneMinus(),t).mul(2).sub(1),1);const n=Sn(r.mul(i));return n.xyz.div(n.w)}),Kb=an(([e,t])=>{const r=t.mul(Sn(e,1)),s=r.xy.div(r.w).mul(.5).add(.5).toVar();return fn(s.x,s.y.oneMinus())}),Yb=an(([e,t,r])=>{const s=El(Fl(t)),i=yn(e.mul(s)).toVar(),n=Fl(t,i).toVar(),a=Fl(t,i.sub(yn(2,0))).toVar(),o=Fl(t,i.sub(yn(1,0))).toVar(),u=Fl(t,i.add(yn(1,0))).toVar(),l=Fl(t,i.add(yn(2,0))).toVar(),d=Fl(t,i.add(yn(0,2))).toVar(),c=Fl(t,i.add(yn(0,1))).toVar(),h=Fl(t,i.sub(yn(0,1))).toVar(),p=Fl(t,i.sub(yn(0,2))).toVar(),g=wo(Ca(hn(2).mul(o).sub(a),n)).toVar(),m=wo(Ca(hn(2).mul(u).sub(l),n)).toVar(),f=wo(Ca(hn(2).mul(c).sub(d),n)).toVar(),y=wo(Ca(hn(2).mul(h).sub(p),n)).toVar(),b=Xb(e,n,r).toVar(),x=g.lessThan(m).select(b.sub(Xb(e.sub(fn(hn(1).div(s.x),0)),o,r)),b.negate().add(Xb(e.add(fn(hn(1).div(s.x),0)),u,r))),T=f.lessThan(y).select(b.sub(Xb(e.add(fn(0,hn(1).div(s.y))),c,r)),b.negate().add(Xb(e.sub(fn(0,hn(1).div(s.y))),h,r)));return To(Yo(x,T))}),Qb=an(([e])=>_o(hn(52.9829189).mul(_o(Ko(e,fn(.06711056,.00583715)))))).setLayout({name:"interleavedGradientNoise",type:"float",inputs:[{name:"position",type:"vec2"}]}),Zb=an(([e,t,r])=>{const s=hn(2.399963229728653),i=fo(hn(e).add(.5).div(hn(t))),n=hn(e).mul(s).add(r);return fn(No(n),vo(n)).mul(i)}).setLayout({name:"vogelDiskSample",type:"vec2",inputs:[{name:"sampleIndex",type:"int"},{name:"samplesCount",type:"int"},{name:"phi",type:"float"}]});class Jb extends ai{static get type(){return"SampleNode"}constructor(e,t=null){super(),this.callback=e,this.uvNode=t,this.isSampleNode=!0}setup(){return this.sample(Rl())}sample(e){return this.callback(e)}}class ex extends ai{static get type(){return"EventNode"}constructor(e,t){super("void"),this.eventType=e,this.callback=t,e===ex.OBJECT?this.updateType=Qs.OBJECT:e===ex.MATERIAL?this.updateType=Qs.RENDER:e===ex.BEFORE_OBJECT?this.updateBeforeType=Qs.OBJECT:e===ex.BEFORE_MATERIAL&&(this.updateBeforeType=Qs.RENDER)}update(e){this.callback(e)}updateBefore(e){this.callback(e)}}ex.OBJECT="object",ex.MATERIAL="material",ex.BEFORE_OBJECT="beforeObject",ex.BEFORE_MATERIAL="beforeMaterial";const tx=(e,t)=>Yi(new ex(e,t)).toStack();class rx extends ${constructor(e,t,r=Float32Array){super(ArrayBuffer.isView(e)?e:new r(e*t),t),this.isStorageInstancedBufferAttribute=!0}}class sx extends Re{constructor(e,t,r=Float32Array){super(ArrayBuffer.isView(e)?e:new r(e*t),t),this.isStorageBufferAttribute=!0}}class ix extends ai{static get type(){return"PointUVNode"}constructor(){super("vec2"),this.isPointUVNode=!0}generate(){return"vec2( gl_PointCoord.x, 1.0 - gl_PointCoord.y )"}}const nx=tn(ix),ax=new M,ox=new a;class ux extends ai{static get type(){return"SceneNode"}constructor(e=ux.BACKGROUND_BLURRINESS,t=null){super(),this.scope=e,this.scene=t}setup(e){const t=this.scope,r=null!==this.scene?this.scene:e.scene;let s;return t===ux.BACKGROUND_BLURRINESS?s=mc("backgroundBlurriness","float",r):t===ux.BACKGROUND_INTENSITY?s=mc("backgroundIntensity","float",r):t===ux.BACKGROUND_ROTATION?s=xa("mat4").setName("backgroundRotation").setGroup(fa).onRenderUpdate(()=>{const e=r.background;return null!==e&&e.isTexture&&e.mapping!==He?(ax.copy(r.backgroundRotation),ax.x*=-1,ax.y*=-1,ax.z*=-1,ox.makeRotationFromEuler(ax)):ox.identity(),ox}):o("SceneNode: Unknown scope:",t),s}}ux.BACKGROUND_BLURRINESS="backgroundBlurriness",ux.BACKGROUND_INTENSITY="backgroundIntensity",ux.BACKGROUND_ROTATION="backgroundRotation";const lx=tn(ux,ux.BACKGROUND_BLURRINESS),dx=tn(ux,ux.BACKGROUND_INTENSITY),cx=tn(ux,ux.BACKGROUND_ROTATION);class hx extends Bl{static get type(){return"StorageTextureNode"}constructor(e,t,r=null){super(e,t),this.storeNode=r,this.mipLevel=0,this.isStorageTextureNode=!0,this.access=Js.WRITE_ONLY}getInputType(){return"storageTexture"}setup(e){super.setup(e);const t=e.getNodeProperties(this);return t.storeNode=this.storeNode,t}setAccess(e){return this.access=e,this}setMipLevel(e){return this.mipLevel=e,this}generate(e,t){let r;return r=null!==this.storeNode?this.generateStore(e):super.generate(e,t),r}toReadWrite(){return this.setAccess(Js.READ_WRITE)}toReadOnly(){return this.setAccess(Js.READ_ONLY)}toWriteOnly(){return this.setAccess(Js.WRITE_ONLY)}generateStore(e){const t=e.getNodeProperties(this),{uvNode:r,storeNode:s,depthNode:i}=t,n=super.generate(e,"property"),a=r.build(e,!0===this.value.is3DTexture?"uvec3":"uvec2"),o=s.build(e,"vec4"),u=i?i.build(e,"int"):null,l=e.generateTextureStore(e,n,a,u,o);e.addLineFlowCode(l,this)}clone(){const e=super.clone();return e.storeNode=this.storeNode,e.mipLevel=this.mipLevel,e}}const px=en(hx).setParameterLength(1,3),gx=an(({texture:e,uv:t})=>{const r=1e-4,s=Tn().toVar();return ln(t.x.lessThan(r),()=>{s.assign(Tn(1,0,0))}).ElseIf(t.y.lessThan(r),()=>{s.assign(Tn(0,1,0))}).ElseIf(t.z.lessThan(r),()=>{s.assign(Tn(0,0,1))}).ElseIf(t.x.greaterThan(.9999),()=>{s.assign(Tn(-1,0,0))}).ElseIf(t.y.greaterThan(.9999),()=>{s.assign(Tn(0,-1,0))}).ElseIf(t.z.greaterThan(.9999),()=>{s.assign(Tn(0,0,-1))}).Else(()=>{const r=.01,i=e.sample(t.add(Tn(-.01,0,0))).r.sub(e.sample(t.add(Tn(r,0,0))).r),n=e.sample(t.add(Tn(0,-.01,0))).r.sub(e.sample(t.add(Tn(0,r,0))).r),a=e.sample(t.add(Tn(0,0,-.01))).r.sub(e.sample(t.add(Tn(0,0,r))).r);s.assign(Tn(i,n,a))}),s.normalize()});class mx extends Bl{static get type(){return"Texture3DNode"}constructor(e,t=null,r=null){super(e,t,r),this.isTexture3DNode=!0}getInputType(){return"texture3D"}getDefaultUV(){return Tn(.5,.5,.5)}setUpdateMatrix(){}setupUV(e,t){const r=this.value;return!e.isFlipY()||!0!==r.isRenderTargetTexture&&!0!==r.isFramebufferTexture||(t=this.sampler?t.flipY():t.setY(pn(El(this,this.levelNode).y).sub(t.y).sub(1))),t}generateUV(e,t){return t.build(e,!0===this.sampler?"vec3":"ivec3")}generateOffset(e,t){return t.build(e,"ivec3")}normal(e){return gx({texture:this,uv:e})}}const fx=en(mx).setParameterLength(1,3);class yx extends gc{static get type(){return"UserDataNode"}constructor(e,t,r=null){super(e,t,r),this.userData=r}updateReference(e){return this.reference=null!==this.userData?this.userData:e.object.userData,this.reference}}const bx=new WeakMap;class xx extends li{static get type(){return"VelocityNode"}constructor(){super("vec2"),this.projectionMatrix=null,this.updateType=Qs.OBJECT,this.updateAfterType=Qs.OBJECT,this.previousModelWorldMatrix=xa(new a),this.previousProjectionMatrix=xa(new a).setGroup(fa),this.previousCameraViewMatrix=xa(new a)}setProjectionMatrix(e){this.projectionMatrix=e}update({frameId:e,camera:t,object:r}){const s=_x(r);this.previousModelWorldMatrix.value.copy(s);const i=Tx(t);i.frameId!==e&&(i.frameId=e,void 0===i.previousProjectionMatrix?(i.previousProjectionMatrix=new a,i.previousCameraViewMatrix=new a,i.currentProjectionMatrix=new a,i.currentCameraViewMatrix=new a,i.previousProjectionMatrix.copy(this.projectionMatrix||t.projectionMatrix),i.previousCameraViewMatrix.copy(t.matrixWorldInverse)):(i.previousProjectionMatrix.copy(i.currentProjectionMatrix),i.previousCameraViewMatrix.copy(i.currentCameraViewMatrix)),i.currentProjectionMatrix.copy(this.projectionMatrix||t.projectionMatrix),i.currentCameraViewMatrix.copy(t.matrixWorldInverse),this.previousProjectionMatrix.value.copy(i.previousProjectionMatrix),this.previousCameraViewMatrix.value.copy(i.previousCameraViewMatrix))}updateAfter({object:e}){_x(e).copy(e.matrixWorld)}setup(){const e=null===this.projectionMatrix?rd:xa(this.projectionMatrix),t=this.previousCameraViewMatrix.mul(this.previousModelWorldMatrix),r=e.mul(Ad).mul(Bd),s=this.previousProjectionMatrix.mul(t).mul(Ld),i=r.xy.div(r.w),n=s.xy.div(s.w);return Ca(i,n)}}function Tx(e){let t=bx.get(e);return void 0===t&&(t={},bx.set(e,t)),t}function _x(e,t=0){const r=Tx(e);let s=r[t];return void 0===s&&(r[t]=s=new a,r[t].copy(e.matrixWorld)),s}const vx=tn(xx),Nx=an(([e])=>Ex(e.rgb)),Sx=an(([e,t=hn(1)])=>t.mix(Ex(e.rgb),e.rgb)),Rx=an(([e,t=hn(1)])=>{const r=wa(e.r,e.g,e.b).div(3),s=e.r.max(e.g.max(e.b)),i=s.sub(r).mul(t).mul(-3);return iu(e.rgb,s,i)}),Ax=an(([e,t=hn(1)])=>{const r=Tn(.57735,.57735,.57735),s=t.cos();return Tn(e.rgb.mul(s).add(r.cross(e.rgb).mul(t.sin()).add(r.mul(Ko(r,e.rgb).mul(s.oneMinus())))))}),Ex=(e,t=Tn(p.getLuminanceCoefficients(new r)))=>Ko(e,t),wx=an(([e,t=Tn(1),s=Tn(0),i=Tn(1),n=hn(1),a=Tn(p.getLuminanceCoefficients(new r,ve))])=>{const o=e.rgb.dot(Tn(a)),u=Wo(e.rgb.mul(t).add(s),0).toVar(),l=u.pow(i).toVar();return ln(u.r.greaterThan(0),()=>{u.r.assign(l.r)}),ln(u.g.greaterThan(0),()=>{u.g.assign(l.g)}),ln(u.b.greaterThan(0),()=>{u.b.assign(l.b)}),u.assign(o.add(u.sub(o).mul(n))),Sn(u.rgb,e.a)});class Cx extends li{static get type(){return"PosterizeNode"}constructor(e,t){super(),this.sourceNode=e,this.stepsNode=t}setup(){const{sourceNode:e,stepsNode:t}=this;return e.mul(t).floor().div(t)}}const Mx=en(Cx).setParameterLength(2),Bx=new t;class Lx extends Bl{static get type(){return"PassTextureNode"}constructor(e,t){super(t),this.passNode=e,this.setUpdateMatrix(!1)}setup(e){return this.passNode.build(e),super.setup(e)}clone(){return new this.constructor(this.passNode,this.value)}}class Px extends Lx{static get type(){return"PassMultipleTextureNode"}constructor(e,t,r=!1){super(e,null),this.textureName=t,this.previousTexture=r}updateTexture(){this.value=this.previousTexture?this.passNode.getPreviousTexture(this.textureName):this.passNode.getTexture(this.textureName)}setup(e){return this.updateTexture(),super.setup(e)}clone(){const e=new this.constructor(this.passNode,this.textureName,this.previousTexture);return e.uvNode=this.uvNode,e.levelNode=this.levelNode,e.biasNode=this.biasNode,e.sampler=this.sampler,e.depthNode=this.depthNode,e.compareNode=this.compareNode,e.gradNode=this.gradNode,e.offsetNode=this.offsetNode,e}}class Fx extends li{static get type(){return"PassNode"}constructor(e,t,r,s={}){super("vec4"),this.scope=e,this.scene=t,this.camera=r,this.options=s,this._pixelRatio=1,this._width=1,this._height=1;const i=new X;i.isRenderTargetTexture=!0,i.name="depth";const n=new _e(this._width*this._pixelRatio,this._height*this._pixelRatio,{type:fe,...s});n.texture.name="output",n.depthTexture=i,this.renderTarget=n,this.overrideMaterial=null,this.transparent=!0,this.opaque=!0,this.contextNode=null,this._contextNodeCache=null,this._textures={output:n.texture,depth:i},this._textureNodes={},this._linearDepthNodes={},this._viewZNodes={},this._previousTextures={},this._previousTextureNodes={},this._cameraNear=xa(0),this._cameraFar=xa(0),this._mrt=null,this._layers=null,this._resolutionScale=1,this._viewport=null,this._scissor=null,this.isPassNode=!0,this.updateBeforeType=Qs.FRAME,this.global=!0}setResolutionScale(e){return this._resolutionScale=e,this}getResolutionScale(){return this._resolutionScale}setResolution(e){return d("PassNode: .setResolution() is deprecated. Use .setResolutionScale() instead."),this.setResolutionScale(e)}getResolution(){return d("PassNode: .getResolution() is deprecated. Use .getResolutionScale() instead."),this.getResolutionScale()}setLayers(e){return this._layers=e,this}getLayers(){return this._layers}setMRT(e){return this._mrt=e,this}getMRT(){return this._mrt}getTexture(e){let t=this._textures[e];if(void 0===t){t=this.renderTarget.texture.clone(),t.name=e,this._textures[e]=t,this.renderTarget.textures.push(t)}return t}getPreviousTexture(e){let t=this._previousTextures[e];return void 0===t&&(t=this.getTexture(e).clone(),this._previousTextures[e]=t),t}toggleTexture(e){const t=this._previousTextures[e];if(void 0!==t){const r=this._textures[e],s=this.renderTarget.textures.indexOf(r);this.renderTarget.textures[s]=t,this._textures[e]=t,this._previousTextures[e]=r,this._textureNodes[e].updateTexture(),this._previousTextureNodes[e].updateTexture()}}getTextureNode(e="output"){let t=this._textureNodes[e];return void 0===t&&(t=Yi(new Px(this,e)),t.updateTexture(),this._textureNodes[e]=t),t}getPreviousTextureNode(e="output"){let t=this._previousTextureNodes[e];return void 0===t&&(void 0===this._textureNodes[e]&&this.getTextureNode(e),t=Yi(new Px(this,e,!0)),t.updateTexture(),this._previousTextureNodes[e]=t),t}getViewZNode(e="depth"){let t=this._viewZNodes[e];if(void 0===t){const r=this._cameraNear,s=this._cameraFar;this._viewZNodes[e]=t=Cp(this.getTextureNode(e),r,s)}return t}getLinearDepthNode(e="depth"){let t=this._linearDepthNodes[e];if(void 0===t){const r=this._cameraNear,s=this._cameraFar,i=this.getViewZNode(e);this._linearDepthNodes[e]=t=Ep(i,r,s)}return t}async compileAsync(e){const t=e.getRenderTarget(),r=e.getMRT();e.setRenderTarget(this.renderTarget),e.setMRT(this._mrt),await e.compileAsync(this.scene,this.camera),e.setRenderTarget(t),e.setMRT(r)}setup({renderer:e}){return this.renderTarget.samples=void 0===this.options.samples?e.samples:this.options.samples,this.renderTarget.texture.type=e.getColorBufferType(),this.scope===Fx.COLOR?this.getTextureNode():this.getLinearDepthNode()}updateBefore(e){const{renderer:t}=e,{scene:r}=this;let s,i;const n=t.getOutputRenderTarget();n&&!0===n.isXRRenderTarget?(i=1,s=t.xr.getCamera(),t.xr.updateCamera(s),Bx.set(n.width,n.height)):(s=this.camera,i=t.getPixelRatio(),t.getSize(Bx)),this._pixelRatio=i,this.setSize(Bx.width,Bx.height);const a=t.getRenderTarget(),o=t.getMRT(),u=t.autoClear,l=t.transparent,d=t.opaque,c=s.layers.mask,h=t.contextNode,p=r.overrideMaterial;this._cameraNear.value=s.near,this._cameraFar.value=s.far,null!==this._layers&&(s.layers.mask=this._layers.mask);for(const e in this._previousTextures)this.toggleTexture(e);null!==this.overrideMaterial&&(r.overrideMaterial=this.overrideMaterial),t.setRenderTarget(this.renderTarget),t.setMRT(this._mrt),t.autoClear=!0,t.transparent=this.transparent,t.opaque=this.opaque,null!==this.contextNode&&(null!==this._contextNodeCache&&this._contextNodeCache.version===this.version||(this._contextNodeCache={version:this.version,context:Tu({...t.contextNode.getFlowContextData(),...this.contextNode.getFlowContextData()})}),t.contextNode=this._contextNodeCache.context);const g=r.name;r.name=this.name?this.name:r.name,t.render(r,s),r.name=g,r.overrideMaterial=p,t.setRenderTarget(a),t.setMRT(o),t.autoClear=u,t.transparent=l,t.opaque=d,t.contextNode=h,s.layers.mask=c}setSize(e,t){this._width=e,this._height=t;const r=Math.floor(this._width*this._pixelRatio*this._resolutionScale),s=Math.floor(this._height*this._pixelRatio*this._resolutionScale);this.renderTarget.setSize(r,s),null!==this._scissor&&this.renderTarget.scissor.copy(this._scissor),null!==this._viewport&&this.renderTarget.viewport.copy(this._viewport)}setScissor(e,t,r,i){null===e?this._scissor=null:(null===this._scissor&&(this._scissor=new s),e.isVector4?this._scissor.copy(e):this._scissor.set(e,t,r,i),this._scissor.multiplyScalar(this._pixelRatio*this._resolutionScale).floor())}setViewport(e,t,r,i){null===e?this._viewport=null:(null===this._viewport&&(this._viewport=new s),e.isVector4?this._viewport.copy(e):this._viewport.set(e,t,r,i),this._viewport.multiplyScalar(this._pixelRatio*this._resolutionScale).floor())}setPixelRatio(e){this._pixelRatio=e,this.setSize(this._width,this._height)}dispose(){this.renderTarget.dispose()}}Fx.COLOR="color",Fx.DEPTH="depth";class Dx extends Fx{static get type(){return"ToonOutlinePassNode"}constructor(e,t,r,s,i){super(Fx.COLOR,e,t),this.colorNode=r,this.thicknessNode=s,this.alphaNode=i,this._materialCache=new WeakMap,this.name="Outline Pass"}updateBefore(e){const{renderer:t}=e,r=t.getRenderObjectFunction();t.setRenderObjectFunction((e,r,s,i,n,a,o,u)=>{if((n.isMeshToonMaterial||n.isMeshToonNodeMaterial)&&!1===n.wireframe){const l=this._getOutlineMaterial(n);t.renderObject(e,r,s,i,l,a,o,u)}t.renderObject(e,r,s,i,n,a,o,u)}),super.updateBefore(e),t.setRenderObjectFunction(r)}_createMaterial(){const e=new Xp;e.isMeshToonOutlineMaterial=!0,e.name="Toon_Outline",e.side=w;const t=zd.negate(),r=rd.mul(Ad),s=hn(1),i=r.mul(Sn(Bd,1)),n=r.mul(Sn(Bd.add(t),1)),a=To(i.sub(n));return e.vertexNode=i.add(a.mul(this.thicknessNode).mul(i.w).mul(s)),e.colorNode=Sn(this.colorNode,this.alphaNode),e}_getOutlineMaterial(e){let t=this._materialCache.get(e);return void 0===t&&(t=this._createMaterial(),this._materialCache.set(e,t)),t}}const Ix=an(([e,t])=>e.mul(t).clamp()).setLayout({name:"linearToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]}),Ux=an(([e,t])=>(e=e.mul(t)).div(e.add(1)).clamp()).setLayout({name:"reinhardToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]}),Ox=an(([e,t])=>{const r=(e=(e=e.mul(t)).sub(.004).max(0)).mul(e.mul(6.2).add(.5)),s=e.mul(e.mul(6.2).add(1.7)).add(.06);return r.div(s).pow(2.2)}).setLayout({name:"cineonToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]}),Vx=an(([e])=>{const t=e.mul(e.add(.0245786)).sub(90537e-9),r=e.mul(e.add(.432951).mul(.983729)).add(.238081);return t.div(r)}),kx=an(([e,t])=>{const r=Cn(.59719,.35458,.04823,.076,.90834,.01566,.0284,.13383,.83777),s=Cn(1.60475,-.53108,-.07367,-.10208,1.10813,-.00605,-.00327,-.07276,1.07602);return e=e.mul(t).div(.6),e=r.mul(e),e=Vx(e),(e=s.mul(e)).clamp()}).setLayout({name:"acesFilmicToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]}),Gx=Cn(Tn(1.6605,-.1246,-.0182),Tn(-.5876,1.1329,-.1006),Tn(-.0728,-.0083,1.1187)),zx=Cn(Tn(.6274,.0691,.0164),Tn(.3293,.9195,.088),Tn(.0433,.0113,.8956)),$x=an(([e])=>{const t=Tn(e).toVar(),r=Tn(t.mul(t)).toVar(),s=Tn(r.mul(r)).toVar();return hn(15.5).mul(s.mul(r)).sub(Ma(40.14,s.mul(t))).add(Ma(31.96,s).sub(Ma(6.868,r.mul(t))).add(Ma(.4298,r).add(Ma(.1191,t).sub(.00232))))}),Wx=an(([e,t])=>{const r=Tn(e).toVar(),s=Cn(Tn(.856627153315983,.137318972929847,.11189821299995),Tn(.0951212405381588,.761241990602591,.0767994186031903),Tn(.0482516061458583,.101439036467562,.811302368396859)),i=Cn(Tn(1.1271005818144368,-.1413297634984383,-.14132976349843826),Tn(-.11060664309660323,1.157823702216272,-.11060664309660294),Tn(-.016493938717834573,-.016493938717834257,1.2519364065950405)),n=hn(-12.47393),a=hn(4.026069);return r.mulAssign(t),r.assign(zx.mul(r)),r.assign(s.mul(r)),r.assign(Wo(r,1e-10)),r.assign(mo(r)),r.assign(r.sub(n).div(a.sub(n))),r.assign(nu(r,0,1)),r.assign($x(r)),r.assign(i.mul(r)),r.assign(Qo(Wo(Tn(0),r),Tn(2.2))),r.assign(Gx.mul(r)),r.assign(nu(r,0,1)),r}).setLayout({name:"agxToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]}),Hx=an(([e,t])=>{const r=hn(.76),s=hn(.15);e=e.mul(t);const i=$o(e.r,$o(e.g,e.b)),n=bu(i.lessThan(.08),i.sub(Ma(6.25,i.mul(i))),.04);e.subAssign(n);const a=Wo(e.r,Wo(e.g,e.b));ln(a.lessThan(r),()=>e);const o=Ca(1,r),u=Ca(1,o.mul(o).div(a.add(o.sub(r))));e.mulAssign(u.div(a));const l=Ca(1,Ba(1,s.mul(a.sub(u)).add(1)));return iu(e,Tn(u),l)}).setLayout({name:"neutralToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]});class jx extends ai{static get type(){return"CodeNode"}constructor(e="",t=[],r=""){super("code"),this.isCodeNode=!0,this.global=!0,this.code=e,this.includes=t,this.language=r}setIncludes(e){return this.includes=e,this}getIncludes(){return this.includes}generate(e){const t=this.getIncludes(e);for(const r of t)r.build(e);const r=e.getCodeFromNode(this,this.getNodeType(e));return r.code=this.code,r.code}serialize(e){super.serialize(e),e.code=this.code,e.language=this.language}deserialize(e){super.deserialize(e),this.code=e.code,this.language=e.language}}const qx=en(jx).setParameterLength(1,3);class Xx extends jx{static get type(){return"FunctionNode"}constructor(e="",t=[],r=""){super(e,t,r)}getNodeType(e){return this.getNodeFunction(e).type}getMemberType(e,t){const r=this.getNodeType(e);return e.getStructTypeNode(r).getMemberType(e,t)}getInputs(e){return this.getNodeFunction(e).inputs}getNodeFunction(e){const t=e.getDataFromNode(this);let r=t.nodeFunction;return void 0===r&&(r=e.parser.parseFunction(this.code),t.nodeFunction=r),r}generate(e,t){super.generate(e);const r=this.getNodeFunction(e),s=r.name,i=r.type,n=e.getCodeFromNode(this,i);""!==s&&(n.name=s);const a=e.getPropertyName(n),o=this.getNodeFunction(e).getCode(a);return n.code=o+"\n","property"===t?a:e.format(`${a}()`,i,t)}}const Kx=(e,t=[],r="")=>{for(let e=0;es.call(...e);return i.functionNode=s,i};class Yx extends ai{static get type(){return"ScriptableValueNode"}constructor(e=null){super(),this._value=e,this._cache=null,this.inputType=null,this.outputType=null,this.events=new u,this.isScriptableValueNode=!0}get isScriptableOutputNode(){return null!==this.outputType}set value(e){this._value!==e&&(this._cache&&"URL"===this.inputType&&this.value.value instanceof ArrayBuffer&&(URL.revokeObjectURL(this._cache),this._cache=null),this._value=e,this.events.dispatchEvent({type:"change"}),this.refresh())}get value(){return this._value}refresh(){this.events.dispatchEvent({type:"refresh"})}getValue(){const e=this.value;if(e&&null===this._cache&&"URL"===this.inputType&&e.value instanceof ArrayBuffer)this._cache=URL.createObjectURL(new Blob([e.value]));else if(e&&null!==e.value&&void 0!==e.value&&(("URL"===this.inputType||"String"===this.inputType)&&"string"==typeof e.value||"Number"===this.inputType&&"number"==typeof e.value||"Vector2"===this.inputType&&e.value.isVector2||"Vector3"===this.inputType&&e.value.isVector3||"Vector4"===this.inputType&&e.value.isVector4||"Color"===this.inputType&&e.value.isColor||"Matrix3"===this.inputType&&e.value.isMatrix3||"Matrix4"===this.inputType&&e.value.isMatrix4))return e.value;return this._cache||e}getNodeType(e){return this.value&&this.value.isNode?this.value.getNodeType(e):"float"}setup(){return this.value&&this.value.isNode?this.value:hn()}serialize(e){super.serialize(e),null!==this.value?"ArrayBuffer"===this.inputType?e.value=qs(this.value):e.value=this.value?this.value.toJSON(e.meta).uuid:null:e.value=null,e.inputType=this.inputType,e.outputType=this.outputType}deserialize(e){super.deserialize(e);let t=null;null!==e.value&&(t="ArrayBuffer"===e.inputType?Xs(e.value):"Texture"===e.inputType?e.meta.textures[e.value]:e.meta.nodes[e.value]||null),this.value=t,this.inputType=e.inputType,this.outputType=e.outputType}}const Qx=en(Yx).setParameterLength(1);class Zx extends Map{get(e,t=null,...r){if(this.has(e))return super.get(e);if(null!==t){const s=t(...r);return this.set(e,s),s}}}class Jx{constructor(e){this.scriptableNode=e}get parameters(){return this.scriptableNode.parameters}get layout(){return this.scriptableNode.getLayout()}getInputLayout(e){return this.scriptableNode.getInputLayout(e)}get(e){const t=this.parameters[e];return t?t.getValue():null}}const eT=new Zx;class tT extends ai{static get type(){return"ScriptableNode"}constructor(e=null,t={}){super(),this.codeNode=e,this.parameters=t,this._local=new Zx,this._output=Qx(null),this._outputs={},this._source=this.source,this._method=null,this._object=null,this._value=null,this._needsOutputUpdate=!0,this.onRefresh=this.onRefresh.bind(this),this.isScriptableNode=!0}get source(){return this.codeNode?this.codeNode.code:""}setLocal(e,t){return this._local.set(e,t)}getLocal(e){return this._local.get(e)}onRefresh(){this._refresh()}getInputLayout(e){for(const t of this.getLayout())if(t.inputType&&(t.id===e||t.name===e))return t}getOutputLayout(e){for(const t of this.getLayout())if(t.outputType&&(t.id===e||t.name===e))return t}setOutput(e,t){const r=this._outputs;return void 0===r[e]?r[e]=Qx(t):r[e].value=t,this}getOutput(e){return this._outputs[e]}getParameter(e){return this.parameters[e]}setParameter(e,t){const r=this.parameters;return t&&t.isScriptableNode?(this.deleteParameter(e),r[e]=t,r[e].getDefaultOutput().events.addEventListener("refresh",this.onRefresh)):t&&t.isScriptableValueNode?(this.deleteParameter(e),r[e]=t,r[e].events.addEventListener("refresh",this.onRefresh)):void 0===r[e]?(r[e]=Qx(t),r[e].events.addEventListener("refresh",this.onRefresh)):r[e].value=t,this}getValue(){return this.getDefaultOutput().getValue()}deleteParameter(e){let t=this.parameters[e];return t&&(t.isScriptableNode&&(t=t.getDefaultOutput()),t.events.removeEventListener("refresh",this.onRefresh)),this}clearParameters(){for(const e of Object.keys(this.parameters))this.deleteParameter(e);return this.needsUpdate=!0,this}call(e,...t){const r=this.getObject()[e];if("function"==typeof r)return r(...t)}async callAsync(e,...t){const r=this.getObject()[e];if("function"==typeof r)return"AsyncFunction"===r.constructor.name?await r(...t):r(...t)}getNodeType(e){return this.getDefaultOutputNode().getNodeType(e)}refresh(e=null){null!==e?this.getOutput(e).refresh():this._refresh()}getObject(){if(this.needsUpdate&&this.dispose(),null!==this._object)return this._object;const e=new Jx(this),t=eT.get("THREE"),r=eT.get("TSL"),s=this.getMethod(),i=[e,this._local,eT,()=>this.refresh(),(e,t)=>this.setOutput(e,t),t,r];this._object=s(...i);const n=this._object.layout;if(n&&(!1===n.cache&&this._local.clear(),this._output.outputType=n.outputType||null,Array.isArray(n.elements)))for(const e of n.elements){const t=e.id||e.name;e.inputType&&(void 0===this.getParameter(t)&&this.setParameter(t,null),this.getParameter(t).inputType=e.inputType),e.outputType&&(void 0===this.getOutput(t)&&this.setOutput(t,null),this.getOutput(t).outputType=e.outputType)}return this._object}deserialize(e){super.deserialize(e);for(const e in this.parameters){let t=this.parameters[e];t.isScriptableNode&&(t=t.getDefaultOutput()),t.events.addEventListener("refresh",this.onRefresh)}}getLayout(){return this.getObject().layout}getDefaultOutputNode(){const e=this.getDefaultOutput().value;return e&&e.isNode?e:hn()}getDefaultOutput(){return this._exec()._output}getMethod(){if(this.needsUpdate&&this.dispose(),null!==this._method)return this._method;const e=["layout","init","main","dispose"].join(", "),t="\nreturn { ...output, "+e+" };",r="var "+e+"; var output = {};\n"+this.codeNode.code+t;return this._method=new Function(...["parameters","local","global","refresh","setOutput","THREE","TSL"],r),this._method}dispose(){null!==this._method&&(this._object&&"function"==typeof this._object.dispose&&this._object.dispose(),this._method=null,this._object=null,this._source=null,this._value=null,this._needsOutputUpdate=!0,this._output.value=null,this._outputs={})}setup(){return this.getDefaultOutputNode()}getCacheKey(e){const t=[Fs(this.source),this.getDefaultOutputNode().getCacheKey(e)];for(const r in this.parameters)t.push(this.parameters[r].getCacheKey(e));return Ds(t)}set needsUpdate(e){!0===e&&this.dispose()}get needsUpdate(){return this.source!==this._source}_exec(){return null===this.codeNode||(!0===this._needsOutputUpdate&&(this._value=this.call("main"),this._needsOutputUpdate=!1),this._output.value=this._value),this}_refresh(){this.needsUpdate=!0,this._exec(),this._output.refresh()}}const rT=en(tT).setParameterLength(1,2);function sT(e){let t;const r=e.context.getViewZ;return void 0!==r&&(t=r(this)),(t||Dd.z).negate()}const iT=an(([e,t],r)=>{const s=sT(r);return uu(e,t,s)}),nT=an(([e],t)=>{const r=sT(t);return e.mul(e,r,r).negate().exp().oneMinus()}),aT=an(([e,t])=>Sn(t.toFloat().mix(ra.rgb,e.toVec3()),ra.a));let oT=null,uT=null;class lT extends ai{static get type(){return"RangeNode"}constructor(e=hn(),t=hn()){super(),this.minNode=e,this.maxNode=t}getVectorLength(e){const t=this.getConstNode(this.minNode),r=this.getConstNode(this.maxNode),s=e.getTypeLength(Ws(t.value)),i=e.getTypeLength(Ws(r.value));return s>i?s:i}getNodeType(e){return e.object.count>1?e.getTypeFromLength(this.getVectorLength(e)):"float"}getConstNode(e){let t=null;if(e.traverse(e=>{!0===e.isConstNode&&(t=e)}),null===t)throw new Error('THREE.TSL: No "ConstNode" found in node graph.');return t}setup(e){const t=e.object;let r=null;if(t.count>1){const i=this.getConstNode(this.minNode),n=this.getConstNode(this.maxNode),a=i.value,o=n.value,u=e.getTypeLength(Ws(a)),d=e.getTypeLength(Ws(o));oT=oT||new s,uT=uT||new s,oT.setScalar(0),uT.setScalar(0),1===u?oT.setScalar(a):a.isColor?oT.set(a.r,a.g,a.b,1):oT.set(a.x,a.y,a.z||0,a.w||0),1===d?uT.setScalar(o):o.isColor?uT.set(o.r,o.g,o.b,1):uT.set(o.x,o.y,o.z||0,o.w||0);const c=4,h=c*t.count,p=new Float32Array(h);for(let e=0;eYi(new cT(e,t)),pT=hT("numWorkgroups","uvec3"),gT=hT("workgroupId","uvec3"),mT=hT("globalId","uvec3"),fT=hT("localId","uvec3"),yT=hT("subgroupSize","uint");const bT=en(class extends ai{constructor(e){super(),this.scope=e}generate(e){const{scope:t}=this,{renderer:r}=e;!0===r.backend.isWebGLBackend?e.addFlowCode(`\t// ${t}Barrier \n`):e.addLineFlowCode(`${t}Barrier()`,this)}});class xT extends oi{constructor(e,t){super(e,t),this.isWorkgroupInfoElementNode=!0}generate(e,t){let r;const s=e.context.assign;if(r=super.generate(e),!0!==s){const s=this.getNodeType(e);r=e.format(r,s,t)}return r}}class TT extends ai{constructor(e,t,r=0){super(t),this.bufferType=t,this.bufferCount=r,this.isWorkgroupInfoNode=!0,this.elementType=t,this.scope=e,this.name=""}setName(e){return this.name=e,this}label(e){return d('TSL: "label()" has been deprecated. Use "setName()" instead.'),this.setName(e)}setScope(e){return this.scope=e,this}getElementType(){return this.elementType}getInputType(){return`${this.scope}Array`}element(e){return Yi(new xT(this,e))}generate(e){const t=""!==this.name?this.name:`${this.scope}Array_${this.id}`;return e.getScopedArray(t,this.scope.toLowerCase(),this.bufferType,this.bufferCount)}}class _T extends ai{static get type(){return"AtomicFunctionNode"}constructor(e,t,r){super("uint"),this.method=e,this.pointerNode=t,this.valueNode=r,this.parents=!0}getInputType(e){return this.pointerNode.getNodeType(e)}getNodeType(e){return this.getInputType(e)}generate(e){const t=e.getNodeProperties(this),r=t.parents,s=this.method,i=this.getNodeType(e),n=this.getInputType(e),a=this.pointerNode,o=this.valueNode,u=[];u.push(`&${a.build(e,n)}`),null!==o&&u.push(o.build(e,n));const l=`${e.getMethod(s,i)}( ${u.join(", ")} )`;if(!(!!r&&(1===r.length&&!0===r[0].isStackNode)))return void 0===t.constNode&&(t.constNode=gl(l,i).toConst()),t.constNode.build(e);e.addLineFlowCode(l,this)}}_T.ATOMIC_LOAD="atomicLoad",_T.ATOMIC_STORE="atomicStore",_T.ATOMIC_ADD="atomicAdd",_T.ATOMIC_SUB="atomicSub",_T.ATOMIC_MAX="atomicMax",_T.ATOMIC_MIN="atomicMin",_T.ATOMIC_AND="atomicAnd",_T.ATOMIC_OR="atomicOr",_T.ATOMIC_XOR="atomicXor";const vT=en(_T),NT=(e,t,r)=>vT(e,t,r).toStack();class ST extends li{static get type(){return"SubgroupFunctionNode"}constructor(e,t=null,r=null){super(),this.method=e,this.aNode=t,this.bNode=r}getInputType(e){const t=this.aNode?this.aNode.getNodeType(e):null,r=this.bNode?this.bNode.getNodeType(e):null;return(e.isMatrix(t)?0:e.getTypeLength(t))>(e.isMatrix(r)?0:e.getTypeLength(r))?t:r}getNodeType(e){const t=this.method;return t===ST.SUBGROUP_ELECT?"bool":t===ST.SUBGROUP_BALLOT?"uvec4":this.getInputType(e)}generate(e,t){const r=this.method,s=this.getNodeType(e),i=this.getInputType(e),n=this.aNode,a=this.bNode,o=[];if(r===ST.SUBGROUP_BROADCAST||r===ST.SUBGROUP_SHUFFLE||r===ST.QUAD_BROADCAST){const t=a.getNodeType(e);o.push(n.build(e,s),a.build(e,"float"===t?"int":s))}else r===ST.SUBGROUP_SHUFFLE_XOR||r===ST.SUBGROUP_SHUFFLE_DOWN||r===ST.SUBGROUP_SHUFFLE_UP?o.push(n.build(e,s),a.build(e,"uint")):(null!==n&&o.push(n.build(e,i)),null!==a&&o.push(a.build(e,i)));const u=0===o.length?"()":`( ${o.join(", ")} )`;return e.format(`${e.getMethod(r,s)}${u}`,s,t)}serialize(e){super.serialize(e),e.method=this.method}deserialize(e){super.deserialize(e),this.method=e.method}}ST.SUBGROUP_ELECT="subgroupElect",ST.SUBGROUP_BALLOT="subgroupBallot",ST.SUBGROUP_ADD="subgroupAdd",ST.SUBGROUP_INCLUSIVE_ADD="subgroupInclusiveAdd",ST.SUBGROUP_EXCLUSIVE_AND="subgroupExclusiveAdd",ST.SUBGROUP_MUL="subgroupMul",ST.SUBGROUP_INCLUSIVE_MUL="subgroupInclusiveMul",ST.SUBGROUP_EXCLUSIVE_MUL="subgroupExclusiveMul",ST.SUBGROUP_AND="subgroupAnd",ST.SUBGROUP_OR="subgroupOr",ST.SUBGROUP_XOR="subgroupXor",ST.SUBGROUP_MIN="subgroupMin",ST.SUBGROUP_MAX="subgroupMax",ST.SUBGROUP_ALL="subgroupAll",ST.SUBGROUP_ANY="subgroupAny",ST.SUBGROUP_BROADCAST_FIRST="subgroupBroadcastFirst",ST.QUAD_SWAP_X="quadSwapX",ST.QUAD_SWAP_Y="quadSwapY",ST.QUAD_SWAP_DIAGONAL="quadSwapDiagonal",ST.SUBGROUP_BROADCAST="subgroupBroadcast",ST.SUBGROUP_SHUFFLE="subgroupShuffle",ST.SUBGROUP_SHUFFLE_XOR="subgroupShuffleXor",ST.SUBGROUP_SHUFFLE_UP="subgroupShuffleUp",ST.SUBGROUP_SHUFFLE_DOWN="subgroupShuffleDown",ST.QUAD_BROADCAST="quadBroadcast";const RT=rn(ST,ST.SUBGROUP_ELECT).setParameterLength(0),AT=rn(ST,ST.SUBGROUP_BALLOT).setParameterLength(1),ET=rn(ST,ST.SUBGROUP_ADD).setParameterLength(1),wT=rn(ST,ST.SUBGROUP_INCLUSIVE_ADD).setParameterLength(1),CT=rn(ST,ST.SUBGROUP_EXCLUSIVE_AND).setParameterLength(1),MT=rn(ST,ST.SUBGROUP_MUL).setParameterLength(1),BT=rn(ST,ST.SUBGROUP_INCLUSIVE_MUL).setParameterLength(1),LT=rn(ST,ST.SUBGROUP_EXCLUSIVE_MUL).setParameterLength(1),PT=rn(ST,ST.SUBGROUP_AND).setParameterLength(1),FT=rn(ST,ST.SUBGROUP_OR).setParameterLength(1),DT=rn(ST,ST.SUBGROUP_XOR).setParameterLength(1),IT=rn(ST,ST.SUBGROUP_MIN).setParameterLength(1),UT=rn(ST,ST.SUBGROUP_MAX).setParameterLength(1),OT=rn(ST,ST.SUBGROUP_ALL).setParameterLength(0),VT=rn(ST,ST.SUBGROUP_ANY).setParameterLength(0),kT=rn(ST,ST.SUBGROUP_BROADCAST_FIRST).setParameterLength(2),GT=rn(ST,ST.QUAD_SWAP_X).setParameterLength(1),zT=rn(ST,ST.QUAD_SWAP_Y).setParameterLength(1),$T=rn(ST,ST.QUAD_SWAP_DIAGONAL).setParameterLength(1),WT=rn(ST,ST.SUBGROUP_BROADCAST).setParameterLength(2),HT=rn(ST,ST.SUBGROUP_SHUFFLE).setParameterLength(2),jT=rn(ST,ST.SUBGROUP_SHUFFLE_XOR).setParameterLength(2),qT=rn(ST,ST.SUBGROUP_SHUFFLE_UP).setParameterLength(2),XT=rn(ST,ST.SUBGROUP_SHUFFLE_DOWN).setParameterLength(2),KT=rn(ST,ST.QUAD_BROADCAST).setParameterLength(1);let YT;function QT(e){YT=YT||new WeakMap;let t=YT.get(e);return void 0===t&&YT.set(e,t={}),t}function ZT(e){const t=QT(e);return t.shadowMatrix||(t.shadowMatrix=xa("mat4").setGroup(fa).onRenderUpdate(t=>(!0===e.castShadow&&!1!==t.renderer.shadowMap.enabled||(e.shadow.camera.coordinateSystem!==t.camera.coordinateSystem&&(e.shadow.camera.coordinateSystem=t.camera.coordinateSystem,e.shadow.camera.updateProjectionMatrix()),e.shadow.updateMatrices(e)),e.shadow.matrix)))}function JT(e,t=Pd){const r=ZT(e).mul(t);return r.xyz.div(r.w)}function e_(e){const t=QT(e);return t.position||(t.position=xa(new r).setGroup(fa).onRenderUpdate((t,r)=>r.value.setFromMatrixPosition(e.matrixWorld)))}function t_(e){const t=QT(e);return t.targetPosition||(t.targetPosition=xa(new r).setGroup(fa).onRenderUpdate((t,r)=>r.value.setFromMatrixPosition(e.target.matrixWorld)))}function r_(e){const t=QT(e);return t.viewPosition||(t.viewPosition=xa(new r).setGroup(fa).onRenderUpdate(({camera:t},s)=>{s.value=s.value||new r,s.value.setFromMatrixPosition(e.matrixWorld),s.value.applyMatrix4(t.matrixWorldInverse)}))}const s_=e=>id.transformDirection(e_(e).sub(t_(e))),i_=(e,t)=>{for(const r of t)if(r.isAnalyticLightNode&&r.light.id===e)return r;return null},n_=new WeakMap,a_=[];class o_ extends ai{static get type(){return"LightsNode"}constructor(){super("vec3"),this.totalDiffuseNode=Fn("vec3","totalDiffuse"),this.totalSpecularNode=Fn("vec3","totalSpecular"),this.outgoingLightNode=Fn("vec3","outgoingLight"),this._lights=[],this._lightNodes=null,this._lightNodesHash=null,this.global=!0}customCacheKey(){const e=this._lights;for(let t=0;te.sort((e,t)=>e.id-t.id))(this._lights),i=e.renderer.library;for(const e of s)if(e.isNode)t.push(Yi(e));else{let s=null;if(null!==r&&(s=i_(e.id,r)),null===s){const r=i.getLightNodeClass(e.constructor);if(null===r){d(`LightsNode.setupNodeLights: Light node not found for ${e.constructor.name}`);continue}let s=null;n_.has(e)?s=n_.get(e):(s=Yi(new r(e)),n_.set(e,s)),t.push(s)}}this._lightNodes=t}setupDirectLight(e,t,r){const{lightingModel:s,reflectedLight:i}=e.context;s.direct({...r,lightNode:t,reflectedLight:i},e)}setupDirectRectAreaLight(e,t,r){const{lightingModel:s,reflectedLight:i}=e.context;s.directRectArea({...r,lightNode:t,reflectedLight:i},e)}setupLights(e,t){for(const r of t)r.build(e)}getLightNodes(e){return null===this._lightNodes&&this.setupLightsNode(e),this._lightNodes}setup(e){const t=e.lightsNode;e.lightsNode=this;let r=this.outgoingLightNode;const s=e.context,i=s.lightingModel,n=e.getNodeProperties(this);if(i){const{totalDiffuseNode:t,totalSpecularNode:a}=this;s.outgoingLight=r;const o=e.addStack();n.nodes=o.nodes,i.start(e);const{backdrop:u,backdropAlpha:l}=s,{directDiffuse:d,directSpecular:c,indirectDiffuse:h,indirectSpecular:p}=s.reflectedLight;let g=d.add(h);null!==u&&(g=Tn(null!==l?l.mix(g,u):u)),t.assign(g),a.assign(c.add(p)),r.assign(t.add(a)),i.finish(e),r=r.bypass(e.removeStack())}else n.nodes=[];return e.lightsNode=t,r}setLights(e){return this._lights=e,this._lightNodes=null,this._lightNodesHash=null,this}getLights(){return this._lights}get hasLights(){return this._lights.length>0}}class u_ extends ai{static get type(){return"ShadowBaseNode"}constructor(e){super(),this.light=e,this.updateBeforeType=Qs.RENDER,this.isShadowBaseNode=!0}setupShadowPosition({context:e,material:t}){l_.assign(t.receivedShadowPositionNode||e.shadowPositionWorld||Pd)}}const l_=Fn("vec3","shadowPositionWorld");function d_(t,r={}){return r.toneMapping=t.toneMapping,r.toneMappingExposure=t.toneMappingExposure,r.outputColorSpace=t.outputColorSpace,r.renderTarget=t.getRenderTarget(),r.activeCubeFace=t.getActiveCubeFace(),r.activeMipmapLevel=t.getActiveMipmapLevel(),r.renderObjectFunction=t.getRenderObjectFunction(),r.pixelRatio=t.getPixelRatio(),r.mrt=t.getMRT(),r.clearColor=t.getClearColor(r.clearColor||new e),r.clearAlpha=t.getClearAlpha(),r.autoClear=t.autoClear,r.scissorTest=t.getScissorTest(),r}function c_(e,t){return t=d_(e,t),e.setMRT(null),e.setRenderObjectFunction(null),e.setClearColor(0,1),e.autoClear=!0,t}function h_(e,t){e.toneMapping=t.toneMapping,e.toneMappingExposure=t.toneMappingExposure,e.outputColorSpace=t.outputColorSpace,e.setRenderTarget(t.renderTarget,t.activeCubeFace,t.activeMipmapLevel),e.setRenderObjectFunction(t.renderObjectFunction),e.setPixelRatio(t.pixelRatio),e.setMRT(t.mrt),e.setClearColor(t.clearColor,t.clearAlpha),e.autoClear=t.autoClear,e.setScissorTest(t.scissorTest)}function p_(e,t={}){return t.background=e.background,t.backgroundNode=e.backgroundNode,t.overrideMaterial=e.overrideMaterial,t}function g_(e,t){return t=p_(e,t),e.background=null,e.backgroundNode=null,e.overrideMaterial=null,t}function m_(e,t){e.background=t.background,e.backgroundNode=t.backgroundNode,e.overrideMaterial=t.overrideMaterial}function f_(e,t,r){return r=g_(t,r=c_(e,r))}function y_(e,t,r){h_(e,r),m_(t,r)}var b_=Object.freeze({__proto__:null,resetRendererAndSceneState:f_,resetRendererState:c_,resetSceneState:g_,restoreRendererAndSceneState:y_,restoreRendererState:h_,restoreSceneState:m_,saveRendererAndSceneState:function(e,t,r={}){return r=p_(t,r=d_(e,r))},saveRendererState:d_,saveSceneState:p_});const x_=new WeakMap,T_=an(({depthTexture:e,shadowCoord:t,depthLayer:r})=>{let s=Pl(e,t.xy).setName("t_basic");return e.isArrayTexture&&(s=s.depth(r)),s.compare(t.z)}),__=an(({depthTexture:e,shadowCoord:t,shadow:r,depthLayer:s})=>{const i=(t,r)=>{let i=Pl(e,t);return e.isArrayTexture&&(i=i.depth(s)),i.compare(r)},n=mc("mapSize","vec2",r).setGroup(fa),a=mc("radius","float",r).setGroup(fa),o=fn(1).div(n),u=a.mul(o.x),l=Qb(ql.xy).mul(6.28318530718);return wa(i(t.xy.add(Zb(0,5,l).mul(u)),t.z),i(t.xy.add(Zb(1,5,l).mul(u)),t.z),i(t.xy.add(Zb(2,5,l).mul(u)),t.z),i(t.xy.add(Zb(3,5,l).mul(u)),t.z),i(t.xy.add(Zb(4,5,l).mul(u)),t.z)).mul(.2)}),v_=an(({depthTexture:e,shadowCoord:t,shadow:r,depthLayer:s})=>{const i=(t,r)=>{let i=Pl(e,t);return e.isArrayTexture&&(i=i.depth(s)),i.compare(r)},n=mc("mapSize","vec2",r).setGroup(fa),a=fn(1).div(n),o=a.x,u=a.y,l=t.xy,d=_o(l.mul(n).add(.5));return l.subAssign(d.mul(a)),wa(i(l,t.z),i(l.add(fn(o,0)),t.z),i(l.add(fn(0,u)),t.z),i(l.add(a),t.z),iu(i(l.add(fn(o.negate(),0)),t.z),i(l.add(fn(o.mul(2),0)),t.z),d.x),iu(i(l.add(fn(o.negate(),u)),t.z),i(l.add(fn(o.mul(2),u)),t.z),d.x),iu(i(l.add(fn(0,u.negate())),t.z),i(l.add(fn(0,u.mul(2))),t.z),d.y),iu(i(l.add(fn(o,u.negate())),t.z),i(l.add(fn(o,u.mul(2))),t.z),d.y),iu(iu(i(l.add(fn(o.negate(),u.negate())),t.z),i(l.add(fn(o.mul(2),u.negate())),t.z),d.x),iu(i(l.add(fn(o.negate(),u.mul(2))),t.z),i(l.add(fn(o.mul(2),u.mul(2))),t.z),d.x),d.y)).mul(1/9)}),N_=an(({depthTexture:e,shadowCoord:t,depthLayer:r})=>{let s=Pl(e).sample(t.xy);e.isArrayTexture&&(s=s.depth(r)),s=s.rg;const i=s.x,n=Wo(1e-7,s.y.mul(s.y)),a=Ho(t.z,i);ln(a.equal(1),()=>hn(1));const o=t.z.sub(i);let u=n.div(n.add(o.mul(o)));return u=nu(Ca(u,.3).div(.65)),Wo(a,u)}),S_=an(([e,t,r])=>{let s=Pd.sub(e).length();return s=s.sub(t).div(r.sub(t)),s=s.saturate(),s}),R_=e=>{let t=x_.get(e);if(void 0===t){const r=e.isPointLight?(e=>{const t=e.shadow.camera,r=mc("near","float",t).setGroup(fa),s=mc("far","float",t).setGroup(fa),i=pd(e);return S_(i,r,s)})(e):null;t=new Xp,t.colorNode=Sn(0,0,0,1),t.depthNode=r,t.isShadowPassMaterial=!0,t.name="ShadowMaterial",t.fog=!1,x_.set(e,t)}return t},A_=new Yf,E_=[],w_=(e,t,r,s)=>{E_[0]=e,E_[1]=t;let i=A_.get(E_);return void 0!==i&&i.shadowType===r&&i.useVelocity===s||(i=(i,n,a,o,u,l,...d)=>{(!0===i.castShadow||i.receiveShadow&&r===je)&&(s&&(js(i).useVelocity=!0),i.onBeforeShadow(e,i,a,t.camera,o,n.overrideMaterial,l),e.renderObject(i,n,a,o,u,l,...d),i.onAfterShadow(e,i,a,t.camera,o,n.overrideMaterial,l))},i.shadowType=r,i.useVelocity=s,A_.set(E_,i)),E_[0]=null,E_[1]=null,i},C_=an(({samples:e,radius:t,size:r,shadowPass:s,depthLayer:i})=>{const n=hn(0).toVar("meanVertical"),a=hn(0).toVar("squareMeanVertical"),o=e.lessThanEqual(hn(1)).select(hn(0),hn(2).div(e.sub(1))),u=e.lessThanEqual(hn(1)).select(hn(0),hn(-1));op({start:pn(0),end:pn(e),type:"int",condition:"<"},({i:e})=>{const l=u.add(hn(e).mul(o));let d=s.sample(wa(ql.xy,fn(0,l).mul(t)).div(r));s.value.isArrayTexture&&(d=d.depth(i)),d=d.x,n.addAssign(d),a.addAssign(d.mul(d))}),n.divAssign(e),a.divAssign(e);const l=fo(a.sub(n.mul(n)).max(0));return fn(n,l)}),M_=an(({samples:e,radius:t,size:r,shadowPass:s,depthLayer:i})=>{const n=hn(0).toVar("meanHorizontal"),a=hn(0).toVar("squareMeanHorizontal"),o=e.lessThanEqual(hn(1)).select(hn(0),hn(2).div(e.sub(1))),u=e.lessThanEqual(hn(1)).select(hn(0),hn(-1));op({start:pn(0),end:pn(e),type:"int",condition:"<"},({i:e})=>{const l=u.add(hn(e).mul(o));let d=s.sample(wa(ql.xy,fn(l,0).mul(t)).div(r));s.value.isArrayTexture&&(d=d.depth(i)),n.addAssign(d.x),a.addAssign(wa(d.y.mul(d.y),d.x.mul(d.x)))}),n.divAssign(e),a.divAssign(e);const l=fo(a.sub(n.mul(n)).max(0));return fn(n,l)}),B_=[T_,__,v_,N_];let L_;const P_=new Wb;class F_ extends u_{static get type(){return"ShadowNode"}constructor(e,t=null){super(e),this.shadow=t||e.shadow,this.shadowMap=null,this.vsmShadowMapVertical=null,this.vsmShadowMapHorizontal=null,this.vsmMaterialVertical=null,this.vsmMaterialHorizontal=null,this._node=null,this._currentShadowType=null,this._cameraFrameId=new WeakMap,this.isShadowNode=!0,this.depthLayer=0}setupShadowFilter(e,{filterFn:t,depthTexture:r,shadowCoord:s,shadow:i,depthLayer:n}){const a=s.x.greaterThanEqual(0).and(s.x.lessThanEqual(1)).and(s.y.greaterThanEqual(0)).and(s.y.lessThanEqual(1)).and(s.z.lessThanEqual(1)),o=t({depthTexture:r,shadowCoord:s,shadow:i,depthLayer:n});return a.select(o,hn(1))}setupShadowCoord(e,t){const{shadow:r}=this,{renderer:s}=e,i=mc("bias","float",r).setGroup(fa);let n,a=t;if(r.camera.isOrthographicCamera||!0!==s.logarithmicDepthBuffer)a=a.xyz.div(a.w),n=a.z,s.coordinateSystem===h&&(n=n.mul(2).sub(1));else{const e=a.w;a=a.xy.div(e);const t=mc("near","float",r.camera).setGroup(fa),s=mc("far","float",r.camera).setGroup(fa);n=Mp(e.negate(),t,s)}return a=Tn(a.x,a.y.oneMinus(),n.add(i)),a}getShadowFilterFn(e){return B_[e]}setupRenderTarget(e,t){const r=new X(e.mapSize.width,e.mapSize.height);r.name="ShadowDepthTexture",r.compareFunction=qe;const s=t.createRenderTarget(e.mapSize.width,e.mapSize.height);return s.texture.name="ShadowMap",s.texture.type=e.mapType,s.depthTexture=r,{shadowMap:s,depthTexture:r}}setupShadow(e){const{renderer:t,camera:r}=e,{light:s,shadow:i}=this,n=t.shadowMap.type,{depthTexture:a,shadowMap:o}=this.setupRenderTarget(i,e);if(i.camera.coordinateSystem=r.coordinateSystem,i.camera.updateProjectionMatrix(),n===je&&!0!==i.isPointLightShadow){a.compareFunction=null,o.depth>1?(o._vsmShadowMapVertical||(o._vsmShadowMapVertical=e.createRenderTarget(i.mapSize.width,i.mapSize.height,{format:V,type:fe,depth:o.depth,depthBuffer:!1}),o._vsmShadowMapVertical.texture.name="VSMVertical"),this.vsmShadowMapVertical=o._vsmShadowMapVertical,o._vsmShadowMapHorizontal||(o._vsmShadowMapHorizontal=e.createRenderTarget(i.mapSize.width,i.mapSize.height,{format:V,type:fe,depth:o.depth,depthBuffer:!1}),o._vsmShadowMapHorizontal.texture.name="VSMHorizontal"),this.vsmShadowMapHorizontal=o._vsmShadowMapHorizontal):(this.vsmShadowMapVertical=e.createRenderTarget(i.mapSize.width,i.mapSize.height,{format:V,type:fe,depthBuffer:!1}),this.vsmShadowMapHorizontal=e.createRenderTarget(i.mapSize.width,i.mapSize.height,{format:V,type:fe,depthBuffer:!1}));let t=Pl(a);a.isArrayTexture&&(t=t.depth(this.depthLayer));let r=Pl(this.vsmShadowMapVertical.texture);a.isArrayTexture&&(r=r.depth(this.depthLayer));const s=mc("blurSamples","float",i).setGroup(fa),n=mc("radius","float",i).setGroup(fa),u=mc("mapSize","vec2",i).setGroup(fa);let l=this.vsmMaterialVertical||(this.vsmMaterialVertical=new Xp);l.fragmentNode=C_({samples:s,radius:n,size:u,shadowPass:t,depthLayer:this.depthLayer}).context(e.getSharedContext()),l.name="VSMVertical",l=this.vsmMaterialHorizontal||(this.vsmMaterialHorizontal=new Xp),l.fragmentNode=M_({samples:s,radius:n,size:u,shadowPass:r,depthLayer:this.depthLayer}).context(e.getSharedContext()),l.name="VSMHorizontal"}const u=mc("intensity","float",i).setGroup(fa),l=mc("normalBias","float",i).setGroup(fa),d=ZT(s).mul(l_.add(qd.mul(l))),c=this.setupShadowCoord(e,d),h=i.filterNode||this.getShadowFilterFn(t.shadowMap.type)||null;if(null===h)throw new Error("THREE.WebGPURenderer: Shadow map type not supported yet.");const p=n===je&&!0!==i.isPointLightShadow?this.vsmShadowMapHorizontal.texture:a,g=this.setupShadowFilter(e,{filterFn:h,shadowTexture:o.texture,depthTexture:p,shadowCoord:c,shadow:i,depthLayer:this.depthLayer});let m;o.texture.isCubeTexture?m=hc(o.texture,c.xyz):(m=Pl(o.texture,c),a.isArrayTexture&&(m=m.depth(this.depthLayer)));const f=iu(1,g.rgb.mix(m,1),u.mul(m.a)).toVar();this.shadowMap=o,this.shadow.map=o;const y=`${this.light.type} Shadow [ ${this.light.name||"ID: "+this.light.id} ]`;return f.toInspector(`${y} / Color`,()=>this.shadowMap.texture.isCubeTexture?hc(this.shadowMap.texture):Pl(this.shadowMap.texture)).toInspector(`${y} / Depth`,()=>Fl(this.shadowMap.depthTexture,Rl().mul(El(Pl(this.shadowMap.depthTexture)))).x.oneMinus())}setup(e){if(!1!==e.renderer.shadowMap.enabled)return an(()=>{const t=e.renderer.shadowMap.type;this._currentShadowType!==t&&(this._reset(),this._node=null);let r=this._node;return this.setupShadowPosition(e),null===r&&(this._node=r=this.setupShadow(e),this._currentShadowType=t),e.material.shadowNode&&d('NodeMaterial: ".shadowNode" is deprecated. Use ".castShadowNode" instead.'),e.material.receivedShadowNode&&(r=e.material.receivedShadowNode(r)),r})()}renderShadow(e){const{shadow:t,shadowMap:r,light:s}=this,{renderer:i,scene:n}=e;t.updateMatrices(s),r.setSize(t.mapSize.width,t.mapSize.height,r.depth);const a=n.name;n.name=`Shadow Map [ ${s.name||"ID: "+s.id} ]`,i.render(n,t.camera),n.name=a}updateShadow(e){const{shadowMap:t,light:r,shadow:s}=this,{renderer:i,scene:n,camera:a}=e,o=i.shadowMap.type,u=t.depthTexture.version;this._depthVersionCached=u;const l=s.camera.layers.mask;4294967294&s.camera.layers.mask||(s.camera.layers.mask=a.layers.mask);const d=i.getRenderObjectFunction(),c=i.getMRT(),h=!!c&&c.has("velocity");L_=f_(i,n,L_),n.overrideMaterial=R_(r),i.setRenderObjectFunction(w_(i,s,o,h)),i.setClearColor(0,0),i.setRenderTarget(t),this.renderShadow(e),i.setRenderObjectFunction(d),o===je&&!0!==s.isPointLightShadow&&this.vsmPass(i),s.camera.layers.mask=l,y_(i,n,L_)}vsmPass(e){const{shadow:t}=this,r=this.shadowMap.depth;this.vsmShadowMapVertical.setSize(t.mapSize.width,t.mapSize.height,r),this.vsmShadowMapHorizontal.setSize(t.mapSize.width,t.mapSize.height,r),e.setRenderTarget(this.vsmShadowMapVertical),P_.material=this.vsmMaterialVertical,P_.render(e),e.setRenderTarget(this.vsmShadowMapHorizontal),P_.material=this.vsmMaterialHorizontal,P_.render(e)}dispose(){this._reset(),super.dispose()}_reset(){this._currentShadowType=null,this.shadowMap&&(this.shadowMap.dispose(),this.shadowMap=null),null!==this.vsmShadowMapVertical&&(this.vsmShadowMapVertical.dispose(),this.vsmShadowMapVertical=null,this.vsmMaterialVertical.dispose(),this.vsmMaterialVertical=null),null!==this.vsmShadowMapHorizontal&&(this.vsmShadowMapHorizontal.dispose(),this.vsmShadowMapHorizontal=null,this.vsmMaterialHorizontal.dispose(),this.vsmMaterialHorizontal=null)}updateBefore(e){const{shadow:t}=this;let r=t.needsUpdate||t.autoUpdate;r&&(this._cameraFrameId[e.camera]===e.frameId&&(r=!1),this._cameraFrameId[e.camera]=e.frameId),r&&(this.updateShadow(e),this.shadowMap.depthTexture.version===this._depthVersionCached&&(t.needsUpdate=!1))}}const D_=(e,t)=>Yi(new F_(e,t)),I_=new e,U_=new a,O_=new r,V_=new r,k_=[new r(1,0,0),new r(-1,0,0),new r(0,-1,0),new r(0,1,0),new r(0,0,1),new r(0,0,-1)],G_=[new r(0,-1,0),new r(0,-1,0),new r(0,0,-1),new r(0,0,1),new r(0,-1,0),new r(0,-1,0)],z_=[new r(1,0,0),new r(-1,0,0),new r(0,1,0),new r(0,-1,0),new r(0,0,1),new r(0,0,-1)],$_=[new r(0,-1,0),new r(0,-1,0),new r(0,0,1),new r(0,0,-1),new r(0,-1,0),new r(0,-1,0)],W_=an(({depthTexture:e,bd3D:t,dp:r})=>hc(e,t).compare(r)),H_=an(({depthTexture:e,bd3D:t,dp:r,shadow:s})=>{const i=mc("radius","float",s).setGroup(fa),n=mc("mapSize","vec2",s).setGroup(fa),a=i.div(n.x),o=wo(t),u=To(Yo(t,o.x.greaterThan(o.z).select(Tn(0,1,0),Tn(1,0,0)))),l=Yo(t,u),d=Qb(ql.xy).mul(6.28318530718),c=Zb(0,5,d),h=Zb(1,5,d),p=Zb(2,5,d),g=Zb(3,5,d),m=Zb(4,5,d);return hc(e,t.add(u.mul(c.x).add(l.mul(c.y)).mul(a))).compare(r).add(hc(e,t.add(u.mul(h.x).add(l.mul(h.y)).mul(a))).compare(r)).add(hc(e,t.add(u.mul(p.x).add(l.mul(p.y)).mul(a))).compare(r)).add(hc(e,t.add(u.mul(g.x).add(l.mul(g.y)).mul(a))).compare(r)).add(hc(e,t.add(u.mul(m.x).add(l.mul(m.y)).mul(a))).compare(r)).mul(.2)}),j_=an(({filterFn:e,depthTexture:t,shadowCoord:r,shadow:s})=>{const i=r.xyz.toVar(),n=i.length(),a=xa("float").setGroup(fa).onRenderUpdate(()=>s.camera.near),o=xa("float").setGroup(fa).onRenderUpdate(()=>s.camera.far),u=mc("bias","float",s).setGroup(fa),l=hn(1).toVar();return ln(n.sub(o).lessThanEqual(0).and(n.sub(a).greaterThanEqual(0)),()=>{const r=n.sub(a).div(o.sub(a)).toVar();r.addAssign(u);const d=i.normalize();l.assign(e({depthTexture:t,bd3D:d,dp:r,shadow:s}))}),l});class q_ extends F_{static get type(){return"PointShadowNode"}constructor(e,t=null){super(e,t)}getShadowFilterFn(e){return e===Xe?W_:H_}setupShadowCoord(e,t){return t}setupShadowFilter(e,{filterFn:t,depthTexture:r,shadowCoord:s,shadow:i}){return j_({filterFn:t,depthTexture:r,shadowCoord:s,shadow:i})}setupRenderTarget(e,t){const r=new Ke(e.mapSize.width);r.name="PointShadowDepthTexture",r.compareFunction=qe;const s=t.createCubeRenderTarget(e.mapSize.width);return s.texture.name="PointShadowMap",s.depthTexture=r,{shadowMap:s,depthTexture:r}}renderShadow(e){const{shadow:t,shadowMap:r,light:s}=this,{renderer:i,scene:n}=e,a=t.camera,o=t.matrix,u=i.coordinateSystem===h,l=u?k_:z_,d=u?G_:$_;r.setSize(t.mapSize.width,t.mapSize.width);const c=i.autoClear,p=i.getClearColor(I_),g=i.getClearAlpha();i.autoClear=!1,i.setClearColor(t.clearColor,t.clearAlpha);for(let e=0;e<6;e++){i.setRenderTarget(r,e),i.clear();const u=s.distance||a.far;u!==a.far&&(a.far=u,a.updateProjectionMatrix()),O_.setFromMatrixPosition(s.matrixWorld),a.position.copy(O_),V_.copy(a.position),V_.add(l[e]),a.up.copy(d[e]),a.lookAt(V_),a.updateMatrixWorld(),o.makeTranslation(-O_.x,-O_.y,-O_.z),U_.multiplyMatrices(a.projectionMatrix,a.matrixWorldInverse),t._frustum.setFromProjectionMatrix(U_,a.coordinateSystem,a.reversedDepth);const c=n.name;n.name=`Point Light Shadow [ ${s.name||"ID: "+s.id} ] - Face ${e+1}`,i.render(n,a),n.name=c}i.autoClear=c,i.setClearColor(p,g)}}const X_=(e,t)=>Yi(new q_(e,t));class K_ extends gp{static get type(){return"AnalyticLightNode"}constructor(t=null){super(),this.light=t,this.color=new e,this.colorNode=t&&t.colorNode||xa(this.color).setGroup(fa),this.baseColorNode=null,this.shadowNode=null,this.shadowColorNode=null,this.isAnalyticLightNode=!0,this.updateType=Qs.FRAME}getHash(){return this.light.uuid}getLightVector(e){return r_(this.light).sub(e.context.positionView||Dd)}setupDirect(){}setupDirectRectArea(){}setupShadowNode(){return D_(this.light)}setupShadow(e){const{renderer:t}=e;if(!1===t.shadowMap.enabled)return;let r=this.shadowColorNode;if(null===r){const e=this.light.shadow.shadowNode;let t;t=void 0!==e?Yi(e):this.setupShadowNode(),this.shadowNode=t,this.shadowColorNode=r=this.colorNode.mul(t),this.baseColorNode=this.colorNode}e.context.getShadow&&(r=e.context.getShadow(this,e)),this.colorNode=r}setup(e){this.colorNode=this.baseColorNode||this.colorNode,this.light.castShadow?e.object.receiveShadow&&this.setupShadow(e):null!==this.shadowNode&&(this.shadowNode.dispose(),this.shadowNode=null,this.shadowColorNode=null);const t=this.setupDirect(e),r=this.setupDirectRectArea(e);t&&e.lightsNode.setupDirectLight(e,this,t),r&&e.lightsNode.setupDirectRectAreaLight(e,this,r)}update(){const{light:e}=this;this.color.copy(e.color).multiplyScalar(e.intensity)}}const Y_=an(({lightDistance:e,cutoffDistance:t,decayExponent:r})=>{const s=e.pow(r).max(.01).reciprocal();return t.greaterThan(0).select(s.mul(e.div(t).pow4().oneMinus().clamp().pow2()),s)}),Q_=({color:e,lightVector:t,cutoffDistance:r,decayExponent:s})=>{const i=t.normalize(),n=t.length(),a=Y_({lightDistance:n,cutoffDistance:r,decayExponent:s});return{lightDirection:i,lightColor:e.mul(a)}};class Z_ extends K_{static get type(){return"PointLightNode"}constructor(e=null){super(e),this.cutoffDistanceNode=xa(0).setGroup(fa),this.decayExponentNode=xa(2).setGroup(fa)}update(e){const{light:t}=this;super.update(e),this.cutoffDistanceNode.value=t.distance,this.decayExponentNode.value=t.decay}setupShadowNode(){return X_(this.light)}setupDirect(e){return Q_({color:this.colorNode,lightVector:this.getLightVector(e),cutoffDistance:this.cutoffDistanceNode,decayExponent:this.decayExponentNode})}}const J_=an(([e=Rl()])=>{const t=e.mul(2),r=t.x.floor(),s=t.y.floor();return r.add(s).mod(2).sign()}),ev=an(([e=Rl()],{renderer:t,material:r})=>{const s=su(e.mul(2).sub(1));let i;if(r.alphaToCoverage&&t.currentSamples>0){const e=hn(s.fwidth()).toVar();i=uu(e.oneMinus(),e.add(1),s).oneMinus()}else i=bu(s.greaterThan(1),0,1);return i}),tv=an(([e,t,r])=>{const s=hn(r).toVar(),i=hn(t).toVar(),n=mn(e).toVar();return bu(n,i,s)}).setLayout({name:"mx_select",type:"float",inputs:[{name:"b",type:"bool"},{name:"t",type:"float"},{name:"f",type:"float"}]}),rv=an(([e,t])=>{const r=mn(t).toVar(),s=hn(e).toVar();return bu(r,s.negate(),s)}).setLayout({name:"mx_negate_if",type:"float",inputs:[{name:"val",type:"float"},{name:"b",type:"bool"}]}),sv=an(([e])=>{const t=hn(e).toVar();return pn(bo(t))}).setLayout({name:"mx_floor",type:"int",inputs:[{name:"x",type:"float"}]}),iv=an(([e,t])=>{const r=hn(e).toVar();return t.assign(sv(r)),r.sub(hn(t))}),nv=gb([an(([e,t,r,s,i,n])=>{const a=hn(n).toVar(),o=hn(i).toVar(),u=hn(s).toVar(),l=hn(r).toVar(),d=hn(t).toVar(),c=hn(e).toVar(),h=hn(Ca(1,o)).toVar();return Ca(1,a).mul(c.mul(h).add(d.mul(o))).add(a.mul(l.mul(h).add(u.mul(o))))}).setLayout({name:"mx_bilerp_0",type:"float",inputs:[{name:"v0",type:"float"},{name:"v1",type:"float"},{name:"v2",type:"float"},{name:"v3",type:"float"},{name:"s",type:"float"},{name:"t",type:"float"}]}),an(([e,t,r,s,i,n])=>{const a=hn(n).toVar(),o=hn(i).toVar(),u=Tn(s).toVar(),l=Tn(r).toVar(),d=Tn(t).toVar(),c=Tn(e).toVar(),h=hn(Ca(1,o)).toVar();return Ca(1,a).mul(c.mul(h).add(d.mul(o))).add(a.mul(l.mul(h).add(u.mul(o))))}).setLayout({name:"mx_bilerp_1",type:"vec3",inputs:[{name:"v0",type:"vec3"},{name:"v1",type:"vec3"},{name:"v2",type:"vec3"},{name:"v3",type:"vec3"},{name:"s",type:"float"},{name:"t",type:"float"}]})]),av=gb([an(([e,t,r,s,i,n,a,o,u,l,d])=>{const c=hn(d).toVar(),h=hn(l).toVar(),p=hn(u).toVar(),g=hn(o).toVar(),m=hn(a).toVar(),f=hn(n).toVar(),y=hn(i).toVar(),b=hn(s).toVar(),x=hn(r).toVar(),T=hn(t).toVar(),_=hn(e).toVar(),v=hn(Ca(1,p)).toVar(),N=hn(Ca(1,h)).toVar();return hn(Ca(1,c)).toVar().mul(N.mul(_.mul(v).add(T.mul(p))).add(h.mul(x.mul(v).add(b.mul(p))))).add(c.mul(N.mul(y.mul(v).add(f.mul(p))).add(h.mul(m.mul(v).add(g.mul(p))))))}).setLayout({name:"mx_trilerp_0",type:"float",inputs:[{name:"v0",type:"float"},{name:"v1",type:"float"},{name:"v2",type:"float"},{name:"v3",type:"float"},{name:"v4",type:"float"},{name:"v5",type:"float"},{name:"v6",type:"float"},{name:"v7",type:"float"},{name:"s",type:"float"},{name:"t",type:"float"},{name:"r",type:"float"}]}),an(([e,t,r,s,i,n,a,o,u,l,d])=>{const c=hn(d).toVar(),h=hn(l).toVar(),p=hn(u).toVar(),g=Tn(o).toVar(),m=Tn(a).toVar(),f=Tn(n).toVar(),y=Tn(i).toVar(),b=Tn(s).toVar(),x=Tn(r).toVar(),T=Tn(t).toVar(),_=Tn(e).toVar(),v=hn(Ca(1,p)).toVar(),N=hn(Ca(1,h)).toVar();return hn(Ca(1,c)).toVar().mul(N.mul(_.mul(v).add(T.mul(p))).add(h.mul(x.mul(v).add(b.mul(p))))).add(c.mul(N.mul(y.mul(v).add(f.mul(p))).add(h.mul(m.mul(v).add(g.mul(p))))))}).setLayout({name:"mx_trilerp_1",type:"vec3",inputs:[{name:"v0",type:"vec3"},{name:"v1",type:"vec3"},{name:"v2",type:"vec3"},{name:"v3",type:"vec3"},{name:"v4",type:"vec3"},{name:"v5",type:"vec3"},{name:"v6",type:"vec3"},{name:"v7",type:"vec3"},{name:"s",type:"float"},{name:"t",type:"float"},{name:"r",type:"float"}]})]),ov=an(([e,t,r])=>{const s=hn(r).toVar(),i=hn(t).toVar(),n=gn(e).toVar(),a=gn(n.bitAnd(gn(7))).toVar(),o=hn(tv(a.lessThan(gn(4)),i,s)).toVar(),u=hn(Ma(2,tv(a.lessThan(gn(4)),s,i))).toVar();return rv(o,mn(a.bitAnd(gn(1)))).add(rv(u,mn(a.bitAnd(gn(2)))))}).setLayout({name:"mx_gradient_float_0",type:"float",inputs:[{name:"hash",type:"uint"},{name:"x",type:"float"},{name:"y",type:"float"}]}),uv=an(([e,t,r,s])=>{const i=hn(s).toVar(),n=hn(r).toVar(),a=hn(t).toVar(),o=gn(e).toVar(),u=gn(o.bitAnd(gn(15))).toVar(),l=hn(tv(u.lessThan(gn(8)),a,n)).toVar(),d=hn(tv(u.lessThan(gn(4)),n,tv(u.equal(gn(12)).or(u.equal(gn(14))),a,i))).toVar();return rv(l,mn(u.bitAnd(gn(1)))).add(rv(d,mn(u.bitAnd(gn(2)))))}).setLayout({name:"mx_gradient_float_1",type:"float",inputs:[{name:"hash",type:"uint"},{name:"x",type:"float"},{name:"y",type:"float"},{name:"z",type:"float"}]}),lv=gb([ov,uv]),dv=an(([e,t,r])=>{const s=hn(r).toVar(),i=hn(t).toVar(),n=vn(e).toVar();return Tn(lv(n.x,i,s),lv(n.y,i,s),lv(n.z,i,s))}).setLayout({name:"mx_gradient_vec3_0",type:"vec3",inputs:[{name:"hash",type:"uvec3"},{name:"x",type:"float"},{name:"y",type:"float"}]}),cv=an(([e,t,r,s])=>{const i=hn(s).toVar(),n=hn(r).toVar(),a=hn(t).toVar(),o=vn(e).toVar();return Tn(lv(o.x,a,n,i),lv(o.y,a,n,i),lv(o.z,a,n,i))}).setLayout({name:"mx_gradient_vec3_1",type:"vec3",inputs:[{name:"hash",type:"uvec3"},{name:"x",type:"float"},{name:"y",type:"float"},{name:"z",type:"float"}]}),hv=gb([dv,cv]),pv=an(([e])=>{const t=hn(e).toVar();return Ma(.6616,t)}).setLayout({name:"mx_gradient_scale2d_0",type:"float",inputs:[{name:"v",type:"float"}]}),gv=an(([e])=>{const t=hn(e).toVar();return Ma(.982,t)}).setLayout({name:"mx_gradient_scale3d_0",type:"float",inputs:[{name:"v",type:"float"}]}),mv=gb([pv,an(([e])=>{const t=Tn(e).toVar();return Ma(.6616,t)}).setLayout({name:"mx_gradient_scale2d_1",type:"vec3",inputs:[{name:"v",type:"vec3"}]})]),fv=gb([gv,an(([e])=>{const t=Tn(e).toVar();return Ma(.982,t)}).setLayout({name:"mx_gradient_scale3d_1",type:"vec3",inputs:[{name:"v",type:"vec3"}]})]),yv=an(([e,t])=>{const r=pn(t).toVar(),s=gn(e).toVar();return s.shiftLeft(r).bitOr(s.shiftRight(pn(32).sub(r)))}).setLayout({name:"mx_rotl32",type:"uint",inputs:[{name:"x",type:"uint"},{name:"k",type:"int"}]}),bv=an(([e,t,r])=>{e.subAssign(r),e.bitXorAssign(yv(r,pn(4))),r.addAssign(t),t.subAssign(e),t.bitXorAssign(yv(e,pn(6))),e.addAssign(r),r.subAssign(t),r.bitXorAssign(yv(t,pn(8))),t.addAssign(e),e.subAssign(r),e.bitXorAssign(yv(r,pn(16))),r.addAssign(t),t.subAssign(e),t.bitXorAssign(yv(e,pn(19))),e.addAssign(r),r.subAssign(t),r.bitXorAssign(yv(t,pn(4))),t.addAssign(e)}),xv=an(([e,t,r])=>{const s=gn(r).toVar(),i=gn(t).toVar(),n=gn(e).toVar();return s.bitXorAssign(i),s.subAssign(yv(i,pn(14))),n.bitXorAssign(s),n.subAssign(yv(s,pn(11))),i.bitXorAssign(n),i.subAssign(yv(n,pn(25))),s.bitXorAssign(i),s.subAssign(yv(i,pn(16))),n.bitXorAssign(s),n.subAssign(yv(s,pn(4))),i.bitXorAssign(n),i.subAssign(yv(n,pn(14))),s.bitXorAssign(i),s.subAssign(yv(i,pn(24))),s}).setLayout({name:"mx_bjfinal",type:"uint",inputs:[{name:"a",type:"uint"},{name:"b",type:"uint"},{name:"c",type:"uint"}]}),Tv=an(([e])=>{const t=gn(e).toVar();return hn(t).div(hn(gn(pn(4294967295))))}).setLayout({name:"mx_bits_to_01",type:"float",inputs:[{name:"bits",type:"uint"}]}),_v=an(([e])=>{const t=hn(e).toVar();return t.mul(t).mul(t).mul(t.mul(t.mul(6).sub(15)).add(10))}).setLayout({name:"mx_fade",type:"float",inputs:[{name:"t",type:"float"}]}),vv=gb([an(([e])=>{const t=pn(e).toVar(),r=gn(gn(1)).toVar(),s=gn(gn(pn(3735928559)).add(r.shiftLeft(gn(2))).add(gn(13))).toVar();return xv(s.add(gn(t)),s,s)}).setLayout({name:"mx_hash_int_0",type:"uint",inputs:[{name:"x",type:"int"}]}),an(([e,t])=>{const r=pn(t).toVar(),s=pn(e).toVar(),i=gn(gn(2)).toVar(),n=gn().toVar(),a=gn().toVar(),o=gn().toVar();return n.assign(a.assign(o.assign(gn(pn(3735928559)).add(i.shiftLeft(gn(2))).add(gn(13))))),n.addAssign(gn(s)),a.addAssign(gn(r)),xv(n,a,o)}).setLayout({name:"mx_hash_int_1",type:"uint",inputs:[{name:"x",type:"int"},{name:"y",type:"int"}]}),an(([e,t,r])=>{const s=pn(r).toVar(),i=pn(t).toVar(),n=pn(e).toVar(),a=gn(gn(3)).toVar(),o=gn().toVar(),u=gn().toVar(),l=gn().toVar();return o.assign(u.assign(l.assign(gn(pn(3735928559)).add(a.shiftLeft(gn(2))).add(gn(13))))),o.addAssign(gn(n)),u.addAssign(gn(i)),l.addAssign(gn(s)),xv(o,u,l)}).setLayout({name:"mx_hash_int_2",type:"uint",inputs:[{name:"x",type:"int"},{name:"y",type:"int"},{name:"z",type:"int"}]}),an(([e,t,r,s])=>{const i=pn(s).toVar(),n=pn(r).toVar(),a=pn(t).toVar(),o=pn(e).toVar(),u=gn(gn(4)).toVar(),l=gn().toVar(),d=gn().toVar(),c=gn().toVar();return l.assign(d.assign(c.assign(gn(pn(3735928559)).add(u.shiftLeft(gn(2))).add(gn(13))))),l.addAssign(gn(o)),d.addAssign(gn(a)),c.addAssign(gn(n)),bv(l,d,c),l.addAssign(gn(i)),xv(l,d,c)}).setLayout({name:"mx_hash_int_3",type:"uint",inputs:[{name:"x",type:"int"},{name:"y",type:"int"},{name:"z",type:"int"},{name:"xx",type:"int"}]}),an(([e,t,r,s,i])=>{const n=pn(i).toVar(),a=pn(s).toVar(),o=pn(r).toVar(),u=pn(t).toVar(),l=pn(e).toVar(),d=gn(gn(5)).toVar(),c=gn().toVar(),h=gn().toVar(),p=gn().toVar();return c.assign(h.assign(p.assign(gn(pn(3735928559)).add(d.shiftLeft(gn(2))).add(gn(13))))),c.addAssign(gn(l)),h.addAssign(gn(u)),p.addAssign(gn(o)),bv(c,h,p),c.addAssign(gn(a)),h.addAssign(gn(n)),xv(c,h,p)}).setLayout({name:"mx_hash_int_4",type:"uint",inputs:[{name:"x",type:"int"},{name:"y",type:"int"},{name:"z",type:"int"},{name:"xx",type:"int"},{name:"yy",type:"int"}]})]),Nv=gb([an(([e,t])=>{const r=pn(t).toVar(),s=pn(e).toVar(),i=gn(vv(s,r)).toVar(),n=vn().toVar();return n.x.assign(i.bitAnd(pn(255))),n.y.assign(i.shiftRight(pn(8)).bitAnd(pn(255))),n.z.assign(i.shiftRight(pn(16)).bitAnd(pn(255))),n}).setLayout({name:"mx_hash_vec3_0",type:"uvec3",inputs:[{name:"x",type:"int"},{name:"y",type:"int"}]}),an(([e,t,r])=>{const s=pn(r).toVar(),i=pn(t).toVar(),n=pn(e).toVar(),a=gn(vv(n,i,s)).toVar(),o=vn().toVar();return o.x.assign(a.bitAnd(pn(255))),o.y.assign(a.shiftRight(pn(8)).bitAnd(pn(255))),o.z.assign(a.shiftRight(pn(16)).bitAnd(pn(255))),o}).setLayout({name:"mx_hash_vec3_1",type:"uvec3",inputs:[{name:"x",type:"int"},{name:"y",type:"int"},{name:"z",type:"int"}]})]),Sv=gb([an(([e])=>{const t=fn(e).toVar(),r=pn().toVar(),s=pn().toVar(),i=hn(iv(t.x,r)).toVar(),n=hn(iv(t.y,s)).toVar(),a=hn(_v(i)).toVar(),o=hn(_v(n)).toVar(),u=hn(nv(lv(vv(r,s),i,n),lv(vv(r.add(pn(1)),s),i.sub(1),n),lv(vv(r,s.add(pn(1))),i,n.sub(1)),lv(vv(r.add(pn(1)),s.add(pn(1))),i.sub(1),n.sub(1)),a,o)).toVar();return mv(u)}).setLayout({name:"mx_perlin_noise_float_0",type:"float",inputs:[{name:"p",type:"vec2"}]}),an(([e])=>{const t=Tn(e).toVar(),r=pn().toVar(),s=pn().toVar(),i=pn().toVar(),n=hn(iv(t.x,r)).toVar(),a=hn(iv(t.y,s)).toVar(),o=hn(iv(t.z,i)).toVar(),u=hn(_v(n)).toVar(),l=hn(_v(a)).toVar(),d=hn(_v(o)).toVar(),c=hn(av(lv(vv(r,s,i),n,a,o),lv(vv(r.add(pn(1)),s,i),n.sub(1),a,o),lv(vv(r,s.add(pn(1)),i),n,a.sub(1),o),lv(vv(r.add(pn(1)),s.add(pn(1)),i),n.sub(1),a.sub(1),o),lv(vv(r,s,i.add(pn(1))),n,a,o.sub(1)),lv(vv(r.add(pn(1)),s,i.add(pn(1))),n.sub(1),a,o.sub(1)),lv(vv(r,s.add(pn(1)),i.add(pn(1))),n,a.sub(1),o.sub(1)),lv(vv(r.add(pn(1)),s.add(pn(1)),i.add(pn(1))),n.sub(1),a.sub(1),o.sub(1)),u,l,d)).toVar();return fv(c)}).setLayout({name:"mx_perlin_noise_float_1",type:"float",inputs:[{name:"p",type:"vec3"}]})]),Rv=gb([an(([e])=>{const t=fn(e).toVar(),r=pn().toVar(),s=pn().toVar(),i=hn(iv(t.x,r)).toVar(),n=hn(iv(t.y,s)).toVar(),a=hn(_v(i)).toVar(),o=hn(_v(n)).toVar(),u=Tn(nv(hv(Nv(r,s),i,n),hv(Nv(r.add(pn(1)),s),i.sub(1),n),hv(Nv(r,s.add(pn(1))),i,n.sub(1)),hv(Nv(r.add(pn(1)),s.add(pn(1))),i.sub(1),n.sub(1)),a,o)).toVar();return mv(u)}).setLayout({name:"mx_perlin_noise_vec3_0",type:"vec3",inputs:[{name:"p",type:"vec2"}]}),an(([e])=>{const t=Tn(e).toVar(),r=pn().toVar(),s=pn().toVar(),i=pn().toVar(),n=hn(iv(t.x,r)).toVar(),a=hn(iv(t.y,s)).toVar(),o=hn(iv(t.z,i)).toVar(),u=hn(_v(n)).toVar(),l=hn(_v(a)).toVar(),d=hn(_v(o)).toVar(),c=Tn(av(hv(Nv(r,s,i),n,a,o),hv(Nv(r.add(pn(1)),s,i),n.sub(1),a,o),hv(Nv(r,s.add(pn(1)),i),n,a.sub(1),o),hv(Nv(r.add(pn(1)),s.add(pn(1)),i),n.sub(1),a.sub(1),o),hv(Nv(r,s,i.add(pn(1))),n,a,o.sub(1)),hv(Nv(r.add(pn(1)),s,i.add(pn(1))),n.sub(1),a,o.sub(1)),hv(Nv(r,s.add(pn(1)),i.add(pn(1))),n,a.sub(1),o.sub(1)),hv(Nv(r.add(pn(1)),s.add(pn(1)),i.add(pn(1))),n.sub(1),a.sub(1),o.sub(1)),u,l,d)).toVar();return fv(c)}).setLayout({name:"mx_perlin_noise_vec3_1",type:"vec3",inputs:[{name:"p",type:"vec3"}]})]),Av=gb([an(([e])=>{const t=hn(e).toVar(),r=pn(sv(t)).toVar();return Tv(vv(r))}).setLayout({name:"mx_cell_noise_float_0",type:"float",inputs:[{name:"p",type:"float"}]}),an(([e])=>{const t=fn(e).toVar(),r=pn(sv(t.x)).toVar(),s=pn(sv(t.y)).toVar();return Tv(vv(r,s))}).setLayout({name:"mx_cell_noise_float_1",type:"float",inputs:[{name:"p",type:"vec2"}]}),an(([e])=>{const t=Tn(e).toVar(),r=pn(sv(t.x)).toVar(),s=pn(sv(t.y)).toVar(),i=pn(sv(t.z)).toVar();return Tv(vv(r,s,i))}).setLayout({name:"mx_cell_noise_float_2",type:"float",inputs:[{name:"p",type:"vec3"}]}),an(([e])=>{const t=Sn(e).toVar(),r=pn(sv(t.x)).toVar(),s=pn(sv(t.y)).toVar(),i=pn(sv(t.z)).toVar(),n=pn(sv(t.w)).toVar();return Tv(vv(r,s,i,n))}).setLayout({name:"mx_cell_noise_float_3",type:"float",inputs:[{name:"p",type:"vec4"}]})]),Ev=gb([an(([e])=>{const t=hn(e).toVar(),r=pn(sv(t)).toVar();return Tn(Tv(vv(r,pn(0))),Tv(vv(r,pn(1))),Tv(vv(r,pn(2))))}).setLayout({name:"mx_cell_noise_vec3_0",type:"vec3",inputs:[{name:"p",type:"float"}]}),an(([e])=>{const t=fn(e).toVar(),r=pn(sv(t.x)).toVar(),s=pn(sv(t.y)).toVar();return Tn(Tv(vv(r,s,pn(0))),Tv(vv(r,s,pn(1))),Tv(vv(r,s,pn(2))))}).setLayout({name:"mx_cell_noise_vec3_1",type:"vec3",inputs:[{name:"p",type:"vec2"}]}),an(([e])=>{const t=Tn(e).toVar(),r=pn(sv(t.x)).toVar(),s=pn(sv(t.y)).toVar(),i=pn(sv(t.z)).toVar();return Tn(Tv(vv(r,s,i,pn(0))),Tv(vv(r,s,i,pn(1))),Tv(vv(r,s,i,pn(2))))}).setLayout({name:"mx_cell_noise_vec3_2",type:"vec3",inputs:[{name:"p",type:"vec3"}]}),an(([e])=>{const t=Sn(e).toVar(),r=pn(sv(t.x)).toVar(),s=pn(sv(t.y)).toVar(),i=pn(sv(t.z)).toVar(),n=pn(sv(t.w)).toVar();return Tn(Tv(vv(r,s,i,n,pn(0))),Tv(vv(r,s,i,n,pn(1))),Tv(vv(r,s,i,n,pn(2))))}).setLayout({name:"mx_cell_noise_vec3_3",type:"vec3",inputs:[{name:"p",type:"vec4"}]})]),wv=an(([e,t,r,s])=>{const i=hn(s).toVar(),n=hn(r).toVar(),a=pn(t).toVar(),o=Tn(e).toVar(),u=hn(0).toVar(),l=hn(1).toVar();return op(a,()=>{u.addAssign(l.mul(Sv(o))),l.mulAssign(i),o.mulAssign(n)}),u}).setLayout({name:"mx_fractal_noise_float",type:"float",inputs:[{name:"p",type:"vec3"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),Cv=an(([e,t,r,s])=>{const i=hn(s).toVar(),n=hn(r).toVar(),a=pn(t).toVar(),o=Tn(e).toVar(),u=Tn(0).toVar(),l=hn(1).toVar();return op(a,()=>{u.addAssign(l.mul(Rv(o))),l.mulAssign(i),o.mulAssign(n)}),u}).setLayout({name:"mx_fractal_noise_vec3",type:"vec3",inputs:[{name:"p",type:"vec3"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),Mv=an(([e,t,r,s])=>{const i=hn(s).toVar(),n=hn(r).toVar(),a=pn(t).toVar(),o=Tn(e).toVar();return fn(wv(o,a,n,i),wv(o.add(Tn(pn(19),pn(193),pn(17))),a,n,i))}).setLayout({name:"mx_fractal_noise_vec2",type:"vec2",inputs:[{name:"p",type:"vec3"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),Bv=an(([e,t,r,s])=>{const i=hn(s).toVar(),n=hn(r).toVar(),a=pn(t).toVar(),o=Tn(e).toVar(),u=Tn(Cv(o,a,n,i)).toVar(),l=hn(wv(o.add(Tn(pn(19),pn(193),pn(17))),a,n,i)).toVar();return Sn(u,l)}).setLayout({name:"mx_fractal_noise_vec4",type:"vec4",inputs:[{name:"p",type:"vec3"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),Lv=gb([an(([e,t,r,s,i,n,a])=>{const o=pn(a).toVar(),u=hn(n).toVar(),l=pn(i).toVar(),d=pn(s).toVar(),c=pn(r).toVar(),h=pn(t).toVar(),p=fn(e).toVar(),g=Tn(Ev(fn(h.add(d),c.add(l)))).toVar(),m=fn(g.x,g.y).toVar();m.subAssign(.5),m.mulAssign(u),m.addAssign(.5);const f=fn(fn(hn(h),hn(c)).add(m)).toVar(),y=fn(f.sub(p)).toVar();return ln(o.equal(pn(2)),()=>wo(y.x).add(wo(y.y))),ln(o.equal(pn(3)),()=>Wo(wo(y.x),wo(y.y))),Ko(y,y)}).setLayout({name:"mx_worley_distance_0",type:"float",inputs:[{name:"p",type:"vec2"},{name:"x",type:"int"},{name:"y",type:"int"},{name:"xoff",type:"int"},{name:"yoff",type:"int"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),an(([e,t,r,s,i,n,a,o,u])=>{const l=pn(u).toVar(),d=hn(o).toVar(),c=pn(a).toVar(),h=pn(n).toVar(),p=pn(i).toVar(),g=pn(s).toVar(),m=pn(r).toVar(),f=pn(t).toVar(),y=Tn(e).toVar(),b=Tn(Ev(Tn(f.add(p),m.add(h),g.add(c)))).toVar();b.subAssign(.5),b.mulAssign(d),b.addAssign(.5);const x=Tn(Tn(hn(f),hn(m),hn(g)).add(b)).toVar(),T=Tn(x.sub(y)).toVar();return ln(l.equal(pn(2)),()=>wo(T.x).add(wo(T.y)).add(wo(T.z))),ln(l.equal(pn(3)),()=>Wo(wo(T.x),wo(T.y),wo(T.z))),Ko(T,T)}).setLayout({name:"mx_worley_distance_1",type:"float",inputs:[{name:"p",type:"vec3"},{name:"x",type:"int"},{name:"y",type:"int"},{name:"z",type:"int"},{name:"xoff",type:"int"},{name:"yoff",type:"int"},{name:"zoff",type:"int"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]})]),Pv=an(([e,t,r])=>{const s=pn(r).toVar(),i=hn(t).toVar(),n=fn(e).toVar(),a=pn().toVar(),o=pn().toVar(),u=fn(iv(n.x,a),iv(n.y,o)).toVar(),l=hn(1e6).toVar();return op({start:-1,end:pn(1),name:"x",condition:"<="},({x:e})=>{op({start:-1,end:pn(1),name:"y",condition:"<="},({y:t})=>{const r=hn(Lv(u,e,t,a,o,i,s)).toVar();l.assign($o(l,r))})}),ln(s.equal(pn(0)),()=>{l.assign(fo(l))}),l}).setLayout({name:"mx_worley_noise_float_0",type:"float",inputs:[{name:"p",type:"vec2"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),Fv=an(([e,t,r])=>{const s=pn(r).toVar(),i=hn(t).toVar(),n=fn(e).toVar(),a=pn().toVar(),o=pn().toVar(),u=fn(iv(n.x,a),iv(n.y,o)).toVar(),l=fn(1e6,1e6).toVar();return op({start:-1,end:pn(1),name:"x",condition:"<="},({x:e})=>{op({start:-1,end:pn(1),name:"y",condition:"<="},({y:t})=>{const r=hn(Lv(u,e,t,a,o,i,s)).toVar();ln(r.lessThan(l.x),()=>{l.y.assign(l.x),l.x.assign(r)}).ElseIf(r.lessThan(l.y),()=>{l.y.assign(r)})})}),ln(s.equal(pn(0)),()=>{l.assign(fo(l))}),l}).setLayout({name:"mx_worley_noise_vec2_0",type:"vec2",inputs:[{name:"p",type:"vec2"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),Dv=an(([e,t,r])=>{const s=pn(r).toVar(),i=hn(t).toVar(),n=fn(e).toVar(),a=pn().toVar(),o=pn().toVar(),u=fn(iv(n.x,a),iv(n.y,o)).toVar(),l=Tn(1e6,1e6,1e6).toVar();return op({start:-1,end:pn(1),name:"x",condition:"<="},({x:e})=>{op({start:-1,end:pn(1),name:"y",condition:"<="},({y:t})=>{const r=hn(Lv(u,e,t,a,o,i,s)).toVar();ln(r.lessThan(l.x),()=>{l.z.assign(l.y),l.y.assign(l.x),l.x.assign(r)}).ElseIf(r.lessThan(l.y),()=>{l.z.assign(l.y),l.y.assign(r)}).ElseIf(r.lessThan(l.z),()=>{l.z.assign(r)})})}),ln(s.equal(pn(0)),()=>{l.assign(fo(l))}),l}).setLayout({name:"mx_worley_noise_vec3_0",type:"vec3",inputs:[{name:"p",type:"vec2"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),Iv=gb([Pv,an(([e,t,r])=>{const s=pn(r).toVar(),i=hn(t).toVar(),n=Tn(e).toVar(),a=pn().toVar(),o=pn().toVar(),u=pn().toVar(),l=Tn(iv(n.x,a),iv(n.y,o),iv(n.z,u)).toVar(),d=hn(1e6).toVar();return op({start:-1,end:pn(1),name:"x",condition:"<="},({x:e})=>{op({start:-1,end:pn(1),name:"y",condition:"<="},({y:t})=>{op({start:-1,end:pn(1),name:"z",condition:"<="},({z:r})=>{const n=hn(Lv(l,e,t,r,a,o,u,i,s)).toVar();d.assign($o(d,n))})})}),ln(s.equal(pn(0)),()=>{d.assign(fo(d))}),d}).setLayout({name:"mx_worley_noise_float_1",type:"float",inputs:[{name:"p",type:"vec3"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]})]),Uv=gb([Fv,an(([e,t,r])=>{const s=pn(r).toVar(),i=hn(t).toVar(),n=Tn(e).toVar(),a=pn().toVar(),o=pn().toVar(),u=pn().toVar(),l=Tn(iv(n.x,a),iv(n.y,o),iv(n.z,u)).toVar(),d=fn(1e6,1e6).toVar();return op({start:-1,end:pn(1),name:"x",condition:"<="},({x:e})=>{op({start:-1,end:pn(1),name:"y",condition:"<="},({y:t})=>{op({start:-1,end:pn(1),name:"z",condition:"<="},({z:r})=>{const n=hn(Lv(l,e,t,r,a,o,u,i,s)).toVar();ln(n.lessThan(d.x),()=>{d.y.assign(d.x),d.x.assign(n)}).ElseIf(n.lessThan(d.y),()=>{d.y.assign(n)})})})}),ln(s.equal(pn(0)),()=>{d.assign(fo(d))}),d}).setLayout({name:"mx_worley_noise_vec2_1",type:"vec2",inputs:[{name:"p",type:"vec3"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]})]),Ov=gb([Dv,an(([e,t,r])=>{const s=pn(r).toVar(),i=hn(t).toVar(),n=Tn(e).toVar(),a=pn().toVar(),o=pn().toVar(),u=pn().toVar(),l=Tn(iv(n.x,a),iv(n.y,o),iv(n.z,u)).toVar(),d=Tn(1e6,1e6,1e6).toVar();return op({start:-1,end:pn(1),name:"x",condition:"<="},({x:e})=>{op({start:-1,end:pn(1),name:"y",condition:"<="},({y:t})=>{op({start:-1,end:pn(1),name:"z",condition:"<="},({z:r})=>{const n=hn(Lv(l,e,t,r,a,o,u,i,s)).toVar();ln(n.lessThan(d.x),()=>{d.z.assign(d.y),d.y.assign(d.x),d.x.assign(n)}).ElseIf(n.lessThan(d.y),()=>{d.z.assign(d.y),d.y.assign(n)}).ElseIf(n.lessThan(d.z),()=>{d.z.assign(n)})})})}),ln(s.equal(pn(0)),()=>{d.assign(fo(d))}),d}).setLayout({name:"mx_worley_noise_vec3_1",type:"vec3",inputs:[{name:"p",type:"vec3"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]})]),Vv=an(([e,t,r,s,i,n,a,o,u,l,d])=>{const c=pn(e).toVar(),h=fn(t).toVar(),p=fn(r).toVar(),g=fn(s).toVar(),m=hn(i).toVar(),f=hn(n).toVar(),y=hn(a).toVar(),b=mn(o).toVar(),x=pn(u).toVar(),T=hn(l).toVar(),_=hn(d).toVar(),v=h.mul(p).add(g),N=hn(0).toVar();return ln(c.equal(pn(0)),()=>{N.assign(Rv(v))}),ln(c.equal(pn(1)),()=>{N.assign(Ev(v))}),ln(c.equal(pn(2)),()=>{N.assign(Ov(v,m,pn(0)))}),ln(c.equal(pn(3)),()=>{N.assign(Cv(Tn(v,0),x,T,_))}),N.assign(N.mul(y.sub(f)).add(f)),ln(b,()=>{N.assign(nu(N,f,y))}),N}).setLayout({name:"mx_unifiednoise2d",type:"float",inputs:[{name:"noiseType",type:"int"},{name:"texcoord",type:"vec2"},{name:"freq",type:"vec2"},{name:"offset",type:"vec2"},{name:"jitter",type:"float"},{name:"outmin",type:"float"},{name:"outmax",type:"float"},{name:"clampoutput",type:"bool"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),kv=an(([e,t,r,s,i,n,a,o,u,l,d])=>{const c=pn(e).toVar(),h=Tn(t).toVar(),p=Tn(r).toVar(),g=Tn(s).toVar(),m=hn(i).toVar(),f=hn(n).toVar(),y=hn(a).toVar(),b=mn(o).toVar(),x=pn(u).toVar(),T=hn(l).toVar(),_=hn(d).toVar(),v=h.mul(p).add(g),N=hn(0).toVar();return ln(c.equal(pn(0)),()=>{N.assign(Rv(v))}),ln(c.equal(pn(1)),()=>{N.assign(Ev(v))}),ln(c.equal(pn(2)),()=>{N.assign(Ov(v,m,pn(0)))}),ln(c.equal(pn(3)),()=>{N.assign(Cv(v,x,T,_))}),N.assign(N.mul(y.sub(f)).add(f)),ln(b,()=>{N.assign(nu(N,f,y))}),N}).setLayout({name:"mx_unifiednoise3d",type:"float",inputs:[{name:"noiseType",type:"int"},{name:"position",type:"vec3"},{name:"freq",type:"vec3"},{name:"offset",type:"vec3"},{name:"jitter",type:"float"},{name:"outmin",type:"float"},{name:"outmax",type:"float"},{name:"clampoutput",type:"bool"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),Gv=an(([e])=>{const t=e.y,r=e.z,s=Tn().toVar();return ln(t.lessThan(1e-4),()=>{s.assign(Tn(r,r,r))}).Else(()=>{let i=e.x;i=i.sub(bo(i)).mul(6).toVar();const n=pn(Uo(i)),a=i.sub(hn(n)),o=r.mul(t.oneMinus()),u=r.mul(t.mul(a).oneMinus()),l=r.mul(t.mul(a.oneMinus()).oneMinus());ln(n.equal(pn(0)),()=>{s.assign(Tn(r,l,o))}).ElseIf(n.equal(pn(1)),()=>{s.assign(Tn(u,r,o))}).ElseIf(n.equal(pn(2)),()=>{s.assign(Tn(o,r,l))}).ElseIf(n.equal(pn(3)),()=>{s.assign(Tn(o,u,r))}).ElseIf(n.equal(pn(4)),()=>{s.assign(Tn(l,o,r))}).Else(()=>{s.assign(Tn(r,o,u))})}),s}).setLayout({name:"mx_hsvtorgb",type:"vec3",inputs:[{name:"hsv",type:"vec3"}]}),zv=an(([e])=>{const t=Tn(e).toVar(),r=hn(t.x).toVar(),s=hn(t.y).toVar(),i=hn(t.z).toVar(),n=hn($o(r,$o(s,i))).toVar(),a=hn(Wo(r,Wo(s,i))).toVar(),o=hn(a.sub(n)).toVar(),u=hn().toVar(),l=hn().toVar(),d=hn().toVar();return d.assign(a),ln(a.greaterThan(0),()=>{l.assign(o.div(a))}).Else(()=>{l.assign(0)}),ln(l.lessThanEqual(0),()=>{u.assign(0)}).Else(()=>{ln(r.greaterThanEqual(a),()=>{u.assign(s.sub(i).div(o))}).ElseIf(s.greaterThanEqual(a),()=>{u.assign(wa(2,i.sub(r).div(o)))}).Else(()=>{u.assign(wa(4,r.sub(s).div(o)))}),u.mulAssign(1/6),ln(u.lessThan(0),()=>{u.addAssign(1)})}),Tn(u,l,d)}).setLayout({name:"mx_rgbtohsv",type:"vec3",inputs:[{name:"c",type:"vec3"}]}),$v=an(([e])=>{const t=Tn(e).toVar(),r=Nn(Ia(t,Tn(.04045))).toVar(),s=Tn(t.div(12.92)).toVar(),i=Tn(Qo(Wo(t.add(Tn(.055)),Tn(0)).div(1.055),Tn(2.4))).toVar();return iu(s,i,r)}).setLayout({name:"mx_srgb_texture_to_lin_rec709",type:"vec3",inputs:[{name:"color",type:"vec3"}]}),Wv=(e,t)=>{e=hn(e),t=hn(t);const r=fn(t.dFdx(),t.dFdy()).length().mul(.7071067811865476);return uu(e.sub(r),e.add(r),t)},Hv=(e,t,r,s)=>iu(e,t,r[s].clamp()),jv=(e,t,r,s,i)=>iu(e,t,Wv(r,s[i])),qv=an(([e,t,r])=>{const s=To(e).toVar(),i=Ca(hn(.5).mul(t.sub(r)),Pd).div(s).toVar(),n=Ca(hn(-.5).mul(t.sub(r)),Pd).div(s).toVar(),a=Tn().toVar();a.x=s.x.greaterThan(hn(0)).select(i.x,n.x),a.y=s.y.greaterThan(hn(0)).select(i.y,n.y),a.z=s.z.greaterThan(hn(0)).select(i.z,n.z);const o=$o(a.x,a.y,a.z).toVar();return Pd.add(s.mul(o)).toVar().sub(r)}),Xv=an(([e,t])=>{const r=e.x,s=e.y,i=e.z;let n=t.element(0).mul(.886227);return n=n.add(t.element(1).mul(1.023328).mul(s)),n=n.add(t.element(2).mul(1.023328).mul(i)),n=n.add(t.element(3).mul(1.023328).mul(r)),n=n.add(t.element(4).mul(.858086).mul(r).mul(s)),n=n.add(t.element(5).mul(.858086).mul(s).mul(i)),n=n.add(t.element(6).mul(i.mul(i).mul(.743125).sub(.247708))),n=n.add(t.element(7).mul(.858086).mul(r).mul(i)),n=n.add(t.element(8).mul(.429043).mul(Ma(r,r).sub(Ma(s,s)))),n});var Kv=Object.freeze({__proto__:null,BRDF_GGX:Dg,BRDF_Lambert:Tg,BasicPointShadowFilter:W_,BasicShadowFilter:T_,Break:up,Const:Cu,Continue:()=>gl("continue").toStack(),DFGApprox:Og,D_GGX:Lg,Discard:ml,EPSILON:to,F_Schlick:xg,Fn:an,HALF_PI:ao,INFINITY:ro,If:ln,Loop:op,NodeAccess:Js,NodeShaderStage:Ys,NodeType:Zs,NodeUpdateType:Qs,OnBeforeMaterialUpdate:e=>tx(ex.BEFORE_MATERIAL,e),OnBeforeObjectUpdate:e=>tx(ex.BEFORE_OBJECT,e),OnMaterialUpdate:e=>tx(ex.MATERIAL,e),OnObjectUpdate:e=>tx(ex.OBJECT,e),PCFShadowFilter:__,PCFSoftShadowFilter:v_,PI:so,PI2:io,PointShadowFilter:H_,Return:()=>gl("return").toStack(),Schlick_to_F0:Gg,ScriptableNodeResources:eT,ShaderNode:Ki,Stack:dn,Switch:(...e)=>xi.Switch(...e),TBNViewMatrix:zc,TWO_PI:no,VSMShadowFilter:N_,V_GGX_SmithCorrelated:Mg,Var:wu,VarIntent:Mu,abs:wo,acesFilmicToneMapping:kx,acos:Ao,add:wa,addMethodChaining:_i,addNodeElement:function(e){d("TSL: AddNodeElement has been removed in favor of tree-shaking. Trying add",e)},agxToneMapping:Wx,all:oo,alphaT:Xn,and:Va,anisotropy:Kn,anisotropyB:Qn,anisotropyT:Yn,any:uo,append:e=>(d("TSL: append() has been renamed to Stack()."),dn(e)),array:_a,arrayBuffer:e=>Yi(new yi(e,"ArrayBuffer")),asin:Ro,assign:Na,atan:Eo,atan2:gu,atomicAdd:(e,t)=>NT(_T.ATOMIC_ADD,e,t),atomicAnd:(e,t)=>NT(_T.ATOMIC_AND,e,t),atomicFunc:NT,atomicLoad:e=>NT(_T.ATOMIC_LOAD,e,null),atomicMax:(e,t)=>NT(_T.ATOMIC_MAX,e,t),atomicMin:(e,t)=>NT(_T.ATOMIC_MIN,e,t),atomicOr:(e,t)=>NT(_T.ATOMIC_OR,e,t),atomicStore:(e,t)=>NT(_T.ATOMIC_STORE,e,t),atomicSub:(e,t)=>NT(_T.ATOMIC_SUB,e,t),atomicXor:(e,t)=>NT(_T.ATOMIC_XOR,e,t),attenuationColor:da,attenuationDistance:la,attribute:Sl,attributeArray:(e,t="float")=>{let r,s;!0===t.isStruct?(r=t.layout.getLength(),s=ks("float")):(r=Gs(t),s=ks(t));const i=new sx(e,r,s);return $h(i,t,e)},backgroundBlurriness:lx,backgroundIntensity:dx,backgroundRotation:cx,batch:rp,bentNormalView:Wc,billboarding:Tb,bitAnd:$a,bitNot:Wa,bitOr:Ha,bitXor:ja,bitangentGeometry:Oc,bitangentLocal:Vc,bitangentView:kc,bitangentWorld:Gc,bitcast:jy,blendBurn:Gp,blendColor:Hp,blendDodge:zp,blendOverlay:Wp,blendScreen:$p,blur:Gm,bool:mn,buffer:Il,bufferAttribute:Ju,builtin:kl,builtinAOContext:Su,builtinShadowContext:Nu,bumpMap:Zc,burn:(...e)=>(d('TSL: "burn" has been renamed. Use "blendBurn" instead.'),Gp(e)),bvec2:xn,bvec3:Nn,bvec4:En,bypass:ll,cache:ol,call:Ra,cameraFar:td,cameraIndex:Jl,cameraNear:ed,cameraNormalMatrix:ad,cameraPosition:od,cameraProjectionMatrix:rd,cameraProjectionMatrixInverse:sd,cameraViewMatrix:id,cameraViewport:ud,cameraWorldMatrix:nd,cbrt:ru,cdl:wx,ceil:xo,checker:J_,cineonToneMapping:Ox,clamp:nu,clearcoat:Gn,clearcoatNormalView:Xd,clearcoatRoughness:zn,code:qx,color:cn,colorSpaceToWorking:Gu,colorToDirection:e=>Yi(e).mul(2).sub(1),compute:il,computeKernel:sl,computeSkinning:(e,t=null)=>{const r=new ip(e);return r.positionNode=$h(new $(e.geometry.getAttribute("position").array,3),"vec3").setPBO(!0).toReadOnly().element(jh).toVar(),r.skinIndexNode=$h(new $(new Uint32Array(e.geometry.getAttribute("skinIndex").array),4),"uvec4").setPBO(!0).toReadOnly().element(jh).toVar(),r.skinWeightNode=$h(new $(e.geometry.getAttribute("skinWeight").array,4),"vec4").setPBO(!0).toReadOnly().element(jh).toVar(),r.bindMatrixNode=xa(e.bindMatrix,"mat4"),r.bindMatrixInverseNode=xa(e.bindMatrixInverse,"mat4"),r.boneMatricesNode=Il(e.skeleton.boneMatrices,"mat4",e.skeleton.bones.length),r.toPositionNode=t,Yi(r)},context:Tu,convert:Ln,convertColorSpace:(e,t,r)=>Yi(new Vu(Yi(e),t,r)),convertToTexture:(e,...t)=>e.isSampleNode||e.isTextureNode?e:e.isPassNode?e.getTextureNode():qb(e,...t),cos:No,countLeadingZeros:Qy,countOneBits:Zy,countTrailingZeros:Yy,cross:Yo,cubeTexture:hc,cubeTextureBase:cc,dFdx:Po,dFdy:Fo,dashSize:sa,debug:xl,decrement:Za,decrementBefore:Ya,defaultBuildStages:ti,defaultShaderStages:ei,defined:qi,degrees:co,deltaTime:fb,densityFog:function(e,t){return d('TSL: "densityFog( color, density )" is deprecated. Use "fog( color, densityFogFactor( density ) )" instead.'),aT(e,nT(t))},densityFogFactor:nT,depth:Lp,depthPass:(e,t,r)=>Yi(new Fx(Fx.DEPTH,e,t,r)),determinant:ko,difference:Xo,diffuseColor:In,diffuseContribution:Un,directPointLight:Q_,directionToColor:Hc,directionToFaceDirection:kd,dispersion:ca,distance:qo,div:Ba,dodge:(...e)=>(d('TSL: "dodge" has been renamed. Use "blendDodge" instead.'),zp(e)),dot:Ko,drawIndex:Yh,dynamicBufferAttribute:(e,t=null,r=0,s=0)=>Zu(e,t,r,s,x),element:Bn,emissive:On,equal:Pa,equals:zo,equirectUV:ag,exp:ho,exp2:po,expression:gl,faceDirection:Vd,faceForward:lu,faceforward:mu,float:hn,floatBitsToInt:e=>new Hy(e,"int","float"),floatBitsToUint:qy,floor:bo,fog:aT,fract:_o,frameGroup:ma,frameId:yb,frontFacing:Od,fwidth:Oo,gain:(e,t)=>e.lessThan(.5)?eb(e.mul(2),t).div(2):Ca(1,eb(Ma(Ca(1,e),2),t).div(2)),gapSize:ia,getConstNodeType:Xi,getCurrentStack:un,getDirection:Um,getDistanceAttenuation:Y_,getGeometryRoughness:wg,getNormalFromDepth:Yb,getParallaxCorrectNormal:qv,getRoughness:Cg,getScreenPosition:Kb,getShIrradianceAt:Xv,getShadowMaterial:R_,getShadowRenderObjectFunction:w_,getTextureIndex:zy,getViewPosition:Xb,ggxConvolution:Hm,globalId:mT,glsl:(e,t)=>qx(e,t,"glsl"),glslFn:(e,t)=>Kx(e,t,"glsl"),grayscale:Nx,greaterThan:Ia,greaterThanEqual:Oa,hash:Jy,highpModelNormalViewMatrix:Cd,highpModelViewMatrix:wd,hue:Ax,increment:Qa,incrementBefore:Ka,inspector:vl,instance:Zh,instanceIndex:jh,instancedArray:(e,t="float")=>{let r,s;!0===t.isStruct?(r=t.layout.getLength(),s=ks("float")):(r=Gs(t),s=ks(t));const i=new rx(e,r,s);return $h(i,t,e)},instancedBufferAttribute:el,instancedDynamicBufferAttribute:tl,instancedMesh:ep,int:pn,intBitsToFloat:e=>new Hy(e,"float","int"),interleavedGradientNoise:Qb,inverse:Go,inverseSqrt:yo,inversesqrt:fu,invocationLocalIndex:Kh,invocationSubgroupIndex:Xh,ior:aa,iridescence:Hn,iridescenceIOR:jn,iridescenceThickness:qn,isolate:al,ivec2:yn,ivec3:_n,ivec4:Rn,js:(e,t)=>qx(e,t,"js"),label:Ru,length:Mo,lengthSq:su,lessThan:Da,lessThanEqual:Ua,lightPosition:e_,lightProjectionUV:JT,lightShadowMatrix:ZT,lightTargetDirection:s_,lightTargetPosition:t_,lightViewPosition:r_,lightingContext:yp,lights:(e=[])=>Yi(new o_).setLights(e),linearDepth:Pp,linearToneMapping:Ix,localId:fT,log:go,log2:mo,logarithmicDepthToViewZ:(e,t,r)=>{const s=e.mul(go(r.div(t)));return hn(Math.E).pow(s).mul(t).negate()},luminance:Ex,mat2:wn,mat3:Cn,mat4:Mn,matcapUV:Mf,materialAO:Uh,materialAlphaTest:th,materialAnisotropy:Th,materialAnisotropyVector:Oh,materialAttenuationColor:wh,materialAttenuationDistance:Eh,materialClearcoat:gh,materialClearcoatNormal:fh,materialClearcoatRoughness:mh,materialColor:rh,materialDispersion:Dh,materialEmissive:ih,materialEnvIntensity:sc,materialEnvRotation:ic,materialIOR:Ah,materialIridescence:_h,materialIridescenceIOR:vh,materialIridescenceThickness:Nh,materialLightMap:Ih,materialLineDashOffset:Ph,materialLineDashSize:Mh,materialLineGapSize:Bh,materialLineScale:Ch,materialLineWidth:Lh,materialMetalness:hh,materialNormal:ph,materialOpacity:nh,materialPointSize:Fh,materialReference:bc,materialReflectivity:dh,materialRefractionRatio:rc,materialRotation:yh,materialRoughness:ch,materialSheen:bh,materialSheenRoughness:xh,materialShininess:sh,materialSpecular:ah,materialSpecularColor:uh,materialSpecularIntensity:oh,materialSpecularStrength:lh,materialThickness:Rh,materialTransmission:Sh,max:Wo,maxMipLevel:Cl,mediumpModelViewMatrix:Ed,metalness:kn,min:$o,mix:iu,mixElement:cu,mod:La,modInt:Ja,modelDirection:bd,modelNormalMatrix:Sd,modelPosition:Td,modelRadius:Nd,modelScale:_d,modelViewMatrix:Ad,modelViewPosition:vd,modelViewProjection:Vh,modelWorldMatrix:xd,modelWorldMatrixInverse:Rd,morphReference:pp,mrt:Wy,mul:Ma,mx_aastep:Wv,mx_add:(e,t=hn(0))=>wa(e,t),mx_atan2:(e=hn(0),t=hn(1))=>Eo(e,t),mx_cell_noise_float:(e=Rl())=>Av(e.convert("vec2|vec3")),mx_contrast:(e,t=1,r=.5)=>hn(e).sub(r).mul(t).add(r),mx_divide:(e,t=hn(1))=>Ba(e,t),mx_fractal_noise_float:(e=Rl(),t=3,r=2,s=.5,i=1)=>wv(e,pn(t),r,s).mul(i),mx_fractal_noise_vec2:(e=Rl(),t=3,r=2,s=.5,i=1)=>Mv(e,pn(t),r,s).mul(i),mx_fractal_noise_vec3:(e=Rl(),t=3,r=2,s=.5,i=1)=>Cv(e,pn(t),r,s).mul(i),mx_fractal_noise_vec4:(e=Rl(),t=3,r=2,s=.5,i=1)=>Bv(e,pn(t),r,s).mul(i),mx_frame:()=>yb,mx_heighttonormal:(e,t)=>(e=Tn(e),t=hn(t),Zc(e,t)),mx_hsvtorgb:Gv,mx_ifequal:(e,t,r,s)=>e.equal(t).mix(r,s),mx_ifgreater:(e,t,r,s)=>e.greaterThan(t).mix(r,s),mx_ifgreatereq:(e,t,r,s)=>e.greaterThanEqual(t).mix(r,s),mx_invert:(e,t=hn(1))=>Ca(t,e),mx_modulo:(e,t=hn(1))=>La(e,t),mx_multiply:(e,t=hn(1))=>Ma(e,t),mx_noise_float:(e=Rl(),t=1,r=0)=>Sv(e.convert("vec2|vec3")).mul(t).add(r),mx_noise_vec3:(e=Rl(),t=1,r=0)=>Rv(e.convert("vec2|vec3")).mul(t).add(r),mx_noise_vec4:(e=Rl(),t=1,r=0)=>{e=e.convert("vec2|vec3");return Sn(Rv(e),Sv(e.add(fn(19,73)))).mul(t).add(r)},mx_place2d:(e,t=fn(.5,.5),r=fn(1,1),s=hn(0),i=fn(0,0))=>{let n=e;if(t&&(n=n.sub(t)),r&&(n=n.mul(r)),s){const e=s.mul(Math.PI/180),t=e.cos(),r=e.sin();n=fn(n.x.mul(t).sub(n.y.mul(r)),n.x.mul(r).add(n.y.mul(t)))}return t&&(n=n.add(t)),i&&(n=n.add(i)),n},mx_power:(e,t=hn(1))=>Qo(e,t),mx_ramp4:(e,t,r,s,i=Rl())=>{const n=i.x.clamp(),a=i.y.clamp(),o=iu(e,t,n),u=iu(r,s,n);return iu(o,u,a)},mx_ramplr:(e,t,r=Rl())=>Hv(e,t,r,"x"),mx_ramptb:(e,t,r=Rl())=>Hv(e,t,r,"y"),mx_rgbtohsv:zv,mx_rotate2d:(e,t)=>{e=fn(e);const r=(t=hn(t)).mul(Math.PI/180);return Ff(e,r)},mx_rotate3d:(e,t,r)=>{e=Tn(e),t=hn(t),r=Tn(r);const s=t.mul(Math.PI/180),i=r.normalize(),n=s.cos(),a=s.sin(),o=hn(1).sub(n);return e.mul(n).add(i.cross(e).mul(a)).add(i.mul(i.dot(e)).mul(o))},mx_safepower:(e,t=1)=>(e=hn(e)).abs().pow(t).mul(e.sign()),mx_separate:(e,t=null)=>{if("string"==typeof t){const r={x:0,r:0,y:1,g:1,z:2,b:2,w:3,a:3},s=t.replace(/^out/,"").toLowerCase();if(void 0!==r[s])return e.element(r[s])}if("number"==typeof t)return e.element(t);if("string"==typeof t&&1===t.length){const r={x:0,r:0,y:1,g:1,z:2,b:2,w:3,a:3};if(void 0!==r[t])return e.element(r[t])}return e},mx_splitlr:(e,t,r,s=Rl())=>jv(e,t,r,s,"x"),mx_splittb:(e,t,r,s=Rl())=>jv(e,t,r,s,"y"),mx_srgb_texture_to_lin_rec709:$v,mx_subtract:(e,t=hn(0))=>Ca(e,t),mx_timer:()=>mb,mx_transform_uv:(e=1,t=0,r=Rl())=>r.mul(e).add(t),mx_unifiednoise2d:(e,t=Rl(),r=fn(1,1),s=fn(0,0),i=1,n=0,a=1,o=!1,u=1,l=2,d=.5)=>Vv(e,t.convert("vec2|vec3"),r,s,i,n,a,o,u,l,d),mx_unifiednoise3d:(e,t=Rl(),r=fn(1,1),s=fn(0,0),i=1,n=0,a=1,o=!1,u=1,l=2,d=.5)=>kv(e,t.convert("vec2|vec3"),r,s,i,n,a,o,u,l,d),mx_worley_noise_float:(e=Rl(),t=1)=>Iv(e.convert("vec2|vec3"),t,pn(1)),mx_worley_noise_vec2:(e=Rl(),t=1)=>Uv(e.convert("vec2|vec3"),t,pn(1)),mx_worley_noise_vec3:(e=Rl(),t=1)=>Ov(e.convert("vec2|vec3"),t,pn(1)),negate:Bo,neutralToneMapping:Hx,nodeArray:Ji,nodeImmutable:tn,nodeObject:Yi,nodeObjectIntent:Qi,nodeObjects:Zi,nodeProxy:en,nodeProxyIntent:rn,normalFlat:$d,normalGeometry:Gd,normalLocal:zd,normalMap:Xc,normalView:jd,normalViewGeometry:Wd,normalWorld:qd,normalWorldGeometry:Hd,normalize:To,not:Ga,notEqual:Fa,numWorkgroups:pT,objectDirection:cd,objectGroup:ya,objectPosition:pd,objectRadius:fd,objectScale:gd,objectViewPosition:md,objectWorldMatrix:hd,oneMinus:Lo,or:ka,orthographicDepthToViewZ:(e,t,r)=>t.sub(r).mul(e).sub(t),oscSawtooth:(e=mb)=>e.fract(),oscSine:(e=mb)=>e.add(.75).mul(2*Math.PI).sin().mul(.5).add(.5),oscSquare:(e=mb)=>e.fract().round(),oscTriangle:(e=mb)=>e.add(.5).fract().mul(2).sub(1).abs(),output:ra,outputStruct:Gy,overlay:(...e)=>(d('TSL: "overlay" has been renamed. Use "blendOverlay" instead.'),Wp(e)),overloadingFn:gb,packHalf2x16:ib,packSnorm2x16:rb,packUnorm2x16:sb,parabola:eb,parallaxDirection:$c,parallaxUV:(e,t)=>e.sub($c.mul(t)),parameter:(e,t)=>Yi(new Dy(e,t)),pass:(e,t,r)=>Yi(new Fx(Fx.COLOR,e,t,r)),passTexture:(e,t)=>Yi(new Lx(e,t)),pcurve:(e,t,r)=>Qo(Ba(Qo(e,t),wa(Qo(e,t),Qo(Ca(1,e),r))),1/t),perspectiveDepthToViewZ:Cp,pmremTexture:mf,pointShadow:X_,pointUV:nx,pointWidth:na,positionGeometry:Md,positionLocal:Bd,positionPrevious:Ld,positionView:Dd,positionViewDirection:Id,positionWorld:Pd,positionWorldDirection:Fd,posterize:Mx,pow:Qo,pow2:Zo,pow3:Jo,pow4:eu,premultiplyAlpha:jp,property:Fn,quadBroadcast:KT,quadSwapDiagonal:$T,quadSwapX:GT,quadSwapY:zT,radians:lo,rand:du,range:dT,rangeFog:function(e,t,r){return d('TSL: "rangeFog( color, near, far )" is deprecated. Use "fog( color, rangeFogFactor( near, far ) )" instead.'),aT(e,iT(t,r))},rangeFogFactor:iT,reciprocal:Io,reference:mc,referenceBuffer:fc,reflect:jo,reflectVector:oc,reflectView:nc,reflector:e=>Yi(new Vb(e)),refract:ou,refractVector:uc,refractView:ac,reinhardToneMapping:Ux,remap:cl,remapClamp:hl,renderGroup:fa,renderOutput:yl,rendererReference:Hu,replaceDefaultUV:function(e,t=null){return Tu(t,{getUV:e})},rotate:Ff,rotateUV:bb,roughness:Vn,round:Do,rtt:qb,sRGBTransferEOTF:Iu,sRGBTransferOETF:Uu,sample:(e,t=null)=>Yi(new Jb(e,Yi(t))),sampler:e=>(!0===e.isNode?e:Pl(e)).convert("sampler"),samplerComparison:e=>(!0===e.isNode?e:Pl(e)).convert("samplerComparison"),saturate:au,saturation:Sx,screen:(...e)=>(d('TSL: "screen" has been renamed. Use "blendScreen" instead.'),$p(e)),screenCoordinate:ql,screenDPR:Wl,screenSize:jl,screenUV:Hl,scriptable:rT,scriptableValue:Qx,select:bu,setCurrentStack:on,setName:vu,shaderStages:ri,shadow:D_,shadowPositionWorld:l_,shapeCircle:ev,sharedUniformGroup:ga,sheen:$n,sheenRoughness:Wn,shiftLeft:qa,shiftRight:Xa,shininess:ta,sign:Co,sin:vo,sinc:(e,t)=>vo(so.mul(t.mul(e).sub(1))).div(so.mul(t.mul(e).sub(1))),skinning:np,smoothstep:uu,smoothstepElement:hu,specularColor:Zn,specularColorBlended:Jn,specularF90:ea,spherizeUV:xb,split:(e,t)=>Yi(new hi(Yi(e),t)),spritesheetUV:Nb,sqrt:fo,stack:Uy,step:Ho,stepElement:pu,storage:$h,storageBarrier:()=>bT("storage").toStack(),storageObject:(e,t,r)=>(d('TSL: "storageObject()" is deprecated. Use "storage().setPBO( true )" instead.'),$h(e,t,r).setPBO(!0)),storageTexture:px,string:(e="")=>Yi(new yi(e,"string")),struct:(e,t=null)=>{const r=new Oy(e,t),s=(...t)=>{let s=null;if(t.length>0)if(t[0].isNode){s={};const r=Object.keys(e);for(let e=0;efx(e,t).level(r),texture3DLoad:(...e)=>fx(...e).setSampler(!1),textureBarrier:()=>bT("texture").toStack(),textureBicubic:om,textureBicubicLevel:am,textureCubeUV:Om,textureLevel:(e,t,r)=>Pl(e,t).level(r),textureLoad:Fl,textureSize:El,textureStore:(e,t,r)=>{const s=px(e,t,r);return null!==r&&s.toStack(),s},thickness:ua,time:mb,toneMapping:qu,toneMappingExposure:Xu,toonOutlinePass:(t,r,s=new e(0,0,0),i=.003,n=1)=>Yi(new Dx(t,r,Yi(s),Yi(i),Yi(n))),transformDirection:tu,transformNormal:Kd,transformNormalToView:Yd,transformedClearcoatNormalView:Jd,transformedNormalView:Qd,transformedNormalWorld:Zd,transmission:oa,transpose:Vo,triNoise3D:cb,triplanarTexture:(...e)=>Sb(...e),triplanarTextures:Sb,trunc:Uo,uint:gn,uintBitsToFloat:e=>new Hy(e,"float","uint"),uniform:xa,uniformArray:Vl,uniformCubeTexture:(e=lc)=>cc(e),uniformFlow:_u,uniformGroup:pa,uniformTexture:(e=Ml)=>Pl(e),unpackHalf2x16:ub,unpackNormal:jc,unpackSnorm2x16:ab,unpackUnorm2x16:ob,unpremultiplyAlpha:qp,userData:(e,t,r)=>Yi(new yx(e,t,r)),uv:Rl,uvec2:bn,uvec3:vn,uvec4:An,varying:Fu,varyingProperty:Dn,vec2:fn,vec3:Tn,vec4:Sn,vectorComponents:si,velocity:vx,vertexColor:kp,vertexIndex:Hh,vertexStage:Du,vibrance:Rx,viewZToLogarithmicDepth:Mp,viewZToOrthographicDepth:Ep,viewZToPerspectiveDepth:wp,viewport:Xl,viewportCoordinate:Yl,viewportDepthTexture:Rp,viewportLinearDepth:Fp,viewportMipTexture:vp,viewportResolution:Zl,viewportSafeUV:_b,viewportSharedTexture:tg,viewportSize:Kl,viewportTexture:_p,viewportUV:Ql,vogelDiskSample:Zb,wgsl:(e,t)=>qx(e,t,"wgsl"),wgslFn:(e,t)=>Kx(e,t,"wgsl"),workgroupArray:(e,t)=>Yi(new TT("Workgroup",e,t)),workgroupBarrier:()=>bT("workgroup").toStack(),workgroupId:gT,workingToColorSpace:ku,xor:za});const Yv=new Fy;class Qv extends ty{constructor(e,t){super(),this.renderer=e,this.nodes=t}update(e,t,r){const s=this.renderer,i=this.nodes.getBackgroundNode(e)||e.background;let n=!1;if(null===i)s._clearColor.getRGB(Yv),Yv.a=s._clearColor.a;else if(!0===i.isColor)i.getRGB(Yv),Yv.a=1,n=!0;else if(!0===i.isNode){const u=this.get(e),l=i;Yv.copy(s._clearColor);let d=u.backgroundMesh;if(void 0===d){const h=Sn(l).mul(dx).context({getUV:()=>cx.mul(Hd),getTextureLevel:()=>lx}),p=rd.element(3).element(3).equal(1),g=Ba(1,rd.element(1).element(1)).mul(3),m=p.select(Bd.mul(g),Bd);let f=rd.mul(Ad.mul(Sn(m,1)));f=f.setZ(f.w);const y=new Xp;function b(){i.removeEventListener("dispose",b),d.material.dispose(),d.geometry.dispose()}y.name="Background.material",y.side=w,y.depthTest=!1,y.depthWrite=!1,y.allowOverride=!1,y.fog=!1,y.lights=!1,y.vertexNode=f,y.colorNode=h,u.backgroundMeshNode=h,u.backgroundMesh=d=new se(new Ye(1,32,32),y),d.frustumCulled=!1,d.name="Background.mesh",d.onBeforeRender=function(e,t,r){this.matrixWorld.copyPosition(r.matrixWorld)},i.addEventListener("dispose",b)}const c=l.getCacheKey();u.backgroundCacheKey!==c&&(u.backgroundMeshNode.node=Sn(l).mul(dx),u.backgroundMeshNode.needsUpdate=!0,d.material.needsUpdate=!0,u.backgroundCacheKey=c),t.unshift(d,d.geometry,d.material,0,0,null,null)}else o("Renderer: Unsupported background configuration.",i);const a=s.xr.getEnvironmentBlendMode();if("additive"===a?Yv.set(0,0,0,1):"alpha-blend"===a&&Yv.set(0,0,0,0),!0===s.autoClear||!0===n){const x=r.clearColorValue;x.r=Yv.r,x.g=Yv.g,x.b=Yv.b,x.a=Yv.a,!0!==s.backend.isWebGLBackend&&!0!==s.alpha||(x.r*=x.a,x.g*=x.a,x.b*=x.a),r.depthClearValue=s._clearDepth,r.stencilClearValue=s._clearStencil,r.clearColor=!0===s.autoClearColor,r.clearDepth=!0===s.autoClearDepth,r.clearStencil=!0===s.autoClearStencil}else r.clearColor=!1,r.clearDepth=!1,r.clearStencil=!1}}let Zv=0;class Jv{constructor(e="",t=[],r=0,s=[]){this.name=e,this.bindings=t,this.index=r,this.bindingsReference=s,this.id=Zv++}}class eN{constructor(e,t,r,s,i,n,a,o,u,l=[]){this.vertexShader=e,this.fragmentShader=t,this.computeShader=r,this.transforms=l,this.nodeAttributes=s,this.bindings=i,this.updateNodes=n,this.updateBeforeNodes=a,this.updateAfterNodes=o,this.observer=u,this.usedTimes=0}createBindings(){const e=[];for(const t of this.bindings){if(!0!==t.bindings[0].groupNode.shared){const r=new Jv(t.name,[],t.index,t.bindingsReference);e.push(r);for(const e of t.bindings)r.bindings.push(e.clone())}else e.push(t)}return e}}class tN{constructor(e,t,r=null){this.isNodeAttribute=!0,this.name=e,this.type=t,this.node=r}}class rN{constructor(e,t,r){this.isNodeUniform=!0,this.name=e,this.type=t,this.node=r}get value(){return this.node.value}set value(e){this.node.value=e}get id(){return this.node.id}get groupNode(){return this.node.groupNode}}class sN{constructor(e,t,r=!1,s=null){this.isNodeVar=!0,this.name=e,this.type=t,this.readOnly=r,this.count=s}}class iN extends sN{constructor(e,t,r=null,s=null){super(e,t),this.needsInterpolation=!1,this.isNodeVarying=!0,this.interpolationType=r,this.interpolationSampling=s}}class nN{constructor(e,t,r=""){this.name=e,this.type=t,this.code=r,Object.defineProperty(this,"isNodeCode",{value:!0})}}let aN=0;class oN{constructor(e=null){this.id=aN++,this.nodesData=new WeakMap,this.parent=e}getData(e){let t=this.nodesData.get(e);return void 0===t&&null!==this.parent&&(t=this.parent.getData(e)),t}setData(e,t){this.nodesData.set(e,t)}}class uN{constructor(e,t){this.name=e,this.members=t,this.output=!1}}class lN{constructor(e,t){this.name=e,this.value=t,this.boundary=0,this.itemSize=0,this.offset=0}setValue(e){this.value=e}getValue(){return this.value}}class dN extends lN{constructor(e,t=0){super(e,t),this.isNumberUniform=!0,this.boundary=4,this.itemSize=1}}class cN extends lN{constructor(e,r=new t){super(e,r),this.isVector2Uniform=!0,this.boundary=8,this.itemSize=2}}class hN extends lN{constructor(e,t=new r){super(e,t),this.isVector3Uniform=!0,this.boundary=16,this.itemSize=3}}class pN extends lN{constructor(e,t=new s){super(e,t),this.isVector4Uniform=!0,this.boundary=16,this.itemSize=4}}class gN extends lN{constructor(t,r=new e){super(t,r),this.isColorUniform=!0,this.boundary=16,this.itemSize=3}}class mN extends lN{constructor(e,t=new i){super(e,t),this.isMatrix2Uniform=!0,this.boundary=8,this.itemSize=4}}class fN extends lN{constructor(e,t=new n){super(e,t),this.isMatrix3Uniform=!0,this.boundary=48,this.itemSize=12}}class yN extends lN{constructor(e,t=new a){super(e,t),this.isMatrix4Uniform=!0,this.boundary=64,this.itemSize=16}}class bN extends dN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class xN extends cN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class TN extends hN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class _N extends pN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class vN extends gN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class NN extends mN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class SN extends fN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class RN extends yN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}let AN=0;const EN=new WeakMap,wN=new WeakMap,CN=new Map([[Int8Array,"int"],[Int16Array,"int"],[Int32Array,"int"],[Uint8Array,"uint"],[Uint16Array,"uint"],[Uint32Array,"uint"],[Float32Array,"float"]]),MN=e=>/e/g.test(e)?String(e).replace(/\+/g,""):(e=Number(e))+(e%1?"":".0");class BN{constructor(e,t,r){this.object=e,this.material=e&&e.material||null,this.geometry=e&&e.geometry||null,this.renderer=t,this.parser=r,this.scene=null,this.camera=null,this.nodes=[],this.sequentialNodes=[],this.updateNodes=[],this.updateBeforeNodes=[],this.updateAfterNodes=[],this.hashNodes={},this.observer=null,this.lightsNode=null,this.environmentNode=null,this.fogNode=null,this.clippingContext=null,this.vertexShader=null,this.fragmentShader=null,this.computeShader=null,this.flowNodes={vertex:[],fragment:[],compute:[]},this.flowCode={vertex:"",fragment:"",compute:""},this.uniforms={vertex:[],fragment:[],compute:[],index:0},this.structs={vertex:[],fragment:[],compute:[],index:0},this.types={vertex:[],fragment:[],compute:[],index:0},this.bindings={vertex:{},fragment:{},compute:{}},this.bindingsIndexes={},this.bindGroups=null,this.attributes=[],this.bufferAttributes=[],this.varyings=[],this.codes={},this.vars={},this.declarations={},this.flow={code:""},this.chaining=[],this.stack=Uy(),this.stacks=[],this.tab="\t",this.currentFunctionNode=null,this.context={material:this.material},this.cache=new oN,this.globalCache=this.cache,this.flowsData=new WeakMap,this.shaderStage=null,this.buildStage=null,this.subBuildLayers=[],this.activeStacks=[],this.subBuildFn=null,this.fnCall=null,Object.defineProperty(this,"id",{value:AN++})}isOpaque(){const e=this.material;return!1===e.transparent&&e.blending===Qe&&!1===e.alphaToCoverage}getBindGroupsCache(){let e=wN.get(this.renderer);return void 0===e&&(e=new Yf,wN.set(this.renderer,e)),e}createRenderTarget(e,t,r){return new _e(e,t,r)}createCubeRenderTarget(e,t){return new og(e,t)}includes(e){return this.nodes.includes(e)}getOutputStructName(){}_getBindGroup(e,t){const r=this.getBindGroupsCache(),s=[];let i,n=!0;for(const e of t)s.push(e),n=n&&!0!==e.groupNode.shared;return n?(i=r.get(s),void 0===i&&(i=new Jv(e,s,this.bindingsIndexes[e].group,s),r.set(s,i))):i=new Jv(e,s,this.bindingsIndexes[e].group,s),i}getBindGroupArray(e,t){const r=this.bindings[t];let s=r[e];return void 0===s&&(void 0===this.bindingsIndexes[e]&&(this.bindingsIndexes[e]={binding:0,group:Object.keys(this.bindingsIndexes).length}),r[e]=s=[]),s}getBindings(){let e=this.bindGroups;if(null===e){const t={},r=this.bindings;for(const e of ri)for(const s in r[e]){const i=r[e][s];(t[s]||(t[s]=[])).push(...i)}e=[];for(const r in t){const s=t[r],i=this._getBindGroup(r,s);e.push(i)}this.bindGroups=e}return e}sortBindingGroups(){const e=this.getBindings();e.sort((e,t)=>e.bindings[0].groupNode.order-t.bindings[0].groupNode.order);for(let t=0;t=0?`${Math.round(n)}u`:"0u";if("bool"===i)return n?"true":"false";if("color"===i)return`${this.getType("vec3")}( ${MN(n.r)}, ${MN(n.g)}, ${MN(n.b)} )`;const a=this.getTypeLength(i),o=this.getComponentType(i),u=e=>this.generateConst(o,e);if(2===a)return`${this.getType(i)}( ${u(n.x)}, ${u(n.y)} )`;if(3===a)return`${this.getType(i)}( ${u(n.x)}, ${u(n.y)}, ${u(n.z)} )`;if(4===a&&"mat2"!==i)return`${this.getType(i)}( ${u(n.x)}, ${u(n.y)}, ${u(n.z)}, ${u(n.w)} )`;if(a>=4&&n&&(n.isMatrix2||n.isMatrix3||n.isMatrix4))return`${this.getType(i)}( ${n.elements.map(u).join(", ")} )`;if(a>4)return`${this.getType(i)}()`;throw new Error(`NodeBuilder: Type '${i}' not found in generate constant attempt.`)}getType(e){return"color"===e?"vec3":e}hasGeometryAttribute(e){return this.geometry&&void 0!==this.geometry.getAttribute(e)}getAttribute(e,t){const r=this.attributes;for(const t of r)if(t.name===e)return t;const s=new tN(e,t);return this.registerDeclaration(s),r.push(s),s}getPropertyName(e){return e.name}isVector(e){return/vec\d/.test(e)}isMatrix(e){return/mat\d/.test(e)}isReference(e){return"void"===e||"property"===e||"sampler"===e||"samplerComparison"===e||"texture"===e||"cubeTexture"===e||"storageTexture"===e||"depthTexture"===e||"texture3D"===e}needsToWorkingColorSpace(){return!1}getComponentTypeFromTexture(e){const t=e.type;if(e.isDataTexture){if(t===R)return"int";if(t===S)return"uint"}return"float"}getElementType(e){return"mat2"===e?"vec2":"mat3"===e?"vec3":"mat4"===e?"vec4":this.getComponentType(e)}getComponentType(e){if("float"===(e=this.getVectorType(e))||"bool"===e||"int"===e||"uint"===e)return e;const t=/(b|i|u|)(vec|mat)([2-4])/.exec(e);return null===t?null:"b"===t[1]?"bool":"i"===t[1]?"int":"u"===t[1]?"uint":"float"}getVectorType(e){return"color"===e?"vec3":"texture"===e||"cubeTexture"===e||"storageTexture"===e||"texture3D"===e?"vec4":e}getTypeFromLength(e,t="float"){if(1===e)return t;let r=Vs(e);const s="float"===t?"":t[0];return!0===/mat2/.test(t)&&(r=r.replace("vec","mat")),s+r}getTypeFromArray(e){return CN.get(e.constructor)}isInteger(e){return/int|uint|(i|u)vec/.test(e)}getTypeFromAttribute(e){let t=e;e.isInterleavedBufferAttribute&&(t=e.data);const r=t.array,s=e.itemSize,i=e.normalized;let n;return e instanceof et||!0===i||(n=this.getTypeFromArray(r)),this.getTypeFromLength(s,n)}getTypeLength(e){const t=this.getVectorType(e),r=/vec([2-4])/.exec(t);return null!==r?Number(r[1]):"float"===t||"bool"===t||"int"===t||"uint"===t?1:!0===/mat2/.test(e)?4:!0===/mat3/.test(e)?9:!0===/mat4/.test(e)?16:0}getVectorFromMatrix(e){return e.replace("mat","vec")}changeComponentType(e,t){return this.getTypeFromLength(this.getTypeLength(e),t)}getIntegerType(e){const t=this.getComponentType(e);return"int"===t||"uint"===t?e:this.changeComponentType(e,"int")}setActiveStack(e){this.activeStacks.push(e)}removeActiveStack(e){if(this.activeStacks[this.activeStacks.length-1]!==e)throw new Error("NodeBuilder: Invalid active stack removal.");this.activeStacks.pop()}getActiveStack(){return this.activeStacks[this.activeStacks.length-1]}getBaseStack(){return this.activeStacks[0]}addStack(){this.stack=Uy(this.stack);const e=un();return this.stacks.push(e),on(this.stack),this.stack}removeStack(){const e=this.stack;for(const t of e.nodes){this.getDataFromNode(t).stack=e}return this.stack=e.parent,on(this.stacks.pop()),e}getDataFromNode(e,t=this.shaderStage,r=null){let s=(r=null===r?e.isGlobal(this)?this.globalCache:this.cache:r).getData(e);void 0===s&&(s={},r.setData(e,s)),void 0===s[t]&&(s[t]={});let i=s[t];const n=s.any?s.any.subBuilds:null,a=this.getClosestSubBuild(n);return a&&(void 0===i.subBuildsCache&&(i.subBuildsCache={}),i=i.subBuildsCache[a]||(i.subBuildsCache[a]={}),i.subBuilds=n),i}getNodeProperties(e,t="any"){const r=this.getDataFromNode(e,t);return r.properties||(r.properties={outputNode:null})}getBufferAttributeFromNode(e,t){const r=this.getDataFromNode(e,"vertex");let s=r.bufferAttribute;if(void 0===s){const i=this.uniforms.index++;s=new tN("nodeAttribute"+i,t,e),this.bufferAttributes.push(s),r.bufferAttribute=s}return s}getStructTypeNode(e,t=this.shaderStage){return this.types[t][e]||null}getStructTypeFromNode(e,t,r=null,s=this.shaderStage){const i=this.getDataFromNode(e,s,this.globalCache);let n=i.structType;if(void 0===n){const a=this.structs.index++;null===r&&(r="StructType"+a),n=new uN(r,t),this.structs[s].push(n),this.types[s][r]=e,i.structType=n}return n}getOutputStructTypeFromNode(e,t){const r=this.getStructTypeFromNode(e,t,"OutputType","fragment");return r.output=!0,r}getUniformFromNode(e,t,r=this.shaderStage,s=null){const i=this.getDataFromNode(e,r,this.globalCache);let n=i.uniform;if(void 0===n){const a=this.uniforms.index++;n=new rN(s||"nodeUniform"+a,t,e),this.uniforms[r].push(n),this.registerDeclaration(n),i.uniform=n}return n}getVarFromNode(e,t=null,r=e.getNodeType(this),s=this.shaderStage,i=!1){const n=this.getDataFromNode(e,s),a=this.getSubBuildProperty("variable",n.subBuilds);let o=n[a];if(void 0===o){const u=i?"_const":"_var",l=this.vars[s]||(this.vars[s]=[]),d=this.vars[u]||(this.vars[u]=0);null===t&&(t=(i?"nodeConst":"nodeVar")+d,this.vars[u]++),"variable"!==a&&(t=this.getSubBuildProperty(t,n.subBuilds));const c=e.getArrayCount(this);o=new sN(t,r,i,c),i||l.push(o),this.registerDeclaration(o),n[a]=o}return o}isDeterministic(e){if(e.isMathNode)return this.isDeterministic(e.aNode)&&(!e.bNode||this.isDeterministic(e.bNode))&&(!e.cNode||this.isDeterministic(e.cNode));if(e.isOperatorNode)return this.isDeterministic(e.aNode)&&(!e.bNode||this.isDeterministic(e.bNode));if(e.isArrayNode){if(null!==e.values)for(const t of e.values)if(!this.isDeterministic(t))return!1;return!0}return!!e.isConstNode}getVaryingFromNode(e,t=null,r=e.getNodeType(this),s=null,i=null){const n=this.getDataFromNode(e,"any"),a=this.getSubBuildProperty("varying",n.subBuilds);let o=n[a];if(void 0===o){const e=this.varyings,u=e.length;null===t&&(t="nodeVarying"+u),"varying"!==a&&(t=this.getSubBuildProperty(t,n.subBuilds)),o=new iN(t,r,s,i),e.push(o),this.registerDeclaration(o),n[a]=o}return o}registerDeclaration(e){const t=this.shaderStage,r=this.declarations[t]||(this.declarations[t]={}),s=this.getPropertyName(e);let i=1,n=s;for(;void 0!==r[n];)n=s+"_"+i++;i>1&&(e.name=n,d(`TSL: Declaration name '${s}' of '${e.type}' already in use. Renamed to '${n}'.`)),r[n]=e}getCodeFromNode(e,t,r=this.shaderStage){const s=this.getDataFromNode(e);let i=s.code;if(void 0===i){const e=this.codes[r]||(this.codes[r]=[]),n=e.length;i=new nN("nodeCode"+n,t),e.push(i),s.code=i}return i}addFlowCodeHierarchy(e,t){const{flowCodes:r,flowCodeBlock:s}=this.getDataFromNode(e);let i=!0,n=t;for(;n;){if(!0===s.get(n)){i=!1;break}n=this.getDataFromNode(n).parentNodeBlock}if(i)for(const e of r)this.addLineFlowCode(e)}addLineFlowCodeBlock(e,t,r){const s=this.getDataFromNode(e),i=s.flowCodes||(s.flowCodes=[]),n=s.flowCodeBlock||(s.flowCodeBlock=new WeakMap);i.push(t),n.set(r,!0)}addLineFlowCode(e,t=null){return""===e||(null!==t&&this.context.nodeBlock&&this.addLineFlowCodeBlock(t,e,this.context.nodeBlock),e=this.tab+e,/;\s*$/.test(e)||(e+=";\n"),this.flow.code+=e),this}addFlowCode(e){return this.flow.code+=e,this}addFlowTab(){return this.tab+="\t",this}removeFlowTab(){return this.tab=this.tab.slice(0,-1),this}getFlowData(e){return this.flowsData.get(e)}flowNode(e){const t=e.getNodeType(this),r=this.flowChildNode(e,t);return this.flowsData.set(e,r),r}addInclude(e){null!==this.currentFunctionNode&&this.currentFunctionNode.includes.push(e)}buildFunctionNode(e){const t=new Xx,r=this.currentFunctionNode;return this.currentFunctionNode=t,t.code=this.buildFunctionCode(e),this.currentFunctionNode=r,t}flowShaderNode(e){const t=e.layout,r={[Symbol.iterator](){let e=0;const t=Object.values(this);return{next:()=>({value:t[e],done:e++>=t.length})}}};for(const e of t.inputs)r[e.name]=new Dy(e.type,e.name);e.layout=null;const s=e.call(r),i=this.flowStagesNode(s,t.type);return e.layout=t,i}flowBuildStage(e,t,r=null){const s=this.getBuildStage();this.setBuildStage(t);const i=e.build(this,r);return this.setBuildStage(s),i}flowStagesNode(e,t=null){const r=this.flow,s=this.vars,i=this.declarations,n=this.cache,a=this.buildStage,o=this.stack,u={code:""};this.flow=u,this.vars={},this.declarations={},this.cache=new oN,this.stack=Uy();for(const r of ti)this.setBuildStage(r),u.result=e.build(this,t);return u.vars=this.getVars(this.shaderStage),this.flow=r,this.vars=s,this.declarations=i,this.cache=n,this.stack=o,this.setBuildStage(a),u}getFunctionOperator(){return null}buildFunctionCode(){d("Abstract function.")}flowChildNode(e,t=null){const r=this.flow,s={code:""};return this.flow=s,s.result=e.build(this,t),this.flow=r,s}flowNodeFromShaderStage(e,t,r=null,s=null){const i=this.tab,n=this.cache,a=this.shaderStage,o=this.context;this.setShaderStage(e);const u={...this.context};delete u.nodeBlock,this.cache=this.globalCache,this.tab="\t",this.context=u;let l=null;if("generate"===this.buildStage){const i=this.flowChildNode(t,r);null!==s&&(i.code+=`${this.tab+s} = ${i.result};\n`),this.flowCode[e]=this.flowCode[e]+i.code,l=i}else l=t.build(this);return this.setShaderStage(a),this.cache=n,this.tab=i,this.context=o,l}getAttributesArray(){return this.attributes.concat(this.bufferAttributes)}getAttributes(){d("Abstract function.")}getVaryings(){d("Abstract function.")}getVar(e,t,r=null){return`${null!==r?this.generateArrayDeclaration(e,r):this.getType(e)} ${t}`}getVars(e){let t="";const r=this.vars[e];if(void 0!==r)for(const e of r)t+=`${this.getVar(e.type,e.name)}; `;return t}getUniforms(){d("Abstract function.")}getCodes(e){const t=this.codes[e];let r="";if(void 0!==t)for(const e of t)r+=e.code+"\n";return r}getHash(){return this.vertexShader+this.fragmentShader+this.computeShader}setShaderStage(e){this.shaderStage=e}getShaderStage(){return this.shaderStage}setBuildStage(e){this.buildStage=e}getBuildStage(){return this.buildStage}buildCode(){d("Abstract function.")}get subBuild(){return this.subBuildLayers[this.subBuildLayers.length-1]||null}addSubBuild(e){this.subBuildLayers.push(e)}removeSubBuild(){return this.subBuildLayers.pop()}getClosestSubBuild(e){let t;if(t=e&&e.isNode?e.isShaderCallNodeInternal?e.shaderNode.subBuilds:e.isStackNode?[e.subBuild]:this.getDataFromNode(e,"any").subBuilds:e instanceof Set?[...e]:e,!t)return null;const r=this.subBuildLayers;for(let e=t.length-1;e>=0;e--){const s=t[e];if(r.includes(s))return s}return null}getSubBuildOutput(e){return this.getSubBuildProperty("outputNode",e)}getSubBuildProperty(e="",t=null){let r,s;return r=null!==t?this.getClosestSubBuild(t):this.subBuildFn,s=r?e?r+"_"+e:r:e,s}build(){const{object:e,material:t,renderer:r}=this;if(null!==t){let e=r.library.fromMaterial(t);null===e&&(o(`NodeMaterial: Material "${t.type}" is not compatible.`),e=new Xp),e.build(this)}else this.addFlow("compute",e);for(const e of ti){this.setBuildStage(e),this.context.vertex&&this.context.vertex.isNode&&this.flowNodeFromShaderStage("vertex",this.context.vertex);for(const t of ri){this.setShaderStage(t);const r=this.flowNodes[t];for(const t of r)"generate"===e?this.flowNode(t):t.build(this)}}return this.setBuildStage(null),this.setShaderStage(null),this.buildCode(),this.buildUpdateNodes(),this}getSharedDataFromNode(e){let t=EN.get(e);return void 0===t&&(t={}),t}getNodeUniform(e,t){const r=this.getSharedDataFromNode(e);let s=r.cache;if(void 0===s){if("float"===t||"int"===t||"uint"===t)s=new bN(e);else if("vec2"===t||"ivec2"===t||"uvec2"===t)s=new xN(e);else if("vec3"===t||"ivec3"===t||"uvec3"===t)s=new TN(e);else if("vec4"===t||"ivec4"===t||"uvec4"===t)s=new _N(e);else if("color"===t)s=new vN(e);else if("mat2"===t)s=new NN(e);else if("mat3"===t)s=new SN(e);else{if("mat4"!==t)throw new Error(`Uniform "${t}" not implemented.`);s=new RN(e)}r.cache=s}return s}format(e,t,r){if((t=this.getVectorType(t))===(r=this.getVectorType(r))||null===r||this.isReference(r))return e;const s=this.getTypeLength(t),i=this.getTypeLength(r);return 16===s&&9===i?`${this.getType(r)}( ${e}[ 0 ].xyz, ${e}[ 1 ].xyz, ${e}[ 2 ].xyz )`:9===s&&4===i?`${this.getType(r)}( ${e}[ 0 ].xy, ${e}[ 1 ].xy )`:s>4||i>4||0===i?e:s===i?`${this.getType(r)}( ${e} )`:s>i?(e="bool"===r?`all( ${e} )`:`${e}.${"xyz".slice(0,i)}`,this.format(e,this.getTypeFromLength(i,this.getComponentType(t)),r)):4===i&&s>1?`${this.getType(r)}( ${this.format(e,t,"vec3")}, 1.0 )`:2===s?`${this.getType(r)}( ${this.format(e,t,"vec2")}, 0.0 )`:(1===s&&i>1&&t!==this.getComponentType(r)&&(e=`${this.getType(this.getComponentType(r))}( ${e} )`),`${this.getType(r)}( ${e} )`)}getSignature(){return`// Three.js r${tt} - Node System\n`}}class LN{constructor(){this.time=0,this.deltaTime=0,this.frameId=0,this.renderId=0,this.updateMap=new WeakMap,this.updateBeforeMap=new WeakMap,this.updateAfterMap=new WeakMap,this.renderer=null,this.material=null,this.camera=null,this.object=null,this.scene=null}_getMaps(e,t){let r=e.get(t);return void 0===r&&(r={renderId:0,frameId:0},e.set(t,r)),r}updateBeforeNode(e){const t=e.getUpdateBeforeType(),r=e.updateReference(this);if(t===Qs.FRAME){const t=this._getMaps(this.updateBeforeMap,r);if(t.frameId!==this.frameId){const r=t.frameId;t.frameId=this.frameId,!1===e.updateBefore(this)&&(t.frameId=r)}}else if(t===Qs.RENDER){const t=this._getMaps(this.updateBeforeMap,r);if(t.renderId!==this.renderId){const r=t.renderId;t.renderId=this.renderId,!1===e.updateBefore(this)&&(t.renderId=r)}}else t===Qs.OBJECT&&e.updateBefore(this)}updateAfterNode(e){const t=e.getUpdateAfterType(),r=e.updateReference(this);if(t===Qs.FRAME){const t=this._getMaps(this.updateAfterMap,r);t.frameId!==this.frameId&&!1!==e.updateAfter(this)&&(t.frameId=this.frameId)}else if(t===Qs.RENDER){const t=this._getMaps(this.updateAfterMap,r);t.renderId!==this.renderId&&!1!==e.updateAfter(this)&&(t.renderId=this.renderId)}else t===Qs.OBJECT&&e.updateAfter(this)}updateNode(e){const t=e.getUpdateType(),r=e.updateReference(this);if(t===Qs.FRAME){const t=this._getMaps(this.updateMap,r);t.frameId!==this.frameId&&!1!==e.update(this)&&(t.frameId=this.frameId)}else if(t===Qs.RENDER){const t=this._getMaps(this.updateMap,r);t.renderId!==this.renderId&&!1!==e.update(this)&&(t.renderId=this.renderId)}else t===Qs.OBJECT&&e.update(this)}update(){this.frameId++,void 0===this.lastTime&&(this.lastTime=performance.now()),this.deltaTime=(performance.now()-this.lastTime)/1e3,this.lastTime=performance.now(),this.time+=this.deltaTime}}class PN{constructor(e,t,r=null,s="",i=!1){this.type=e,this.name=t,this.count=r,this.qualifier=s,this.isConst=i}}PN.isNodeFunctionInput=!0;class FN extends K_{static get type(){return"DirectionalLightNode"}constructor(e=null){super(e)}setupDirect(){const e=this.colorNode;return{lightDirection:s_(this.light),lightColor:e}}}const DN=new a,IN=new a;let UN=null;class ON extends K_{static get type(){return"RectAreaLightNode"}constructor(e=null){super(e),this.halfHeight=xa(new r).setGroup(fa),this.halfWidth=xa(new r).setGroup(fa),this.updateType=Qs.RENDER}update(e){super.update(e);const{light:t}=this,r=e.camera.matrixWorldInverse;IN.identity(),DN.copy(t.matrixWorld),DN.premultiply(r),IN.extractRotation(DN),this.halfWidth.value.set(.5*t.width,0,0),this.halfHeight.value.set(0,.5*t.height,0),this.halfWidth.value.applyMatrix4(IN),this.halfHeight.value.applyMatrix4(IN)}setupDirectRectArea(e){let t,r;e.isAvailable("float32Filterable")?(t=Pl(UN.LTC_FLOAT_1),r=Pl(UN.LTC_FLOAT_2)):(t=Pl(UN.LTC_HALF_1),r=Pl(UN.LTC_HALF_2));const{colorNode:s,light:i}=this;return{lightColor:s,lightPosition:r_(i),halfWidth:this.halfWidth,halfHeight:this.halfHeight,ltc_1:t,ltc_2:r}}static setLTC(e){UN=e}}class VN extends K_{static get type(){return"SpotLightNode"}constructor(e=null){super(e),this.coneCosNode=xa(0).setGroup(fa),this.penumbraCosNode=xa(0).setGroup(fa),this.cutoffDistanceNode=xa(0).setGroup(fa),this.decayExponentNode=xa(0).setGroup(fa),this.colorNode=xa(this.color).setGroup(fa)}update(e){super.update(e);const{light:t}=this;this.coneCosNode.value=Math.cos(t.angle),this.penumbraCosNode.value=Math.cos(t.angle*(1-t.penumbra)),this.cutoffDistanceNode.value=t.distance,this.decayExponentNode.value=t.decay}getSpotAttenuation(e,t){const{coneCosNode:r,penumbraCosNode:s}=this;return uu(r,s,t)}getLightCoord(e){const t=e.getNodeProperties(this);let r=t.projectionUV;return void 0===r&&(r=JT(this.light,e.context.positionWorld),t.projectionUV=r),r}setupDirect(e){const{colorNode:t,cutoffDistanceNode:r,decayExponentNode:s,light:i}=this,n=this.getLightVector(e),a=n.normalize(),o=a.dot(s_(i)),u=this.getSpotAttenuation(e,o),l=n.length(),d=Y_({lightDistance:l,cutoffDistance:r,decayExponent:s});let c,h,p=t.mul(u).mul(d);if(i.colorNode?(h=this.getLightCoord(e),c=i.colorNode(h)):i.map&&(h=this.getLightCoord(e),c=Pl(i.map,h.xy).onRenderUpdate(()=>i.map)),c){p=h.mul(2).sub(1).abs().lessThan(1).all().select(p.mul(c),p)}return{lightColor:p,lightDirection:a}}}class kN extends VN{static get type(){return"IESSpotLightNode"}getSpotAttenuation(e,t){const r=this.light.iesMap;let s=null;if(r&&!0===r.isTexture){const e=t.acos().mul(1/Math.PI);s=Pl(r,fn(e,0),0).r}else s=super.getSpotAttenuation(t);return s}}const GN=an(([e,t])=>{const r=e.abs().sub(t);return Mo(Wo(r,0)).add($o(Wo(r.x,r.y),0))});class zN extends VN{static get type(){return"ProjectorLightNode"}update(e){super.update(e);const t=this.light;if(this.penumbraCosNode.value=Math.min(Math.cos(t.angle*(1-t.penumbra)),.99999),null===t.aspect){let e=1;null!==t.map&&(e=t.map.width/t.map.height),t.shadow.aspect=e}else t.shadow.aspect=t.aspect}getSpotAttenuation(e){const t=hn(0),r=this.penumbraCosNode,s=ZT(this.light).mul(e.context.positionWorld||Pd);return ln(s.w.greaterThan(0),()=>{const e=s.xyz.div(s.w),i=GN(e.xy.sub(fn(.5)),fn(.5)),n=Ba(-1,Ca(1,Ao(r)).sub(1));t.assign(au(i.mul(-2).mul(n)))}),t}}class $N extends K_{static get type(){return"AmbientLightNode"}constructor(e=null){super(e)}setup({context:e}){e.irradiance.addAssign(this.colorNode)}}class WN extends K_{static get type(){return"HemisphereLightNode"}constructor(t=null){super(t),this.lightPositionNode=e_(t),this.lightDirectionNode=this.lightPositionNode.normalize(),this.groundColorNode=xa(new e).setGroup(fa)}update(e){const{light:t}=this;super.update(e),this.lightPositionNode.object3d=t,this.groundColorNode.value.copy(t.groundColor).multiplyScalar(t.intensity)}setup(e){const{colorNode:t,groundColorNode:r,lightDirectionNode:s}=this,i=qd.dot(s).mul(.5).add(.5),n=iu(r,t,i);e.context.irradiance.addAssign(n)}}class HN extends K_{static get type(){return"LightProbeNode"}constructor(e=null){super(e);const t=[];for(let e=0;e<9;e++)t.push(new r);this.lightProbe=Vl(t)}update(e){const{light:t}=this;super.update(e);for(let e=0;e<9;e++)this.lightProbe.array[e].copy(t.sh.coefficients[e]).multiplyScalar(t.intensity)}setup(e){const t=Xv(qd,this.lightProbe);e.context.irradiance.addAssign(t)}}class jN{parseFunction(){d("Abstract function.")}}class qN{constructor(e,t,r="",s=""){this.type=e,this.inputs=t,this.name=r,this.precision=s}getCode(){d("Abstract function.")}}qN.isNodeFunction=!0;const XN=/^\s*(highp|mediump|lowp)?\s*([a-z_0-9]+)\s*([a-z_0-9]+)?\s*\(([\s\S]*?)\)/i,KN=/[a-z_0-9]+/gi,YN="#pragma main";class QN extends qN{constructor(e){const{type:t,inputs:r,name:s,precision:i,inputsCode:n,blockCode:a,headerCode:o}=(e=>{const t=(e=e.trim()).indexOf(YN),r=-1!==t?e.slice(t+12):e,s=r.match(XN);if(null!==s&&5===s.length){const i=s[4],n=[];let a=null;for(;null!==(a=KN.exec(i));)n.push(a);const o=[];let u=0;for(;u{const r=this.backend.createNodeBuilder(e.object,this.renderer);return r.scene=e.scene,r.material=t,r.camera=e.camera,r.context.material=t,r.lightsNode=e.lightsNode,r.environmentNode=this.getEnvironmentNode(e.scene),r.fogNode=this.getFogNode(e.scene),r.clippingContext=e.clippingContext,this.renderer.getOutputRenderTarget()&&this.renderer.getOutputRenderTarget().multiview&&r.enableMultiview(),r};let n=t(e.material);try{n.build()}catch(e){n=t(new Xp),n.build(),o("TSL: "+e)}r=this._createNodeBuilderState(n),s.set(i,r)}r.usedTimes++,t.nodeBuilderState=r}return r}delete(e){if(e.isRenderObject){const t=this.get(e).nodeBuilderState;t.usedTimes--,0===t.usedTimes&&this.nodeBuilderCache.delete(this.getForRenderCacheKey(e))}return super.delete(e)}getForCompute(e){const t=this.get(e);let r=t.nodeBuilderState;if(void 0===r){const s=this.backend.createNodeBuilder(e,this.renderer);s.build(),r=this._createNodeBuilderState(s),t.nodeBuilderState=r}return r}_createNodeBuilderState(e){return new eN(e.vertexShader,e.fragmentShader,e.computeShader,e.getAttributesArray(),e.getBindings(),e.updateNodes,e.updateBeforeNodes,e.updateAfterNodes,e.observer,e.transforms)}getEnvironmentNode(e){this.updateEnvironment(e);let t=null;if(e.environmentNode&&e.environmentNode.isNode)t=e.environmentNode;else{const r=this.get(e);r.environmentNode&&(t=r.environmentNode)}return t}getBackgroundNode(e){this.updateBackground(e);let t=null;if(e.backgroundNode&&e.backgroundNode.isNode)t=e.backgroundNode;else{const r=this.get(e);r.backgroundNode&&(t=r.backgroundNode)}return t}getFogNode(e){return this.updateFog(e),e.fogNode||this.get(e).fogNode||null}getCacheKey(e,t){eS[0]=e,eS[1]=t;const r=this.renderer.info.calls,s=this.callHashCache.get(eS)||{};if(s.callId!==r){const i=this.getEnvironmentNode(e),n=this.getFogNode(e);t&&tS.push(t.getCacheKey(!0)),i&&tS.push(i.getCacheKey()),n&&tS.push(n.getCacheKey()),tS.push(this.renderer.getOutputRenderTarget()&&this.renderer.getOutputRenderTarget().multiview?1:0),tS.push(this.renderer.shadowMap.enabled?1:0),tS.push(this.renderer.shadowMap.type),s.callId=r,s.cacheKey=Ds(tS),this.callHashCache.set(eS,s),tS.length=0}return eS.length=0,s.cacheKey}get isToneMappingState(){return!this.renderer.getRenderTarget()}updateBackground(e){const t=this.get(e),r=e.background;if(r){const s=0===e.backgroundBlurriness&&t.backgroundBlurriness>0||e.backgroundBlurriness>0&&0===t.backgroundBlurriness;if(t.background!==r||s){const i=this.getCacheNode("background",r,()=>{if(!0===r.isCubeTexture||r.mapping===oe||r.mapping===ue||r.mapping===Se){if(e.backgroundBlurriness>0||r.mapping===Se)return mf(r);{let e;return e=!0===r.isCubeTexture?hc(r):Pl(r),hg(e)}}if(!0===r.isTexture)return Pl(r,Hl.flipY()).setUpdateMatrix(!0);!0!==r.isColor&&o("WebGPUNodes: Unsupported background configuration.",r)},s);t.backgroundNode=i,t.background=r,t.backgroundBlurriness=e.backgroundBlurriness}}else t.backgroundNode&&(delete t.backgroundNode,delete t.background)}getCacheNode(e,t,r,s=!1){const i=this.cacheLib[e]||(this.cacheLib[e]=new WeakMap);let n=i.get(t);return(void 0===n||s)&&(n=r(),i.set(t,n)),n}updateFog(e){const t=this.get(e),r=e.fog;if(r){if(t.fog!==r){const e=this.getCacheNode("fog",r,()=>{if(r.isFogExp2){const e=mc("color","color",r).setGroup(fa),t=mc("density","float",r).setGroup(fa);return aT(e,nT(t))}if(r.isFog){const e=mc("color","color",r).setGroup(fa),t=mc("near","float",r).setGroup(fa),s=mc("far","float",r).setGroup(fa);return aT(e,iT(t,s))}o("Renderer: Unsupported fog configuration.",r)});t.fogNode=e,t.fog=r}}else delete t.fogNode,delete t.fog}updateEnvironment(e){const t=this.get(e),r=e.environment;if(r){if(t.environment!==r){const e=this.getCacheNode("environment",r,()=>!0===r.isCubeTexture?hc(r):!0===r.isTexture?Pl(r):void o("Nodes: Unsupported environment configuration.",r));t.environmentNode=e,t.environment=r}}else t.environmentNode&&(delete t.environmentNode,delete t.environment)}getNodeFrame(e=this.renderer,t=null,r=null,s=null,i=null){const n=this.nodeFrame;return n.renderer=e,n.scene=t,n.object=r,n.camera=s,n.material=i,n}getNodeFrameForRender(e){return this.getNodeFrame(e.renderer,e.scene,e.object,e.camera,e.material)}getOutputCacheKey(){const e=this.renderer;return e.toneMapping+","+e.currentColorSpace+","+e.xr.isPresenting}hasOutputChange(e){return JN.get(e)!==this.getOutputCacheKey()}getOutputNode(e){const t=this.renderer,r=this.getOutputCacheKey(),s=e.isArrayTexture?fx(e,Tn(Hl,kl("gl_ViewID_OVR"))).renderOutput(t.toneMapping,t.currentColorSpace):Pl(e,Hl).renderOutput(t.toneMapping,t.currentColorSpace);return JN.set(e,r),s}updateBefore(e){const t=e.getNodeBuilderState();for(const r of t.updateBeforeNodes)this.getNodeFrameForRender(e).updateBeforeNode(r)}updateAfter(e){const t=e.getNodeBuilderState();for(const r of t.updateAfterNodes)this.getNodeFrameForRender(e).updateAfterNode(r)}updateForCompute(e){const t=this.getNodeFrame(),r=this.getForCompute(e);for(const e of r.updateNodes)t.updateNode(e)}updateForRender(e){const t=this.getNodeFrameForRender(e),r=e.getNodeBuilderState();for(const e of r.updateNodes)t.updateNode(e)}needsRefresh(e){const t=this.getNodeFrameForRender(e);return e.getMonitor().needsRefresh(e,t)}dispose(){super.dispose(),this.nodeFrame=new LN,this.nodeBuilderCache=new Map,this.cacheLib={}}}const sS=new Ge;class iS{constructor(e=null){this.version=0,this.clipIntersection=null,this.cacheKey="",this.shadowPass=!1,this.viewNormalMatrix=new n,this.clippingGroupContexts=new WeakMap,this.intersectionPlanes=[],this.unionPlanes=[],this.parentVersion=null,null!==e&&(this.viewNormalMatrix=e.viewNormalMatrix,this.clippingGroupContexts=e.clippingGroupContexts,this.shadowPass=e.shadowPass,this.viewMatrix=e.viewMatrix)}projectPlanes(e,t,r){const s=e.length;for(let i=0;i0,alpha:!0,depth:t.depth,stencil:t.stencil,framebufferScaleFactor:this.getFramebufferScaleFactor()},i=new XRWebGLLayer(e,s,r);this._glBaseLayer=i,e.updateRenderState({baseLayer:i}),t.setPixelRatio(1),t._setXRLayerSize(i.framebufferWidth,i.framebufferHeight),this._xrRenderTarget=new hS(i.framebufferWidth,i.framebufferHeight,{format:Ne,type:ke,colorSpace:t.outputColorSpace,stencilBuffer:t.stencil,resolveDepthBuffer:!1===i.ignoreDepthValues,resolveStencilBuffer:!1===i.ignoreDepthValues}),this._xrRenderTarget._isOpaqueFramebuffer=!0,this._referenceSpace=await e.requestReferenceSpace(this.getReferenceSpaceType())}this.setFoveation(this.getFoveation()),t._animation.setAnimationLoop(this._onAnimationFrame),t._animation.setContext(e),t._animation.start(),this.isPresenting=!0,this.dispatchEvent({type:"sessionstart"})}}updateCamera(e){const t=this._session;if(null===t)return;const r=e.near,s=e.far,i=this._cameraXR,n=this._cameraL,a=this._cameraR;i.near=a.near=n.near=r,i.far=a.far=n.far=s,i.isMultiViewCamera=this._useMultiview,this._currentDepthNear===i.near&&this._currentDepthFar===i.far||(t.updateRenderState({depthNear:i.near,depthFar:i.far}),this._currentDepthNear=i.near,this._currentDepthFar=i.far),i.layers.mask=6|e.layers.mask,n.layers.mask=3&i.layers.mask,a.layers.mask=5&i.layers.mask;const o=e.parent,u=i.cameras;fS(i,o);for(let e=0;e=0&&(r[n]=null,t[n].disconnect(i))}for(let s=0;s=r.length){r.push(i),n=e;break}if(null===r[e]){r[e]=i,n=e;break}}if(-1===n)break}const a=t[n];a&&a.connect(i)}}function TS(e){return"quad"===e.type?this._glBinding.createQuadLayer({transform:new XRRigidTransform(e.translation,e.quaternion),width:e.width/2,height:e.height/2,space:this._referenceSpace,viewPixelWidth:e.pixelwidth,viewPixelHeight:e.pixelheight,clearOnAccess:!1}):this._glBinding.createCylinderLayer({transform:new XRRigidTransform(e.translation,e.quaternion),radius:e.radius,centralAngle:e.centralAngle,aspectRatio:e.aspectRatio,space:this._referenceSpace,viewPixelWidth:e.pixelwidth,viewPixelHeight:e.pixelheight,clearOnAccess:!1})}function _S(e,t){if(void 0===t)return;const r=this._cameraXR,i=this._renderer,n=i.backend,a=this._glBaseLayer,o=this.getReferenceSpace(),u=t.getViewerPose(o);if(this._xrFrame=t,null!==u){const e=u.views;null!==this._glBaseLayer&&n.setXRTarget(a.framebuffer);let t=!1;e.length!==r.cameras.length&&(r.cameras.length=0,t=!0);for(let i=0;i{await this.compileAsync(e,t);const s=this._renderLists.get(e,t),i=this._renderContexts.get(e,t,this._renderTarget,this._mrt),n=e.overrideMaterial||r.material,a=this._objects.get(r,n,e,t,s.lightsNode,i,i.clippingContext),{fragmentShader:o,vertexShader:u}=a.getNodeBuilderState();return{fragmentShader:o,vertexShader:u}}}}async init(){return null!==this._initPromise||(this._initPromise=new Promise(async(e,t)=>{let r=this.backend;try{await r.init(this)}catch(e){if(null===this._getFallback)return void t(e);try{this.backend=r=this._getFallback(e),await r.init(this)}catch(e){return void t(e)}}this._nodes=new rS(this,r),this._animation=new Kf(this,this._nodes,this.info),this._attributes=new oy(r),this._background=new Qv(this,this._nodes),this._geometries=new dy(this._attributes,this.info),this._textures=new Py(this,r,this.info),this._pipelines=new yy(r,this._nodes),this._bindings=new by(r,this._nodes,this._textures,this._attributes,this._pipelines,this.info),this._objects=new ey(this,this._nodes,this._geometries,this._pipelines,this._bindings,this.info),this._renderLists=new Sy(this.lighting),this._bundles=new oS,this._renderContexts=new By,this._animation.start(),this._initialized=!0,this._inspector.init(),e(this)})),this._initPromise}get domElement(){return this._canvasTarget.domElement}get coordinateSystem(){return this.backend.coordinateSystem}async compileAsync(e,t,r=null){if(!0===this._isDeviceLost)return;!1===this._initialized&&await this.init();const s=this._nodes.nodeFrame,i=s.renderId,n=this._currentRenderContext,a=this._currentRenderObjectFunction,o=this._compilationPromises,u=!0===e.isScene?e:NS;null===r&&(r=e);const l=this._renderTarget,d=this._renderContexts.get(r,t,l,this._mrt),c=this._activeMipmapLevel,h=[];this._currentRenderContext=d,this._currentRenderObjectFunction=this.renderObject,this._handleObjectFunction=this._createObjectPipeline,this._compilationPromises=h,s.renderId++,s.update(),d.depth=this.depth,d.stencil=this.stencil,d.clippingContext||(d.clippingContext=new iS),d.clippingContext.updateGlobal(u,t),u.onBeforeRender(this,e,t,l);const p=this._renderLists.get(e,t);if(p.begin(),this._projectObject(e,t,0,p,d.clippingContext),r!==e&&r.traverseVisible(function(e){e.isLight&&e.layers.test(t.layers)&&p.pushLight(e)}),p.finish(),null!==l){this._textures.updateRenderTarget(l,c);const e=this._textures.get(l);d.textures=e.textures,d.depthTexture=e.depthTexture}else d.textures=null,d.depthTexture=null;this._background.update(u,p,d);const g=p.opaque,m=p.transparent,f=p.transparentDoublePass,y=p.lightsNode;!0===this.opaque&&g.length>0&&this._renderObjects(g,t,u,y),!0===this.transparent&&m.length>0&&this._renderTransparents(m,f,t,u,y),s.renderId=i,this._currentRenderContext=n,this._currentRenderObjectFunction=a,this._compilationPromises=o,this._handleObjectFunction=this._renderObjectDirect,await Promise.all(h)}async renderAsync(e,t){v('Renderer: "renderAsync()" has been deprecated. Use "render()" and "await renderer.init();" when creating the renderer.'),await this.init(),this.render(e,t)}async waitForGPU(){o("Renderer: waitForGPU() has been removed. Read https://github.com/mrdoob/three.js/issues/32012 for more information.")}set inspector(e){null!==this._inspector&&this._inspector.setRenderer(null),this._inspector=e,this._inspector.setRenderer(this)}get inspector(){return this._inspector}set highPrecision(e){const t=this.contextNode.value;!0===e?(t.modelViewMatrix=wd,t.modelNormalViewMatrix=Cd):this.highPrecision&&(delete t.modelViewMatrix,delete t.modelNormalViewMatrix)}get highPrecision(){const e=this.contextNode.value;return e.modelViewMatrix===wd&&e.modelNormalViewMatrix===Cd}setMRT(e){return this._mrt=e,this}getMRT(){return this._mrt}getColorBufferType(){return this._colorBufferType}_onDeviceLost(e){let t=`THREE.WebGPURenderer: ${e.api} Device Lost:\n\nMessage: ${e.message}`;e.reason&&(t+=`\nReason: ${e.reason}`),o(t),this._isDeviceLost=!0}_renderBundle(e,t,r){const{bundleGroup:s,camera:i,renderList:n}=e,a=this._currentRenderContext,o=this._bundles.get(s,i),u=this.backend.get(o);void 0===u.renderContexts&&(u.renderContexts=new Set);const l=s.version!==u.version,d=!1===u.renderContexts.has(a)||l;if(u.renderContexts.add(a),d){this.backend.beginBundle(a),(void 0===u.renderObjects||l)&&(u.renderObjects=[]),this._currentRenderBundle=o;const{transparentDoublePass:e,transparent:d,opaque:c}=n;!0===this.opaque&&c.length>0&&this._renderObjects(c,i,t,r),!0===this.transparent&&d.length>0&&this._renderTransparents(d,e,i,t,r),this._currentRenderBundle=null,this.backend.finishBundle(a,o),u.version=s.version}else{const{renderObjects:e}=u;for(let t=0,r=e.length;t>=c,p.viewportValue.height>>=c,p.viewportValue.minDepth=T,p.viewportValue.maxDepth=_,p.viewport=!1===p.viewportValue.equals(RS),p.scissorValue.copy(b).multiplyScalar(x).floor(),p.scissor=f._scissorTest&&!1===p.scissorValue.equals(RS),p.scissorValue.width>>=c,p.scissorValue.height>>=c,p.clippingContext||(p.clippingContext=new iS),p.clippingContext.updateGlobal(u,t),u.onBeforeRender(this,e,t,h);const v=t.isArrayCamera?ES:AS;t.isArrayCamera||(wS.multiplyMatrices(t.projectionMatrix,t.matrixWorldInverse),v.setFromProjectionMatrix(wS,t.coordinateSystem,t.reversedDepth));const N=this._renderLists.get(e,t);if(N.begin(),this._projectObject(e,t,0,N,p.clippingContext),N.finish(),!0===this.sortObjects&&N.sort(this._opaqueSort,this._transparentSort),null!==h){this._textures.updateRenderTarget(h,c);const e=this._textures.get(h);p.textures=e.textures,p.depthTexture=e.depthTexture,p.width=e.width,p.height=e.height,p.renderTarget=h,p.depth=h.depthBuffer,p.stencil=h.stencilBuffer}else p.textures=null,p.depthTexture=null,p.width=SS.width,p.height=SS.height,p.depth=this.depth,p.stencil=this.stencil;p.width>>=c,p.height>>=c,p.activeCubeFace=d,p.activeMipmapLevel=c,p.occlusionQueryCount=N.occlusionQueryCount,p.scissorValue.max(CS.set(0,0,0,0)),p.scissorValue.x+p.scissorValue.width>p.width&&(p.scissorValue.width=Math.max(p.width-p.scissorValue.x,0)),p.scissorValue.y+p.scissorValue.height>p.height&&(p.scissorValue.height=Math.max(p.height-p.scissorValue.y,0)),this._background.update(u,N,p),p.camera=t,this.backend.beginRender(p);const{bundles:S,lightsNode:R,transparentDoublePass:A,transparent:E,opaque:w}=N;return S.length>0&&this._renderBundles(S,u,R),!0===this.opaque&&w.length>0&&this._renderObjects(w,t,u,R),!0===this.transparent&&E.length>0&&this._renderTransparents(E,A,t,u,R),this.backend.finishRender(p),i.renderId=n,this._currentRenderContext=a,this._currentRenderObjectFunction=o,null!==s&&(this.setRenderTarget(l,d,c),this._renderOutput(h)),u.onAfterRender(this,e,t,h),this.inspector.finishRender(this.backend.getTimestampUID(p)),p}_setXRLayerSize(e,t){this._canvasTarget._width=e,this._canvasTarget._height=t,this.setViewport(0,0,e,t)}_renderOutput(e){const t=this._quad;this._nodes.hasOutputChange(e.texture)&&(t.material.fragmentNode=this._nodes.getOutputNode(e.texture),t.material.needsUpdate=!0);const r=this.autoClear,s=this.xr.enabled;this.autoClear=!1,this.xr.enabled=!1,this._renderScene(t,t.camera,!1),this.autoClear=r,this.xr.enabled=s}getMaxAnisotropy(){return this.backend.getMaxAnisotropy()}getActiveCubeFace(){return this._activeCubeFace}getActiveMipmapLevel(){return this._activeMipmapLevel}async setAnimationLoop(e){!1===this._initialized&&await this.init(),this._animation.setAnimationLoop(e)}getAnimationLoop(){return this._animation.getAnimationLoop()}async getArrayBufferAsync(e){return await this.backend.getArrayBufferAsync(e)}getContext(){return this.backend.getContext()}getPixelRatio(){return this._canvasTarget.getPixelRatio()}getDrawingBufferSize(e){return this._canvasTarget.getDrawingBufferSize(e)}getSize(e){return this._canvasTarget.getSize(e)}setPixelRatio(e=1){this._canvasTarget.setPixelRatio(e)}setDrawingBufferSize(e,t,r){this.xr&&this.xr.isPresenting||this._canvasTarget.setDrawingBufferSize(e,t,r)}setSize(e,t,r=!0){this.xr&&this.xr.isPresenting||this._canvasTarget.setSize(e,t,r)}setOpaqueSort(e){this._opaqueSort=e}setTransparentSort(e){this._transparentSort=e}getScissor(e){return this._canvasTarget.getScissor(e)}setScissor(e,t,r,s){this._canvasTarget.setScissor(e,t,r,s)}getScissorTest(){return this._canvasTarget.getScissorTest()}setScissorTest(e){this._canvasTarget.setScissorTest(e),this.backend.setScissorTest(e)}getViewport(e){return this._canvasTarget.getViewport(e)}setViewport(e,t,r,s,i=0,n=1){this._canvasTarget.setViewport(e,t,r,s,i,n)}getClearColor(e){return e.copy(this._clearColor)}setClearColor(e,t=1){this._clearColor.set(e),this._clearColor.a=t}getClearAlpha(){return this._clearColor.a}setClearAlpha(e){this._clearColor.a=e}getClearDepth(){return this._clearDepth}setClearDepth(e){this._clearDepth=e}getClearStencil(){return this._clearStencil}setClearStencil(e){this._clearStencil=e}isOccluded(e){const t=this._currentRenderContext;return t&&this.backend.isOccluded(t,e)}clear(e=!0,t=!0,r=!0){if(!1===this._initialized)throw new Error('Renderer: .clear() called before the backend is initialized. Use "await renderer.init();" before before using this method.');const s=this._renderTarget||this._getFrameBufferTarget();let i=null;if(null!==s){this._textures.updateRenderTarget(s);const e=this._textures.get(s);i=this._renderContexts.getForClear(s),i.textures=e.textures,i.depthTexture=e.depthTexture,i.width=e.width,i.height=e.height,i.renderTarget=s,i.depth=s.depthBuffer,i.stencil=s.stencilBuffer,i.clearColorValue=this.backend.getClearColor(),i.activeCubeFace=this.getActiveCubeFace(),i.activeMipmapLevel=this.getActiveMipmapLevel()}this.backend.clear(e,t,r,i),null!==s&&null===this._renderTarget&&this._renderOutput(s)}clearColor(){this.clear(!0,!1,!1)}clearDepth(){this.clear(!1,!0,!1)}clearStencil(){this.clear(!1,!1,!0)}async clearAsync(e=!0,t=!0,r=!0){v('Renderer: "clearAsync()" has been deprecated. Use "clear()" and "await renderer.init();" when creating the renderer.'),await this.init(),this.clear(e,t,r)}async clearColorAsync(){v('Renderer: "clearColorAsync()" has been deprecated. Use "clearColor()" and "await renderer.init();" when creating the renderer.'),this.clear(!0,!1,!1)}async clearDepthAsync(){v('Renderer: "clearDepthAsync()" has been deprecated. Use "clearDepth()" and "await renderer.init();" when creating the renderer.'),this.clear(!1,!0,!1)}async clearStencilAsync(){v('Renderer: "clearStencilAsync()" has been deprecated. Use "clearStencil()" and "await renderer.init();" when creating the renderer.'),this.clear(!1,!1,!0)}get needsFrameBufferTarget(){const e=this.currentToneMapping!==m,t=this.currentColorSpace!==p.workingColorSpace;return e||t}get samples(){return this._samples}get currentSamples(){let e=this._samples;return null!==this._renderTarget?e=this._renderTarget.samples:this.needsFrameBufferTarget&&(e=0),e}get currentToneMapping(){return this.isOutputTarget?this.toneMapping:m}get currentColorSpace(){return this.isOutputTarget?this.outputColorSpace:p.workingColorSpace}get isOutputTarget(){return this._renderTarget===this._outputRenderTarget||null===this._renderTarget}dispose(){!0===this._initialized&&(this.info.dispose(),this.backend.dispose(),this._animation.dispose(),this._objects.dispose(),this._geometries.dispose(),this._pipelines.dispose(),this._nodes.dispose(),this._bindings.dispose(),this._renderLists.dispose(),this._renderContexts.dispose(),this._textures.dispose(),null!==this._frameBufferTarget&&this._frameBufferTarget.dispose(),Object.values(this.backend.timestampQueryPool).forEach(e=>{null!==e&&e.dispose()})),this.setRenderTarget(null),this.setAnimationLoop(null)}setRenderTarget(e,t=0,r=0){this._renderTarget=e,this._activeCubeFace=t,this._activeMipmapLevel=r}getRenderTarget(){return this._renderTarget}setOutputRenderTarget(e){this._outputRenderTarget=e}getOutputRenderTarget(){return this._outputRenderTarget}setCanvasTarget(e){this._canvasTarget.removeEventListener("resize",this._onCanvasTargetResize),this._canvasTarget=e,this._canvasTarget.addEventListener("resize",this._onCanvasTargetResize)}getCanvasTarget(){return this._canvasTarget}_resetXRState(){this.backend.setXRTarget(null),this.setOutputRenderTarget(null),this.setRenderTarget(null),this._frameBufferTarget.dispose(),this._frameBufferTarget=null}setRenderObjectFunction(e){this._renderObjectFunction=e}getRenderObjectFunction(){return this._renderObjectFunction}compute(e,t=null){if(!0===this._isDeviceLost)return;if(!1===this._initialized)return d("Renderer: .compute() called before the backend is initialized. Try using .computeAsync() instead."),this.computeAsync(e,t);const r=this._nodes.nodeFrame,s=r.renderId;this.info.calls++,this.info.compute.calls++,this.info.compute.frameCalls++,r.renderId=this.info.calls,this.backend.updateTimeStampUID(e),this.inspector.beginCompute(this.backend.getTimestampUID(e),e);const i=this.backend,n=this._pipelines,a=this._bindings,o=this._nodes,u=Array.isArray(e)?e:[e];if(void 0===u[0]||!0!==u[0].isComputeNode)throw new Error("THREE.Renderer: .compute() expects a ComputeNode.");i.beginCompute(e);for(const r of u){if(!1===n.has(r)){const e=()=>{r.removeEventListener("dispose",e),n.delete(r),a.deleteForCompute(r),o.delete(r)};r.addEventListener("dispose",e);const t=r.onInitFunction;null!==t&&t.call(r,{renderer:this})}o.updateForCompute(r),a.updateForCompute(r);const s=a.getForCompute(r),u=n.getForCompute(r,s);i.compute(e,r,s,u,t)}i.finishCompute(e),r.renderId=s,this.inspector.finishCompute(this.backend.getTimestampUID(e))}async computeAsync(e,t=null){!1===this._initialized&&await this.init(),this.compute(e,t)}async hasFeatureAsync(e){return v('Renderer: "hasFeatureAsync()" has been deprecated. Use "hasFeature()" and "await renderer.init();" when creating the renderer.'),await this.init(),this.hasFeature(e)}async resolveTimestampsAsync(e="render"){return!1===this._initialized&&await this.init(),this.backend.resolveTimestampsAsync(e)}hasFeature(e){if(!1===this._initialized)throw new Error('Renderer: .hasFeature() called before the backend is initialized. Use "await renderer.init();" before before using this method.');return this.backend.hasFeature(e)}hasInitialized(){return this._initialized}async initTextureAsync(e){v('Renderer: "initTextureAsync()" has been deprecated. Use "initTexture()" and "await renderer.init();" when creating the renderer.'),await this.init(),this.initTexture(e)}initTexture(e){if(!1===this._initialized)throw new Error('Renderer: .initTexture() called before the backend is initialized. Use "await renderer.init();" before before using this method.');this._textures.updateTexture(e)}copyFramebufferToTexture(e,t=null){if(null!==t)if(t.isVector2)t=CS.set(t.x,t.y,e.image.width,e.image.height).floor();else{if(!t.isVector4)return void o("Renderer.copyFramebufferToTexture: Invalid rectangle.");t=CS.copy(t).floor()}else t=CS.set(0,0,e.image.width,e.image.height);let r,s=this._currentRenderContext;null!==s?r=s.renderTarget:(r=this._renderTarget||this._getFrameBufferTarget(),null!==r&&(this._textures.updateRenderTarget(r),s=this._textures.get(r))),this._textures.updateTexture(e,{renderTarget:r}),this.backend.copyFramebufferToTexture(e,s,t),this._inspector.copyFramebufferToTexture(e)}copyTextureToTexture(e,t,r=null,s=null,i=0,n=0){this._textures.updateTexture(e),this._textures.updateTexture(t),this.backend.copyTextureToTexture(e,t,r,s,i,n),this._inspector.copyTextureToTexture(e,t)}async readRenderTargetPixelsAsync(e,t,r,s,i,n=0,a=0){return this.backend.copyTextureToBuffer(e.textures[n],t,r,s,i,a)}_projectObject(e,t,r,s,i){if(!1===e.visible)return;if(e.layers.test(t.layers))if(e.isGroup)r=e.renderOrder,e.isClippingGroup&&e.enabled&&(i=i.getGroupContext(e));else if(e.isLOD)!0===e.autoUpdate&&e.update(t);else if(e.isLight)s.pushLight(e);else if(e.isSprite){const n=t.isArrayCamera?ES:AS;if(!e.frustumCulled||n.intersectsSprite(e,t)){!0===this.sortObjects&&CS.setFromMatrixPosition(e.matrixWorld).applyMatrix4(wS);const{geometry:t,material:n}=e;n.visible&&s.push(e,t,n,r,CS.z,null,i)}}else if(e.isLineLoop)o("Renderer: Objects of type THREE.LineLoop are not supported. Please use THREE.Line or THREE.LineSegments.");else if(e.isMesh||e.isLine||e.isPoints){const n=t.isArrayCamera?ES:AS;if(!e.frustumCulled||n.intersectsObject(e,t)){const{geometry:t,material:n}=e;if(!0===this.sortObjects&&(null===t.boundingSphere&&t.computeBoundingSphere(),CS.copy(t.boundingSphere.center).applyMatrix4(e.matrixWorld).applyMatrix4(wS)),Array.isArray(n)){const a=t.groups;for(let o=0,u=a.length;o0){for(const{material:e}of t)e.side=w;this._renderObjects(t,r,s,i,"backSide");for(const{material:e}of t)e.side=it;this._renderObjects(e,r,s,i);for(const{material:e}of t)e.side=C}else this._renderObjects(e,r,s,i)}_renderObjects(e,t,r,s,i=null){for(let n=0,a=e.length;n0||i.transmissionNode&&i.transmissionNode.isNode||i.backdropNode&&i.backdropNode.isNode,e.isShadowPassMaterial){const{colorNode:t,depthNode:r,positionNode:s}=this._getShadowNodes(i);e.side=null===i.shadowSide?i.side:i.shadowSide,null!==t&&(e.colorNode=t),null!==r&&(e.depthNode=r),null!==s&&(e.positionNode=s)}i=e}!0===i.transparent&&i.side===C&&!1===i.forceSinglePass?(i.side=w,this._handleObjectFunction(e,i,t,r,a,n,o,"backSide"),i.side=it,this._handleObjectFunction(e,i,t,r,a,n,o,u),i.side=C):this._handleObjectFunction(e,i,t,r,a,n,o,u),p&&(t.overrideMaterial.colorNode=l,t.overrideMaterial.depthNode=d,t.overrideMaterial.positionNode=c,t.overrideMaterial.side=h),e.onAfterRender(this,t,r,s,i,n)}_renderObjectDirect(e,t,r,s,i,n,a,o){const u=this._objects.get(e,t,r,s,i,this._currentRenderContext,a,o);u.drawRange=e.geometry.drawRange,u.group=n;const l=this._nodes.needsRefresh(u);if(l&&(this._nodes.updateBefore(u),this._geometries.updateForRender(u),this._nodes.updateForRender(u),this._bindings.updateForRender(u)),this._pipelines.updateForRender(u),null!==this._currentRenderBundle){this.backend.get(this._currentRenderBundle).renderObjects.push(u),u.bundle=this._currentRenderBundle.bundleGroup}this.backend.draw(u,this.info),l&&this._nodes.updateAfter(u)}_createObjectPipeline(e,t,r,s,i,n,a,o){const u=this._objects.get(e,t,r,s,i,this._currentRenderContext,a,o);u.drawRange=e.geometry.drawRange,u.group=n,this._nodes.updateBefore(u),this._geometries.updateForRender(u),this._nodes.updateForRender(u),this._bindings.updateForRender(u),this._pipelines.getForRender(u,this._compilationPromises),this._nodes.updateAfter(u)}_onCanvasTargetResize(){this._initialized&&this.backend.updateSize()}get compile(){return this.compileAsync}}class BS{constructor(e=""){this.name=e,this.visibility=0}setVisibility(e){this.visibility|=e}getVisibility(){return this.visibility}clone(){return Object.assign(new this.constructor,this)}}class LS extends BS{constructor(e,t=null){super(e),this.isBuffer=!0,this.bytesPerElement=Float32Array.BYTES_PER_ELEMENT,this._buffer=t,this._updateRanges=[]}get updateRanges(){return this._updateRanges}addUpdateRange(e,t){this.updateRanges.push({start:e,count:t})}clearUpdateRanges(){this.updateRanges.length=0}get byteLength(){return(e=this._buffer.byteLength)+(ay-e%ay)%ay;var e}get buffer(){return this._buffer}update(){return!0}}class PS extends LS{constructor(e,t=null){super(e,t),this.isUniformBuffer=!0}}let FS=0;class DS extends PS{constructor(e,t){super("UniformBuffer_"+FS++,e?e.value:null),this.nodeUniform=e,this.groupNode=t,this.isNodeUniformBuffer=!0}set updateRanges(e){this.nodeUniform.updateRanges=e}get updateRanges(){return this.nodeUniform.updateRanges}addUpdateRange(e,t){this.nodeUniform.addUpdateRange(e,t)}clearUpdateRanges(){this.nodeUniform.clearUpdateRanges()}get buffer(){return this.nodeUniform.value}}class IS extends PS{constructor(e){super(e),this.isUniformsGroup=!0,this._values=null,this.uniforms=[]}addUniform(e){return this.uniforms.push(e),this}removeUniform(e){const t=this.uniforms.indexOf(e);return-1!==t&&this.uniforms.splice(t,1),this}get values(){return null===this._values&&(this._values=Array.from(this.buffer)),this._values}get buffer(){let e=this._buffer;if(null===e){const t=this.byteLength;e=new Float32Array(new ArrayBuffer(t)),this._buffer=e}return e}get byteLength(){const e=this.bytesPerElement;let t=0;for(let r=0,s=this.uniforms.length;r{this.generation=null,this.version=0},this.texture=t,this.version=t?t.version:0,this.generation=null,this.samplerKey="",this.isSampler=!0}set texture(e){this._texture!==e&&(this._texture&&this._texture.removeEventListener("dispose",this._onTextureDispose),this._texture=e,this.generation=null,this.version=0,this._texture&&this._texture.addEventListener("dispose",this._onTextureDispose))}get texture(){return this._texture}update(){const{texture:e,version:t}=this;return t!==e.version&&(this.version=e.version,!0)}clone(){const e=super.clone();return e._texture=null,e._onTextureDispose=()=>{e.generation=null,e.version=0},e.texture=this.texture,e}}let kS=0;class GS extends VS{constructor(e,t){super(e,t),this.id=kS++,this.store=!1,this.mipLevel=0,this.isSampledTexture=!0}}class zS extends GS{constructor(e,t,r,s=null){super(e,t?t.value:null),this.textureNode=t,this.groupNode=r,this.access=s}update(){const{textureNode:e}=this;return this.texture!==e.value?(this.texture=e.value,!0):super.update()}}class $S extends zS{constructor(e,t,r,s=null){super(e,t,r,s),this.isSampledCubeTexture=!0}}class WS extends zS{constructor(e,t,r,s=null){super(e,t,r,s),this.isSampledTexture3D=!0}}const HS={bitcast_int_uint:new jx("uint tsl_bitcast_int_to_uint ( int x ) { return floatBitsToUint( intBitsToFloat ( x ) ); }"),bitcast_uint_int:new jx("uint tsl_bitcast_uint_to_int ( uint x ) { return floatBitsToInt( uintBitsToFloat ( x ) ); }")},jS={textureDimensions:"textureSize",equals:"equal",bitcast_float_int:"floatBitsToInt",bitcast_int_float:"intBitsToFloat",bitcast_uint_float:"uintBitsToFloat",bitcast_float_uint:"floatBitsToUint",bitcast_uint_int:"tsl_bitcast_uint_to_int",bitcast_int_uint:"tsl_bitcast_int_to_uint",floatpack_snorm_2x16:"packSnorm2x16",floatpack_unorm_2x16:"packUnorm2x16",floatpack_float16_2x16:"packHalf2x16",floatunpack_snorm_2x16:"unpackSnorm2x16",floatunpack_unorm_2x16:"unpackUnorm2x16",floatunpack_float16_2x16:"unpackHalf2x16"},qS={low:"lowp",medium:"mediump",high:"highp"},XS={swizzleAssign:!0,storageBuffer:!1},KS={perspective:"smooth",linear:"noperspective"},YS={centroid:"centroid"},QS="\nprecision highp float;\nprecision highp int;\nprecision highp sampler2D;\nprecision highp sampler3D;\nprecision highp samplerCube;\nprecision highp sampler2DArray;\n\nprecision highp usampler2D;\nprecision highp usampler3D;\nprecision highp usamplerCube;\nprecision highp usampler2DArray;\n\nprecision highp isampler2D;\nprecision highp isampler3D;\nprecision highp isamplerCube;\nprecision highp isampler2DArray;\n\nprecision lowp sampler2DShadow;\nprecision lowp sampler2DArrayShadow;\nprecision lowp samplerCubeShadow;\n";class ZS extends BN{constructor(e,t){super(e,t,new ZN),this.uniformGroups={},this.transforms=[],this.extensions={},this.builtins={vertex:[],fragment:[],compute:[]}}needsToWorkingColorSpace(e){return!0===e.isVideoTexture&&e.colorSpace!==T}_include(e){const t=HS[e];return t.build(this),this.addInclude(t),t}getMethod(e){return void 0!==HS[e]&&this._include(e),jS[e]||e}getBitcastMethod(e,t){return this.getMethod(`bitcast_${t}_${e}`)}getFloatPackingMethod(e){return this.getMethod(`floatpack_${e}_2x16`)}getFloatUnpackingMethod(e){return this.getMethod(`floatunpack_${e}_2x16`)}getTernary(e,t,r){return`${e} ? ${t} : ${r}`}getOutputStructName(){return""}buildFunctionCode(e){const t=e.layout,r=this.flowShaderNode(e),s=[];for(const e of t.inputs)s.push(this.getType(e.type)+" "+e.name);return`${this.getType(t.type)} ${t.name}( ${s.join(", ")} ) {\n\n\t${r.vars}\n\n${r.code}\n\treturn ${r.result};\n\n}`}setupPBO(e){const t=e.value;if(void 0===t.pbo){const e=t.array,r=t.count*t.itemSize,{itemSize:s}=t,i=t.array.constructor.name.toLowerCase().includes("int");let n=i?mt:ft;2===s?n=i?Tt:V:3===s?n=i?_t:vt:4===s&&(n=i?Nt:Ne);const a={Float32Array:H,Uint8Array:ke,Uint16Array:xt,Uint32Array:S,Int8Array:bt,Int16Array:yt,Int32Array:R,Uint8ClampedArray:ke},o=Math.pow(2,Math.ceil(Math.log2(Math.sqrt(r/s))));let u=Math.ceil(r/s/o);o*u*s0?s:"";t=`${e.name} {\n\t${r} ${i.name}[${n}];\n};\n`}else{t=`${this.getVectorType(i.type)} ${this.getPropertyName(i,e)};`,n=!0}const a=i.node.precision;if(null!==a&&(t=qS[a]+" "+t),n){t="\t"+t;const e=i.groupNode.name;(s[e]||(s[e]=[])).push(t)}else t="uniform "+t,r.push(t)}let i="";for(const t in s){const r=s[t];i+=this._getGLSLUniformStruct(e+"_"+t,r.join("\n"))+"\n"}return i+=r.join("\n"),i}getTypeFromAttribute(e){let t=super.getTypeFromAttribute(e);if(/^[iu]/.test(t)&&e.gpuType!==R){let r=e;e.isInterleavedBufferAttribute&&(r=e.data);const s=r.array;!1==(s instanceof Uint32Array||s instanceof Int32Array)&&(t=t.slice(1))}return t}getAttributes(e){let t="";if("vertex"===e||"compute"===e){const e=this.getAttributesArray();let r=0;for(const s of e)t+=`layout( location = ${r++} ) in ${s.type} ${s.name};\n`}return t}getStructMembers(e){const t=[];for(const r of e.members)t.push(`\t${r.type} ${r.name};`);return t.join("\n")}getStructs(e){const t=[],r=this.structs[e],s=[];for(const e of r)if(e.output)for(const t of e.members)s.push(`layout( location = ${t.index} ) out ${t.type} ${t.name};`);else{let r="struct "+e.name+" {\n";r+=this.getStructMembers(e),r+="\n};\n",t.push(r)}return 0===s.length&&s.push("layout( location = 0 ) out vec4 fragColor;"),"\n"+s.join("\n")+"\n\n"+t.join("\n")}getVaryings(e){let t="";const r=this.varyings;if("vertex"===e||"compute"===e)for(const s of r){"compute"===e&&(s.needsInterpolation=!0);const r=this.getType(s.type);if(s.needsInterpolation)if(s.interpolationType){t+=`${KS[s.interpolationType]||s.interpolationType} ${YS[s.interpolationSampling]||""} out ${r} ${s.name};\n`}else{t+=`${r.includes("int")||r.includes("uv")||r.includes("iv")?"flat ":""}out ${r} ${s.name};\n`}else t+=`${r} ${s.name};\n`}else if("fragment"===e)for(const e of r)if(e.needsInterpolation){const r=this.getType(e.type);if(e.interpolationType){t+=`${KS[e.interpolationType]||e.interpolationType} ${YS[e.interpolationSampling]||""} in ${r} ${e.name};\n`}else{t+=`${r.includes("int")||r.includes("uv")||r.includes("iv")?"flat ":""}in ${r} ${e.name};\n`}}for(const r of this.builtins[e])t+=`${r};\n`;return t}getVertexIndex(){return"uint( gl_VertexID )"}getInstanceIndex(){return"uint( gl_InstanceID )"}getInvocationLocalIndex(){return`uint( gl_InstanceID ) % ${this.object.workgroupSize.reduce((e,t)=>e*t,1)}u`}getSubgroupSize(){o("GLSLNodeBuilder: WebGLBackend does not support the subgroupSize node")}getInvocationSubgroupIndex(){o("GLSLNodeBuilder: WebGLBackend does not support the invocationSubgroupIndex node")}getSubgroupIndex(){o("GLSLNodeBuilder: WebGLBackend does not support the subgroupIndex node")}getDrawIndex(){return this.renderer.backend.extensions.has("WEBGL_multi_draw")?"uint( gl_DrawID )":null}getFrontFacing(){return"gl_FrontFacing"}getFragCoord(){return"gl_FragCoord.xy"}getFragDepth(){return"gl_FragDepth"}enableExtension(e,t,r=this.shaderStage){const s=this.extensions[r]||(this.extensions[r]=new Map);!1===s.has(e)&&s.set(e,{name:e,behavior:t})}getExtensions(e){const t=[];if("vertex"===e){const t=this.renderer.backend.extensions;this.object.isBatchedMesh&&t.has("WEBGL_multi_draw")&&this.enableExtension("GL_ANGLE_multi_draw","require",e)}const r=this.extensions[e];if(void 0!==r)for(const{name:e,behavior:s}of r.values())t.push(`#extension ${e} : ${s}`);return t.join("\n")}getClipDistance(){return"gl_ClipDistance"}isAvailable(e){let t=XS[e];if(void 0===t){let r;switch(t=!1,e){case"float32Filterable":r="OES_texture_float_linear";break;case"clipDistance":r="WEBGL_clip_cull_distance"}if(void 0!==r){const e=this.renderer.backend.extensions;e.has(r)&&(e.get(r),t=!0)}XS[e]=t}return t}isFlipY(){return!0}enableHardwareClipping(e){this.enableExtension("GL_ANGLE_clip_cull_distance","require"),this.builtins.vertex.push(`out float gl_ClipDistance[ ${e} ]`)}enableMultiview(){this.enableExtension("GL_OVR_multiview2","require","fragment"),this.enableExtension("GL_OVR_multiview2","require","vertex"),this.builtins.vertex.push("layout(num_views = 2) in")}registerTransform(e,t){this.transforms.push({varyingName:e,attributeNode:t})}getTransforms(){const e=this.transforms;let t="";for(let r=0;r0&&(r+="\n"),r+=`\t// flow -> ${n}\n\t`),r+=`${s.code}\n\t`,e===i&&"compute"!==t&&(r+="// result\n\t","vertex"===t?(r+="gl_Position = ",r+=`${s.result};`):"fragment"===t&&(e.outputNode.isOutputStructNode||(r+="fragColor = ",r+=`${s.result};`)))}const n=e[t];n.extensions=this.getExtensions(t),n.uniforms=this.getUniforms(t),n.attributes=this.getAttributes(t),n.varyings=this.getVaryings(t),n.vars=this.getVars(t),n.structs=this.getStructs(t),n.codes=this.getCodes(t),n.transforms=this.getTransforms(t),n.flow=r}null!==this.material?(this.vertexShader=this._getGLSLVertexCode(e.vertex),this.fragmentShader=this._getGLSLFragmentCode(e.fragment)):this.computeShader=this._getGLSLVertexCode(e.compute)}getUniformFromNode(e,t,r,s=null){const i=super.getUniformFromNode(e,t,r,s),n=this.getDataFromNode(e,r,this.globalCache);let a=n.uniformGPU;if(void 0===a){const s=e.groupNode,o=s.name,u=this.getBindGroupArray(o,r);if("texture"===t)a=new zS(i.name,i.node,s),u.push(a);else if("cubeTexture"===t||"cubeDepthTexture"===t)a=new $S(i.name,i.node,s),u.push(a);else if("texture3D"===t)a=new WS(i.name,i.node,s),u.push(a);else if("buffer"===t){i.name=`buffer${e.id}`;const t=this.getSharedDataFromNode(e);let r=t.buffer;void 0===r&&(e.name=`NodeBuffer_${e.id}`,r=new DS(e,s),r.name=e.name,t.buffer=r),u.push(r),a=r}else{const e=this.uniformGroups[r]||(this.uniformGroups[r]={});let n=e[o];void 0===n&&(n=new OS(r+"_"+o,s),e[o]=n,u.push(n)),a=this.getNodeUniform(i,t),n.addUniform(a)}n.uniformGPU=a}return i}}let JS=null,eR=null;class tR{constructor(e={}){this.parameters=Object.assign({},e),this.data=new WeakMap,this.renderer=null,this.domElement=null,this.timestampQueryPool={[St.RENDER]:null,[St.COMPUTE]:null},this.trackTimestamp=!0===e.trackTimestamp}async init(e){this.renderer=e}get coordinateSystem(){}beginRender(){}finishRender(){}beginCompute(){}finishCompute(){}draw(){}compute(){}createProgram(){}destroyProgram(){}createBindings(){}updateBindings(){}updateBinding(){}createRenderPipeline(){}createComputePipeline(){}needsRenderUpdate(){}getRenderCacheKey(){}createNodeBuilder(){}updateSampler(){}createDefaultTexture(){}createTexture(){}updateTexture(){}generateMipmaps(){}destroyTexture(){}async copyTextureToBuffer(){}copyTextureToTexture(){}copyFramebufferToTexture(){}createAttribute(){}createIndexAttribute(){}createStorageAttribute(){}updateAttribute(){}destroyAttribute(){}getContext(){}updateSize(){}updateViewport(){}updateTimeStampUID(e){const t=this.get(e),r=this.renderer.info.frame;let s;s=!0===e.isComputeNode?"c:"+this.renderer.info.compute.frameCalls:"r:"+this.renderer.info.render.frameCalls,t.timestampUID=s+":"+e.id+":f"+r}getTimestampUID(e){return this.get(e).timestampUID}getTimestampFrames(e){const t=this.timestampQueryPool[e];return t?t.getTimestampFrames():[]}_getQueryPool(e){const t=e.startsWith("c:")?St.COMPUTE:St.RENDER;return this.timestampQueryPool[t]}getTimestamp(e){return this._getQueryPool(e).getTimestamp(e)}hasTimestamp(e){return this._getQueryPool(e).hasTimestamp(e)}isOccluded(){}async resolveTimestampsAsync(e="render"){if(!this.trackTimestamp)return void v("WebGPURenderer: Timestamp tracking is disabled.");const t=this.timestampQueryPool[e];if(!t)return;const r=await t.resolveQueriesAsync();return this.renderer.info[e].timestamp=r,r}async getArrayBufferAsync(){}async hasFeatureAsync(){}hasFeature(){}getMaxAnisotropy(){}getDrawingBufferSize(){return JS=JS||new t,this.renderer.getDrawingBufferSize(JS)}setScissorTest(){}getClearColor(){const e=this.renderer;return eR=eR||new Fy,e.getClearColor(eR),eR.getRGB(eR),eR}getDomElement(){let e=this.domElement;return null===e&&(e=void 0!==this.parameters.canvas?this.parameters.canvas:Rt(),"setAttribute"in e&&e.setAttribute("data-engine",`three.js r${tt} webgpu`),this.domElement=e),e}set(e,t){this.data.set(e,t)}get(e){let t=this.data.get(e);return void 0===t&&(t={},this.data.set(e,t)),t}has(e){return this.data.has(e)}delete(e){this.data.delete(e)}dispose(){}}let rR,sR,iR=0;class nR{constructor(e,t){this.buffers=[e.bufferGPU,t],this.type=e.type,this.bufferType=e.bufferType,this.pbo=e.pbo,this.byteLength=e.byteLength,this.bytesPerElement=e.BYTES_PER_ELEMENT,this.version=e.version,this.isInteger=e.isInteger,this.activeBufferIndex=0,this.baseId=e.id}get id(){return`${this.baseId}|${this.activeBufferIndex}`}get bufferGPU(){return this.buffers[this.activeBufferIndex]}get transformBuffer(){return this.buffers[1^this.activeBufferIndex]}switchBuffers(){this.activeBufferIndex^=1}}class aR{constructor(e){this.backend=e}createAttribute(e,t){const r=this.backend,{gl:s}=r,i=e.array,n=e.usage||s.STATIC_DRAW,a=e.isInterleavedBufferAttribute?e.data:e,o=r.get(a);let u,l=o.bufferGPU;if(void 0===l&&(l=this._createBuffer(s,t,i,n),o.bufferGPU=l,o.bufferType=t,o.version=a.version),i instanceof Float32Array)u=s.FLOAT;else if("undefined"!=typeof Float16Array&&i instanceof Float16Array)u=s.HALF_FLOAT;else if(i instanceof Uint16Array)u=e.isFloat16BufferAttribute?s.HALF_FLOAT:s.UNSIGNED_SHORT;else if(i instanceof Int16Array)u=s.SHORT;else if(i instanceof Uint32Array)u=s.UNSIGNED_INT;else if(i instanceof Int32Array)u=s.INT;else if(i instanceof Int8Array)u=s.BYTE;else if(i instanceof Uint8Array)u=s.UNSIGNED_BYTE;else{if(!(i instanceof Uint8ClampedArray))throw new Error("THREE.WebGLBackend: Unsupported buffer data format: "+i);u=s.UNSIGNED_BYTE}let d={bufferGPU:l,bufferType:t,type:u,byteLength:i.byteLength,bytesPerElement:i.BYTES_PER_ELEMENT,version:e.version,pbo:e.pbo,isInteger:u===s.INT||u===s.UNSIGNED_INT||e.gpuType===R,id:iR++};if(e.isStorageBufferAttribute||e.isStorageInstancedBufferAttribute){const e=this._createBuffer(s,t,i,n);d=new nR(d,e)}r.set(e,d)}updateAttribute(e){const t=this.backend,{gl:r}=t,s=e.array,i=e.isInterleavedBufferAttribute?e.data:e,n=t.get(i),a=n.bufferType,o=e.isInterleavedBufferAttribute?e.data.updateRanges:e.updateRanges;if(r.bindBuffer(a,n.bufferGPU),0===o.length)r.bufferSubData(a,0,s);else{for(let e=0,t=o.length;e0?this.enable(s.SAMPLE_ALPHA_TO_COVERAGE):this.disable(s.SAMPLE_ALPHA_TO_COVERAGE),r>0&&this.currentClippingPlanes!==r){const e=12288;for(let t=0;t<8;t++)t{!function i(){const n=e.clientWaitSync(t,e.SYNC_FLUSH_COMMANDS_BIT,0);if(n===e.WAIT_FAILED)return e.deleteSync(t),void s();n!==e.TIMEOUT_EXPIRED?(e.deleteSync(t),r()):requestAnimationFrame(i)}()})}}let lR,dR,cR,hR=!1;class pR{constructor(e){this.backend=e,this.gl=e.gl,this.extensions=e.extensions,this.defaultTextures={},this._srcFramebuffer=null,this._dstFramebuffer=null,!1===hR&&(this._init(),hR=!0)}_init(){const e=this.gl;lR={[Ir]:e.REPEAT,[ye]:e.CLAMP_TO_EDGE,[Dr]:e.MIRRORED_REPEAT},dR={[A]:e.NEAREST,[Ur]:e.NEAREST_MIPMAP_NEAREST,[Je]:e.NEAREST_MIPMAP_LINEAR,[ne]:e.LINEAR,[Ze]:e.LINEAR_MIPMAP_NEAREST,[q]:e.LINEAR_MIPMAP_LINEAR},cR={[Wr]:e.NEVER,[$r]:e.ALWAYS,[qe]:e.LESS,[zr]:e.LEQUAL,[Gr]:e.EQUAL,[kr]:e.GEQUAL,[Vr]:e.GREATER,[Or]:e.NOTEQUAL}}getGLTextureType(e){const{gl:t}=this;let r;return r=!0===e.isCubeTexture?t.TEXTURE_CUBE_MAP:!0===e.isArrayTexture||!0===e.isDataArrayTexture||!0===e.isCompressedArrayTexture?t.TEXTURE_2D_ARRAY:!0===e.isData3DTexture?t.TEXTURE_3D:t.TEXTURE_2D,r}getInternalFormat(e,t,r,s,i=!1){const{gl:n,extensions:a}=this;if(null!==e){if(void 0!==n[e])return n[e];d("WebGLBackend: Attempt to use non-existing WebGL internal format '"+e+"'")}let o=t;if(t===n.RED&&(r===n.FLOAT&&(o=n.R32F),r===n.HALF_FLOAT&&(o=n.R16F),r===n.UNSIGNED_BYTE&&(o=n.R8),r===n.UNSIGNED_SHORT&&(o=n.R16),r===n.UNSIGNED_INT&&(o=n.R32UI),r===n.BYTE&&(o=n.R8I),r===n.SHORT&&(o=n.R16I),r===n.INT&&(o=n.R32I)),t===n.RED_INTEGER&&(r===n.UNSIGNED_BYTE&&(o=n.R8UI),r===n.UNSIGNED_SHORT&&(o=n.R16UI),r===n.UNSIGNED_INT&&(o=n.R32UI),r===n.BYTE&&(o=n.R8I),r===n.SHORT&&(o=n.R16I),r===n.INT&&(o=n.R32I)),t===n.RG&&(r===n.FLOAT&&(o=n.RG32F),r===n.HALF_FLOAT&&(o=n.RG16F),r===n.UNSIGNED_BYTE&&(o=n.RG8),r===n.UNSIGNED_SHORT&&(o=n.RG16),r===n.UNSIGNED_INT&&(o=n.RG32UI),r===n.BYTE&&(o=n.RG8I),r===n.SHORT&&(o=n.RG16I),r===n.INT&&(o=n.RG32I)),t===n.RG_INTEGER&&(r===n.UNSIGNED_BYTE&&(o=n.RG8UI),r===n.UNSIGNED_SHORT&&(o=n.RG16UI),r===n.UNSIGNED_INT&&(o=n.RG32UI),r===n.BYTE&&(o=n.RG8I),r===n.SHORT&&(o=n.RG16I),r===n.INT&&(o=n.RG32I)),t===n.RGB){const e=i?Hr:p.getTransfer(s);r===n.FLOAT&&(o=n.RGB32F),r===n.HALF_FLOAT&&(o=n.RGB16F),r===n.UNSIGNED_BYTE&&(o=n.RGB8),r===n.UNSIGNED_SHORT&&(o=n.RGB16),r===n.UNSIGNED_INT&&(o=n.RGB32UI),r===n.BYTE&&(o=n.RGB8I),r===n.SHORT&&(o=n.RGB16I),r===n.INT&&(o=n.RGB32I),r===n.UNSIGNED_BYTE&&(o=e===g?n.SRGB8:n.RGB8),r===n.UNSIGNED_SHORT_5_6_5&&(o=n.RGB565),r===n.UNSIGNED_SHORT_5_5_5_1&&(o=n.RGB5_A1),r===n.UNSIGNED_SHORT_4_4_4_4&&(o=n.RGB4),r===n.UNSIGNED_INT_5_9_9_9_REV&&(o=n.RGB9_E5),r===n.UNSIGNED_INT_10F_11F_11F_REV&&(o=n.R11F_G11F_B10F)}if(t===n.RGB_INTEGER&&(r===n.UNSIGNED_BYTE&&(o=n.RGB8UI),r===n.UNSIGNED_SHORT&&(o=n.RGB16UI),r===n.UNSIGNED_INT&&(o=n.RGB32UI),r===n.BYTE&&(o=n.RGB8I),r===n.SHORT&&(o=n.RGB16I),r===n.INT&&(o=n.RGB32I)),t===n.RGBA){const e=i?Hr:p.getTransfer(s);r===n.FLOAT&&(o=n.RGBA32F),r===n.HALF_FLOAT&&(o=n.RGBA16F),r===n.UNSIGNED_BYTE&&(o=n.RGBA8),r===n.UNSIGNED_SHORT&&(o=n.RGBA16),r===n.UNSIGNED_INT&&(o=n.RGBA32UI),r===n.BYTE&&(o=n.RGBA8I),r===n.SHORT&&(o=n.RGBA16I),r===n.INT&&(o=n.RGBA32I),r===n.UNSIGNED_BYTE&&(o=e===g?n.SRGB8_ALPHA8:n.RGBA8),r===n.UNSIGNED_SHORT_4_4_4_4&&(o=n.RGBA4),r===n.UNSIGNED_SHORT_5_5_5_1&&(o=n.RGB5_A1)}return t===n.RGBA_INTEGER&&(r===n.UNSIGNED_BYTE&&(o=n.RGBA8UI),r===n.UNSIGNED_SHORT&&(o=n.RGBA16UI),r===n.UNSIGNED_INT&&(o=n.RGBA32UI),r===n.BYTE&&(o=n.RGBA8I),r===n.SHORT&&(o=n.RGBA16I),r===n.INT&&(o=n.RGBA32I)),t===n.DEPTH_COMPONENT&&(r===n.UNSIGNED_SHORT&&(o=n.DEPTH_COMPONENT16),r===n.UNSIGNED_INT&&(o=n.DEPTH_COMPONENT24),r===n.FLOAT&&(o=n.DEPTH_COMPONENT32F)),t===n.DEPTH_STENCIL&&r===n.UNSIGNED_INT_24_8&&(o=n.DEPTH24_STENCIL8),o!==n.R16F&&o!==n.R32F&&o!==n.RG16F&&o!==n.RG32F&&o!==n.RGBA16F&&o!==n.RGBA32F||a.get("EXT_color_buffer_float"),o}setTextureParameters(e,t){const{gl:r,extensions:s,backend:i}=this,n=p.getPrimaries(p.workingColorSpace),a=t.colorSpace===T?null:p.getPrimaries(t.colorSpace),o=t.colorSpace===T||n===a?r.NONE:r.BROWSER_DEFAULT_WEBGL;r.pixelStorei(r.UNPACK_FLIP_Y_WEBGL,t.flipY),r.pixelStorei(r.UNPACK_PREMULTIPLY_ALPHA_WEBGL,t.premultiplyAlpha),r.pixelStorei(r.UNPACK_ALIGNMENT,t.unpackAlignment),r.pixelStorei(r.UNPACK_COLORSPACE_CONVERSION_WEBGL,o),r.texParameteri(e,r.TEXTURE_WRAP_S,lR[t.wrapS]),r.texParameteri(e,r.TEXTURE_WRAP_T,lR[t.wrapT]),e!==r.TEXTURE_3D&&e!==r.TEXTURE_2D_ARRAY||t.isArrayTexture||r.texParameteri(e,r.TEXTURE_WRAP_R,lR[t.wrapR]),r.texParameteri(e,r.TEXTURE_MAG_FILTER,dR[t.magFilter]);const u=void 0!==t.mipmaps&&t.mipmaps.length>0,l=t.minFilter===ne&&u?q:t.minFilter;if(r.texParameteri(e,r.TEXTURE_MIN_FILTER,dR[l]),t.compareFunction&&(r.texParameteri(e,r.TEXTURE_COMPARE_MODE,r.COMPARE_REF_TO_TEXTURE),r.texParameteri(e,r.TEXTURE_COMPARE_FUNC,cR[t.compareFunction])),!0===s.has("EXT_texture_filter_anisotropic")){if(t.magFilter===A)return;if(t.minFilter!==Je&&t.minFilter!==q)return;if(t.type===H&&!1===s.has("OES_texture_float_linear"))return;if(t.anisotropy>1){const n=s.get("EXT_texture_filter_anisotropic");r.texParameterf(e,n.TEXTURE_MAX_ANISOTROPY_EXT,Math.min(t.anisotropy,i.getMaxAnisotropy()))}}}createDefaultTexture(e){const{gl:t,backend:r,defaultTextures:s}=this,i=this.getGLTextureType(e);let n=s[i];void 0===n&&(n=t.createTexture(),r.state.bindTexture(i,n),t.texParameteri(i,t.TEXTURE_MIN_FILTER,t.NEAREST),t.texParameteri(i,t.TEXTURE_MAG_FILTER,t.NEAREST),s[i]=n),r.set(e,{textureGPU:n,glTextureType:i})}createTexture(e,t){const{gl:r,backend:s}=this,{levels:i,width:n,height:a,depth:o}=t,u=s.utils.convert(e.format,e.colorSpace),l=s.utils.convert(e.type),d=this.getInternalFormat(e.internalFormat,u,l,e.colorSpace,e.isVideoTexture),c=r.createTexture(),h=this.getGLTextureType(e);s.state.bindTexture(h,c),this.setTextureParameters(h,e),e.isArrayTexture||e.isDataArrayTexture||e.isCompressedArrayTexture?r.texStorage3D(r.TEXTURE_2D_ARRAY,i,d,n,a,o):e.isData3DTexture?r.texStorage3D(r.TEXTURE_3D,i,d,n,a,o):e.isVideoTexture||r.texStorage2D(h,i,d,n,a),s.set(e,{textureGPU:c,glTextureType:h,glFormat:u,glType:l,glInternalFormat:d})}copyBufferToTexture(e,t){const{gl:r,backend:s}=this,{textureGPU:i,glTextureType:n,glFormat:a,glType:o}=s.get(t),{width:u,height:l}=t.source.data;r.bindBuffer(r.PIXEL_UNPACK_BUFFER,e),s.state.bindTexture(n,i),r.pixelStorei(r.UNPACK_FLIP_Y_WEBGL,!1),r.pixelStorei(r.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!1),r.texSubImage2D(n,0,0,0,u,l,a,o,0),r.bindBuffer(r.PIXEL_UNPACK_BUFFER,null),s.state.unbindTexture()}updateTexture(e,t){const{gl:r}=this,{width:s,height:i}=t,{textureGPU:n,glTextureType:a,glFormat:o,glType:u,glInternalFormat:l}=this.backend.get(e);if(!e.isRenderTargetTexture&&void 0!==n)if(this.backend.state.bindTexture(a,n),this.setTextureParameters(a,e),e.isCompressedTexture){const s=e.mipmaps,i=t.image;for(let t=0;t0){const t=jr(s.width,s.height,e.format,e.type);for(const i of e.layerUpdates){const e=s.data.subarray(i*t/s.data.BYTES_PER_ELEMENT,(i+1)*t/s.data.BYTES_PER_ELEMENT);r.texSubImage3D(r.TEXTURE_2D_ARRAY,0,0,0,i,s.width,s.height,1,o,u,e)}e.clearLayerUpdates()}else r.texSubImage3D(r.TEXTURE_2D_ARRAY,0,0,0,0,s.width,s.height,s.depth,o,u,s.data)}else if(e.isData3DTexture){const e=t.image;r.texSubImage3D(r.TEXTURE_3D,0,0,0,0,e.width,e.height,e.depth,o,u,e.data)}else if(e.isVideoTexture)e.update(),r.texImage2D(a,0,l,o,u,t.image);else{const n=e.mipmaps;if(n.length>0)for(let e=0,t=n.length;e0,c=t.renderTarget?t.renderTarget.height:this.backend.getDrawingBufferSize().y;if(d){const r=0!==a||0!==o;let d,h;if(!0===e.isDepthTexture?(d=s.DEPTH_BUFFER_BIT,h=s.DEPTH_ATTACHMENT,t.stencil&&(d|=s.STENCIL_BUFFER_BIT)):(d=s.COLOR_BUFFER_BIT,h=s.COLOR_ATTACHMENT0),r){const e=this.backend.get(t.renderTarget),r=e.framebuffers[t.getCacheKey()],h=e.msaaFrameBuffer;i.bindFramebuffer(s.DRAW_FRAMEBUFFER,r),i.bindFramebuffer(s.READ_FRAMEBUFFER,h);const p=c-o-l;s.blitFramebuffer(a,p,a+u,p+l,a,p,a+u,p+l,d,s.NEAREST),i.bindFramebuffer(s.READ_FRAMEBUFFER,r),i.bindTexture(s.TEXTURE_2D,n),s.copyTexSubImage2D(s.TEXTURE_2D,0,0,0,a,p,u,l),i.unbindTexture()}else{const e=s.createFramebuffer();i.bindFramebuffer(s.DRAW_FRAMEBUFFER,e),s.framebufferTexture2D(s.DRAW_FRAMEBUFFER,h,s.TEXTURE_2D,n,0),s.blitFramebuffer(0,0,u,l,0,0,u,l,d,s.NEAREST),s.deleteFramebuffer(e)}}else i.bindTexture(s.TEXTURE_2D,n),s.copyTexSubImage2D(s.TEXTURE_2D,0,0,0,a,c-l-o,u,l),i.unbindTexture();e.generateMipmaps&&this.generateMipmaps(e),this.backend._setFramebuffer(t)}setupRenderBufferStorage(e,t,r,s=!1){const{gl:i}=this,n=t.renderTarget,{depthTexture:a,depthBuffer:o,stencilBuffer:u,width:l,height:d}=n;if(i.bindRenderbuffer(i.RENDERBUFFER,e),o&&!u){let t=i.DEPTH_COMPONENT24;if(!0===s){this.extensions.get("WEBGL_multisampled_render_to_texture").renderbufferStorageMultisampleEXT(i.RENDERBUFFER,n.samples,t,l,d)}else r>0?(a&&a.isDepthTexture&&a.type===i.FLOAT&&(t=i.DEPTH_COMPONENT32F),i.renderbufferStorageMultisample(i.RENDERBUFFER,r,t,l,d)):i.renderbufferStorage(i.RENDERBUFFER,t,l,d);i.framebufferRenderbuffer(i.FRAMEBUFFER,i.DEPTH_ATTACHMENT,i.RENDERBUFFER,e)}else o&&u&&(r>0?i.renderbufferStorageMultisample(i.RENDERBUFFER,r,i.DEPTH24_STENCIL8,l,d):i.renderbufferStorage(i.RENDERBUFFER,i.DEPTH_STENCIL,l,d),i.framebufferRenderbuffer(i.FRAMEBUFFER,i.DEPTH_STENCIL_ATTACHMENT,i.RENDERBUFFER,e));i.bindRenderbuffer(i.RENDERBUFFER,null)}async copyTextureToBuffer(e,t,r,s,i,n){const{backend:a,gl:o}=this,{textureGPU:u,glFormat:l,glType:d}=this.backend.get(e),c=o.createFramebuffer();o.bindFramebuffer(o.READ_FRAMEBUFFER,c);const h=e.isCubeTexture?o.TEXTURE_CUBE_MAP_POSITIVE_X+n:o.TEXTURE_2D;o.framebufferTexture2D(o.READ_FRAMEBUFFER,o.COLOR_ATTACHMENT0,h,u,0);const p=this._getTypedArrayType(d),g=s*i*this._getBytesPerTexel(d,l),m=o.createBuffer();o.bindBuffer(o.PIXEL_PACK_BUFFER,m),o.bufferData(o.PIXEL_PACK_BUFFER,g,o.STREAM_READ),o.readPixels(t,r,s,i,l,d,0),o.bindBuffer(o.PIXEL_PACK_BUFFER,null),await a.utils._clientWaitAsync();const f=new p(g/p.BYTES_PER_ELEMENT);return o.bindBuffer(o.PIXEL_PACK_BUFFER,m),o.getBufferSubData(o.PIXEL_PACK_BUFFER,0,f),o.bindBuffer(o.PIXEL_PACK_BUFFER,null),o.deleteFramebuffer(c),f}_getTypedArrayType(e){const{gl:t}=this;if(e===t.UNSIGNED_BYTE)return Uint8Array;if(e===t.UNSIGNED_SHORT_4_4_4_4)return Uint16Array;if(e===t.UNSIGNED_SHORT_5_5_5_1)return Uint16Array;if(e===t.UNSIGNED_SHORT_5_6_5)return Uint16Array;if(e===t.UNSIGNED_SHORT)return Uint16Array;if(e===t.UNSIGNED_INT)return Uint32Array;if(e===t.HALF_FLOAT)return Uint16Array;if(e===t.FLOAT)return Float32Array;throw new Error(`Unsupported WebGL type: ${e}`)}_getBytesPerTexel(e,t){const{gl:r}=this;let s=0;return e===r.UNSIGNED_BYTE&&(s=1),e!==r.UNSIGNED_SHORT_4_4_4_4&&e!==r.UNSIGNED_SHORT_5_5_5_1&&e!==r.UNSIGNED_SHORT_5_6_5&&e!==r.UNSIGNED_SHORT&&e!==r.HALF_FLOAT||(s=2),e!==r.UNSIGNED_INT&&e!==r.FLOAT||(s=4),t===r.RGBA?4*s:t===r.RGB?3*s:t===r.ALPHA?s:void 0}dispose(){const{gl:e}=this;null!==this._srcFramebuffer&&e.deleteFramebuffer(this._srcFramebuffer),null!==this._dstFramebuffer&&e.deleteFramebuffer(this._dstFramebuffer)}}function gR(e){return e.isDataTexture?e.image.data:"undefined"!=typeof HTMLImageElement&&e instanceof HTMLImageElement||"undefined"!=typeof HTMLCanvasElement&&e instanceof HTMLCanvasElement||"undefined"!=typeof ImageBitmap&&e instanceof ImageBitmap||"undefined"!=typeof OffscreenCanvas&&e instanceof OffscreenCanvas?e:e.data}class mR{constructor(e){this.backend=e,this.gl=this.backend.gl,this.availableExtensions=this.gl.getSupportedExtensions(),this.extensions={}}get(e){let t=this.extensions[e];return void 0===t&&(t=this.gl.getExtension(e),this.extensions[e]=t),t}has(e){return this.availableExtensions.includes(e)}}class fR{constructor(e){this.backend=e,this.maxAnisotropy=null}getMaxAnisotropy(){if(null!==this.maxAnisotropy)return this.maxAnisotropy;const e=this.backend.gl,t=this.backend.extensions;if(!0===t.has("EXT_texture_filter_anisotropic")){const r=t.get("EXT_texture_filter_anisotropic");this.maxAnisotropy=e.getParameter(r.MAX_TEXTURE_MAX_ANISOTROPY_EXT)}else this.maxAnisotropy=0;return this.maxAnisotropy}}const yR={WEBGL_multi_draw:"WEBGL_multi_draw",WEBGL_compressed_texture_astc:"texture-compression-astc",WEBGL_compressed_texture_etc:"texture-compression-etc2",WEBGL_compressed_texture_etc1:"texture-compression-etc1",WEBGL_compressed_texture_pvrtc:"texture-compression-pvrtc",WEBGL_compressed_texture_s3tc:"texture-compression-s3tc",EXT_texture_compression_bptc:"texture-compression-bc",EXT_disjoint_timer_query_webgl2:"timestamp-query",OVR_multiview2:"OVR_multiview2"};class bR{constructor(e){this.gl=e.gl,this.extensions=e.extensions,this.info=e.renderer.info,this.mode=null,this.index=0,this.type=null,this.object=null}render(e,t){const{gl:r,mode:s,object:i,type:n,info:a,index:o}=this;0!==o?r.drawElements(s,t,n,e):r.drawArrays(s,e,t),a.update(i,t,1)}renderInstances(e,t,r){const{gl:s,mode:i,type:n,index:a,object:o,info:u}=this;0!==r&&(0!==a?s.drawElementsInstanced(i,t,n,e,r):s.drawArraysInstanced(i,e,t,r),u.update(o,t,r))}renderMultiDraw(e,t,r){const{extensions:s,mode:i,object:n,info:a}=this;if(0===r)return;const o=s.get("WEBGL_multi_draw");if(null===o)for(let s=0;sthis.maxQueries)return v(`WebGPUTimestampQueryPool [${this.type}]: Maximum number of queries exceeded, when using trackTimestamp it is necessary to resolves the queries via renderer.resolveTimestampsAsync( THREE.TimestampQuery.${this.type.toUpperCase()} ).`),null;const t=this.currentQueryIndex;return this.currentQueryIndex+=2,this.queryStates.set(t,"inactive"),this.queryOffsets.set(e,t),t}beginQuery(e){if(!this.trackTimestamp||this.isDisposed)return;const t=this.queryOffsets.get(e);if(null==t)return;if(null!==this.activeQuery)return;const r=this.queries[t];if(r)try{"inactive"===this.queryStates.get(t)&&(this.gl.beginQuery(this.ext.TIME_ELAPSED_EXT,r),this.activeQuery=t,this.queryStates.set(t,"started"))}catch(e){o("Error in beginQuery:",e),this.activeQuery=null,this.queryStates.set(t,"inactive")}}endQuery(e){if(!this.trackTimestamp||this.isDisposed)return;const t=this.queryOffsets.get(e);if(null!=t&&this.activeQuery===t)try{this.gl.endQuery(this.ext.TIME_ELAPSED_EXT),this.queryStates.set(t,"ended"),this.activeQuery=null}catch(e){o("Error in endQuery:",e),this.queryStates.set(t,"inactive"),this.activeQuery=null}}async resolveQueriesAsync(){if(!this.trackTimestamp||this.pendingResolve)return this.lastValue;this.pendingResolve=!0;try{const e=new Map;for(const[t,r]of this.queryOffsets){if("ended"===this.queryStates.get(r)){const s=this.queries[r];e.set(t,this.resolveQuery(s))}}if(0===e.size)return this.lastValue;const t={},r=[];for(const[s,i]of e){const e=s.match(/^(.*):f(\d+)$/),n=parseInt(e[2]);!1===r.includes(n)&&r.push(n),void 0===t[n]&&(t[n]=0);const a=await i;this.timestamps.set(s,a),t[n]+=a}const s=t[r[r.length-1]];return this.lastValue=s,this.frames=r,this.currentQueryIndex=0,this.queryOffsets.clear(),this.queryStates.clear(),this.activeQuery=null,s}catch(e){return o("Error resolving queries:",e),this.lastValue}finally{this.pendingResolve=!1}}async resolveQuery(e){return new Promise(t=>{if(this.isDisposed)return void t(this.lastValue);let r,s=!1;const i=e=>{s||(s=!0,r&&(clearTimeout(r),r=null),t(e))},n=()=>{if(this.isDisposed)i(this.lastValue);else try{if(this.gl.getParameter(this.ext.GPU_DISJOINT_EXT))return void i(this.lastValue);if(!this.gl.getQueryParameter(e,this.gl.QUERY_RESULT_AVAILABLE))return void(r=setTimeout(n,1));const s=this.gl.getQueryParameter(e,this.gl.QUERY_RESULT);t(Number(s)/1e6)}catch(e){o("Error checking query:",e),t(this.lastValue)}};n()})}dispose(){if(!this.isDisposed&&(this.isDisposed=!0,this.trackTimestamp)){for(const e of this.queries)this.gl.deleteQuery(e);this.queries=[],this.queryStates.clear(),this.queryOffsets.clear(),this.lastValue=0,this.activeQuery=null}}}class _R extends tR{constructor(e={}){super(e),this.isWebGLBackend=!0,this.attributeUtils=null,this.extensions=null,this.capabilities=null,this.textureUtils=null,this.bufferRenderer=null,this.gl=null,this.state=null,this.utils=null,this.vaoCache={},this.transformFeedbackCache={},this.discard=!1,this.disjoint=null,this.parallel=null,this._currentContext=null,this._knownBindings=new WeakSet,this._supportsInvalidateFramebuffer="undefined"!=typeof navigator&&/OculusBrowser/g.test(navigator.userAgent),this._xrFramebuffer=null}init(e){super.init(e);const t=this.parameters,r={antialias:e.currentSamples>0,alpha:!0,depth:e.depth,stencil:e.stencil},s=void 0!==t.context?t.context:e.domElement.getContext("webgl2",r);function i(t){t.preventDefault();const r={api:"WebGL",message:t.statusMessage||"Unknown reason",reason:null,originalEvent:t};e.onDeviceLost(r)}this._onContextLost=i,e.domElement.addEventListener("webglcontextlost",i,!1),this.gl=s,this.extensions=new mR(this),this.capabilities=new fR(this),this.attributeUtils=new aR(this),this.textureUtils=new pR(this),this.bufferRenderer=new bR(this),this.state=new oR(this),this.utils=new uR(this),this.extensions.get("EXT_color_buffer_float"),this.extensions.get("WEBGL_clip_cull_distance"),this.extensions.get("OES_texture_float_linear"),this.extensions.get("EXT_color_buffer_half_float"),this.extensions.get("WEBGL_multisampled_render_to_texture"),this.extensions.get("WEBGL_render_shared_exponent"),this.extensions.get("WEBGL_multi_draw"),this.extensions.get("OVR_multiview2"),this.disjoint=this.extensions.get("EXT_disjoint_timer_query_webgl2"),this.parallel=this.extensions.get("KHR_parallel_shader_compile"),this.drawBuffersIndexedExt=this.extensions.get("OES_draw_buffers_indexed")}get coordinateSystem(){return c}async getArrayBufferAsync(e){return await this.attributeUtils.getArrayBufferAsync(e)}async makeXRCompatible(){!0!==this.gl.getContextAttributes().xrCompatible&&await this.gl.makeXRCompatible()}setXRTarget(e){this._xrFramebuffer=e}setXRRenderTargetTextures(e,t,r=null){const s=this.gl;if(this.set(e.texture,{textureGPU:t,glInternalFormat:s.RGBA8}),null!==r){const t=e.stencilBuffer?s.DEPTH24_STENCIL8:s.DEPTH_COMPONENT24;this.set(e.depthTexture,{textureGPU:r,glInternalFormat:t}),!0===this.extensions.has("WEBGL_multisampled_render_to_texture")&&!0===e._autoAllocateDepthBuffer&&!1===e.multiview&&d("WebGLBackend: Render-to-texture extension was disabled because an external texture was provided"),e._autoAllocateDepthBuffer=!1}}initTimestampQuery(e,t){if(!this.disjoint||!this.trackTimestamp)return;this.timestampQueryPool[e]||(this.timestampQueryPool[e]=new TR(this.gl,e,2048));const r=this.timestampQueryPool[e];null!==r.allocateQueriesForContext(t)&&r.beginQuery(t)}prepareTimestampBuffer(e,t){if(!this.disjoint||!this.trackTimestamp)return;this.timestampQueryPool[e].endQuery(t)}getContext(){return this.gl}beginRender(e){const{state:t}=this,r=this.get(e);if(e.viewport)this.updateViewport(e);else{const{width:e,height:r}=this.getDrawingBufferSize();t.viewport(0,0,e,r)}if(e.scissor){const{x:r,y:s,width:i,height:n}=e.scissorValue;t.scissor(r,e.height-n-s,i,n)}this.initTimestampQuery(St.RENDER,this.getTimestampUID(e)),r.previousContext=this._currentContext,this._currentContext=e,this._setFramebuffer(e),this.clear(e.clearColor,e.clearDepth,e.clearStencil,e,!1);const s=e.occlusionQueryCount;s>0&&(r.currentOcclusionQueries=r.occlusionQueries,r.currentOcclusionQueryObjects=r.occlusionQueryObjects,r.lastOcclusionObject=null,r.occlusionQueries=new Array(s),r.occlusionQueryObjects=new Array(s),r.occlusionQueryIndex=0)}finishRender(e){const{gl:t,state:r}=this,s=this.get(e),i=s.previousContext;r.resetVertexState();const n=e.occlusionQueryCount;n>0&&(n>s.occlusionQueryIndex&&t.endQuery(t.ANY_SAMPLES_PASSED),this.resolveOccludedAsync(e));const a=e.textures;if(null!==a)for(let e=0;e{let a=0;for(let t=0;t1&&u.setMRTBlending(i.textures),u.useProgram(a);const h=e.getAttributes(),p=this.get(h);let g=p.vaoGPU;if(void 0===g){const e=this._getVaoKey(h);g=this.vaoCache[e],void 0===g&&(g=this._createVao(h),this.vaoCache[e]=g,p.vaoGPU=g)}const m=e.getIndex(),f=null!==m?this.get(m).bufferGPU:null;u.setVertexState(g,f);const y=l.lastOcclusionObject;if(y!==t&&void 0!==y){if(null!==y&&!0===y.occlusionTest&&(o.endQuery(o.ANY_SAMPLES_PASSED),l.occlusionQueryIndex++),!0===t.occlusionTest){const e=o.createQuery();o.beginQuery(o.ANY_SAMPLES_PASSED,e),l.occlusionQueries[l.occlusionQueryIndex]=e,l.occlusionQueryObjects[l.occlusionQueryIndex]=t}l.lastOcclusionObject=t}const b=this.bufferRenderer;t.isPoints?b.mode=o.POINTS:t.isLineSegments?b.mode=o.LINES:t.isLine?b.mode=o.LINE_STRIP:t.isLineLoop?b.mode=o.LINE_LOOP:!0===s.wireframe?(u.setLineWidth(s.wireframeLinewidth*this.renderer.getPixelRatio()),b.mode=o.LINES):b.mode=o.TRIANGLES;const{vertexCount:x,instanceCount:T}=d;let{firstVertex:_}=d;if(b.object=t,null!==m){_*=m.array.BYTES_PER_ELEMENT;const e=this.get(m);b.index=m.count,b.type=e.type}else b.index=0;const N=()=>{t.isBatchedMesh?null!==t._multiDrawInstances?(v("WebGLBackend: renderMultiDrawInstances has been deprecated and will be removed in r184. Append to renderMultiDraw arguments and use indirection."),b.renderMultiDrawInstances(t._multiDrawStarts,t._multiDrawCounts,t._multiDrawCount,t._multiDrawInstances)):this.hasFeature("WEBGL_multi_draw")?b.renderMultiDraw(t._multiDrawStarts,t._multiDrawCounts,t._multiDrawCount):v("WebGLBackend: WEBGL_multi_draw not supported."):T>1?b.renderInstances(_,x,T):b.render(_,x)};if(!0===e.camera.isArrayCamera&&e.camera.cameras.length>0&&!1===e.camera.isMultiViewCamera){const r=this.get(e.camera),s=e.camera.cameras,i=e.getBindingGroup("cameraIndex").bindings[0];if(void 0===r.indexesGPU||r.indexesGPU.length!==s.length){const e=new Uint32Array([0,0,0,0]),t=[];for(let r=0,i=s.length;r{const i=this.parallel,n=()=>{r.getProgramParameter(a,i.COMPLETION_STATUS_KHR)?(this._completeCompile(e,s),t()):requestAnimationFrame(n)};n()});return void t.push(i)}this._completeCompile(e,s)}_handleSource(e,t){const r=e.split("\n"),s=[],i=Math.max(t-6,0),n=Math.min(t+6,r.length);for(let e=i;e":" "} ${i}: ${r[e]}`)}return s.join("\n")}_getShaderErrors(e,t,r){const s=e.getShaderParameter(t,e.COMPILE_STATUS),i=(e.getShaderInfoLog(t)||"").trim();if(s&&""===i)return"";const n=/ERROR: 0:(\d+)/.exec(i);if(n){const s=parseInt(n[1]);return r.toUpperCase()+"\n\n"+i+"\n\n"+this._handleSource(e.getShaderSource(t),s)}return i}_logProgramError(e,t,r){if(this.renderer.debug.checkShaderErrors){const s=this.gl,i=(s.getProgramInfoLog(e)||"").trim();if(!1===s.getProgramParameter(e,s.LINK_STATUS))if("function"==typeof this.renderer.debug.onShaderError)this.renderer.debug.onShaderError(s,e,r,t);else{const n=this._getShaderErrors(s,r,"vertex"),a=this._getShaderErrors(s,t,"fragment");o("THREE.WebGLProgram: Shader Error "+s.getError()+" - VALIDATE_STATUS "+s.getProgramParameter(e,s.VALIDATE_STATUS)+"\n\nProgram Info Log: "+i+"\n"+n+"\n"+a)}else""!==i&&d("WebGLProgram: Program Info Log:",i)}}_completeCompile(e,t){const{state:r,gl:s}=this,i=this.get(t),{programGPU:n,fragmentShader:a,vertexShader:o}=i;!1===s.getProgramParameter(n,s.LINK_STATUS)&&this._logProgramError(n,a,o),r.useProgram(n);const u=e.getBindings();this._setupBindings(u,n),this.set(t,{programGPU:n})}createComputePipeline(e,t){const{state:r,gl:s}=this,i={stage:"fragment",code:"#version 300 es\nprecision highp float;\nvoid main() {}"};this.createProgram(i);const{computeProgram:n}=e,a=s.createProgram(),o=this.get(i).shaderGPU,u=this.get(n).shaderGPU,l=n.transforms,d=[],c=[];for(let e=0;eyR[t]===e),r=this.extensions;for(let e=0;e1,h=!0===i.isXRRenderTarget,p=!0===h&&!0===i._hasExternalTextures;let g=n.msaaFrameBuffer,m=n.depthRenderbuffer;const f=this.extensions.get("WEBGL_multisampled_render_to_texture"),y=this.extensions.get("OVR_multiview2"),b=this._useMultisampledExtension(i),x=Ey(e);let T;if(l?(n.cubeFramebuffers||(n.cubeFramebuffers={}),T=n.cubeFramebuffers[x]):h&&!1===p?T=this._xrFramebuffer:(n.framebuffers||(n.framebuffers={}),T=n.framebuffers[x]),void 0===T){T=t.createFramebuffer(),r.bindFramebuffer(t.FRAMEBUFFER,T);const s=e.textures,o=[];if(l){n.cubeFramebuffers[x]=T;const{textureGPU:e}=this.get(s[0]),r=this.renderer._activeCubeFace,i=this.renderer._activeMipmapLevel;t.framebufferTexture2D(t.FRAMEBUFFER,t.COLOR_ATTACHMENT0,t.TEXTURE_CUBE_MAP_POSITIVE_X+r,e,i)}else{n.framebuffers[x]=T;for(let r=0;r0&&!1===b&&!i.multiview){if(void 0===g){const s=[];g=t.createFramebuffer(),r.bindFramebuffer(t.FRAMEBUFFER,g);const i=[],l=e.textures;for(let r=0;r0&&!1===this._useMultisampledExtension(s)){const n=i.framebuffers[e.getCacheKey()];let a=t.COLOR_BUFFER_BIT;s.resolveDepthBuffer&&(s.depthBuffer&&(a|=t.DEPTH_BUFFER_BIT),s.stencilBuffer&&s.resolveStencilBuffer&&(a|=t.STENCIL_BUFFER_BIT));const o=i.msaaFrameBuffer,u=i.msaaRenderbuffers,l=e.textures,d=l.length>1;if(r.bindFramebuffer(t.READ_FRAMEBUFFER,o),r.bindFramebuffer(t.DRAW_FRAMEBUFFER,n),d)for(let e=0;e0&&!0===this.extensions.has("WEBGL_multisampled_render_to_texture")&&!1!==e._autoAllocateDepthBuffer}dispose(){null!==this.textureUtils&&this.textureUtils.dispose();const e=this.extensions.get("WEBGL_lose_context");e&&e.loseContext(),this.renderer.domElement.removeEventListener("webglcontextlost",this._onContextLost)}}const vR="point-list",NR="line-list",SR="line-strip",RR="triangle-list",AR="triangle-strip",ER="undefined"!=typeof self?self.GPUShaderStage:{VERTEX:1,FRAGMENT:2,COMPUTE:4},wR="never",CR="less",MR="equal",BR="less-equal",LR="greater",PR="not-equal",FR="greater-equal",DR="always",IR="store",UR="load",OR="clear",VR="ccw",kR="cw",GR="none",zR="back",$R="uint16",WR="uint32",HR="r8unorm",jR="r8snorm",qR="r8uint",XR="r8sint",KR="r16uint",YR="r16sint",QR="r16float",ZR="rg8unorm",JR="rg8snorm",eA="rg8uint",tA="rg8sint",rA="r32uint",sA="r32sint",iA="r32float",nA="rg16uint",aA="rg16sint",oA="rg16float",uA="rgba8unorm",lA="rgba8unorm-srgb",dA="rgba8snorm",cA="rgba8uint",hA="rgba8sint",pA="bgra8unorm",gA="bgra8unorm-srgb",mA="rgb9e5ufloat",fA="rgb10a2unorm",yA="rg11b10ufloat",bA="rg32uint",xA="rg32sint",TA="rg32float",_A="rgba16uint",vA="rgba16sint",NA="rgba16float",SA="rgba32uint",RA="rgba32sint",AA="rgba32float",EA="depth16unorm",wA="depth24plus",CA="depth24plus-stencil8",MA="depth32float",BA="depth32float-stencil8",LA="bc1-rgba-unorm",PA="bc1-rgba-unorm-srgb",FA="bc2-rgba-unorm",DA="bc2-rgba-unorm-srgb",IA="bc3-rgba-unorm",UA="bc3-rgba-unorm-srgb",OA="bc4-r-unorm",VA="bc4-r-snorm",kA="bc5-rg-unorm",GA="bc5-rg-snorm",zA="bc6h-rgb-ufloat",$A="bc6h-rgb-float",WA="bc7-rgba-unorm",HA="bc7-rgba-unorm-srgb",jA="etc2-rgb8unorm",qA="etc2-rgb8unorm-srgb",XA="etc2-rgb8a1unorm",KA="etc2-rgb8a1unorm-srgb",YA="etc2-rgba8unorm",QA="etc2-rgba8unorm-srgb",ZA="eac-r11unorm",JA="eac-r11snorm",eE="eac-rg11unorm",tE="eac-rg11snorm",rE="astc-4x4-unorm",sE="astc-4x4-unorm-srgb",iE="astc-5x4-unorm",nE="astc-5x4-unorm-srgb",aE="astc-5x5-unorm",oE="astc-5x5-unorm-srgb",uE="astc-6x5-unorm",lE="astc-6x5-unorm-srgb",dE="astc-6x6-unorm",cE="astc-6x6-unorm-srgb",hE="astc-8x5-unorm",pE="astc-8x5-unorm-srgb",gE="astc-8x6-unorm",mE="astc-8x6-unorm-srgb",fE="astc-8x8-unorm",yE="astc-8x8-unorm-srgb",bE="astc-10x5-unorm",xE="astc-10x5-unorm-srgb",TE="astc-10x6-unorm",_E="astc-10x6-unorm-srgb",vE="astc-10x8-unorm",NE="astc-10x8-unorm-srgb",SE="astc-10x10-unorm",RE="astc-10x10-unorm-srgb",AE="astc-12x10-unorm",EE="astc-12x10-unorm-srgb",wE="astc-12x12-unorm",CE="astc-12x12-unorm-srgb",ME="clamp-to-edge",BE="repeat",LE="mirror-repeat",PE="linear",FE="nearest",DE="zero",IE="one",UE="src",OE="one-minus-src",VE="src-alpha",kE="one-minus-src-alpha",GE="dst",zE="one-minus-dst",$E="dst-alpha",WE="one-minus-dst-alpha",HE="src-alpha-saturated",jE="constant",qE="one-minus-constant",XE="add",KE="subtract",YE="reverse-subtract",QE="min",ZE="max",JE=0,ew=15,tw="keep",rw="zero",sw="replace",iw="invert",nw="increment-clamp",aw="decrement-clamp",ow="increment-wrap",uw="decrement-wrap",lw="storage",dw="read-only-storage",cw="write-only",hw="read-only",pw="read-write",gw="non-filtering",mw="comparison",fw="float",yw="unfilterable-float",bw="depth",xw="sint",Tw="uint",_w="2d",vw="3d",Nw="2d",Sw="2d-array",Rw="cube",Aw="3d",Ew="all",ww="vertex",Cw="instance",Mw={CoreFeaturesAndLimits:"core-features-and-limits",DepthClipControl:"depth-clip-control",Depth32FloatStencil8:"depth32float-stencil8",TextureCompressionBC:"texture-compression-bc",TextureCompressionBCSliced3D:"texture-compression-bc-sliced-3d",TextureCompressionETC2:"texture-compression-etc2",TextureCompressionASTC:"texture-compression-astc",TextureCompressionASTCSliced3D:"texture-compression-astc-sliced-3d",TimestampQuery:"timestamp-query",IndirectFirstInstance:"indirect-first-instance",ShaderF16:"shader-f16",RG11B10UFloat:"rg11b10ufloat-renderable",BGRA8UNormStorage:"bgra8unorm-storage",Float32Filterable:"float32-filterable",Float32Blendable:"float32-blendable",ClipDistances:"clip-distances",DualSourceBlending:"dual-source-blending",Subgroups:"subgroups",TextureFormatsTier1:"texture-formats-tier1",TextureFormatsTier2:"texture-formats-tier2"},Bw={"texture-compression-s3tc":"texture-compression-bc","texture-compression-etc1":"texture-compression-etc2"};class Lw extends VS{constructor(e,t,r){super(e,t?t.value:null),this.textureNode=t,this.groupNode=r}update(){const{textureNode:e}=this;return this.texture!==e.value?(this.texture=e.value,!0):super.update()}}class Pw extends LS{constructor(e,t){super(e,t?t.array:null),this.attribute=t,this.isStorageBuffer=!0}}let Fw=0;class Dw extends Pw{constructor(e,t){super("StorageBuffer_"+Fw++,e?e.value:null),this.nodeUniform=e,this.access=e?e.access:Js.READ_WRITE,this.groupNode=t}get buffer(){return this.nodeUniform.value}}class Iw extends ty{constructor(e){super(),this.device=e;this.mipmapSampler=e.createSampler({minFilter:PE}),this.flipYSampler=e.createSampler({minFilter:FE}),this.transferPipelines={},this.flipYPipelines={},this.mipmapVertexShaderModule=e.createShaderModule({label:"mipmapVertex",code:"\nstruct VarysStruct {\n\t@builtin( position ) Position: vec4,\n\t@location( 0 ) vTex : vec2\n};\n\n@vertex\nfn main( @builtin( vertex_index ) vertexIndex : u32 ) -> VarysStruct {\n\n\tvar Varys : VarysStruct;\n\n\tvar pos = array< vec2, 4 >(\n\t\tvec2( -1.0, 1.0 ),\n\t\tvec2( 1.0, 1.0 ),\n\t\tvec2( -1.0, -1.0 ),\n\t\tvec2( 1.0, -1.0 )\n\t);\n\n\tvar tex = array< vec2, 4 >(\n\t\tvec2( 0.0, 0.0 ),\n\t\tvec2( 1.0, 0.0 ),\n\t\tvec2( 0.0, 1.0 ),\n\t\tvec2( 1.0, 1.0 )\n\t);\n\n\tVarys.vTex = tex[ vertexIndex ];\n\tVarys.Position = vec4( pos[ vertexIndex ], 0.0, 1.0 );\n\n\treturn Varys;\n\n}\n"}),this.mipmapFragmentShaderModule=e.createShaderModule({label:"mipmapFragment",code:"\n@group( 0 ) @binding( 0 )\nvar imgSampler : sampler;\n\n@group( 0 ) @binding( 1 )\nvar img : texture_2d;\n\n@fragment\nfn main( @location( 0 ) vTex : vec2 ) -> @location( 0 ) vec4 {\n\n\treturn textureSample( img, imgSampler, vTex );\n\n}\n"}),this.flipYFragmentShaderModule=e.createShaderModule({label:"flipYFragment",code:"\n@group( 0 ) @binding( 0 )\nvar imgSampler : sampler;\n\n@group( 0 ) @binding( 1 )\nvar img : texture_2d;\n\n@fragment\nfn main( @location( 0 ) vTex : vec2 ) -> @location( 0 ) vec4 {\n\n\treturn textureSample( img, imgSampler, vec2( vTex.x, 1.0 - vTex.y ) );\n\n}\n"})}getTransferPipeline(e){let t=this.transferPipelines[e];return void 0===t&&(t=this.device.createRenderPipeline({label:`mipmap-${e}`,vertex:{module:this.mipmapVertexShaderModule,entryPoint:"main"},fragment:{module:this.mipmapFragmentShaderModule,entryPoint:"main",targets:[{format:e}]},primitive:{topology:AR,stripIndexFormat:WR},layout:"auto"}),this.transferPipelines[e]=t),t}getFlipYPipeline(e){let t=this.flipYPipelines[e];return void 0===t&&(t=this.device.createRenderPipeline({label:`flipY-${e}`,vertex:{module:this.mipmapVertexShaderModule,entryPoint:"main"},fragment:{module:this.flipYFragmentShaderModule,entryPoint:"main",targets:[{format:e}]},primitive:{topology:AR,stripIndexFormat:WR},layout:"auto"}),this.flipYPipelines[e]=t),t}flipY(e,t,r=0){const s=t.format,{width:i,height:n}=t.size,a=this.getTransferPipeline(s),o=this.getFlipYPipeline(s),u=this.device.createTexture({size:{width:i,height:n,depthOrArrayLayers:1},format:s,usage:GPUTextureUsage.RENDER_ATTACHMENT|GPUTextureUsage.TEXTURE_BINDING}),l=e.createView({baseMipLevel:0,mipLevelCount:1,dimension:Nw,baseArrayLayer:r}),d=u.createView({baseMipLevel:0,mipLevelCount:1,dimension:Nw,baseArrayLayer:0}),c=this.device.createCommandEncoder({}),h=(e,t,r)=>{const s=e.getBindGroupLayout(0),i=this.device.createBindGroup({layout:s,entries:[{binding:0,resource:this.flipYSampler},{binding:1,resource:t}]}),n=c.beginRenderPass({colorAttachments:[{view:r,loadOp:OR,storeOp:IR,clearValue:[0,0,0,0]}]});n.setPipeline(e),n.setBindGroup(0,i),n.draw(4,1,0,0),n.end()};h(a,l,d),h(o,d,l),this.device.queue.submit([c.finish()]),u.destroy()}generateMipmaps(e,t,r=0,s=null){const i=this.get(e);void 0===i.layers&&(i.layers=[]);const n=i.layers[r]||this._mipmapCreateBundles(e,t,r),a=s||this.device.createCommandEncoder({label:"mipmapEncoder"});this._mipmapRunBundles(a,n),null===s&&this.device.queue.submit([a.finish()]),i.layers[r]=n}_mipmapCreateBundles(e,t,r){const s=this.getTransferPipeline(t.format),i=s.getBindGroupLayout(0);let n=e.createView({baseMipLevel:0,mipLevelCount:1,dimension:Nw,baseArrayLayer:r});const a=[];for(let o=1;o0)for(let t=0,n=s.length;t0)for(let t=0,n=s.length;t0?e.width:r.size.width,l=a>0?e.height:r.size.height;o.queue.copyExternalImageToTexture({source:e,flipY:i},{texture:t,mipLevel:a,origin:{x:0,y:0,z:s},premultipliedAlpha:n},{width:u,height:l,depthOrArrayLayers:1})}_getPassUtils(){let e=this._passUtils;return null===e&&(this._passUtils=e=new Iw(this.backend.device)),e}_generateMipmaps(e,t,r=0,s=null){this._getPassUtils().generateMipmaps(e,t,r,s)}_flipY(e,t,r=0){this._getPassUtils().flipY(e,t,r)}_copyBufferToTexture(e,t,r,s,i,n=0,a=0){const o=this.backend.device,u=e.data,l=this._getBytesPerTexel(r.format),d=e.width*l;o.queue.writeTexture({texture:t,mipLevel:a,origin:{x:0,y:0,z:s}},u,{offset:e.width*e.height*l*n,bytesPerRow:d},{width:e.width,height:e.height,depthOrArrayLayers:1}),!0===i&&this._flipY(t,r,s)}_copyCompressedBufferToTexture(e,t,r){const s=this.backend.device,i=this._getBlockData(r.format),n=r.size.depthOrArrayLayers>1;for(let a=0;a]*\s*([a-z_0-9]+(?:<[\s\S]+?>)?)/i,zw=/([a-z_0-9]+)\s*:\s*([a-z_0-9]+(?:<[\s\S]+?>)?)/gi,$w={f32:"float",i32:"int",u32:"uint",bool:"bool","vec2":"vec2","vec2":"ivec2","vec2":"uvec2","vec2":"bvec2",vec2f:"vec2",vec2i:"ivec2",vec2u:"uvec2",vec2b:"bvec2","vec3":"vec3","vec3":"ivec3","vec3":"uvec3","vec3":"bvec3",vec3f:"vec3",vec3i:"ivec3",vec3u:"uvec3",vec3b:"bvec3","vec4":"vec4","vec4":"ivec4","vec4":"uvec4","vec4":"bvec4",vec4f:"vec4",vec4i:"ivec4",vec4u:"uvec4",vec4b:"bvec4","mat2x2":"mat2",mat2x2f:"mat2","mat3x3":"mat3",mat3x3f:"mat3","mat4x4":"mat4",mat4x4f:"mat4",sampler:"sampler",texture_1d:"texture",texture_2d:"texture",texture_2d_array:"texture",texture_multisampled_2d:"cubeTexture",texture_depth_2d:"depthTexture",texture_depth_2d_array:"depthTexture",texture_depth_multisampled_2d:"depthTexture",texture_depth_cube:"depthTexture",texture_depth_cube_array:"depthTexture",texture_3d:"texture3D",texture_cube:"cubeTexture",texture_cube_array:"cubeTexture",texture_storage_1d:"storageTexture",texture_storage_2d:"storageTexture",texture_storage_2d_array:"storageTexture",texture_storage_3d:"storageTexture"};class Ww extends qN{constructor(e){const{type:t,inputs:r,name:s,inputsCode:i,blockCode:n,outputType:a}=(e=>{const t=(e=e.trim()).match(Gw);if(null!==t&&4===t.length){const r=t[2],s=[];let i=null;for(;null!==(i=zw.exec(r));)s.push({name:i[1],type:i[2]});const n=[];for(let e=0;e "+this.outputType:"";return`fn ${e} ( ${this.inputsCode.trim()} ) ${t}`+this.blockCode}}class Hw extends jN{parseFunction(e){return new Ww(e)}}const jw={[Js.READ_ONLY]:"read",[Js.WRITE_ONLY]:"write",[Js.READ_WRITE]:"read_write"},qw={[Ir]:"repeat",[ye]:"clamp",[Dr]:"mirror"},Xw={vertex:ER.VERTEX,fragment:ER.FRAGMENT,compute:ER.COMPUTE},Kw={instance:!0,swizzleAssign:!1,storageBuffer:!0},Yw={"^^":"tsl_xor"},Qw={float:"f32",int:"i32",uint:"u32",bool:"bool",color:"vec3",vec2:"vec2",ivec2:"vec2",uvec2:"vec2",bvec2:"vec2",vec3:"vec3",ivec3:"vec3",uvec3:"vec3",bvec3:"vec3",vec4:"vec4",ivec4:"vec4",uvec4:"vec4",bvec4:"vec4",mat2:"mat2x2",mat3:"mat3x3",mat4:"mat4x4"},Zw={},Jw={tsl_xor:new jx("fn tsl_xor( a : bool, b : bool ) -> bool { return ( a || b ) && !( a && b ); }"),mod_float:new jx("fn tsl_mod_float( x : f32, y : f32 ) -> f32 { return x - y * floor( x / y ); }"),mod_vec2:new jx("fn tsl_mod_vec2( x : vec2f, y : vec2f ) -> vec2f { return x - y * floor( x / y ); }"),mod_vec3:new jx("fn tsl_mod_vec3( x : vec3f, y : vec3f ) -> vec3f { return x - y * floor( x / y ); }"),mod_vec4:new jx("fn tsl_mod_vec4( x : vec4f, y : vec4f ) -> vec4f { return x - y * floor( x / y ); }"),equals_bool:new jx("fn tsl_equals_bool( a : bool, b : bool ) -> bool { return a == b; }"),equals_bvec2:new jx("fn tsl_equals_bvec2( a : vec2f, b : vec2f ) -> vec2 { return vec2( a.x == b.x, a.y == b.y ); }"),equals_bvec3:new jx("fn tsl_equals_bvec3( a : vec3f, b : vec3f ) -> vec3 { return vec3( a.x == b.x, a.y == b.y, a.z == b.z ); }"),equals_bvec4:new jx("fn tsl_equals_bvec4( a : vec4f, b : vec4f ) -> vec4 { return vec4( a.x == b.x, a.y == b.y, a.z == b.z, a.w == b.w ); }"),repeatWrapping_float:new jx("fn tsl_repeatWrapping_float( coord: f32 ) -> f32 { return fract( coord ); }"),mirrorWrapping_float:new jx("fn tsl_mirrorWrapping_float( coord: f32 ) -> f32 { let mirrored = fract( coord * 0.5 ) * 2.0; return 1.0 - abs( 1.0 - mirrored ); }"),clampWrapping_float:new jx("fn tsl_clampWrapping_float( coord: f32 ) -> f32 { return clamp( coord, 0.0, 1.0 ); }"),biquadraticTexture:new jx("\nfn tsl_biquadraticTexture( map : texture_2d, coord : vec2f, iRes : vec2u, level : u32 ) -> vec4f {\n\n\tlet res = vec2f( iRes );\n\n\tlet uvScaled = coord * res;\n\tlet uvWrapping = ( ( uvScaled % res ) + res ) % res;\n\n\t// https://www.shadertoy.com/view/WtyXRy\n\n\tlet uv = uvWrapping - 0.5;\n\tlet iuv = floor( uv );\n\tlet f = fract( uv );\n\n\tlet rg1 = textureLoad( map, vec2u( iuv + vec2( 0.5, 0.5 ) ) % iRes, level );\n\tlet rg2 = textureLoad( map, vec2u( iuv + vec2( 1.5, 0.5 ) ) % iRes, level );\n\tlet rg3 = textureLoad( map, vec2u( iuv + vec2( 0.5, 1.5 ) ) % iRes, level );\n\tlet rg4 = textureLoad( map, vec2u( iuv + vec2( 1.5, 1.5 ) ) % iRes, level );\n\n\treturn mix( mix( rg1, rg2, f.x ), mix( rg3, rg4, f.x ), f.y );\n\n}\n")},eC={dFdx:"dpdx",dFdy:"- dpdy",mod_float:"tsl_mod_float",mod_vec2:"tsl_mod_vec2",mod_vec3:"tsl_mod_vec3",mod_vec4:"tsl_mod_vec4",equals_bool:"tsl_equals_bool",equals_bvec2:"tsl_equals_bvec2",equals_bvec3:"tsl_equals_bvec3",equals_bvec4:"tsl_equals_bvec4",inversesqrt:"inverseSqrt",bitcast:"bitcast",floatpack_snorm_2x16:"pack2x16snorm",floatpack_unorm_2x16:"pack2x16unorm",floatpack_float16_2x16:"pack2x16float",floatunpack_snorm_2x16:"unpack2x16snorm",floatunpack_unorm_2x16:"unpack2x16unorm",floatunpack_float16_2x16:"unpack2x16float"};let tC="";!0!==("undefined"!=typeof navigator&&/Firefox|Deno/g.test(navigator.userAgent))&&(tC+="diagnostic( off, derivative_uniformity );\n");class rC extends BN{constructor(e,t){super(e,t,new Hw),this.uniformGroups={},this.builtins={},this.directives={},this.scopedArrays=new Map}_generateTextureSample(e,t,r,s,i,n=this.shaderStage){return"fragment"===n?s?i?`textureSample( ${t}, ${t}_sampler, ${r}, ${s}, ${i} )`:`textureSample( ${t}, ${t}_sampler, ${r}, ${s} )`:i?`textureSample( ${t}, ${t}_sampler, ${r}, ${i} )`:`textureSample( ${t}, ${t}_sampler, ${r} )`:this.generateTextureSampleLevel(e,t,r,"0",s)}generateTextureSampleLevel(e,t,r,s,i,n){return!1===this.isUnfilterable(e)?n?`textureSampleLevel( ${t}, ${t}_sampler, ${r}, ${s}, ${n} )`:`textureSampleLevel( ${t}, ${t}_sampler, ${r}, ${s} )`:this.isFilteredTexture(e)?this.generateFilteredTexture(e,t,r,n,s):this.generateTextureLod(e,t,r,i,n,s)}generateWrapFunction(e){const t=`tsl_coord_${qw[e.wrapS]}S_${qw[e.wrapT]}_${e.is3DTexture||e.isData3DTexture?"3d":"2d"}T`;let r=Zw[t];if(void 0===r){const s=[],i=e.is3DTexture||e.isData3DTexture?"vec3f":"vec2f";let n=`fn ${t}( coord : ${i} ) -> ${i} {\n\n\treturn ${i}(\n`;const a=(e,t)=>{e===Ir?(s.push(Jw.repeatWrapping_float),n+=`\t\ttsl_repeatWrapping_float( coord.${t} )`):e===ye?(s.push(Jw.clampWrapping_float),n+=`\t\ttsl_clampWrapping_float( coord.${t} )`):e===Dr?(s.push(Jw.mirrorWrapping_float),n+=`\t\ttsl_mirrorWrapping_float( coord.${t} )`):(n+=`\t\tcoord.${t}`,d(`WebGPURenderer: Unsupported texture wrap type "${e}" for vertex shader.`))};a(e.wrapS,"x"),n+=",\n",a(e.wrapT,"y"),(e.is3DTexture||e.isData3DTexture)&&(n+=",\n",a(e.wrapR,"z")),n+="\n\t);\n\n}\n",Zw[t]=r=new jx(n,s)}return r.build(this),t}generateArrayDeclaration(e,t){return`array< ${this.getType(e)}, ${t} >`}generateTextureDimension(e,t,r){const s=this.getDataFromNode(e,this.shaderStage,this.globalCache);void 0===s.dimensionsSnippet&&(s.dimensionsSnippet={});let i=s.dimensionsSnippet[r];if(void 0===s.dimensionsSnippet[r]){let n,a;const{primarySamples:o}=this.renderer.backend.utils.getTextureSampleData(e),u=o>1;a=e.is3DTexture||e.isData3DTexture?"vec3":"vec2",n=u||e.isStorageTexture?t:`${t}${r?`, u32( ${r} )`:""}`,i=new Au(new pl(`textureDimensions( ${n} )`,a)),s.dimensionsSnippet[r]=i,(e.isArrayTexture||e.isDataArrayTexture||e.is3DTexture||e.isData3DTexture)&&(s.arrayLayerCount=new Au(new pl(`textureNumLayers(${t})`,"u32"))),e.isTextureCube&&(s.cubeFaceCount=new Au(new pl("6u","u32")))}return i.build(this)}generateFilteredTexture(e,t,r,s,i="0u"){this._include("biquadraticTexture");const n=this.generateWrapFunction(e),a=this.generateTextureDimension(e,t,i);return s&&(r=`${r} + vec2(${s}) / ${a}`),`tsl_biquadraticTexture( ${t}, ${n}( ${r} ), ${a}, u32( ${i} ) )`}generateTextureLod(e,t,r,s,i,n="0u"){const a=this.generateWrapFunction(e),o=this.generateTextureDimension(e,t,n),u=e.is3DTexture||e.isData3DTexture?"vec3":"vec2";i&&(r=`${r} + ${u}(${i}) / ${u}( ${o} )`);const l=`${u}( ${a}( ${r} ) * ${u}( ${o} ) )`;return this.generateTextureLoad(e,t,l,n,s,null)}generateTextureLoad(e,t,r,s,i,n){let a;return null===s&&(s="0u"),n&&(r=`${r} + ${n}`),i?a=`textureLoad( ${t}, ${r}, ${i}, u32( ${s} ) )`:(a=`textureLoad( ${t}, ${r}, u32( ${s} ) )`,this.renderer.backend.compatibilityMode&&e.isDepthTexture&&(a+=".x")),a}generateTextureStore(e,t,r,s,i){let n;return n=s?`textureStore( ${t}, ${r}, ${s}, ${i} )`:`textureStore( ${t}, ${r}, ${i} )`,n}isSampleCompare(e){return!0===e.isDepthTexture&&null!==e.compareFunction}isUnfilterable(e){return"float"!==this.getComponentTypeFromTexture(e)||!this.isAvailable("float32Filterable")&&!0===e.isDataTexture&&e.type===H||!1===this.isSampleCompare(e)&&e.minFilter===A&&e.magFilter===A||this.renderer.backend.utils.getTextureSampleData(e).primarySamples>1}generateTexture(e,t,r,s,i,n=this.shaderStage){let a=null;return a=this.isUnfilterable(e)?this.generateTextureLod(e,t,r,s,i,"0",n):this._generateTextureSample(e,t,r,s,i,n),a}generateTextureGrad(e,t,r,s,i,n,a=this.shaderStage){if("fragment"===a)return n?`textureSampleGrad( ${t}, ${t}_sampler, ${r}, ${s[0]}, ${s[1]}, ${n} )`:`textureSampleGrad( ${t}, ${t}_sampler, ${r}, ${s[0]}, ${s[1]} )`;o(`WebGPURenderer: THREE.TextureNode.gradient() does not support ${a} shader.`)}generateTextureCompare(e,t,r,s,i,n,a=this.shaderStage){if("fragment"===a)return!0===e.isDepthTexture&&!0===e.isArrayTexture?n?`textureSampleCompare( ${t}, ${t}_sampler, ${r}, ${i}, ${s}, ${n} )`:`textureSampleCompare( ${t}, ${t}_sampler, ${r}, ${i}, ${s} )`:n?`textureSampleCompare( ${t}, ${t}_sampler, ${r}, ${s}, ${n} )`:`textureSampleCompare( ${t}, ${t}_sampler, ${r}, ${s} )`;o(`WebGPURenderer: THREE.DepthTexture.compareFunction() does not support ${a} shader.`)}generateTextureLevel(e,t,r,s,i,n){return!1===this.isUnfilterable(e)?n?`textureSampleLevel( ${t}, ${t}_sampler, ${r}, ${s}, ${n} )`:`textureSampleLevel( ${t}, ${t}_sampler, ${r}, ${s} )`:this.isFilteredTexture(e)?this.generateFilteredTexture(e,t,r,n,s):this.generateTextureLod(e,t,r,i,n,s)}generateTextureBias(e,t,r,s,i,n,a=this.shaderStage){if("fragment"===a)return n?`textureSampleBias( ${t}, ${t}_sampler, ${r}, ${s}, ${n} )`:`textureSampleBias( ${t}, ${t}_sampler, ${r}, ${s} )`;o(`WebGPURenderer: THREE.TextureNode.biasNode does not support ${a} shader.`)}getPropertyName(e,t=this.shaderStage){if(!0===e.isNodeVarying&&!0===e.needsInterpolation){if("vertex"===t)return`varyings.${e.name}`}else if(!0===e.isNodeUniform){const t=e.name,r=e.type;return"texture"===r||"cubeTexture"===r||"cubeDepthTexture"===r||"storageTexture"===r||"texture3D"===r?t:"buffer"===r||"storageBuffer"===r||"indirectStorageBuffer"===r?this.isCustomStruct(e)?t:t+".value":e.groupNode.name+"."+t}return super.getPropertyName(e)}getOutputStructName(){return"output"}getFunctionOperator(e){const t=Yw[e];return void 0!==t?(this._include(t),t):null}getNodeAccess(e,t){return"compute"!==t?!0===e.isAtomic?(d("WebGPURenderer: Atomic operations are only supported in compute shaders."),Js.READ_WRITE):Js.READ_ONLY:e.access}getStorageAccess(e,t){return jw[this.getNodeAccess(e,t)]}getUniformFromNode(e,t,r,s=null){const i=super.getUniformFromNode(e,t,r,s),n=this.getDataFromNode(e,r,this.globalCache);if(void 0===n.uniformGPU){let a;const o=e.groupNode,u=o.name,l=this.getBindGroupArray(u,r);if("texture"===t||"cubeTexture"===t||"cubeDepthTexture"===t||"storageTexture"===t||"texture3D"===t){let s=null;const n=this.getNodeAccess(e,r);if("texture"===t||"storageTexture"===t?s=!0===e.value.is3DTexture?new WS(i.name,i.node,o,n):new zS(i.name,i.node,o,n):"cubeTexture"===t||"cubeDepthTexture"===t?s=new $S(i.name,i.node,o,n):"texture3D"===t&&(s=new WS(i.name,i.node,o,n)),s.store=!0===e.isStorageTextureNode,s.mipLevel=s.store?e.mipLevel:0,s.setVisibility(Xw[r]),!1===this.isUnfilterable(e.value)&&!1===s.store){const e=new Lw(`${i.name}_sampler`,i.node,o);e.setVisibility(Xw[r]),l.push(e,s),a=[e,s]}else l.push(s),a=[s]}else if("buffer"===t||"storageBuffer"===t||"indirectStorageBuffer"===t){const n=this.getSharedDataFromNode(e);let u=n.buffer;if(void 0===u){u=new("buffer"===t?DS:Dw)(e,o),n.buffer=u}u.setVisibility(u.getVisibility()|Xw[r]),l.push(u),a=u,i.name=s||"NodeBuffer_"+i.id}else{const e=this.uniformGroups[r]||(this.uniformGroups[r]={});let s=e[u];void 0===s&&(s=new OS(u,o),s.setVisibility(Xw[r]),e[u]=s,l.push(s)),a=this.getNodeUniform(i,t),s.addUniform(a)}n.uniformGPU=a}return i}getBuiltin(e,t,r,s=this.shaderStage){const i=this.builtins[s]||(this.builtins[s]=new Map);return!1===i.has(e)&&i.set(e,{name:e,property:t,type:r}),t}hasBuiltin(e,t=this.shaderStage){return void 0!==this.builtins[t]&&this.builtins[t].has(e)}getVertexIndex(){return"vertex"===this.shaderStage?this.getBuiltin("vertex_index","vertexIndex","u32","attribute"):"vertexIndex"}buildFunctionCode(e){const t=e.layout,r=this.flowShaderNode(e),s=[];for(const e of t.inputs)s.push(e.name+" : "+this.getType(e.type));let i=`fn ${t.name}( ${s.join(", ")} ) -> ${this.getType(t.type)} {\n${r.vars}\n${r.code}\n`;return r.result&&(i+=`\treturn ${r.result};\n`),i+="\n}\n",i}getInstanceIndex(){return"vertex"===this.shaderStage?this.getBuiltin("instance_index","instanceIndex","u32","attribute"):"instanceIndex"}getInvocationLocalIndex(){return this.getBuiltin("local_invocation_index","invocationLocalIndex","u32","attribute")}getSubgroupSize(){return this.enableSubGroups(),this.getBuiltin("subgroup_size","subgroupSize","u32","attribute")}getInvocationSubgroupIndex(){return this.enableSubGroups(),this.getBuiltin("subgroup_invocation_id","invocationSubgroupIndex","u32","attribute")}getSubgroupIndex(){return this.enableSubGroups(),this.getBuiltin("subgroup_id","subgroupIndex","u32","attribute")}getDrawIndex(){return null}getFrontFacing(){return this.getBuiltin("front_facing","isFront","bool")}getFragCoord(){return this.getBuiltin("position","fragCoord","vec4")+".xy"}getFragDepth(){return"output."+this.getBuiltin("frag_depth","depth","f32","output")}getClipDistance(){return"varyings.hw_clip_distances"}isFlipY(){return!1}enableDirective(e,t=this.shaderStage){(this.directives[t]||(this.directives[t]=new Set)).add(e)}getDirectives(e){const t=[],r=this.directives[e];if(void 0!==r)for(const e of r)t.push(`enable ${e};`);return t.join("\n")}enableSubGroups(){this.enableDirective("subgroups")}enableSubgroupsF16(){this.enableDirective("subgroups-f16")}enableClipDistances(){this.enableDirective("clip_distances")}enableShaderF16(){this.enableDirective("f16")}enableDualSourceBlending(){this.enableDirective("dual_source_blending")}enableHardwareClipping(e){this.enableClipDistances(),this.getBuiltin("clip_distances","hw_clip_distances",`array`,"vertex")}getBuiltins(e){const t=[],r=this.builtins[e];if(void 0!==r)for(const{name:e,property:s,type:i}of r.values())t.push(`@builtin( ${e} ) ${s} : ${i}`);return t.join(",\n\t")}getScopedArray(e,t,r,s){return!1===this.scopedArrays.has(e)&&this.scopedArrays.set(e,{name:e,scope:t,bufferType:r,bufferCount:s}),e}getScopedArrays(e){if("compute"!==e)return;const t=[];for(const{name:e,scope:r,bufferType:s,bufferCount:i}of this.scopedArrays.values()){const n=this.getType(s);t.push(`var<${r}> ${e}: array< ${n}, ${i} >;`)}return t.join("\n")}getAttributes(e){const t=[];if("compute"===e&&(this.getBuiltin("global_invocation_id","globalId","vec3","attribute"),this.getBuiltin("workgroup_id","workgroupId","vec3","attribute"),this.getBuiltin("local_invocation_id","localId","vec3","attribute"),this.getBuiltin("num_workgroups","numWorkgroups","vec3","attribute"),this.renderer.hasFeature("subgroups")&&(this.enableDirective("subgroups",e),this.getBuiltin("subgroup_size","subgroupSize","u32","attribute"))),"vertex"===e||"compute"===e){const e=this.getBuiltins("attribute");e&&t.push(e);const r=this.getAttributesArray();for(let e=0,s=r.length;e"),t.push(`\t${s+r.name} : ${i}`)}return e.output&&t.push(`\t${this.getBuiltins("output")}`),t.join(",\n")}getStructs(e){let t="";const r=this.structs[e];if(r.length>0){const e=[];for(const t of r){let r=`struct ${t.name} {\n`;r+=this.getStructMembers(t),r+="\n};",e.push(r)}t="\n"+e.join("\n\n")+"\n"}return t}getVar(e,t,r=null){let s=`var ${t} : `;return s+=null!==r?this.generateArrayDeclaration(e,r):this.getType(e),s}getVars(e){const t=[],r=this.vars[e];if(void 0!==r)for(const e of r)t.push(`\t${this.getVar(e.type,e.name,e.count)};`);return`\n${t.join("\n")}\n`}getVaryings(e){const t=[];if("vertex"===e&&this.getBuiltin("position","Vertex","vec4","vertex"),"vertex"===e||"fragment"===e){const r=this.varyings,s=this.vars[e];for(let i=0;ir.value.itemSize;return s&&!i}getUniforms(e){const t=this.uniforms[e],r=[],s=[],i=[],n={};for(const i of t){const t=i.groupNode.name,a=this.bindingsIndexes[t];if("texture"===i.type||"cubeTexture"===i.type||"cubeDepthTexture"===i.type||"storageTexture"===i.type||"texture3D"===i.type){const t=i.node.value;let s;!1===this.isUnfilterable(t)&&!0!==i.node.isStorageTextureNode&&(this.isSampleCompare(t)?r.push(`@binding( ${a.binding++} ) @group( ${a.group} ) var ${i.name}_sampler : sampler_comparison;`):r.push(`@binding( ${a.binding++} ) @group( ${a.group} ) var ${i.name}_sampler : sampler;`));let n="";const{primarySamples:o}=this.renderer.backend.utils.getTextureSampleData(t);if(o>1&&(n="_multisampled"),!0===t.isCubeTexture&&!0===t.isDepthTexture)s="texture_depth_cube";else if(!0===t.isCubeTexture)s="texture_cube";else if(!0===t.isDepthTexture)s=this.renderer.backend.compatibilityMode&&null===t.compareFunction?`texture${n}_2d`:`texture_depth${n}_2d${!0===t.isArrayTexture?"_array":""}`;else if(!0===i.node.isStorageTextureNode){const r=kw(t),n=this.getStorageAccess(i.node,e),a=i.node.value.is3DTexture,o=i.node.value.isArrayTexture;s=`texture_storage_${a?"3d":"2d"+(o?"_array":"")}<${r}, ${n}>`}else if(!0===t.isArrayTexture||!0===t.isDataArrayTexture||!0===t.isCompressedArrayTexture)s="texture_2d_array";else if(!0===t.is3DTexture||!0===t.isData3DTexture)s="texture_3d";else{s=`texture${n}_2d<${this.getComponentTypeFromTexture(t).charAt(0)}32>`}r.push(`@binding( ${a.binding++} ) @group( ${a.group} ) var ${i.name} : ${s};`)}else if("buffer"===i.type||"storageBuffer"===i.type||"indirectStorageBuffer"===i.type){const t=i.node,r=this.getType(t.getNodeType(this)),n=t.bufferCount,o=n>0&&"buffer"===i.type?", "+n:"",u=t.isStorageBufferNode?`storage, ${this.getStorageAccess(t,e)}`:"uniform";if(this.isCustomStruct(i))s.push(`@binding( ${a.binding++} ) @group( ${a.group} ) var<${u}> ${i.name} : ${r};`);else{const e=`\tvalue : array< ${t.isAtomic?`atomic<${r}>`:`${r}`}${o} >`;s.push(this._getWGSLStructBinding(i.name,e,u,a.binding++,a.group))}}else{const e=this.getType(this.getVectorType(i.type)),t=i.groupNode.name;(n[t]||(n[t]={index:a.binding++,id:a.group,snippets:[]})).snippets.push(`\t${i.name} : ${e}`)}}for(const e in n){const t=n[e];i.push(this._getWGSLStructBinding(e,t.snippets.join(",\n"),"uniform",t.index,t.id))}let a=r.join("\n");return a+=s.join("\n"),a+=i.join("\n"),a}buildCode(){const e=null!==this.material?{fragment:{},vertex:{}}:{compute:{}};this.sortBindingGroups();for(const t in e){this.shaderStage=t;const r=e[t];r.uniforms=this.getUniforms(t),r.attributes=this.getAttributes(t),r.varyings=this.getVaryings(t),r.structs=this.getStructs(t),r.vars=this.getVars(t),r.codes=this.getCodes(t),r.directives=this.getDirectives(t),r.scopedArrays=this.getScopedArrays(t);let s="// code\n\n";s+=this.flowCode[t];const i=this.flowNodes[t],n=i[i.length-1],a=n.outputNode,o=void 0!==a&&!0===a.isOutputStructNode;for(const e of i){const i=this.getFlowData(e),u=e.name;if(u&&(s.length>0&&(s+="\n"),s+=`\t// flow -> ${u}\n`),s+=`${i.code}\n\t`,e===n&&"compute"!==t)if(s+="// result\n\n\t","vertex"===t)s+=`varyings.Vertex = ${i.result};`;else if("fragment"===t)if(o)r.returnType=a.getNodeType(this),r.structs+="var output : "+r.returnType+";",s+=`return ${i.result};`;else{let e="\t@location(0) color: vec4";const t=this.getBuiltins("output");t&&(e+=",\n\t"+t),r.returnType="OutputStruct",r.structs+=this._getWGSLStruct("OutputStruct",e),r.structs+="\nvar output : OutputStruct;",s+=`output.color = ${i.result};\n\n\treturn output;`}}r.flow=s}if(this.shaderStage=null,null!==this.material)this.vertexShader=this._getWGSLVertexCode(e.vertex),this.fragmentShader=this._getWGSLFragmentCode(e.fragment);else{const t=this.object.workgroupSize;this.computeShader=this._getWGSLComputeCode(e.compute,t)}}getMethod(e,t=null){let r;return null!==t&&(r=this._getWGSLMethod(e+"_"+t)),void 0===r&&(r=this._getWGSLMethod(e)),r||e}getBitcastMethod(e){return`bitcast<${this.getType(e)}>`}getFloatPackingMethod(e){return this.getMethod(`floatpack_${e}_2x16`)}getFloatUnpackingMethod(e){return this.getMethod(`floatunpack_${e}_2x16`)}getTernary(e,t,r){return`select( ${r}, ${t}, ${e} )`}getType(e){return Qw[e]||e}isAvailable(e){let t=Kw[e];return void 0===t&&("float32Filterable"===e?t=this.renderer.hasFeature("float32-filterable"):"clipDistance"===e&&(t=this.renderer.hasFeature("clip-distances")),Kw[e]=t),t}_getWGSLMethod(e){return void 0!==Jw[e]&&this._include(e),eC[e]}_include(e){const t=Jw[e];return t.build(this),this.addInclude(t),t}_getWGSLVertexCode(e){return`${this.getSignature()}\n// directives\n${e.directives}\n\n// structs\n${e.structs}\n\n// uniforms\n${e.uniforms}\n\n// varyings\n${e.varyings}\nvar varyings : VaryingsStruct;\n\n// codes\n${e.codes}\n\n@vertex\nfn main( ${e.attributes} ) -> VaryingsStruct {\n\n\t// vars\n\t${e.vars}\n\n\t// flow\n\t${e.flow}\n\n\treturn varyings;\n\n}\n`}_getWGSLFragmentCode(e){return`${this.getSignature()}\n// global\n${tC}\n\n// structs\n${e.structs}\n\n// uniforms\n${e.uniforms}\n\n// codes\n${e.codes}\n\n@fragment\nfn main( ${e.varyings} ) -> ${e.returnType} {\n\n\t// vars\n\t${e.vars}\n\n\t// flow\n\t${e.flow}\n\n}\n`}_getWGSLComputeCode(e,t){const[r,s,i]=t;return`${this.getSignature()}\n// directives\n${e.directives}\n\n// system\nvar instanceIndex : u32;\n\n// locals\n${e.scopedArrays}\n\n// structs\n${e.structs}\n\n// uniforms\n${e.uniforms}\n\n// codes\n${e.codes}\n\n@compute @workgroup_size( ${r}, ${s}, ${i} )\nfn main( ${e.attributes} ) {\n\n\t// system\n\tinstanceIndex = globalId.x\n\t\t+ globalId.y * ( ${r} * numWorkgroups.x )\n\t\t+ globalId.z * ( ${r} * numWorkgroups.x ) * ( ${s} * numWorkgroups.y );\n\n\t// vars\n\t${e.vars}\n\n\t// flow\n\t${e.flow}\n\n}\n`}_getWGSLStruct(e,t){return`\nstruct ${e} {\n${t}\n};`}_getWGSLStructBinding(e,t,r,s=0,i=0){const n=e+"Struct";return`${this._getWGSLStruct(n,t)}\n@binding( ${s} ) @group( ${i} )\nvar<${r}> ${e} : ${n};`}}class sC{constructor(e){this.backend=e}getCurrentDepthStencilFormat(e){let t;return null!==e.depthTexture?t=this.getTextureFormatGPU(e.depthTexture):e.depth&&e.stencil?t=CA:e.depth&&(t=wA),t}getTextureFormatGPU(e){return this.backend.get(e).format}getTextureSampleData(e){let t;if(e.isFramebufferTexture)t=1;else if(e.isDepthTexture&&!e.renderTarget){const e=this.backend.renderer,r=e.getRenderTarget();t=r?r.samples:e.currentSamples}else e.renderTarget&&(t=e.renderTarget.samples);t=t||1;const r=t>1&&null!==e.renderTarget&&!0!==e.isDepthTexture&&!0!==e.isFramebufferTexture;return{samples:t,primarySamples:r?1:t,isMSAA:r}}getCurrentColorFormat(e){let t;return t=null!==e.textures?this.getTextureFormatGPU(e.textures[0]):this.getPreferredCanvasFormat(),t}getCurrentColorFormats(e){return null!==e.textures?e.textures.map(e=>this.getTextureFormatGPU(e)):[this.getPreferredCanvasFormat()]}getCurrentColorSpace(e){return null!==e.textures?e.textures[0].colorSpace:this.backend.renderer.outputColorSpace}getPrimitiveTopology(e,t){return e.isPoints?vR:e.isLineSegments||e.isMesh&&!0===t.wireframe?NR:e.isLine?SR:e.isMesh?RR:void 0}getSampleCount(e){return e>=4?4:1}getSampleCountRenderContext(e){return null!==e.textures?this.getSampleCount(e.sampleCount):this.getSampleCount(this.backend.renderer.currentSamples)}getPreferredCanvasFormat(){const e=this.backend.parameters.outputType;if(void 0===e)return navigator.gpu.getPreferredCanvasFormat();if(e===ke)return pA;if(e===fe)return NA;throw new Error("Unsupported outputType")}}const iC=new Map([[Int8Array,["sint8","snorm8"]],[Uint8Array,["uint8","unorm8"]],[Int16Array,["sint16","snorm16"]],[Uint16Array,["uint16","unorm16"]],[Int32Array,["sint32","snorm32"]],[Uint32Array,["uint32","unorm32"]],[Float32Array,["float32"]]]);"undefined"!=typeof Float16Array&&iC.set(Float16Array,["float16"]);const nC=new Map([[et,["float16"]]]),aC=new Map([[Int32Array,"sint32"],[Int16Array,"sint32"],[Uint32Array,"uint32"],[Uint16Array,"uint32"],[Float32Array,"float32"]]);class oC{constructor(e){this.backend=e}createAttribute(e,t){const r=this._getBufferAttribute(e),s=this.backend,i=s.get(r);let n=i.buffer;if(void 0===n){const a=s.device;let o=r.array;if(!1===e.normalized)if(o.constructor===Int16Array||o.constructor===Int8Array)o=new Int32Array(o);else if((o.constructor===Uint16Array||o.constructor===Uint8Array)&&(o=new Uint32Array(o),t&GPUBufferUsage.INDEX))for(let e=0;e1&&(s.multisampled=!0,r.texture.isDepthTexture||(s.sampleType=yw)),r.texture.isDepthTexture)t.compatibilityMode&&null===r.texture.compareFunction?s.sampleType=yw:s.sampleType=bw;else if(r.texture.isDataTexture||r.texture.isDataArrayTexture||r.texture.isData3DTexture){const e=r.texture.type;e===R?s.sampleType=xw:e===S?s.sampleType=Tw:e===H&&(this.backend.hasFeature("float32-filterable")?s.sampleType=fw:s.sampleType=yw)}r.isSampledCubeTexture?s.viewDimension=Rw:r.texture.isArrayTexture||r.texture.isDataArrayTexture||r.texture.isCompressedArrayTexture?s.viewDimension=Sw:r.isSampledTexture3D&&(s.viewDimension=Aw),e.texture=s}else if(r.isSampler){const s={};r.texture.isDepthTexture&&(null!==r.texture.compareFunction?s.type=mw:t.compatibilityMode&&(s.type=gw)),e.sampler=s}else o(`WebGPUBindingUtils: Unsupported binding "${r}".`);s.push(e)}return r.createBindGroupLayout({entries:s})}createBindings(e,t,r,s=0){const{backend:i,bindGroupLayoutCache:n}=this,a=i.get(e);let o,u=n.get(e.bindingsReference);void 0===u&&(u=this.createBindingsLayout(e),n.set(e.bindingsReference,u)),r>0&&(void 0===a.groups&&(a.groups=[],a.versions=[]),a.versions[r]===s&&(o=a.groups[r])),void 0===o&&(o=this.createBindGroup(e,u),r>0&&(a.groups[r]=o,a.versions[r]=s)),a.group=o,a.layout=u}updateBinding(e){const t=this.backend,r=t.device,s=e.buffer,i=t.get(e).buffer,n=e.updateRanges;if(0===n.length)r.queue.writeBuffer(i,0,s,0);else{const t=qr(s),a=t?1:s.BYTES_PER_ELEMENT;for(let e=0,o=n.length;e1&&(i+=`-${e.texture.depthOrArrayLayers}`),i+=`-${r}-${s}`,a=e[i],void 0===a){const n=Ew;let o;o=t.isSampledCubeTexture?Rw:t.isSampledTexture3D?Aw:t.texture.isArrayTexture||t.texture.isDataArrayTexture||t.texture.isCompressedArrayTexture?Sw:Nw,a=e[i]=e.texture.createView({aspect:n,dimension:o,mipLevelCount:r,baseMipLevel:s})}}n.push({binding:i,resource:a})}else if(t.isSampler){const e=r.get(t.texture);n.push({binding:i,resource:e.sampler})}i++}return s.createBindGroup({label:"bindGroup_"+e.name,layout:t,entries:n})}}class lC{constructor(e){this.backend=e,this._activePipelines=new WeakMap}setPipeline(e,t){this._activePipelines.get(e)!==t&&(e.setPipeline(t),this._activePipelines.set(e,t))}_getSampleCount(e){return this.backend.utils.getSampleCountRenderContext(e)}createRenderPipeline(e,t){const{object:r,material:s,geometry:i,pipeline:n}=e,{vertexProgram:a,fragmentProgram:u}=n,l=this.backend,d=l.device,c=l.utils,h=l.get(n),p=[];for(const t of e.getBindings()){const e=l.get(t);p.push(e.layout)}const g=l.attributeUtils.createShaderVertexBuffers(e);let m;s.blending===Z||s.blending===Qe&&!1===s.transparent||(m=this._getBlending(s));let f={};!0===s.stencilWrite&&(f={compare:this._getStencilCompare(s),failOp:this._getStencilOperation(s.stencilFail),depthFailOp:this._getStencilOperation(s.stencilZFail),passOp:this._getStencilOperation(s.stencilZPass)});const y=this._getColorWriteMask(s),b=[];if(null!==e.context.textures){const t=e.context.textures;for(let e=0;e1},layout:d.createPipelineLayout({bindGroupLayouts:p})},A={},E=e.context.depth,w=e.context.stencil;if(!0!==E&&!0!==w||(!0===E&&(A.format=N,A.depthWriteEnabled=s.depthWrite,A.depthCompare=v),!0===w&&(A.stencilFront=f,A.stencilBack={},A.stencilReadMask=s.stencilFuncMask,A.stencilWriteMask=s.stencilWriteMask),!0===s.polygonOffset&&(A.depthBias=s.polygonOffsetUnits,A.depthBiasSlopeScale=s.polygonOffsetFactor,A.depthBiasClamp=0),R.depthStencil=A),d.pushErrorScope("validation"),null===t)h.pipeline=d.createRenderPipeline(R),d.popErrorScope().then(e=>{null!==e&&(h.error=!0,o(e.message))});else{const e=new Promise(async e=>{try{h.pipeline=await d.createRenderPipelineAsync(R)}catch(e){}const t=await d.popErrorScope();null!==t&&(h.error=!0,o(t.message)),e()});t.push(e)}}createBundleEncoder(e,t="renderBundleEncoder"){const r=this.backend,{utils:s,device:i}=r,n=s.getCurrentDepthStencilFormat(e),a={label:t,colorFormats:s.getCurrentColorFormats(e),depthStencilFormat:n,sampleCount:this._getSampleCount(e)};return i.createRenderBundleEncoder(a)}createComputePipeline(e,t){const r=this.backend,s=r.device,i=r.get(e.computeProgram).module,n=r.get(e),a=[];for(const e of t){const t=r.get(e);a.push(t.layout)}n.pipeline=s.createComputePipeline({compute:i,layout:s.createPipelineLayout({bindGroupLayouts:a})})}_getBlending(e){let t,r;const s=e.blending,i=e.blendSrc,n=e.blendDst,a=e.blendEquation;if(s===nt){const s=null!==e.blendSrcAlpha?e.blendSrcAlpha:i,o=null!==e.blendDstAlpha?e.blendDstAlpha:n,u=null!==e.blendEquationAlpha?e.blendEquationAlpha:a;t={srcFactor:this._getBlendFactor(i),dstFactor:this._getBlendFactor(n),operation:this._getBlendOperation(a)},r={srcFactor:this._getBlendFactor(s),dstFactor:this._getBlendFactor(o),operation:this._getBlendOperation(u)}}else{const i=(e,s,i,n)=>{t={srcFactor:e,dstFactor:s,operation:XE},r={srcFactor:i,dstFactor:n,operation:XE}};if(e.premultipliedAlpha)switch(s){case Qe:i(IE,kE,IE,kE);break;case $t:i(IE,IE,IE,IE);break;case zt:i(DE,OE,DE,IE);break;case Gt:i(GE,kE,DE,IE)}else switch(s){case Qe:i(VE,kE,IE,kE);break;case $t:i(VE,IE,IE,IE);break;case zt:o("WebGPURenderer: SubtractiveBlending requires material.premultipliedAlpha = true");break;case Gt:o("WebGPURenderer: MultiplyBlending requires material.premultipliedAlpha = true")}}if(void 0!==t&&void 0!==r)return{color:t,alpha:r};o("WebGPURenderer: Invalid blending: ",s)}_getBlendFactor(e){let t;switch(e){case ot:t=DE;break;case Ut:t=IE;break;case It:t=UE;break;case Bt:t=OE;break;case Dt:t=VE;break;case Mt:t=kE;break;case Pt:t=GE;break;case Ct:t=zE;break;case Lt:t=$E;break;case wt:t=WE;break;case Ft:t=HE;break;case 211:t=jE;break;case 212:t=qE;break;default:o("WebGPURenderer: Blend factor not supported.",e)}return t}_getStencilCompare(e){let t;const r=e.stencilFunc;switch(r){case ts:t=wR;break;case es:t=DR;break;case Jr:t=CR;break;case Zr:t=BR;break;case Qr:t=MR;break;case Yr:t=FR;break;case Kr:t=LR;break;case Xr:t=PR;break;default:o("WebGPURenderer: Invalid stencil function.",r)}return t}_getStencilOperation(e){let t;switch(e){case ls:t=tw;break;case us:t=rw;break;case os:t=sw;break;case as:t=iw;break;case ns:t=nw;break;case is:t=aw;break;case ss:t=ow;break;case rs:t=uw;break;default:o("WebGPURenderer: Invalid stencil operation.",t)}return t}_getBlendOperation(e){let t;switch(e){case at:t=XE;break;case Et:t=KE;break;case At:t=YE;break;case cs:t=QE;break;case ds:t=ZE;break;default:o("WebGPUPipelineUtils: Blend equation not supported.",e)}return t}_getPrimitiveState(e,t,r){const s={},i=this.backend.utils;s.topology=i.getPrimitiveTopology(e,r),null!==t.index&&!0===e.isLine&&!0!==e.isLineSegments&&(s.stripIndexFormat=t.index.array instanceof Uint16Array?$R:WR);let n=r.side===w;return e.isMesh&&e.matrixWorld.determinant()<0&&(n=!n),s.frontFace=!0===n?kR:VR,s.cullMode=r.side===C?GR:zR,s}_getColorWriteMask(e){return!0===e.colorWrite?ew:JE}_getDepthCompare(e){let t;if(!1===e.depthTest)t=DR;else{const r=e.depthFunc;switch(r){case Qt:t=wR;break;case Yt:t=DR;break;case Kt:t=CR;break;case Xt:t=BR;break;case qt:t=MR;break;case jt:t=FR;break;case Ht:t=LR;break;case Wt:t=PR;break;default:o("WebGPUPipelineUtils: Invalid depth function.",r)}}return t}}class dC extends xR{constructor(e,t,r=2048){super(r),this.device=e,this.type=t,this.querySet=this.device.createQuerySet({type:"timestamp",count:this.maxQueries,label:`queryset_global_timestamp_${t}`});const s=8*this.maxQueries;this.resolveBuffer=this.device.createBuffer({label:`buffer_timestamp_resolve_${t}`,size:s,usage:GPUBufferUsage.QUERY_RESOLVE|GPUBufferUsage.COPY_SRC}),this.resultBuffer=this.device.createBuffer({label:`buffer_timestamp_result_${t}`,size:s,usage:GPUBufferUsage.COPY_DST|GPUBufferUsage.MAP_READ})}allocateQueriesForContext(e){if(!this.trackTimestamp||this.isDisposed)return null;if(this.currentQueryIndex+2>this.maxQueries)return v(`WebGPUTimestampQueryPool [${this.type}]: Maximum number of queries exceeded, when using trackTimestamp it is necessary to resolves the queries via renderer.resolveTimestampsAsync( THREE.TimestampQuery.${this.type.toUpperCase()} ).`),null;const t=this.currentQueryIndex;return this.currentQueryIndex+=2,this.queryOffsets.set(e,t),t}async resolveQueriesAsync(){if(!this.trackTimestamp||0===this.currentQueryIndex||this.isDisposed)return this.lastValue;if(this.pendingResolve)return this.pendingResolve;this.pendingResolve=this._resolveQueries();try{return await this.pendingResolve}finally{this.pendingResolve=null}}async _resolveQueries(){if(this.isDisposed)return this.lastValue;try{if("unmapped"!==this.resultBuffer.mapState)return this.lastValue;const e=new Map(this.queryOffsets),t=this.currentQueryIndex,r=8*t;this.currentQueryIndex=0,this.queryOffsets.clear();const s=this.device.createCommandEncoder();s.resolveQuerySet(this.querySet,0,t,this.resolveBuffer,0),s.copyBufferToBuffer(this.resolveBuffer,0,this.resultBuffer,0,r);const i=s.finish();if(this.device.queue.submit([i]),"unmapped"!==this.resultBuffer.mapState)return this.lastValue;if(await this.resultBuffer.mapAsync(GPUMapMode.READ,0,r),this.isDisposed)return"mapped"===this.resultBuffer.mapState&&this.resultBuffer.unmap(),this.lastValue;const n=new BigUint64Array(this.resultBuffer.getMappedRange(0,r)),a={},o=[];for(const[t,r]of e){const e=t.match(/^(.*):f(\d+)$/),s=parseInt(e[2]);!1===o.includes(s)&&o.push(s),void 0===a[s]&&(a[s]=0);const i=n[r],u=n[r+1],l=Number(u-i)/1e6;this.timestamps.set(t,l),a[s]+=l}const u=a[o[o.length-1]];return this.resultBuffer.unmap(),this.lastValue=u,this.frames=o,u}catch(e){return o("Error resolving queries:",e),"mapped"===this.resultBuffer.mapState&&this.resultBuffer.unmap(),this.lastValue}}async dispose(){if(!this.isDisposed){if(this.isDisposed=!0,this.pendingResolve)try{await this.pendingResolve}catch(e){o("Error waiting for pending resolve:",e)}if(this.resultBuffer&&"mapped"===this.resultBuffer.mapState)try{this.resultBuffer.unmap()}catch(e){o("Error unmapping buffer:",e)}this.querySet&&(this.querySet.destroy(),this.querySet=null),this.resolveBuffer&&(this.resolveBuffer.destroy(),this.resolveBuffer=null),this.resultBuffer&&(this.resultBuffer.destroy(),this.resultBuffer=null),this.queryOffsets.clear(),this.pendingResolve=null}}}class cC extends tR{constructor(e={}){super(e),this.isWebGPUBackend=!0,this.parameters.alpha=void 0===e.alpha||e.alpha,this.parameters.compatibilityMode=void 0!==e.compatibilityMode&&e.compatibilityMode,this.parameters.requiredLimits=void 0===e.requiredLimits?{}:e.requiredLimits,this.compatibilityMode=this.parameters.compatibilityMode,this.device=null,this.defaultRenderPassdescriptor=null,this.utils=new sC(this),this.attributeUtils=new oC(this),this.bindingUtils=new uC(this),this.pipelineUtils=new lC(this),this.textureUtils=new Vw(this),this.occludedResolveCache=new Map}async init(e){await super.init(e);const t=this.parameters;let r;if(void 0===t.device){const e={powerPreference:t.powerPreference,featureLevel:t.compatibilityMode?"compatibility":void 0},s="undefined"!=typeof navigator?await navigator.gpu.requestAdapter(e):null;if(null===s)throw new Error("WebGPUBackend: Unable to create WebGPU adapter.");const i=Object.values(Mw),n=[];for(const e of i)s.features.has(e)&&n.push(e);const a={requiredFeatures:n,requiredLimits:t.requiredLimits};r=await s.requestDevice(a)}else r=t.device;r.lost.then(t=>{const r={api:"WebGPU",message:t.message||"Unknown reason",reason:t.reason||null,originalEvent:t};e.onDeviceLost(r)}),this.device=r,this.trackTimestamp=this.trackTimestamp&&this.hasFeature(Mw.TimestampQuery),this.updateSize()}get context(){const e=this.renderer.getCanvasTarget(),t=this.get(e);let r=t.context;if(void 0===r){const s=this.parameters;r=!0===e.isDefaultCanvasTarget&&void 0!==s.context?s.context:e.domElement.getContext("webgpu"),"setAttribute"in e.domElement&&e.domElement.setAttribute("data-engine",`three.js r${tt} webgpu`);const i=s.alpha?"premultiplied":"opaque",n=s.outputType===fe?"extended":"standard";r.configure({device:this.device,format:this.utils.getPreferredCanvasFormat(),usage:GPUTextureUsage.RENDER_ATTACHMENT|GPUTextureUsage.COPY_SRC,alphaMode:i,toneMapping:{mode:n}}),t.context=r}return r}get coordinateSystem(){return h}async getArrayBufferAsync(e){return await this.attributeUtils.getArrayBufferAsync(e)}getContext(){return this.context}_getDefaultRenderPassDescriptor(){const e=this.renderer,t=e.getCanvasTarget(),r=this.get(t),s=e.currentSamples;let i=r.descriptor;if(void 0===i||r.samples!==s){i={colorAttachments:[{view:null}]},!0!==e.depth&&!0!==e.stencil||(i.depthStencilAttachment={view:this.textureUtils.getDepthBuffer(e.depth,e.stencil).createView()});const t=i.colorAttachments[0];s>0?t.view=this.textureUtils.getColorBuffer().createView():t.resolveTarget=void 0,r.descriptor=i,r.samples=s}const n=i.colorAttachments[0];return s>0?n.resolveTarget=this.context.getCurrentTexture().createView():n.view=this.context.getCurrentTexture().createView(),i}_isRenderCameraDepthArray(e){return e.depthTexture&&e.depthTexture.image.depth>1&&e.camera.isArrayCamera}_getRenderPassDescriptor(e,t={}){const r=e.renderTarget,s=this.get(r);let i=s.descriptors;void 0!==i&&s.width===r.width&&s.height===r.height&&s.samples===r.samples||(i={},s.descriptors=i);const n=e.getCacheKey();let a=i[n];if(void 0===a){const t=e.textures,o=[];let u;const l=this._isRenderCameraDepthArray(e);for(let s=0;s1)if(!0===l){const t=e.camera.cameras;for(let e=0;e0&&(t.currentOcclusionQuerySet&&t.currentOcclusionQuerySet.destroy(),t.currentOcclusionQueryBuffer&&t.currentOcclusionQueryBuffer.destroy(),t.currentOcclusionQuerySet=t.occlusionQuerySet,t.currentOcclusionQueryBuffer=t.occlusionQueryBuffer,t.currentOcclusionQueryObjects=t.occlusionQueryObjects,i=r.createQuerySet({type:"occlusion",count:s,label:`occlusionQuerySet_${e.id}`}),t.occlusionQuerySet=i,t.occlusionQueryIndex=0,t.occlusionQueryObjects=new Array(s),t.lastOcclusionObject=null),n=null===e.textures?this._getDefaultRenderPassDescriptor():this._getRenderPassDescriptor(e,{loadOp:UR}),this.initTimestampQuery(St.RENDER,this.getTimestampUID(e),n),n.occlusionQuerySet=i;const a=n.depthStencilAttachment;if(null!==e.textures){const t=n.colorAttachments;for(let r=0;r0&&t.currentPass.executeBundles(t.renderBundles),r>t.occlusionQueryIndex&&t.currentPass.endOcclusionQuery();const s=t.encoder;if(!0===this._isRenderCameraDepthArray(e)){const r=[];for(let e=0;e0){const s=8*r;let i=this.occludedResolveCache.get(s);void 0===i&&(i=this.device.createBuffer({size:s,usage:GPUBufferUsage.QUERY_RESOLVE|GPUBufferUsage.COPY_SRC}),this.occludedResolveCache.set(s,i));const n=this.device.createBuffer({size:s,usage:GPUBufferUsage.COPY_DST|GPUBufferUsage.MAP_READ});t.encoder.resolveQuerySet(t.occlusionQuerySet,0,r,i,0),t.encoder.copyBufferToBuffer(i,0,n,0,s),t.occlusionQueryBuffer=n,this.resolveOccludedAsync(e)}if(this.device.queue.submit([t.encoder.finish()]),null!==e.textures){const t=e.textures;for(let e=0;eo&&(i[0]=Math.min(a,o),i[1]=Math.ceil(a/o)),n.dispatchSize=i}i=n.dispatchSize}a.dispatchWorkgroups(i[0],i[1]||1,i[2]||1)}finishCompute(e){const t=this.get(e);t.passEncoderGPU.end(),this.device.queue.submit([t.cmdEncoderGPU.finish()])}draw(e,t){const{object:r,material:s,context:i,pipeline:n}=e,a=e.getBindings(),o=this.get(i),u=this.get(n),l=u.pipeline;if(!0===u.error)return;const d=e.getIndex(),c=null!==d,h=e.getDrawParameters();if(null===h)return;const p=(t,r)=>{this.pipelineUtils.setPipeline(t,l),r.pipeline=l;const n=r.bindingGroups;for(let e=0,r=a.length;e{if(p(s,i),!0===r.isBatchedMesh){const e=r._multiDrawStarts,i=r._multiDrawCounts,n=r._multiDrawCount,a=r._multiDrawInstances;null!==a&&v("WebGPUBackend: renderMultiDrawInstances has been deprecated and will be removed in r184. Append to renderMultiDraw arguments and use indirection.");for(let o=0;o1?0:o;!0===c?s.drawIndexed(i[o],n,e[o]/d.array.BYTES_PER_ELEMENT,0,u):s.draw(i[o],n,e[o],u),t.update(r,i[o],n)}}else if(!0===c){const{vertexCount:i,instanceCount:n,firstVertex:a}=h,o=e.getIndirect();if(null!==o){const t=this.get(o).buffer,r=e.getIndirectOffset();s.drawIndexedIndirect(t,r)}else s.drawIndexed(i,n,a,0,0);t.update(r,i,n)}else{const{vertexCount:i,instanceCount:n,firstVertex:a}=h,o=e.getIndirect();if(null!==o){const t=this.get(o).buffer,r=e.getIndirectOffset();s.drawIndirect(t,r)}else s.draw(i,n,a,0);t.update(r,i,n)}};if(e.camera.isArrayCamera&&e.camera.cameras.length>0){const t=this.get(e.camera),s=e.camera.cameras,n=e.getBindingGroup("cameraIndex");if(void 0===t.indexesGPU||t.indexesGPU.length!==s.length){const e=this.get(n),r=[],i=new Uint32Array([0,0,0,0]);for(let t=0,n=s.length;t(d("WebGPURenderer: WebGPU is not available, running under WebGL2 backend."),new _R(e)));super(new t(e),e),this.library=new gC,this.isWebGPURenderer=!0,"undefined"!=typeof __THREE_DEVTOOLS__&&__THREE_DEVTOOLS__.dispatchEvent(new CustomEvent("observe",{detail:this}))}}class fC extends Rs{constructor(){super(),this.isBundleGroup=!0,this.type="BundleGroup",this.static=!0,this.version=0}set needsUpdate(e){!0===e&&this.version++}}class yC{constructor(e,t=Sn(0,0,1,1)){this.renderer=e,this.outputNode=t,this.outputColorTransform=!0,this.needsUpdate=!0;const r=new Xp;r.name="PostProcessing",this._quadMesh=new Wb(r),this._quadMesh.name="Post-Processing",this._context=null}render(){const e=this.renderer;this._update(),null!==this._context.onBeforePostProcessing&&this._context.onBeforePostProcessing();const t=e.toneMapping,r=e.outputColorSpace;e.toneMapping=m,e.outputColorSpace=p.workingColorSpace;const s=e.xr.enabled;e.xr.enabled=!1,this._quadMesh.render(e),e.xr.enabled=s,e.toneMapping=t,e.outputColorSpace=r,null!==this._context.onAfterPostProcessing&&this._context.onAfterPostProcessing()}get context(){return this._context}dispose(){this._quadMesh.material.dispose()}_update(){if(!0===this.needsUpdate){const e=this.renderer,t=e.toneMapping,r=e.outputColorSpace,s={postProcessing:this,onBeforePostProcessing:null,onAfterPostProcessing:null};let i=this.outputNode;!0===this.outputColorTransform?(i=i.context(s),i=yl(i,t,r)):(s.toneMapping=t,s.outputColorSpace=r,i=i.context(s)),this._context=s,this._quadMesh.material.fragmentNode=i,this._quadMesh.material.needsUpdate=!0,this.needsUpdate=!1}}async renderAsync(){v('PostProcessing: "renderAsync()" has been deprecated. Use "render()" and "await renderer.init();" when creating the renderer.'),await this.renderer.init(),this.render()}}class bC extends N{constructor(e=1,t=1){super(),this.image={width:e,height:t},this.magFilter=ne,this.minFilter=ne,this.isStorageTexture=!0,this.mipmapsAutoUpdate=!0}setSize(e,t){this.image.width===e&&this.image.height===t||(this.image.width=e,this.image.height=t,this.dispose())}}class xC extends N{constructor(e=1,t=1,r=1){super(),this.isArrayTexture=!1,this.image={width:e,height:t,depth:r},this.magFilter=ne,this.minFilter=ne,this.wrapR=ye,this.isStorageTexture=!0,this.is3DTexture=!0}setSize(e,t,r){this.image.width===e&&this.image.height===t&&this.image.depth===r||(this.image.width=e,this.image.height=t,this.image.depth=r,this.dispose())}}class TC extends N{constructor(e=1,t=1,r=1){super(),this.isArrayTexture=!0,this.image={width:e,height:t,depth:r},this.magFilter=ne,this.minFilter=ne,this.isStorageTexture=!0}setSize(e,t,r){this.image.width===e&&this.image.height===t&&this.image.depth===r||(this.image.width=e,this.image.height=t,this.image.depth=r,this.dispose())}}class _C extends sx{constructor(e,t){super(e,t,Uint32Array),this.isIndirectStorageBufferAttribute=!0}}class vC extends As{constructor(e){super(e),this.textures={},this.nodes={}}load(e,t,r,s){const i=new Es(this.manager);i.setPath(this.path),i.setRequestHeader(this.requestHeader),i.setWithCredentials(this.withCredentials),i.load(e,r=>{try{t(this.parse(JSON.parse(r)))}catch(t){s?s(t):o(t),this.manager.itemError(e)}},r,s)}parseNodes(e){const t={};if(void 0!==e){for(const r of e){const{uuid:e,type:s}=r;t[e]=this.createNodeFromType(s),t[e].uuid=e}const r={nodes:t,textures:this.textures};for(const s of e){s.meta=r;t[s.uuid].deserialize(s),delete s.meta}}return t}parse(e){const t=this.createNodeFromType(e.type);t.uuid=e.uuid;const r={nodes:this.parseNodes(e.nodes),textures:this.textures};return e.meta=r,t.deserialize(e),delete e.meta,t}setTextures(e){return this.textures=e,this}setNodes(e){return this.nodes=e,this}createNodeFromType(e){return void 0===this.nodes[e]?(o("NodeLoader: Node type not found:",e),hn()):Yi(new this.nodes[e])}}class NC extends ws{constructor(e){super(e),this.nodes={},this.nodeMaterials={}}parse(e){const t=super.parse(e),r=this.nodes,s=e.inputNodes;for(const e in s){const i=s[e];t[e]=r[i]}return t}setNodes(e){return this.nodes=e,this}setNodeMaterials(e){return this.nodeMaterials=e,this}createMaterialFromType(e){const t=this.nodeMaterials[e];return void 0!==t?new t:super.createMaterialFromType(e)}}class SC extends Cs{constructor(e){super(e),this.nodes={},this.nodeMaterials={},this._nodesJSON=null}setNodes(e){return this.nodes=e,this}setNodeMaterials(e){return this.nodeMaterials=e,this}parse(e,t){this._nodesJSON=e.nodes;const r=super.parse(e,t);return this._nodesJSON=null,r}parseNodes(e,t){if(void 0!==e){const r=new vC;return r.setNodes(this.nodes),r.setTextures(t),r.parseNodes(e)}return{}}parseMaterials(e,t){const r={};if(void 0!==e){const s=this.parseNodes(this._nodesJSON,t),i=new NC;i.setTextures(t),i.setNodes(s),i.setNodeMaterials(this.nodeMaterials);for(let t=0,s=e.length;t0){const{width:r,height:s}=e.context;t.bufferWidth=r,t.bufferHeight=s}t.lights=this.getLightsData(e.lightsNode.getLights()),this.renderObjects.set(e,t)}return t}getAttributesData(e){const t={};for(const r in e){const s=e[r];t[r]={version:s.version}}return t}containsNode(e){const t=e.material;for(const e in t)if(t[e]&&t[e].isNode)return!0;return!!(e.context.modelViewMatrix||e.context.modelNormalViewMatrix||e.context.getAO||e.context.getShadow)}getMaterialData(e){const t={};for(const r of this.refreshUniforms){const s=e[r];null!=s&&("object"==typeof s&&void 0!==s.clone?!0===s.isTexture?t[r]={id:s.id,version:s.version}:t[r]=s.clone():t[r]=s)}return t}equals(e,t){const{object:r,material:s,geometry:i}=e,n=this.getRenderObjectData(e);if(!0!==n.worldMatrix.equals(r.matrixWorld))return n.worldMatrix.copy(r.matrixWorld),!1;const a=n.material;for(const e in a){const t=a[e],r=s[e];if(void 0!==t.equals){if(!1===t.equals(r))return t.copy(r),!1}else if(!0===r.isTexture){if(t.id!==r.id||t.version!==r.version)return t.id=r.id,t.version=r.version,!1}else if(t!==r)return a[e]=r,!1}if(a.transmission>0){const{width:t,height:r}=e.context;if(n.bufferWidth!==t||n.bufferHeight!==r)return n.bufferWidth=t,n.bufferHeight=r,!1}const o=n.geometry,u=i.attributes,l=o.attributes,d=Object.keys(l),c=Object.keys(u);if(o.id!==i.id)return o.id=i.id,!1;if(d.length!==c.length)return n.geometry.attributes=this.getAttributesData(u),!1;for(const e of d){const t=l[e],r=u[e];if(void 0===r)return delete l[e],!1;if(t.version!==r.version)return t.version=r.version,!1}const h=i.index,p=o.indexVersion,g=h?h.version:null;if(p!==g)return o.indexVersion=g,!1;if(o.drawRange.start!==i.drawRange.start||o.drawRange.count!==i.drawRange.count)return o.drawRange.start=i.drawRange.start,o.drawRange.count=i.drawRange.count,!1;if(n.morphTargetInfluences){let e=!1;for(let t=0;t>>16,2246822507),r^=Math.imul(s^s>>>13,3266489909),s=Math.imul(s^s>>>16,2246822507),s^=Math.imul(r^r>>>13,3266489909),4294967296*(2097151&s)+(r>>>0)}const Fs=e=>Ps(e),Ds=e=>Ps(e),Us=(...e)=>Ps(e),Is=new Map([[1,"float"],[2,"vec2"],[3,"vec3"],[4,"vec4"],[9,"mat3"],[16,"mat4"]]),Os=new WeakMap;function Vs(e){return Is.get(e)}function ks(e){if(/[iu]?vec\d/.test(e))return e.startsWith("ivec")?Int32Array:e.startsWith("uvec")?Uint32Array:Float32Array;if(/mat\d/.test(e))return Float32Array;if(/float/.test(e))return Float32Array;if(/uint/.test(e))return Uint32Array;if(/int/.test(e))return Int32Array;throw new Error(`THREE.NodeUtils: Unsupported type: ${e}`)}function Gs(e){return/float|int|uint/.test(e)?1:/vec2/.test(e)?2:/vec3/.test(e)?3:/vec4/.test(e)||/mat2/.test(e)?4:/mat3/.test(e)?9:/mat4/.test(e)?16:void o("TSL: Unsupported type:",e)}function zs(e){return/float|int|uint/.test(e)?1:/vec2/.test(e)?2:/vec3/.test(e)?3:/vec4/.test(e)||/mat2/.test(e)?4:/mat3/.test(e)?12:/mat4/.test(e)?16:void o("TSL: Unsupported type:",e)}function $s(e){return/float|int|uint/.test(e)?4:/vec2/.test(e)?8:/vec3/.test(e)||/vec4/.test(e)?16:/mat2/.test(e)?8:/mat3/.test(e)||/mat4/.test(e)?16:void o("TSL: Unsupported type:",e)}function Ws(e){if(null==e)return null;const t=typeof e;return!0===e.isNode?"node":"number"===t?"float":"boolean"===t?"bool":"string"===t?"string":"function"===t?"shader":!0===e.isVector2?"vec2":!0===e.isVector3?"vec3":!0===e.isVector4?"vec4":!0===e.isMatrix2?"mat2":!0===e.isMatrix3?"mat3":!0===e.isMatrix4?"mat4":!0===e.isColor?"color":e instanceof ArrayBuffer?"ArrayBuffer":null}function Hs(o,...u){const l=o?o.slice(-4):void 0;return 1===u.length&&("vec2"===l?u=[u[0],u[0]]:"vec3"===l?u=[u[0],u[0],u[0]]:"vec4"===l&&(u=[u[0],u[0],u[0],u[0]])),"color"===o?new e(...u):"vec2"===l?new t(...u):"vec3"===l?new r(...u):"vec4"===l?new s(...u):"mat2"===l?new i(...u):"mat3"===l?new n(...u):"mat4"===l?new a(...u):"bool"===o?u[0]||!1:"float"===o||"int"===o||"uint"===o?u[0]||0:"string"===o?u[0]||"":"ArrayBuffer"===o?Xs(u[0]):null}function js(e){let t=Os.get(e);return void 0===t&&(t={},Os.set(e,t)),t}function qs(e){let t="";const r=new Uint8Array(e);for(let e=0;ee.charCodeAt(0)).buffer}var Ks=Object.freeze({__proto__:null,arrayBufferToBase64:qs,base64ToArrayBuffer:Xs,getAlignmentFromType:$s,getDataFromObject:js,getLengthFromType:Gs,getMemoryLengthFromType:zs,getTypeFromLength:Vs,getTypedArrayFromType:ks,getValueFromType:Hs,getValueType:Ws,hash:Us,hashArray:Ds,hashString:Fs});const Ys={VERTEX:"vertex",FRAGMENT:"fragment"},Qs={NONE:"none",FRAME:"frame",RENDER:"render",OBJECT:"object"},Zs={BOOLEAN:"bool",INTEGER:"int",FLOAT:"float",VECTOR2:"vec2",VECTOR3:"vec3",VECTOR4:"vec4",MATRIX2:"mat2",MATRIX3:"mat3",MATRIX4:"mat4"},Js={READ_ONLY:"readOnly",WRITE_ONLY:"writeOnly",READ_WRITE:"readWrite"},ei=["fragment","vertex"],ti=["setup","analyze","generate"],ri=[...ei,"compute"],si=["x","y","z","w"],ii={analyze:"setup",generate:"analyze"};let ni=0;class ai extends u{static get type(){return"Node"}constructor(e=null){super(),this.nodeType=e,this.updateType=Qs.NONE,this.updateBeforeType=Qs.NONE,this.updateAfterType=Qs.NONE,this.uuid=l.generateUUID(),this.version=0,this.name="",this.global=!1,this.parents=!1,this.isNode=!0,this._beforeNodes=null,this._cacheKey=null,this._cacheKeyVersion=0,Object.defineProperty(this,"id",{value:ni++})}set needsUpdate(e){!0===e&&this.version++}get type(){return this.constructor.type}onUpdate(e,t){return this.updateType=t,this.update=e.bind(this),this}onFrameUpdate(e){return this.onUpdate(e,Qs.FRAME)}onRenderUpdate(e){return this.onUpdate(e,Qs.RENDER)}onObjectUpdate(e){return this.onUpdate(e,Qs.OBJECT)}onReference(e){return this.updateReference=e.bind(this),this}updateReference(){return this}isGlobal(){return this.global}*getChildren(){for(const{childNode:e}of this._getChildren())yield e}dispose(){this.dispatchEvent({type:"dispose"})}traverse(e){e(this);for(const t of this.getChildren())t.traverse(e)}_getChildren(e=new Set){const t=[];e.add(this);for(const r of Object.getOwnPropertyNames(this)){const s=this[r];if(!0!==r.startsWith("_")&&!e.has(s))if(!0===Array.isArray(s))for(let e=0;e0&&(e.inputNodes=r)}deserialize(e){if(void 0!==e.inputNodes){const t=e.meta.nodes;for(const r in e.inputNodes)if(Array.isArray(e.inputNodes[r])){const s=[];for(const i of e.inputNodes[r])s.push(t[i]);this[r]=s}else if("object"==typeof e.inputNodes[r]){const s={};for(const i in e.inputNodes[r]){const n=e.inputNodes[r][i];s[i]=t[n]}this[r]=s}else{const s=e.inputNodes[r];this[r]=t[s]}}}toJSON(e){const{uuid:t,type:r}=this,s=void 0===e||"string"==typeof e;s&&(e={textures:{},images:{},nodes:{}});let i=e.nodes[t];function n(e){const t=[];for(const r in e){const s=e[r];delete s.metadata,t.push(s)}return t}if(void 0===i&&(i={uuid:t,type:r,meta:e,metadata:{version:4.7,type:"Node",generator:"Node.toJSON"}},!0!==s&&(e.nodes[i.uuid]=i),this.serialize(i),delete i.meta),s){const t=n(e.textures),r=n(e.images),s=n(e.nodes);t.length>0&&(i.textures=t),r.length>0&&(i.images=r),s.length>0&&(i.nodes=s)}return i}}class oi extends ai{static get type(){return"ArrayElementNode"}constructor(e,t){super(),this.node=e,this.indexNode=t,this.isArrayElementNode=!0}getNodeType(e){return this.node.getElementType(e)}generate(e){const t=this.indexNode.getNodeType(e);return`${this.node.build(e)}[ ${this.indexNode.build(e,!e.isVector(t)&&e.isInteger(t)?t:"uint")} ]`}}class ui extends ai{static get type(){return"ConvertNode"}constructor(e,t){super(),this.node=e,this.convertTo=t}getNodeType(e){const t=this.node.getNodeType(e);let r=null;for(const s of this.convertTo.split("|"))null!==r&&e.getTypeLength(t)!==e.getTypeLength(s)||(r=s);return r}serialize(e){super.serialize(e),e.convertTo=this.convertTo}deserialize(e){super.deserialize(e),this.convertTo=e.convertTo}generate(e,t){const r=this.node,s=this.getNodeType(e),i=r.build(e,s);return e.format(i,s,t)}}class li extends ai{static get type(){return"TempNode"}constructor(e=null){super(e),this.isTempNode=!0}hasDependencies(e){return e.getDataFromNode(this).usageCount>1}build(e,t){if("generate"===e.getBuildStage()){const r=e.getVectorType(this.getNodeType(e,t)),s=e.getDataFromNode(this);if(void 0!==s.propertyName)return e.format(s.propertyName,r,t);if("void"!==r&&"void"!==t&&this.hasDependencies(e)){const i=super.build(e,r),n=e.getVarFromNode(this,null,r),a=e.getPropertyName(n);return e.addLineFlowCode(`${a} = ${i}`,this),s.snippet=i,s.propertyName=a,e.format(s.propertyName,r,t)}}return super.build(e,t)}}class di extends li{static get type(){return"JoinNode"}constructor(e=[],t=null){super(t),this.nodes=e}getNodeType(e){return null!==this.nodeType?e.getVectorType(this.nodeType):e.getTypeFromLength(this.nodes.reduce((t,r)=>t+e.getTypeLength(r.getNodeType(e)),0))}generate(e,t){const r=this.getNodeType(e),s=e.getTypeLength(r),i=this.nodes,n=e.getComponentType(r),a=[];let u=0;for(const t of i){if(u>=s){o(`TSL: Length of parameters exceeds maximum length of function '${r}()' type.`);break}let i,l=t.getNodeType(e),d=e.getTypeLength(l);u+d>s&&(o(`TSL: Length of '${r}()' data exceeds maximum length of output type.`),d=s-u,l=e.getTypeFromLength(d)),u+=d,i=t.build(e,l);if(e.getComponentType(l)!==n){const t=e.getTypeFromLength(d,n);i=e.format(i,l,t)}a.push(i)}const l=`${e.getType(r)}( ${a.join(", ")} )`;return e.format(l,r,t)}}const ci=si.join("");class hi extends ai{static get type(){return"SplitNode"}constructor(e,t="x"){super(),this.node=e,this.components=t,this.isSplitNode=!0}getVectorLength(){let e=this.components.length;for(const t of this.components)e=Math.max(si.indexOf(t)+1,e);return e}getComponentType(e){return e.getComponentType(this.node.getNodeType(e))}getNodeType(e){return e.getTypeFromLength(this.components.length,this.getComponentType(e))}getScope(){return this.node.getScope()}generate(e,t){const r=this.node,s=e.getTypeLength(r.getNodeType(e));let i=null;if(s>1){let n=null;this.getVectorLength()>=s&&(n=e.getTypeFromLength(this.getVectorLength(),this.getComponentType(e)));const a=r.build(e,n);i=this.components.length===s&&this.components===ci.slice(0,this.components.length)?e.format(a,n,t):e.format(`${a}.${this.components}`,this.getNodeType(e),t)}else i=r.build(e,t);return i}serialize(e){super.serialize(e),e.components=this.components}deserialize(e){super.deserialize(e),this.components=e.components}}class pi extends li{static get type(){return"SetNode"}constructor(e,t,r){super(),this.sourceNode=e,this.components=t,this.targetNode=r}getNodeType(e){return this.sourceNode.getNodeType(e)}generate(e){const{sourceNode:t,components:r,targetNode:s}=this,i=this.getNodeType(e),n=e.getComponentType(s.getNodeType(e)),a=e.getTypeFromLength(r.length,n),o=s.build(e,a),u=t.build(e,i),l=e.getTypeLength(i),d=[];for(let e=0;e(e=>e.replace(/r|s/g,"x").replace(/g|t/g,"y").replace(/b|p/g,"z").replace(/a|q/g,"w"))(e).split("").sort().join("");ai.prototype.assign=function(...e){if(!0!==this.isStackNode)return null!==xi?xi.assign(this,...e):o("TSL: No stack defined for assign operation. Make sure the assign is inside a Fn()."),this;{const t=Ti.get("assign");return this.addToStack(t(...e))}},ai.prototype.toVarIntent=function(){return this},ai.prototype.get=function(e){return new bi(this,e)};const Ni={};function Si(e,t,r){Ni[e]=Ni[t]=Ni[r]={get(){this._cache=this._cache||{};let t=this._cache[e];return void 0===t&&(t=new hi(this,e),this._cache[e]=t),t},set(t){this[e].assign(Yi(t))}};const s=e.toUpperCase(),i=t.toUpperCase(),n=r.toUpperCase();ai.prototype["set"+s]=ai.prototype["set"+i]=ai.prototype["set"+n]=function(t){const r=vi(e);return new pi(this,r,Yi(t))},ai.prototype["flip"+s]=ai.prototype["flip"+i]=ai.prototype["flip"+n]=function(){const t=vi(e);return new gi(this,t)}}const Ri=["x","y","z","w"],Ai=["r","g","b","a"],Ei=["s","t","p","q"];for(let e=0;e<4;e++){let t=Ri[e],r=Ai[e],s=Ei[e];Si(t,r,s);for(let i=0;i<4;i++){t=Ri[e]+Ri[i],r=Ai[e]+Ai[i],s=Ei[e]+Ei[i],Si(t,r,s);for(let n=0;n<4;n++){t=Ri[e]+Ri[i]+Ri[n],r=Ai[e]+Ai[i]+Ai[n],s=Ei[e]+Ei[i]+Ei[n],Si(t,r,s);for(let a=0;a<4;a++)t=Ri[e]+Ri[i]+Ri[n]+Ri[a],r=Ai[e]+Ai[i]+Ai[n]+Ai[a],s=Ei[e]+Ei[i]+Ei[n]+Ei[a],Si(t,r,s)}}}for(let e=0;e<32;e++)Ni[e]={get(){this._cache=this._cache||{};let t=this._cache[e];return void 0===t&&(t=new oi(this,new yi(e,"uint")),this._cache[e]=t),t},set(t){this[e].assign(Yi(t))}};Object.defineProperties(ai.prototype,Ni);const wi=new WeakMap,Ci=function(e,t=null){for(const r in e)e[r]=Yi(e[r],t);return e},Mi=function(e,t=null){const r=e.length;for(let s=0;su?(o(`TSL: "${r}" parameter length exceeds limit.`),t.slice(0,u)):t}return null===t?n=(...t)=>i(new e(...Ji(d(t)))):null!==r?(r=Yi(r),n=(...s)=>i(new e(t,...Ji(d(s)),r))):n=(...r)=>i(new e(t,...Ji(d(r)))),n.setParameterLength=(...e)=>(1===e.length?a=u=e[0]:2===e.length&&([a,u]=e),n),n.setName=e=>(l=e,n),n},Li=function(e,...t){return Yi(new e(...Ji(t)))};class Pi extends ai{constructor(e,t){super(),this.shaderNode=e,this.rawInputs=t,this.isShaderCallNodeInternal=!0}getNodeType(e){return this.shaderNode.nodeType||this.getOutputNode(e).getNodeType(e)}getElementType(e){return this.getOutputNode(e).getElementType(e)}getMemberType(e,t){return this.getOutputNode(e).getMemberType(e,t)}call(e){const{shaderNode:t,rawInputs:r}=this,s=e.getNodeProperties(t),i=e.getClosestSubBuild(t.subBuilds)||"",n=i||"default";if(s[n])return s[n];const a=e.subBuildFn,o=e.fnCall;e.subBuildFn=i,e.fnCall=this;let u=null;if(t.layout){let s=wi.get(e.constructor);void 0===s&&(s=new WeakMap,wi.set(e.constructor,s));let i=s.get(t);void 0===i&&(i=Yi(e.buildFunctionNode(t)),s.set(t,i)),e.addInclude(i);const n=r?function(e){let t;Zi(e);t=e[0]&&(e[0].isNode||Object.getPrototypeOf(e[0])!==Object.prototype)?[...e]:e[0];return t}(r):null;u=Yi(i.call(n))}else{const s=new Proxy(e,{get:(e,t,r)=>{let s;return s=Symbol.iterator===t?function*(){yield}:Reflect.get(e,t,r),s}}),i=r?function(e){let t=0;return Zi(e),new Proxy(e,{get:(r,s,i)=>{let n;if("length"===s)return n=e.length,n;if(Symbol.iterator===s)n=function*(){for(const t of e)yield Yi(t)};else{if(e.length>0)if(Object.getPrototypeOf(e[0])===Object.prototype){const r=e[0];n=void 0===r[s]?r[t++]:Reflect.get(r,s,i)}else e[0]instanceof ai&&(n=void 0===e[s]?e[t++]:Reflect.get(e,s,i));else n=Reflect.get(r,s,i);n=Yi(n)}return n}})}(r):null,n=Array.isArray(r)?r.length>0:null!==r,a=t.jsFunc,o=n||a.length>1?a(i,s):a(s);u=Yi(o)}return e.subBuildFn=a,e.fnCall=o,t.once&&(s[n]=u),u}setupOutput(e){return e.addStack(),e.stack.outputNode=this.call(e),e.removeStack()}getOutputNode(e){const t=e.getNodeProperties(this),r=e.getSubBuildOutput(this);return t[r]=t[r]||this.setupOutput(e),t[r].subBuild=e.getClosestSubBuild(this),t[r]}build(e,t=null){let r=null;const s=e.getBuildStage(),i=e.getNodeProperties(this),n=e.getSubBuildOutput(this),a=this.getOutputNode(e),o=e.fnCall;if(e.fnCall=this,"setup"===s){const t=e.getSubBuildProperty("initialized",this);if(!0!==i[t]&&(i[t]=!0,i[n]=this.getOutputNode(e),i[n].build(e),this.shaderNode.subBuilds))for(const t of e.chaining){const r=e.getDataFromNode(t,"any");r.subBuilds=r.subBuilds||new Set;for(const e of this.shaderNode.subBuilds)r.subBuilds.add(e)}r=i[n]}else"analyze"===s?a.build(e,t):"generate"===s&&(r=a.build(e,t)||"");return e.fnCall=o,r}}class Fi extends ai{constructor(e,t){super(t),this.jsFunc=e,this.layout=null,this.global=!0,this.once=!1}setLayout(e){return this.layout=e,this}getLayout(){return this.layout}call(e=null){return new Pi(this,e)}setup(){return this.call()}}const Di=[!1,!0],Ui=[0,1,2,3],Ii=[-1,-2],Oi=[.5,1.5,1/3,1e-6,1e6,Math.PI,2*Math.PI,1/Math.PI,2/Math.PI,1/(2*Math.PI),Math.PI/2],Vi=new Map;for(const e of Di)Vi.set(e,new yi(e));const ki=new Map;for(const e of Ui)ki.set(e,new yi(e,"uint"));const Gi=new Map([...ki].map(e=>new yi(e.value,"int")));for(const e of Ii)Gi.set(e,new yi(e,"int"));const zi=new Map([...Gi].map(e=>new yi(e.value)));for(const e of Oi)zi.set(e,new yi(e));for(const e of Oi)zi.set(-e,new yi(-e));const $i={bool:Vi,uint:ki,ints:Gi,float:zi},Wi=new Map([...Vi,...zi]),Hi=(e,t)=>Wi.has(e)?Wi.get(e):!0===e.isNode?e:new yi(e,t),ji=function(e,t=null){return(...r)=>{for(const t of r)if(void 0===t)return o(`TSL: Invalid parameter for the type "${e}".`),Yi(new yi(0,e));if((0===r.length||!["bool","float","int","uint"].includes(e)&&r.every(e=>{const t=typeof e;return"object"!==t&&"function"!==t}))&&(r=[Hs(e,...r)]),1===r.length&&null!==t&&t.has(r[0]))return Qi(t.get(r[0]));if(1===r.length){const t=Hi(r[0],e);return t.nodeType===e?Qi(t):Qi(new ui(t,e))}const s=r.map(e=>Hi(e));return Qi(new di(s,e))}},qi=e=>"object"==typeof e&&null!==e?e.value:e,Xi=e=>null!=e?e.nodeType||e.convertTo||("string"==typeof e?e:null):null;function Ki(e,t){return new Fi(e,t)}const Yi=(e,t=null)=>function(e,t=null){const r=Ws(e);return"node"===r?e:null===t&&("float"===r||"boolean"===r)||r&&"shader"!==r&&"string"!==r?Yi(Hi(e,t)):"shader"===r?e.isFn?e:an(e):e}(e,t),Qi=(e,t=null)=>Yi(e,t).toVarIntent(),Zi=(e,t=null)=>new Ci(e,t),Ji=(e,t=null)=>new Mi(e,t),en=(e,t=null,r=null,s=null)=>new Bi(e,t,r,s),tn=(e,...t)=>new Li(e,...t),rn=(e,t=null,r=null,s={})=>new Bi(e,t,r,{...s,intent:!0});let sn=0;class nn extends ai{constructor(e,t=null){super();let r=null;null!==t&&("object"==typeof t?r=t.return:("string"==typeof t?r=t:o("TSL: Invalid layout type."),t=null)),this.shaderNode=new Ki(e,r),null!==t&&this.setLayout(t),this.isFn=!0}setLayout(e){const t=this.shaderNode.nodeType;if("object"!=typeof e.inputs){const r={name:"fn"+sn++,type:t,inputs:[]};for(const t in e)"return"!==t&&r.inputs.push({name:t,type:e[t]});e=r}return this.shaderNode.setLayout(e),this}getNodeType(e){return this.shaderNode.getNodeType(e)||"float"}call(...e){const t=this.shaderNode.call(e);return"void"===this.shaderNode.nodeType&&t.toStack(),t.toVarIntent()}once(e=null){return this.shaderNode.once=!0,this.shaderNode.subBuilds=e,this}generate(e){const t=this.getNodeType(e);return o('TSL: "Fn()" was declared but not invoked. Try calling it like "Fn()( ...params )".'),e.generateConst(t)}}function an(e,t=null){const r=new nn(e,t);return new Proxy(()=>{},{apply:(e,t,s)=>r.call(...s),get:(e,t,s)=>Reflect.get(r,t,s),set:(e,t,s,i)=>Reflect.set(r,t,s,i)})}const on=e=>{xi=e},un=()=>xi,ln=(...e)=>xi.If(...e);function dn(e){return xi&&xi.addToStack(e),e}_i("toStack",dn);const cn=new ji("color"),hn=new ji("float",$i.float),pn=new ji("int",$i.ints),gn=new ji("uint",$i.uint),mn=new ji("bool",$i.bool),fn=new ji("vec2"),yn=new ji("ivec2"),bn=new ji("uvec2"),xn=new ji("bvec2"),Tn=new ji("vec3"),_n=new ji("ivec3"),vn=new ji("uvec3"),Nn=new ji("bvec3"),Sn=new ji("vec4"),Rn=new ji("ivec4"),An=new ji("uvec4"),En=new ji("bvec4"),wn=new ji("mat2"),Cn=new ji("mat3"),Mn=new ji("mat4");_i("toColor",cn),_i("toFloat",hn),_i("toInt",pn),_i("toUint",gn),_i("toBool",mn),_i("toVec2",fn),_i("toIVec2",yn),_i("toUVec2",bn),_i("toBVec2",xn),_i("toVec3",Tn),_i("toIVec3",_n),_i("toUVec3",vn),_i("toBVec3",Nn),_i("toVec4",Sn),_i("toIVec4",Rn),_i("toUVec4",An),_i("toBVec4",En),_i("toMat2",wn),_i("toMat3",Cn),_i("toMat4",Mn);const Bn=en(oi).setParameterLength(2),Ln=(e,t)=>Yi(new ui(Yi(e),t));_i("element",Bn),_i("convert",Ln);_i("append",e=>(d("TSL: .append() has been renamed to .toStack()."),dn(e)));class Pn extends ai{static get type(){return"PropertyNode"}constructor(e,t=null,r=!1){super(e),this.name=t,this.varying=r,this.isPropertyNode=!0,this.global=!0}customCacheKey(){return Fs(this.type+":"+(this.name||"")+":"+(this.varying?"1":"0"))}getHash(e){return this.name||super.getHash(e)}generate(e){let t;return!0===this.varying?(t=e.getVaryingFromNode(this,this.name),t.needsInterpolation=!0):t=e.getVarFromNode(this,this.name),e.getPropertyName(t)}}const Fn=(e,t)=>Yi(new Pn(e,t)),Dn=(e,t)=>Yi(new Pn(e,t,!0)),Un=tn(Pn,"vec4","DiffuseColor"),In=tn(Pn,"vec3","DiffuseContribution"),On=tn(Pn,"vec3","EmissiveColor"),Vn=tn(Pn,"float","Roughness"),kn=tn(Pn,"float","Metalness"),Gn=tn(Pn,"float","Clearcoat"),zn=tn(Pn,"float","ClearcoatRoughness"),$n=tn(Pn,"vec3","Sheen"),Wn=tn(Pn,"float","SheenRoughness"),Hn=tn(Pn,"float","Iridescence"),jn=tn(Pn,"float","IridescenceIOR"),qn=tn(Pn,"float","IridescenceThickness"),Xn=tn(Pn,"float","AlphaT"),Kn=tn(Pn,"float","Anisotropy"),Yn=tn(Pn,"vec3","AnisotropyT"),Qn=tn(Pn,"vec3","AnisotropyB"),Zn=tn(Pn,"color","SpecularColor"),Jn=tn(Pn,"color","SpecularColorBlended"),ea=tn(Pn,"float","SpecularF90"),ta=tn(Pn,"float","Shininess"),ra=tn(Pn,"vec4","Output"),sa=tn(Pn,"float","dashSize"),ia=tn(Pn,"float","gapSize"),na=tn(Pn,"float","pointWidth"),aa=tn(Pn,"float","IOR"),oa=tn(Pn,"float","Transmission"),ua=tn(Pn,"float","Thickness"),la=tn(Pn,"float","AttenuationDistance"),da=tn(Pn,"color","AttenuationColor"),ca=tn(Pn,"float","Dispersion");class ha extends ai{static get type(){return"UniformGroupNode"}constructor(e,t=!1,r=1){super("string"),this.name=e,this.shared=t,this.order=r,this.isUniformGroup=!0}serialize(e){super.serialize(e),e.name=this.name,e.version=this.version,e.shared=this.shared}deserialize(e){super.deserialize(e),this.name=e.name,this.version=e.version,this.shared=e.shared}}const pa=e=>new ha(e),ga=(e,t=0)=>new ha(e,!0,t),ma=ga("frame"),fa=ga("render"),ya=pa("object");class ba extends mi{static get type(){return"UniformNode"}constructor(e,t=null){super(e,t),this.isUniformNode=!0,this.name="",this.groupNode=ya}setName(e){return this.name=e,this}label(e){return d('TSL: "label()" has been deprecated. Use "setName()" instead.'),this.setName(e)}setGroup(e){return this.groupNode=e,this}getGroup(){return this.groupNode}getUniformHash(e){return this.getHash(e)}onUpdate(e,t){return e=e.bind(this),super.onUpdate(t=>{const r=e(t,this);void 0!==r&&(this.value=r)},t)}getInputType(e){let t=super.getInputType(e);return"bool"===t&&(t="uint"),t}generate(e,t){const r=this.getNodeType(e),s=this.getUniformHash(e);let i=e.getNodeFromHash(s);void 0===i&&(e.setHashNode(this,s),i=this);const n=i.getInputType(e),a=e.getUniformFromNode(i,n,e.shaderStage,this.name||e.context.nodeName),o=e.getPropertyName(a);void 0!==e.context.nodeName&&delete e.context.nodeName;let u=o;if("bool"===r){const t=e.getDataFromNode(this);let s=t.propertyName;if(void 0===s){const i=e.getVarFromNode(this,null,"bool");s=e.getPropertyName(i),t.propertyName=s,u=e.format(o,n,r),e.addLineFlowCode(`${s} = ${u}`,this)}u=s}return e.format(u,r,t)}}const xa=(e,t)=>{const r=Xi(t||e);if(r===e&&(e=Hs(r)),e&&!0===e.isNode){let t=e.value;e.traverse(e=>{!0===e.isConstNode&&(t=e.value)}),e=t}return Yi(new ba(e,r))};class Ta extends li{static get type(){return"ArrayNode"}constructor(e,t,r=null){super(e),this.count=t,this.values=r,this.isArrayNode=!0}getArrayCount(){return this.count}getNodeType(e){return null===this.nodeType&&(this.nodeType=this.values[0].getNodeType(e)),this.nodeType}getElementType(e){return this.getNodeType(e)}generate(e){const t=this.getNodeType(e);return e.generateArray(t,this.count,this.values)}}const _a=(...e)=>{let t;if(1===e.length){const r=e[0];t=new Ta(null,r.length,r)}else{const r=e[0],s=e[1];t=new Ta(r,s)}return Yi(t)};_i("toArray",(e,t)=>_a(Array(t).fill(e)));class va extends li{static get type(){return"AssignNode"}constructor(e,t){super(),this.targetNode=e,this.sourceNode=t,this.isAssignNode=!0}hasDependencies(){return!1}getNodeType(e,t){return"void"!==t?this.targetNode.getNodeType(e):"void"}needsSplitAssign(e){const{targetNode:t}=this;if(!1===e.isAvailable("swizzleAssign")&&t.isSplitNode&&t.components.length>1){const r=e.getTypeLength(t.node.getNodeType(e));return si.join("").slice(0,r)!==t.components}return!1}setup(e){const{targetNode:t,sourceNode:r}=this,s=t.getScope();e.getDataFromNode(s).assign=!0;const i=e.getNodeProperties(this);i.sourceNode=r,i.targetNode=t.context({assign:!0})}generate(e,t){const{targetNode:r,sourceNode:s}=e.getNodeProperties(this),i=this.needsSplitAssign(e),n=r.build(e),a=r.getNodeType(e),o=s.build(e,a),u=s.getNodeType(e),l=e.getDataFromNode(this);let d;if(!0===l.initialized)"void"!==t&&(d=n);else if(i){const s=e.getVarFromNode(this,null,a),i=e.getPropertyName(s);e.addLineFlowCode(`${i} = ${o}`,this);const u=r.node,l=u.node.context({assign:!0}).build(e);for(let t=0;t{const s=r.type;let i;return i="pointer"===s?"&"+t.build(e):t.build(e,s),i};if(Array.isArray(i)){if(i.length>s.length)o("TSL: The number of provided parameters exceeds the expected number of inputs in 'Fn()'."),i.length=s.length;else if(i.length(t=t.length>1||t[0]&&!0===t[0].isNode?Ji(t):Zi(t[0]),new Sa(Yi(e),t));_i("call",Ra);const Aa={"==":"equal","!=":"notEqual","<":"lessThan",">":"greaterThan","<=":"lessThanEqual",">=":"greaterThanEqual","%":"mod"};class Ea extends li{static get type(){return"OperatorNode"}constructor(e,t,r,...s){if(super(),s.length>0){let i=new Ea(e,t,r);for(let t=0;t>"===r||"<<"===r)return e.getIntegerType(n);if("!"===r||"&&"===r||"||"===r||"^^"===r)return"bool";if("=="===r||"!="===r||"<"===r||">"===r||"<="===r||">="===r){const t=Math.max(e.getTypeLength(n),e.getTypeLength(a));return t>1?`bvec${t}`:"bool"}if(e.isMatrix(n)){if("float"===a)return n;if(e.isVector(a))return e.getVectorFromMatrix(n);if(e.isMatrix(a))return n}else if(e.isMatrix(a)){if("float"===n)return a;if(e.isVector(n))return e.getVectorFromMatrix(a)}return e.getTypeLength(a)>e.getTypeLength(n)?a:n}generate(e,t){const r=this.op,{aNode:s,bNode:i}=this,n=this.getNodeType(e,t);let a=null,o=null;"void"!==n?(a=s.getNodeType(e),o=i?i.getNodeType(e):null,"<"===r||">"===r||"<="===r||">="===r||"=="===r||"!="===r?e.isVector(a)?o=a:e.isVector(o)?a=o:a!==o&&(a=o="float"):">>"===r||"<<"===r?(a=n,o=e.changeComponentType(o,"uint")):"%"===r?(a=n,o=e.isInteger(a)&&e.isInteger(o)?o:a):e.isMatrix(a)?"float"===o?o="float":e.isVector(o)?o=e.getVectorFromMatrix(a):e.isMatrix(o)||(a=o=n):a=e.isMatrix(o)?"float"===a?"float":e.isVector(a)?e.getVectorFromMatrix(o):o=n:o=n):a=o=n;const u=s.build(e,a),l=i?i.build(e,o):null,d=e.getFunctionOperator(r);if("void"!==t){const s=e.renderer.coordinateSystem===c;if("=="===r||"!="===r||"<"===r||">"===r||"<="===r||">="===r)return s&&e.isVector(a)?e.format(`${this.getOperatorMethod(e,t)}( ${u}, ${l} )`,n,t):e.format(`( ${u} ${r} ${l} )`,n,t);if("%"===r)return e.isInteger(o)?e.format(`( ${u} % ${l} )`,n,t):e.format(`${this.getOperatorMethod(e,n)}( ${u}, ${l} )`,n,t);if("!"===r||"~"===r)return e.format(`(${r}${u})`,a,t);if(d)return e.format(`${d}( ${u}, ${l} )`,n,t);if(e.isMatrix(a)&&"float"===o)return e.format(`( ${l} ${r} ${u} )`,n,t);if("float"===a&&e.isMatrix(o))return e.format(`${u} ${r} ${l}`,n,t);{let i=`( ${u} ${r} ${l} )`;return!s&&"bool"===n&&e.isVector(a)&&e.isVector(o)&&(i=`all${i}`),e.format(i,n,t)}}if("void"!==a)return d?e.format(`${d}( ${u}, ${l} )`,n,t):e.isMatrix(a)&&"float"===o?e.format(`${l} ${r} ${u}`,n,t):e.format(`${u} ${r} ${l}`,n,t)}serialize(e){super.serialize(e),e.op=this.op}deserialize(e){super.deserialize(e),this.op=e.op}}const wa=rn(Ea,"+").setParameterLength(2,1/0).setName("add"),Ca=rn(Ea,"-").setParameterLength(2,1/0).setName("sub"),Ma=rn(Ea,"*").setParameterLength(2,1/0).setName("mul"),Ba=rn(Ea,"/").setParameterLength(2,1/0).setName("div"),La=rn(Ea,"%").setParameterLength(2).setName("mod"),Pa=rn(Ea,"==").setParameterLength(2).setName("equal"),Fa=rn(Ea,"!=").setParameterLength(2).setName("notEqual"),Da=rn(Ea,"<").setParameterLength(2).setName("lessThan"),Ua=rn(Ea,">").setParameterLength(2).setName("greaterThan"),Ia=rn(Ea,"<=").setParameterLength(2).setName("lessThanEqual"),Oa=rn(Ea,">=").setParameterLength(2).setName("greaterThanEqual"),Va=rn(Ea,"&&").setParameterLength(2,1/0).setName("and"),ka=rn(Ea,"||").setParameterLength(2,1/0).setName("or"),Ga=rn(Ea,"!").setParameterLength(1).setName("not"),za=rn(Ea,"^^").setParameterLength(2).setName("xor"),$a=rn(Ea,"&").setParameterLength(2).setName("bitAnd"),Wa=rn(Ea,"~").setParameterLength(1).setName("bitNot"),Ha=rn(Ea,"|").setParameterLength(2).setName("bitOr"),ja=rn(Ea,"^").setParameterLength(2).setName("bitXor"),qa=rn(Ea,"<<").setParameterLength(2).setName("shiftLeft"),Xa=rn(Ea,">>").setParameterLength(2).setName("shiftRight"),Ka=an(([e])=>(e.addAssign(1),e)),Ya=an(([e])=>(e.subAssign(1),e)),Qa=an(([e])=>{const t=pn(e).toConst();return e.addAssign(1),t}),Za=an(([e])=>{const t=pn(e).toConst();return e.subAssign(1),t});_i("add",wa),_i("sub",Ca),_i("mul",Ma),_i("div",Ba),_i("mod",La),_i("equal",Pa),_i("notEqual",Fa),_i("lessThan",Da),_i("greaterThan",Ua),_i("lessThanEqual",Ia),_i("greaterThanEqual",Oa),_i("and",Va),_i("or",ka),_i("not",Ga),_i("xor",za),_i("bitAnd",$a),_i("bitNot",Wa),_i("bitOr",Ha),_i("bitXor",ja),_i("shiftLeft",qa),_i("shiftRight",Xa),_i("incrementBefore",Ka),_i("decrementBefore",Ya),_i("increment",Qa),_i("decrement",Za);const Ja=(e,t)=>(d('TSL: "modInt()" is deprecated. Use "mod( int( ... ) )" instead.'),La(pn(e),pn(t)));_i("modInt",Ja);class eo extends li{static get type(){return"MathNode"}constructor(e,t,r=null,s=null){if(super(),(e===eo.MAX||e===eo.MIN)&&arguments.length>3){let i=new eo(e,t,r);for(let t=2;tn&&i>a?t:n>a?r:a>i?s:t}getNodeType(e){const t=this.method;return t===eo.LENGTH||t===eo.DISTANCE||t===eo.DOT?"float":t===eo.CROSS?"vec3":t===eo.ALL||t===eo.ANY?"bool":t===eo.EQUALS?e.changeComponentType(this.aNode.getNodeType(e),"bool"):this.getInputType(e)}setup(e){const{aNode:t,bNode:r,method:s}=this;let i=null;if(s===eo.ONE_MINUS)i=Ca(1,t);else if(s===eo.RECIPROCAL)i=Ba(1,t);else if(s===eo.DIFFERENCE)i=wo(Ca(t,r));else if(s===eo.TRANSFORM_DIRECTION){let s=t,n=r;e.isMatrix(s.getNodeType(e))?n=Sn(Tn(n),0):s=Sn(Tn(s),0);const a=Ma(s,n).xyz;i=To(a)}return null!==i?i:super.setup(e)}generate(e,t){if(e.getNodeProperties(this).outputNode)return super.generate(e,t);let r=this.method;const s=this.getNodeType(e),i=this.getInputType(e),n=this.aNode,a=this.bNode,o=this.cNode,u=e.renderer.coordinateSystem;if(r===eo.NEGATE)return e.format("( - "+n.build(e,i)+" )",s,t);{const l=[];return r===eo.CROSS?l.push(n.build(e,s),a.build(e,s)):u===c&&r===eo.STEP?l.push(n.build(e,1===e.getTypeLength(n.getNodeType(e))?"float":i),a.build(e,i)):u!==c||r!==eo.MIN&&r!==eo.MAX?r===eo.REFRACT?l.push(n.build(e,i),a.build(e,i),o.build(e,"float")):r===eo.MIX?l.push(n.build(e,i),a.build(e,i),o.build(e,1===e.getTypeLength(o.getNodeType(e))?"float":i)):(u===h&&r===eo.ATAN&&null!==a&&(r="atan2"),"fragment"===e.shaderStage||r!==eo.DFDX&&r!==eo.DFDY||(d(`TSL: '${r}' is not supported in the ${e.shaderStage} stage.`),r="/*"+r+"*/"),l.push(n.build(e,i)),null!==a&&l.push(a.build(e,i)),null!==o&&l.push(o.build(e,i))):l.push(n.build(e,i),a.build(e,1===e.getTypeLength(a.getNodeType(e))?"float":i)),e.format(`${e.getMethod(r,s)}( ${l.join(", ")} )`,s,t)}}serialize(e){super.serialize(e),e.method=this.method}deserialize(e){super.deserialize(e),this.method=e.method}}eo.ALL="all",eo.ANY="any",eo.RADIANS="radians",eo.DEGREES="degrees",eo.EXP="exp",eo.EXP2="exp2",eo.LOG="log",eo.LOG2="log2",eo.SQRT="sqrt",eo.INVERSE_SQRT="inversesqrt",eo.FLOOR="floor",eo.CEIL="ceil",eo.NORMALIZE="normalize",eo.FRACT="fract",eo.SIN="sin",eo.COS="cos",eo.TAN="tan",eo.ASIN="asin",eo.ACOS="acos",eo.ATAN="atan",eo.ABS="abs",eo.SIGN="sign",eo.LENGTH="length",eo.NEGATE="negate",eo.ONE_MINUS="oneMinus",eo.DFDX="dFdx",eo.DFDY="dFdy",eo.ROUND="round",eo.RECIPROCAL="reciprocal",eo.TRUNC="trunc",eo.FWIDTH="fwidth",eo.TRANSPOSE="transpose",eo.DETERMINANT="determinant",eo.INVERSE="inverse",eo.EQUALS="equals",eo.MIN="min",eo.MAX="max",eo.STEP="step",eo.REFLECT="reflect",eo.DISTANCE="distance",eo.DIFFERENCE="difference",eo.DOT="dot",eo.CROSS="cross",eo.POW="pow",eo.TRANSFORM_DIRECTION="transformDirection",eo.MIX="mix",eo.CLAMP="clamp",eo.REFRACT="refract",eo.SMOOTHSTEP="smoothstep",eo.FACEFORWARD="faceforward";const to=hn(1e-6),ro=hn(1e6),so=hn(Math.PI),io=hn(2*Math.PI),no=hn(2*Math.PI),ao=hn(.5*Math.PI),oo=rn(eo,eo.ALL).setParameterLength(1),uo=rn(eo,eo.ANY).setParameterLength(1),lo=rn(eo,eo.RADIANS).setParameterLength(1),co=rn(eo,eo.DEGREES).setParameterLength(1),ho=rn(eo,eo.EXP).setParameterLength(1),po=rn(eo,eo.EXP2).setParameterLength(1),go=rn(eo,eo.LOG).setParameterLength(1),mo=rn(eo,eo.LOG2).setParameterLength(1),fo=rn(eo,eo.SQRT).setParameterLength(1),yo=rn(eo,eo.INVERSE_SQRT).setParameterLength(1),bo=rn(eo,eo.FLOOR).setParameterLength(1),xo=rn(eo,eo.CEIL).setParameterLength(1),To=rn(eo,eo.NORMALIZE).setParameterLength(1),_o=rn(eo,eo.FRACT).setParameterLength(1),vo=rn(eo,eo.SIN).setParameterLength(1),No=rn(eo,eo.COS).setParameterLength(1),So=rn(eo,eo.TAN).setParameterLength(1),Ro=rn(eo,eo.ASIN).setParameterLength(1),Ao=rn(eo,eo.ACOS).setParameterLength(1),Eo=rn(eo,eo.ATAN).setParameterLength(1,2),wo=rn(eo,eo.ABS).setParameterLength(1),Co=rn(eo,eo.SIGN).setParameterLength(1),Mo=rn(eo,eo.LENGTH).setParameterLength(1),Bo=rn(eo,eo.NEGATE).setParameterLength(1),Lo=rn(eo,eo.ONE_MINUS).setParameterLength(1),Po=rn(eo,eo.DFDX).setParameterLength(1),Fo=rn(eo,eo.DFDY).setParameterLength(1),Do=rn(eo,eo.ROUND).setParameterLength(1),Uo=rn(eo,eo.RECIPROCAL).setParameterLength(1),Io=rn(eo,eo.TRUNC).setParameterLength(1),Oo=rn(eo,eo.FWIDTH).setParameterLength(1),Vo=rn(eo,eo.TRANSPOSE).setParameterLength(1),ko=rn(eo,eo.DETERMINANT).setParameterLength(1),Go=rn(eo,eo.INVERSE).setParameterLength(1),zo=(e,t)=>(d('TSL: "equals" is deprecated. Use "equal" inside a vector instead, like: "bvec*( equal( ... ) )"'),Pa(e,t)),$o=rn(eo,eo.MIN).setParameterLength(2,1/0),Wo=rn(eo,eo.MAX).setParameterLength(2,1/0),Ho=rn(eo,eo.STEP).setParameterLength(2),jo=rn(eo,eo.REFLECT).setParameterLength(2),qo=rn(eo,eo.DISTANCE).setParameterLength(2),Xo=rn(eo,eo.DIFFERENCE).setParameterLength(2),Ko=rn(eo,eo.DOT).setParameterLength(2),Yo=rn(eo,eo.CROSS).setParameterLength(2),Qo=rn(eo,eo.POW).setParameterLength(2),Zo=e=>Ma(e,e),Jo=e=>Ma(e,e,e),eu=e=>Ma(e,e,e,e),tu=rn(eo,eo.TRANSFORM_DIRECTION).setParameterLength(2),ru=e=>Ma(Co(e),Qo(wo(e),1/3)),su=e=>Ko(e,e),iu=rn(eo,eo.MIX).setParameterLength(3),nu=(e,t=0,r=1)=>Yi(new eo(eo.CLAMP,Yi(e),Yi(t),Yi(r))),au=e=>nu(e),ou=rn(eo,eo.REFRACT).setParameterLength(3),uu=rn(eo,eo.SMOOTHSTEP).setParameterLength(3),lu=rn(eo,eo.FACEFORWARD).setParameterLength(3),du=an(([e])=>{const t=Ko(e.xy,fn(12.9898,78.233)),r=La(t,so);return _o(vo(r).mul(43758.5453))}),cu=(e,t,r)=>iu(t,r,e),hu=(e,t,r)=>uu(t,r,e),pu=(e,t)=>Ho(t,e),gu=(e,t)=>(d('TSL: "atan2" is overloaded. Use "atan" instead.'),Eo(e,t)),mu=lu,fu=yo;_i("all",oo),_i("any",uo),_i("equals",zo),_i("radians",lo),_i("degrees",co),_i("exp",ho),_i("exp2",po),_i("log",go),_i("log2",mo),_i("sqrt",fo),_i("inverseSqrt",yo),_i("floor",bo),_i("ceil",xo),_i("normalize",To),_i("fract",_o),_i("sin",vo),_i("cos",No),_i("tan",So),_i("asin",Ro),_i("acos",Ao),_i("atan",Eo),_i("abs",wo),_i("sign",Co),_i("length",Mo),_i("lengthSq",su),_i("negate",Bo),_i("oneMinus",Lo),_i("dFdx",Po),_i("dFdy",Fo),_i("round",Do),_i("reciprocal",Uo),_i("trunc",Io),_i("fwidth",Oo),_i("atan2",gu),_i("min",$o),_i("max",Wo),_i("step",pu),_i("reflect",jo),_i("distance",qo),_i("dot",Ko),_i("cross",Yo),_i("pow",Qo),_i("pow2",Zo),_i("pow3",Jo),_i("pow4",eu),_i("transformDirection",tu),_i("mix",cu),_i("clamp",nu),_i("refract",ou),_i("smoothstep",hu),_i("faceForward",lu),_i("difference",Xo),_i("saturate",au),_i("cbrt",ru),_i("transpose",Vo),_i("determinant",ko),_i("inverse",Go),_i("rand",du);class yu extends ai{static get type(){return"ConditionalNode"}constructor(e,t,r=null){super(),this.condNode=e,this.ifNode=t,this.elseNode=r}getNodeType(e){const{ifNode:t,elseNode:r}=e.getNodeProperties(this);if(void 0===t)return e.flowBuildStage(this,"setup"),this.getNodeType(e);const s=t.getNodeType(e);if(null!==r){const t=r.getNodeType(e);if(e.getTypeLength(t)>e.getTypeLength(s))return t}return s}setup(e){const t=this.condNode,r=this.ifNode.isolate(),s=this.elseNode?this.elseNode.isolate():null,i=e.context.nodeBlock;e.getDataFromNode(r).parentNodeBlock=i,null!==s&&(e.getDataFromNode(s).parentNodeBlock=i);const n=e.context.uniformFlow,a=e.getNodeProperties(this);a.condNode=t,a.ifNode=n?r:r.context({nodeBlock:r}),a.elseNode=s?n?s:s.context({nodeBlock:s}):null}generate(e,t){const r=this.getNodeType(e),s=e.getDataFromNode(this);if(void 0!==s.nodeProperty)return s.nodeProperty;const{condNode:i,ifNode:n,elseNode:a}=e.getNodeProperties(this),o=e.currentFunctionNode,u="void"!==t,l=u?Fn(r).build(e):"";s.nodeProperty=l;const c=i.build(e,"bool");if(e.context.uniformFlow&&null!==a){const s=n.build(e,r),i=a.build(e,r),o=e.getTernary(c,s,i);return e.format(o,r,t)}e.addFlowCode(`\n${e.tab}if ( ${c} ) {\n\n`).addFlowTab();let h=n.build(e,r);if(h&&(u?h=l+" = "+h+";":(h="return "+h+";",null===o&&(d("TSL: Return statement used in an inline 'Fn()'. Define a layout struct to allow return values."),h="// "+h))),e.removeFlowTab().addFlowCode(e.tab+"\t"+h+"\n\n"+e.tab+"}"),null!==a){e.addFlowCode(" else {\n\n").addFlowTab();let t=a.build(e,r);t&&(u?t=l+" = "+t+";":(t="return "+t+";",null===o&&(d("TSL: Return statement used in an inline 'Fn()'. Define a layout struct to allow return values."),t="// "+t))),e.removeFlowTab().addFlowCode(e.tab+"\t"+t+"\n\n"+e.tab+"}\n\n")}else e.addFlowCode("\n\n");return e.format(l,r,t)}}const bu=en(yu).setParameterLength(2,3);_i("select",bu);class xu extends ai{static get type(){return"ContextNode"}constructor(e=null,t={}){super(),this.isContextNode=!0,this.node=e,this.value=t}getScope(){return this.node.getScope()}getNodeType(e){return this.node.getNodeType(e)}getFlowContextData(){const e=[];return this.traverse(t=>{!0===t.isContextNode&&e.push(t.value)}),Object.assign({},...e)}getMemberType(e,t){return this.node.getMemberType(e,t)}analyze(e){const t=e.addContext(this.value);this.node.build(e),e.setContext(t)}setup(e){const t=e.addContext(this.value);this.node.build(e),e.setContext(t)}generate(e,t){const r=e.addContext(this.value),s=this.node.build(e,t);return e.setContext(r),s}}const Tu=(e=null,t={})=>{let r=e;return null!==r&&!0===r.isNode||(t=r||t,r=null),new xu(r,t)},_u=e=>Tu(e,{uniformFlow:!0}),vu=(e,t)=>Tu(e,{nodeName:t});function Nu(e,t,r=null){return Tu(r,{getShadow:({light:r,shadowColorNode:s})=>t===r?s.mul(e):s})}function Su(e,t=null){return Tu(t,{getAO:(t,{material:r})=>!0===r.transparent?t:null!==t?t.mul(e):e})}function Ru(e,t){return d('TSL: "label()" has been deprecated. Use "setName()" instead.'),vu(e,t)}_i("context",Tu),_i("label",Ru),_i("uniformFlow",_u),_i("setName",vu),_i("builtinShadowContext",(e,t,r)=>Nu(t,r,e)),_i("builtinAOContext",(e,t)=>Su(t,e));class Au extends ai{static get type(){return"VarNode"}constructor(e,t=null,r=!1){super(),this.node=e,this.name=t,this.global=!0,this.isVarNode=!0,this.readOnly=r,this.parents=!0,this.intent=!1}setIntent(e){return this.intent=e,this}isIntent(e){return!0!==e.getDataFromNode(this).forceDeclaration&&this.intent}getIntent(){return this.intent}getMemberType(e,t){return this.node.getMemberType(e,t)}getElementType(e){return this.node.getElementType(e)}getNodeType(e){return this.node.getNodeType(e)}getArrayCount(e){return this.node.getArrayCount(e)}isAssign(e){return e.getDataFromNode(this).assign}build(...e){const t=e[0];if(!1===this._hasStack(t)&&"setup"===t.buildStage&&(t.context.nodeLoop||t.context.nodeBlock)){let e=!1;if(this.node.isShaderCallNodeInternal&&null===this.node.shaderNode.getLayout()&&t.fnCall&&t.fnCall.shaderNode){if(t.getDataFromNode(this.node.shaderNode).hasLoop){t.getDataFromNode(this).forceDeclaration=!0,e=!0}}const r=t.getBaseStack();e?r.addToStackBefore(this):r.addToStack(this)}return this.isIntent(t)&&!0!==this.isAssign(t)?this.node.build(...e):super.build(...e)}generate(e){const{node:t,name:r,readOnly:s}=this,{renderer:i}=e,n=!0===i.backend.isWebGPUBackend;let a=!1,u=!1;s&&(a=e.isDeterministic(t),u=n?s:a);const l=this.getNodeType(e);if("void"==l){!0!==this.isIntent(e)&&o('TSL: ".toVar()" can not be used with void type.');return t.build(e)}const d=e.getVectorType(l),c=t.build(e,d),h=e.getVarFromNode(this,r,d,void 0,u),p=e.getPropertyName(h);let g=p;if(u)if(n)g=a?`const ${p}`:`let ${p}`;else{const r=t.getArrayCount(e);g=`const ${e.getVar(h.type,p,r)}`}return e.addLineFlowCode(`${g} = ${c}`,this),p}_hasStack(e){return void 0!==e.getDataFromNode(this).stack}}const Eu=en(Au),wu=(e,t=null)=>Eu(e,t).toStack(),Cu=(e,t=null)=>Eu(e,t,!0).toStack(),Mu=e=>Eu(e).setIntent(!0).toStack();_i("toVar",wu),_i("toConst",Cu),_i("toVarIntent",Mu);class Bu extends ai{static get type(){return"SubBuild"}constructor(e,t,r=null){super(r),this.node=e,this.name=t,this.isSubBuildNode=!0}getNodeType(e){if(null!==this.nodeType)return this.nodeType;e.addSubBuild(this.name);const t=this.node.getNodeType(e);return e.removeSubBuild(),t}build(e,...t){e.addSubBuild(this.name);const r=this.node.build(e,...t);return e.removeSubBuild(),r}}const Lu=(e,t,r=null)=>Yi(new Bu(Yi(e),t,r));class Pu extends ai{static get type(){return"VaryingNode"}constructor(e,t=null){super(),this.node=e,this.name=t,this.isVaryingNode=!0,this.interpolationType=null,this.interpolationSampling=null,this.global=!0}setInterpolation(e,t=null){return this.interpolationType=e,this.interpolationSampling=t,this}getHash(e){return this.name||super.getHash(e)}getNodeType(e){return this.node.getNodeType(e)}setupVarying(e){const t=e.getNodeProperties(this);let r=t.varying;if(void 0===r){const s=this.name,i=this.getNodeType(e),n=this.interpolationType,a=this.interpolationSampling;t.varying=r=e.getVaryingFromNode(this,s,i,n,a),t.node=Lu(this.node,"VERTEX")}return r.needsInterpolation||(r.needsInterpolation="fragment"===e.shaderStage),r}setup(e){this.setupVarying(e),e.flowNodeFromShaderStage(Ys.VERTEX,this.node)}analyze(e){this.setupVarying(e),e.flowNodeFromShaderStage(Ys.VERTEX,this.node)}generate(e){const t=e.getSubBuildProperty("property",e.currentStack),r=e.getNodeProperties(this),s=this.setupVarying(e);if(void 0===r[t]){const i=this.getNodeType(e),n=e.getPropertyName(s,Ys.VERTEX);e.flowNodeFromShaderStage(Ys.VERTEX,r.node,i,n),r[t]=n}return e.getPropertyName(s)}}const Fu=en(Pu).setParameterLength(1,2),Du=e=>Fu(e);_i("toVarying",Fu),_i("toVertexStage",Du),_i("varying",(...e)=>(d("TSL: .varying() has been renamed to .toVarying()."),Fu(...e))),_i("vertexStage",(...e)=>(d("TSL: .vertexStage() has been renamed to .toVertexStage()."),Fu(...e)));const Uu=an(([e])=>{const t=e.mul(.9478672986).add(.0521327014).pow(2.4),r=e.mul(.0773993808),s=e.lessThanEqual(.04045);return iu(t,r,s)}).setLayout({name:"sRGBTransferEOTF",type:"vec3",inputs:[{name:"color",type:"vec3"}]}),Iu=an(([e])=>{const t=e.pow(.41666).mul(1.055).sub(.055),r=e.mul(12.92),s=e.lessThanEqual(.0031308);return iu(t,r,s)}).setLayout({name:"sRGBTransferOETF",type:"vec3",inputs:[{name:"color",type:"vec3"}]}),Ou="WorkingColorSpace";class Vu extends li{static get type(){return"ColorSpaceNode"}constructor(e,t,r){super("vec4"),this.colorNode=e,this.source=t,this.target=r}resolveColorSpace(e,t){return t===Ou?p.workingColorSpace:"OutputColorSpace"===t?e.context.outputColorSpace||e.renderer.outputColorSpace:t}setup(e){const{colorNode:t}=this,r=this.resolveColorSpace(e,this.source),s=this.resolveColorSpace(e,this.target);let i=t;return!1!==p.enabled&&r!==s&&r&&s?(p.getTransfer(r)===g&&(i=Sn(Uu(i.rgb),i.a)),p.getPrimaries(r)!==p.getPrimaries(s)&&(i=Sn(Cn(p._getMatrix(new n,r,s)).mul(i.rgb),i.a)),p.getTransfer(s)===g&&(i=Sn(Iu(i.rgb),i.a)),i):i}}const ku=(e,t)=>Yi(new Vu(Yi(e),Ou,t)),Gu=(e,t)=>Yi(new Vu(Yi(e),t,Ou));_i("workingToColorSpace",ku),_i("colorSpaceToWorking",Gu);let zu=class extends oi{static get type(){return"ReferenceElementNode"}constructor(e,t){super(e,t),this.referenceNode=e,this.isReferenceElementNode=!0}getNodeType(){return this.referenceNode.uniformType}generate(e){const t=super.generate(e),r=this.referenceNode.getNodeType(),s=this.getNodeType();return e.format(t,r,s)}};class $u extends ai{static get type(){return"ReferenceBaseNode"}constructor(e,t,r=null,s=null){super(),this.property=e,this.uniformType=t,this.object=r,this.count=s,this.properties=e.split("."),this.reference=r,this.node=null,this.group=null,this.updateType=Qs.OBJECT}setGroup(e){return this.group=e,this}element(e){return Yi(new zu(this,Yi(e)))}setNodeType(e){const t=xa(null,e);null!==this.group&&t.setGroup(this.group),this.node=t}getNodeType(e){return null===this.node&&(this.updateReference(e),this.updateValue()),this.node.getNodeType(e)}getValueFromReference(e=this.reference){const{properties:t}=this;let r=e[t[0]];for(let e=1;eYi(new Wu(e,t,r));class ju extends li{static get type(){return"ToneMappingNode"}constructor(e,t=Xu,r=null){super("vec3"),this._toneMapping=e,this.exposureNode=t,this.colorNode=r}customCacheKey(){return Us(this._toneMapping)}setToneMapping(e){return this._toneMapping=e,this}getToneMapping(){return this._toneMapping}setup(e){const t=this.colorNode||e.context.color,r=this._toneMapping;if(r===m)return t;let s=null;const i=e.renderer.library.getToneMappingFunction(r);return null!==i?s=Sn(i(t.rgb,this.exposureNode),t.a):(o("ToneMappingNode: Unsupported Tone Mapping configuration.",r),s=t),s}}const qu=(e,t,r)=>Yi(new ju(e,Yi(t),Yi(r))),Xu=Hu("toneMappingExposure","float");_i("toneMapping",(e,t,r)=>qu(t,r,e));const Ku=new WeakMap;function Yu(e,t){let r=Ku.get(e);return void 0===r&&(r=new b(e,t),Ku.set(e,r)),r}class Qu extends mi{static get type(){return"BufferAttributeNode"}constructor(e,t=null,r=0,s=0){super(e,t),this.isBufferNode=!0,this.bufferType=t,this.bufferStride=r,this.bufferOffset=s,this.usage=f,this.instanced=!1,this.attribute=null,this.global=!0,e&&!0===e.isBufferAttribute&&e.itemSize<=4&&(this.attribute=e,this.usage=e.usage,this.instanced=e.isInstancedBufferAttribute)}getHash(e){if(0===this.bufferStride&&0===this.bufferOffset){let t=e.globalCache.getData(this.value);return void 0===t&&(t={node:this},e.globalCache.setData(this.value,t)),t.node.uuid}return this.uuid}getNodeType(e){return null===this.bufferType&&(this.bufferType=e.getTypeFromAttribute(this.attribute)),this.bufferType}setup(e){if(null!==this.attribute)return;const t=this.getNodeType(e),r=e.getTypeLength(t),s=this.value,i=this.bufferStride||r,n=this.bufferOffset;let a;a=!0===s.isInterleavedBuffer?s:!0===s.isBufferAttribute?Yu(s.array,i):Yu(s,i);const o=new y(a,r,n);a.setUsage(this.usage),this.attribute=o,this.attribute.isInstancedBufferAttribute=this.instanced}generate(e){const t=this.getNodeType(e),r=e.getBufferAttributeFromNode(this,t),s=e.getPropertyName(r);let i=null;if("vertex"===e.shaderStage||"compute"===e.shaderStage)this.name=s,i=s;else{i=Fu(this).build(e,t)}return i}getInputType(){return"bufferAttribute"}setUsage(e){return this.usage=e,this.attribute&&!0===this.attribute.isBufferAttribute&&(this.attribute.usage=e),this}setInstanced(e){return this.instanced=e,this}}function Zu(e,t=null,r=0,s=0,i=f,n=!1){return"mat3"===t||null===t&&9===e.itemSize?Cn(new Qu(e,"vec3",9,0).setUsage(i).setInstanced(n),new Qu(e,"vec3",9,3).setUsage(i).setInstanced(n),new Qu(e,"vec3",9,6).setUsage(i).setInstanced(n)):"mat4"===t||null===t&&16===e.itemSize?Mn(new Qu(e,"vec4",16,0).setUsage(i).setInstanced(n),new Qu(e,"vec4",16,4).setUsage(i).setInstanced(n),new Qu(e,"vec4",16,8).setUsage(i).setInstanced(n),new Qu(e,"vec4",16,12).setUsage(i).setInstanced(n)):new Qu(e,t,r,s)}const Ju=(e,t=null,r=0,s=0)=>Zu(e,t,r,s),el=(e,t=null,r=0,s=0)=>Zu(e,t,r,s,f,!0),tl=(e,t=null,r=0,s=0)=>Zu(e,t,r,s,x,!0);_i("toAttribute",e=>Ju(e.value));class rl extends ai{static get type(){return"ComputeNode"}constructor(e,t){super("void"),this.isComputeNode=!0,this.computeNode=e,this.workgroupSize=t,this.count=null,this.version=1,this.name="",this.updateBeforeType=Qs.OBJECT,this.onInitFunction=null}setCount(e){return this.count=e,this}getCount(){return this.count}dispose(){this.dispatchEvent({type:"dispose"})}setName(e){return this.name=e,this}label(e){return d('TSL: "label()" has been deprecated. Use "setName()" instead.'),this.setName(e)}onInit(e){return this.onInitFunction=e,this}updateBefore({renderer:e}){e.compute(this)}setup(e){const t=this.computeNode.build(e);if(t){e.getNodeProperties(this).outputComputeNode=t.outputNode,t.outputNode=null}return t}generate(e,t){const{shaderStage:r}=e;if("compute"===r){const t=this.computeNode.build(e,"void");""!==t&&e.addLineFlowCode(t,this)}else{const r=e.getNodeProperties(this).outputComputeNode;if(r)return r.build(e,t)}}}const sl=(e,t=[64])=>{(0===t.length||t.length>3)&&o("TSL: compute() workgroupSize must have 1, 2, or 3 elements");for(let e=0;esl(e,r).setCount(t);_i("compute",il),_i("computeKernel",sl);class nl extends ai{static get type(){return"IsolateNode"}constructor(e,t=!0){super(),this.node=e,this.parent=t,this.isIsolateNode=!0}getNodeType(e){const t=e.getCache(),r=e.getCacheFromNode(this,this.parent);e.setCache(r);const s=this.node.getNodeType(e);return e.setCache(t),s}build(e,...t){const r=e.getCache(),s=e.getCacheFromNode(this,this.parent);e.setCache(s);const i=this.node.build(e,...t);return e.setCache(r),i}setParent(e){return this.parent=e,this}getParent(){return this.parent}}const al=e=>new nl(Yi(e));function ol(e,t=!0){return d('TSL: "cache()" has been deprecated. Use "isolate()" instead.'),al(e).setParent(t)}_i("cache",ol),_i("isolate",al);class ul extends ai{static get type(){return"BypassNode"}constructor(e,t){super(),this.isBypassNode=!0,this.outputNode=e,this.callNode=t}getNodeType(e){return this.outputNode.getNodeType(e)}generate(e){const t=this.callNode.build(e,"void");return""!==t&&e.addLineFlowCode(t,this),this.outputNode.build(e)}}const ll=en(ul).setParameterLength(2);_i("bypass",ll);class dl extends ai{static get type(){return"RemapNode"}constructor(e,t,r,s=hn(0),i=hn(1)){super(),this.node=e,this.inLowNode=t,this.inHighNode=r,this.outLowNode=s,this.outHighNode=i,this.doClamp=!0}setup(){const{node:e,inLowNode:t,inHighNode:r,outLowNode:s,outHighNode:i,doClamp:n}=this;let a=e.sub(t).div(r.sub(t));return!0===n&&(a=a.clamp()),a.mul(i.sub(s)).add(s)}}const cl=en(dl,null,null,{doClamp:!1}).setParameterLength(3,5),hl=en(dl).setParameterLength(3,5);_i("remap",cl),_i("remapClamp",hl);class pl extends ai{static get type(){return"ExpressionNode"}constructor(e="",t="void"){super(t),this.snippet=e}generate(e,t){const r=this.getNodeType(e),s=this.snippet;if("void"!==r)return e.format(s,r,t);e.addLineFlowCode(s,this)}}const gl=en(pl).setParameterLength(1,2),ml=e=>(e?bu(e,gl("discard")):gl("discard")).toStack();_i("discard",ml);class fl extends li{static get type(){return"RenderOutputNode"}constructor(e,t,r){super("vec4"),this.colorNode=e,this._toneMapping=t,this.outputColorSpace=r,this.isRenderOutputNode=!0}setToneMapping(e){return this._toneMapping=e,this}getToneMapping(){return this._toneMapping}setup({context:e}){let t=this.colorNode||e.color;const r=(null!==this._toneMapping?this._toneMapping:e.toneMapping)||m,s=(null!==this.outputColorSpace?this.outputColorSpace:e.outputColorSpace)||T;return r!==m&&(t=t.toneMapping(r)),s!==T&&s!==p.workingColorSpace&&(t=t.workingToColorSpace(s)),t}}const yl=(e,t=null,r=null)=>Yi(new fl(Yi(e),t,r));_i("renderOutput",yl);class bl extends li{static get type(){return"DebugNode"}constructor(e,t=null){super(),this.node=e,this.callback=t}getNodeType(e){return this.node.getNodeType(e)}setup(e){return this.node.build(e)}analyze(e){return this.node.build(e)}generate(e){const t=this.callback,r=this.node.build(e),s="--- TSL debug - "+e.shaderStage+" shader ---",i="-".repeat(s.length);let n="";return n+="// #"+s+"#\n",n+=e.flow.code.replace(/^\t/gm,"")+"\n",n+="/* ... */ "+r+" /* ... */\n",n+="// #"+i+"#\n",null!==t?t(e,n):_(n),r}}const xl=(e,t=null)=>Yi(new bl(Yi(e),t)).toStack();_i("debug",xl);class Tl{constructor(){this._renderer=null,this.currentFrame=null}get nodeFrame(){return this._renderer._nodes.nodeFrame}setRenderer(e){return this._renderer=e,this}getRenderer(){return this._renderer}init(){}begin(){}finish(){}inspect(){}computeAsync(){}beginCompute(){}finishCompute(){}beginRender(){}finishRender(){}copyTextureToTexture(){}copyFramebufferToTexture(){}}class _l extends ai{static get type(){return"InspectorNode"}constructor(e,t="",r=null){super(),this.node=e,this.name=t,this.callback=r,this.updateType=Qs.FRAME,this.isInspectorNode=!0}getName(){return this.name||this.node.name}update(e){e.renderer.inspector.inspect(this)}getNodeType(e){return this.node.getNodeType(e)}setup(e){let t=this.node;return!0===e.context.inspector&&null!==this.callback&&(t=this.callback(t)),!0!==e.renderer.backend.isWebGPUBackend&&e.renderer.inspector.constructor!==Tl&&v('TSL: ".toInspector()" is only available with WebGPU.'),t}}function vl(e,t="",r=null){return(e=Yi(e)).before(new _l(e,t,r))}_i("toInspector",vl);class Nl extends ai{static get type(){return"AttributeNode"}constructor(e,t=null){super(t),this.global=!0,this._attributeName=e}getHash(e){return this.getAttributeName(e)}getNodeType(e){let t=this.nodeType;if(null===t){const r=this.getAttributeName(e);if(e.hasGeometryAttribute(r)){const s=e.geometry.getAttribute(r);t=e.getTypeFromAttribute(s)}else t="float"}return t}setAttributeName(e){return this._attributeName=e,this}getAttributeName(){return this._attributeName}generate(e){const t=this.getAttributeName(e),r=this.getNodeType(e);if(!0===e.hasGeometryAttribute(t)){const s=e.geometry.getAttribute(t),i=e.getTypeFromAttribute(s),n=e.getAttribute(t,i);if("vertex"===e.shaderStage)return e.format(n.name,i,r);return Fu(this).build(e,r)}return d(`AttributeNode: Vertex attribute "${t}" not found on geometry.`),e.generateConst(r)}serialize(e){super.serialize(e),e.global=this.global,e._attributeName=this._attributeName}deserialize(e){super.deserialize(e),this.global=e.global,this._attributeName=e._attributeName}}const Sl=(e,t=null)=>Yi(new Nl(e,t)),Rl=(e=0)=>Sl("uv"+(e>0?e:""),"vec2");class Al extends ai{static get type(){return"TextureSizeNode"}constructor(e,t=null){super("uvec2"),this.isTextureSizeNode=!0,this.textureNode=e,this.levelNode=t}generate(e,t){const r=this.textureNode.build(e,"property"),s=null===this.levelNode?"0":this.levelNode.build(e,"int");return e.format(`${e.getMethod("textureDimensions")}( ${r}, ${s} )`,this.getNodeType(e),t)}}const El=en(Al).setParameterLength(1,2);class wl extends ba{static get type(){return"MaxMipLevelNode"}constructor(e){super(0),this._textureNode=e,this.updateType=Qs.FRAME}get textureNode(){return this._textureNode}get texture(){return this._textureNode.value}update(){const e=this.texture,t=e.images,r=t&&t.length>0?t[0]&&t[0].image||t[0]:e.image;if(r&&void 0!==r.width){const{width:e,height:t}=r;this.value=Math.log2(Math.max(e,t))}}}const Cl=en(wl).setParameterLength(1),Ml=new N;class Bl extends ba{static get type(){return"TextureNode"}constructor(e=Ml,t=null,r=null,s=null){super(e),this.isTextureNode=!0,this.uvNode=t,this.levelNode=r,this.biasNode=s,this.compareNode=null,this.depthNode=null,this.gradNode=null,this.offsetNode=null,this.sampler=!0,this.updateMatrix=!1,this.updateType=Qs.NONE,this.referenceNode=null,this._value=e,this._matrixUniform=null,this._flipYUniform=null,this.setUpdateMatrix(null===t)}set value(e){this.referenceNode?this.referenceNode.value=e:this._value=e}get value(){return this.referenceNode?this.referenceNode.value:this._value}getUniformHash(){return this.value.uuid}getNodeType(){return!0===this.value.isDepthTexture?"float":this.value.type===S?"uvec4":this.value.type===R?"ivec4":"vec4"}getInputType(){return"texture"}getDefaultUV(){return Rl(this.value.channel)}updateReference(){return this.value}getTransformedUV(e){return null===this._matrixUniform&&(this._matrixUniform=xa(this.value.matrix)),this._matrixUniform.mul(Tn(e,1)).xy}setUpdateMatrix(e){return this.updateMatrix=e,this}setupUV(e,t){return e.isFlipY()&&(null===this._flipYUniform&&(this._flipYUniform=xa(!1)),t=t.toVar(),t=this.sampler?this._flipYUniform.select(t.flipY(),t):this._flipYUniform.select(t.setY(pn(El(this,this.levelNode).y).sub(t.y).sub(1)),t)),t}setup(e){const t=e.getNodeProperties(this);t.referenceNode=this.referenceNode;const r=this.value;if(!r||!0!==r.isTexture)throw new Error("THREE.TSL: `texture( value )` function expects a valid instance of THREE.Texture().");const s=an(()=>{let t=this.uvNode;return null!==t&&!0!==e.context.forceUVContext||!e.context.getUV||(t=e.context.getUV(this,e)),t||(t=this.getDefaultUV()),!0===this.updateMatrix&&(t=this.getTransformedUV(t)),t=this.setupUV(e,t),this.updateType=null!==this._matrixUniform||null!==this._flipYUniform?Qs.OBJECT:Qs.NONE,t})();let i=this.levelNode;null===i&&e.context.getTextureLevel&&(i=e.context.getTextureLevel(this)),t.uvNode=s,t.levelNode=i,t.biasNode=this.biasNode,t.compareNode=this.compareNode,t.gradNode=this.gradNode,t.depthNode=this.depthNode,t.offsetNode=this.offsetNode}generateUV(e,t){return t.build(e,!0===this.sampler?"vec2":"ivec2")}generateOffset(e,t){return t.build(e,"ivec2")}generateSnippet(e,t,r,s,i,n,a,o,u){const l=this.value;let d;return d=i?e.generateTextureBias(l,t,r,i,n,u):o?e.generateTextureGrad(l,t,r,o,n,u):a?e.generateTextureCompare(l,t,r,a,n,u):!1===this.sampler?e.generateTextureLoad(l,t,r,s,n,u):s?e.generateTextureLevel(l,t,r,s,n,u):e.generateTexture(l,t,r,n,u),d}generate(e,t){const r=this.value,s=e.getNodeProperties(this),i=super.generate(e,"property");if(/^sampler/.test(t))return i+"_sampler";if(e.isReference(t))return i;{const n=e.getDataFromNode(this);let a=n.propertyName;if(void 0===a){const{uvNode:t,levelNode:r,biasNode:o,compareNode:u,depthNode:l,gradNode:d,offsetNode:c}=s,h=this.generateUV(e,t),p=r?r.build(e,"float"):null,g=o?o.build(e,"float"):null,m=l?l.build(e,"int"):null,f=u?u.build(e,"float"):null,y=d?[d[0].build(e,"vec2"),d[1].build(e,"vec2")]:null,b=c?this.generateOffset(e,c):null,x=e.getVarFromNode(this);a=e.getPropertyName(x);const T=this.generateSnippet(e,i,h,p,g,m,f,y,b);e.addLineFlowCode(`${a} = ${T}`,this),n.snippet=T,n.propertyName=a}let o=a;const u=this.getNodeType(e);return e.needsToWorkingColorSpace(r)&&(o=Gu(gl(o,u),r.colorSpace).setup(e).build(e,u)),e.format(o,u,t)}}setSampler(e){return this.sampler=e,this}getSampler(){return this.sampler}uv(e){return d("TextureNode: .uv() has been renamed. Use .sample() instead."),this.sample(e)}sample(e){const t=this.clone();return t.uvNode=Yi(e),t.referenceNode=this.getBase(),Yi(t)}load(e){return this.sample(e).setSampler(!1)}blur(e){const t=this.clone();t.biasNode=Yi(e).mul(Cl(t)),t.referenceNode=this.getBase();const r=t.value;return!1===t.generateMipmaps&&(r&&!1===r.generateMipmaps||r.minFilter===A||r.magFilter===A)&&(d("TSL: texture().blur() requires mipmaps and sampling. Use .generateMipmaps=true and .minFilter/.magFilter=THREE.LinearFilter in the Texture."),t.biasNode=null),Yi(t)}level(e){const t=this.clone();return t.levelNode=Yi(e),t.referenceNode=this.getBase(),Yi(t)}size(e){return El(this,e)}bias(e){const t=this.clone();return t.biasNode=Yi(e),t.referenceNode=this.getBase(),Yi(t)}getBase(){return this.referenceNode?this.referenceNode.getBase():this}compare(e){const t=this.clone();return t.compareNode=Yi(e),t.referenceNode=this.getBase(),Yi(t)}grad(e,t){const r=this.clone();return r.gradNode=[Yi(e),Yi(t)],r.referenceNode=this.getBase(),Yi(r)}depth(e){const t=this.clone();return t.depthNode=Yi(e),t.referenceNode=this.getBase(),Yi(t)}offset(e){const t=this.clone();return t.offsetNode=Yi(e),t.referenceNode=this.getBase(),Yi(t)}serialize(e){super.serialize(e),e.value=this.value.toJSON(e.meta).uuid,e.sampler=this.sampler,e.updateMatrix=this.updateMatrix,e.updateType=this.updateType}deserialize(e){super.deserialize(e),this.value=e.meta.textures[e.value],this.sampler=e.sampler,this.updateMatrix=e.updateMatrix,this.updateType=e.updateType}update(){const e=this.value,t=this._matrixUniform;null!==t&&(t.value=e.matrix),!0===e.matrixAutoUpdate&&e.updateMatrix();const r=this._flipYUniform;null!==r&&(r.value=e.image instanceof ImageBitmap&&!0===e.flipY||!0===e.isRenderTargetTexture||!0===e.isFramebufferTexture||!0===e.isDepthTexture)}clone(){const e=new this.constructor(this.value,this.uvNode,this.levelNode,this.biasNode);return e.sampler=this.sampler,e.depthNode=this.depthNode,e.compareNode=this.compareNode,e.gradNode=this.gradNode,e.offsetNode=this.offsetNode,e}}const Ll=en(Bl).setParameterLength(1,4).setName("texture"),Pl=(e=Ml,t=null,r=null,s=null)=>{let i;return e&&!0===e.isTextureNode?(i=Yi(e.clone()),i.referenceNode=e.getBase(),null!==t&&(i.uvNode=Yi(t)),null!==r&&(i.levelNode=Yi(r)),null!==s&&(i.biasNode=Yi(s))):i=Ll(e,t,r,s),i},Fl=(...e)=>Pl(...e).setSampler(!1);class Dl extends ba{static get type(){return"BufferNode"}constructor(e,t,r=0){super(e,t),this.isBufferNode=!0,this.bufferType=t,this.bufferCount=r,this.updateRanges=[]}addUpdateRange(e,t){this.updateRanges.push({start:e,count:t})}clearUpdateRanges(){this.updateRanges.length=0}getElementType(e){return this.getNodeType(e)}getInputType(){return"buffer"}}const Ul=(e,t,r)=>Yi(new Dl(e,t,r));class Il extends oi{static get type(){return"UniformArrayElementNode"}constructor(e,t){super(e,t),this.isArrayBufferElementNode=!0}generate(e){const t=super.generate(e),r=this.getNodeType(),s=this.node.getPaddedType();return e.format(t,s,r)}}class Ol extends Dl{static get type(){return"UniformArrayNode"}constructor(e,t=null){super(null),this.array=e,this.elementType=null===t?Ws(e[0]):t,this.paddedType=this.getPaddedType(),this.updateType=Qs.RENDER,this.isArrayBufferNode=!0}getNodeType(){return this.paddedType}getElementType(){return this.elementType}getPaddedType(){const e=this.elementType;let t="vec4";return"mat2"===e?t="mat2":!0===/mat/.test(e)?t="mat4":"i"===e.charAt(0)?t="ivec4":"u"===e.charAt(0)&&(t="uvec4"),t}update(){const{array:e,value:t}=this,r=this.elementType;if("float"===r||"int"===r||"uint"===r)for(let r=0;rYi(new Ol(e,t));const kl=en(class extends ai{constructor(e){super("float"),this.name=e,this.isBuiltinNode=!0}generate(){return this.name}}).setParameterLength(1);let Gl,zl;class $l extends ai{static get type(){return"ScreenNode"}constructor(e){super(),this.scope=e,this._output=null,this.isViewportNode=!0}getNodeType(){return this.scope===$l.DPR?"float":this.scope===$l.VIEWPORT?"vec4":"vec2"}getUpdateType(){let e=Qs.NONE;return this.scope!==$l.SIZE&&this.scope!==$l.VIEWPORT&&this.scope!==$l.DPR||(e=Qs.RENDER),this.updateType=e,e}update({renderer:e}){const t=e.getRenderTarget();this.scope===$l.VIEWPORT?null!==t?zl.copy(t.viewport):(e.getViewport(zl),zl.multiplyScalar(e.getPixelRatio())):this.scope===$l.DPR?this._output.value=e.getPixelRatio():null!==t?(Gl.width=t.width,Gl.height=t.height):e.getDrawingBufferSize(Gl)}setup(){const e=this.scope;let r=null;return r=e===$l.SIZE?xa(Gl||(Gl=new t)):e===$l.VIEWPORT?xa(zl||(zl=new s)):e===$l.DPR?xa(1):fn(ql.div(jl)),this._output=r,r}generate(e){if(this.scope===$l.COORDINATE){let t=e.getFragCoord();if(e.isFlipY()){const r=e.getNodeProperties(jl).outputNode.build(e);t=`${e.getType("vec2")}( ${t}.x, ${r}.y - ${t}.y )`}return t}return super.generate(e)}}$l.COORDINATE="coordinate",$l.VIEWPORT="viewport",$l.SIZE="size",$l.UV="uv",$l.DPR="dpr";const Wl=tn($l,$l.DPR),Hl=tn($l,$l.UV),jl=tn($l,$l.SIZE),ql=tn($l,$l.COORDINATE),Xl=tn($l,$l.VIEWPORT),Kl=Xl.zw,Yl=ql.sub(Xl.xy),Ql=Yl.div(Kl),Zl=an(()=>(d('TSL: "viewportResolution" is deprecated. Use "screenSize" instead.'),jl),"vec2").once()(),Jl=xa(0,"uint").setName("u_cameraIndex").setGroup(ga("cameraIndex")).toVarying("v_cameraIndex"),ed=xa("float").setName("cameraNear").setGroup(fa).onRenderUpdate(({camera:e})=>e.near),td=xa("float").setName("cameraFar").setGroup(fa).onRenderUpdate(({camera:e})=>e.far),rd=an(({camera:e})=>{let t;if(e.isArrayCamera&&e.cameras.length>0){const r=[];for(const t of e.cameras)r.push(t.projectionMatrix);t=Vl(r).setGroup(fa).setName("cameraProjectionMatrices").element(e.isMultiViewCamera?kl("gl_ViewID_OVR"):Jl).toConst("cameraProjectionMatrix")}else t=xa("mat4").setName("cameraProjectionMatrix").setGroup(fa).onRenderUpdate(({camera:e})=>e.projectionMatrix);return t}).once()(),sd=an(({camera:e})=>{let t;if(e.isArrayCamera&&e.cameras.length>0){const r=[];for(const t of e.cameras)r.push(t.projectionMatrixInverse);t=Vl(r).setGroup(fa).setName("cameraProjectionMatricesInverse").element(e.isMultiViewCamera?kl("gl_ViewID_OVR"):Jl).toConst("cameraProjectionMatrixInverse")}else t=xa("mat4").setName("cameraProjectionMatrixInverse").setGroup(fa).onRenderUpdate(({camera:e})=>e.projectionMatrixInverse);return t}).once()(),id=an(({camera:e})=>{let t;if(e.isArrayCamera&&e.cameras.length>0){const r=[];for(const t of e.cameras)r.push(t.matrixWorldInverse);t=Vl(r).setGroup(fa).setName("cameraViewMatrices").element(e.isMultiViewCamera?kl("gl_ViewID_OVR"):Jl).toConst("cameraViewMatrix")}else t=xa("mat4").setName("cameraViewMatrix").setGroup(fa).onRenderUpdate(({camera:e})=>e.matrixWorldInverse);return t}).once()(),nd=an(({camera:e})=>{let t;if(e.isArrayCamera&&e.cameras.length>0){const r=[];for(const t of e.cameras)r.push(t.matrixWorld);t=Vl(r).setGroup(fa).setName("cameraWorldMatrices").element(e.isMultiViewCamera?kl("gl_ViewID_OVR"):Jl).toConst("cameraWorldMatrix")}else t=xa("mat4").setName("cameraWorldMatrix").setGroup(fa).onRenderUpdate(({camera:e})=>e.matrixWorld);return t}).once()(),ad=an(({camera:e})=>{let t;if(e.isArrayCamera&&e.cameras.length>0){const r=[];for(const t of e.cameras)r.push(t.normalMatrix);t=Vl(r).setGroup(fa).setName("cameraNormalMatrices").element(e.isMultiViewCamera?kl("gl_ViewID_OVR"):Jl).toConst("cameraNormalMatrix")}else t=xa("mat3").setName("cameraNormalMatrix").setGroup(fa).onRenderUpdate(({camera:e})=>e.normalMatrix);return t}).once()(),od=an(({camera:e})=>{let t;if(e.isArrayCamera&&e.cameras.length>0){const s=[];for(let t=0,i=e.cameras.length;t{const r=e.cameras,s=t.array;for(let e=0,t=r.length;et.value.setFromMatrixPosition(e.matrixWorld));return t}).once()(),ud=an(({camera:e})=>{let t;if(e.isArrayCamera&&e.cameras.length>0){const r=[];for(const t of e.cameras)r.push(t.viewport);t=Vl(r,"vec4").setGroup(fa).setName("cameraViewports").element(Jl).toConst("cameraViewport")}else t=Sn(0,0,jl.x,jl.y).toConst("cameraViewport");return t}).once()(),ld=new E;class dd extends ai{static get type(){return"Object3DNode"}constructor(e,t=null){super(),this.scope=e,this.object3d=t,this.updateType=Qs.OBJECT,this.uniformNode=new ba(null)}getNodeType(){const e=this.scope;return e===dd.WORLD_MATRIX?"mat4":e===dd.POSITION||e===dd.VIEW_POSITION||e===dd.DIRECTION||e===dd.SCALE?"vec3":e===dd.RADIUS?"float":void 0}update(e){const t=this.object3d,s=this.uniformNode,i=this.scope;if(i===dd.WORLD_MATRIX)s.value=t.matrixWorld;else if(i===dd.POSITION)s.value=s.value||new r,s.value.setFromMatrixPosition(t.matrixWorld);else if(i===dd.SCALE)s.value=s.value||new r,s.value.setFromMatrixScale(t.matrixWorld);else if(i===dd.DIRECTION)s.value=s.value||new r,t.getWorldDirection(s.value);else if(i===dd.VIEW_POSITION){const i=e.camera;s.value=s.value||new r,s.value.setFromMatrixPosition(t.matrixWorld),s.value.applyMatrix4(i.matrixWorldInverse)}else if(i===dd.RADIUS){const r=e.object.geometry;null===r.boundingSphere&&r.computeBoundingSphere(),ld.copy(r.boundingSphere).applyMatrix4(t.matrixWorld),s.value=ld.radius}}generate(e){const t=this.scope;return t===dd.WORLD_MATRIX?this.uniformNode.nodeType="mat4":t===dd.POSITION||t===dd.VIEW_POSITION||t===dd.DIRECTION||t===dd.SCALE?this.uniformNode.nodeType="vec3":t===dd.RADIUS&&(this.uniformNode.nodeType="float"),this.uniformNode.build(e)}serialize(e){super.serialize(e),e.scope=this.scope}deserialize(e){super.deserialize(e),this.scope=e.scope}}dd.WORLD_MATRIX="worldMatrix",dd.POSITION="position",dd.SCALE="scale",dd.VIEW_POSITION="viewPosition",dd.DIRECTION="direction",dd.RADIUS="radius";const cd=en(dd,dd.DIRECTION).setParameterLength(1),hd=en(dd,dd.WORLD_MATRIX).setParameterLength(1),pd=en(dd,dd.POSITION).setParameterLength(1),gd=en(dd,dd.SCALE).setParameterLength(1),md=en(dd,dd.VIEW_POSITION).setParameterLength(1),fd=en(dd,dd.RADIUS).setParameterLength(1);class yd extends dd{static get type(){return"ModelNode"}constructor(e){super(e)}update(e){this.object3d=e.object,super.update(e)}}const bd=tn(yd,yd.DIRECTION),xd=tn(yd,yd.WORLD_MATRIX),Td=tn(yd,yd.POSITION),_d=tn(yd,yd.SCALE),vd=tn(yd,yd.VIEW_POSITION),Nd=tn(yd,yd.RADIUS),Sd=xa(new n).onObjectUpdate(({object:e},t)=>t.value.getNormalMatrix(e.matrixWorld)),Rd=xa(new a).onObjectUpdate(({object:e},t)=>t.value.copy(e.matrixWorld).invert()),Ad=an(e=>e.context.modelViewMatrix||Ed).once()().toVar("modelViewMatrix"),Ed=id.mul(xd),wd=an(e=>(e.context.isHighPrecisionModelViewMatrix=!0,xa("mat4").onObjectUpdate(({object:e,camera:t})=>e.modelViewMatrix.multiplyMatrices(t.matrixWorldInverse,e.matrixWorld)))).once()().toVar("highpModelViewMatrix"),Cd=an(e=>{const t=e.context.isHighPrecisionModelViewMatrix;return xa("mat3").onObjectUpdate(({object:e,camera:r})=>(!0!==t&&e.modelViewMatrix.multiplyMatrices(r.matrixWorldInverse,e.matrixWorld),e.normalMatrix.getNormalMatrix(e.modelViewMatrix)))}).once()().toVar("highpModelNormalViewMatrix"),Md=Sl("position","vec3"),Bd=Md.toVarying("positionLocal"),Ld=Md.toVarying("positionPrevious"),Pd=an(e=>xd.mul(Bd).xyz.toVarying(e.getSubBuildProperty("v_positionWorld")),"vec3").once(["POSITION"])(),Fd=an(()=>Bd.transformDirection(xd).toVarying("v_positionWorldDirection").normalize().toVar("positionWorldDirection"),"vec3").once(["POSITION"])(),Dd=an(e=>e.context.setupPositionView().toVarying("v_positionView"),"vec3").once(["POSITION"])(),Ud=an(e=>{let t;return t=e.camera.isOrthographicCamera?Tn(0,0,1):Dd.negate().toVarying("v_positionViewDirection").normalize(),t.toVar("positionViewDirection")},"vec3").once(["POSITION"])();class Id extends ai{static get type(){return"FrontFacingNode"}constructor(){super("bool"),this.isFrontFacingNode=!0}generate(e){if("fragment"!==e.shaderStage)return"true";const{material:t}=e;return t.side===w?"false":e.getFrontFacing()}}const Od=tn(Id),Vd=hn(Od).mul(2).sub(1),kd=an(([e],{material:t})=>{const r=t.side;return r===w?e=e.mul(-1):r===C&&(e=e.mul(Vd)),e}),Gd=Sl("normal","vec3"),zd=an(e=>!1===e.geometry.hasAttribute("normal")?(d('TSL: Vertex attribute "normal" not found on geometry.'),Tn(0,1,0)):Gd,"vec3").once()().toVar("normalLocal"),$d=Dd.dFdx().cross(Dd.dFdy()).normalize().toVar("normalFlat"),Wd=an(e=>{let t;return t=!0===e.material.flatShading?$d:Yd(zd).toVarying("v_normalViewGeometry").normalize(),t},"vec3").once()().toVar("normalViewGeometry"),Hd=an(e=>{let t=Wd.transformDirection(id);return!0!==e.material.flatShading&&(t=t.toVarying("v_normalWorldGeometry")),t.normalize().toVar("normalWorldGeometry")},"vec3").once()(),jd=an(({subBuildFn:e,material:t,context:r})=>{let s;return"NORMAL"===e||"VERTEX"===e?(s=Wd,!0!==t.flatShading&&(s=kd(s))):s=r.setupNormal().context({getUV:null}),s},"vec3").once(["NORMAL","VERTEX"])().toVar("normalView"),qd=jd.transformDirection(id).toVar("normalWorld"),Xd=an(({subBuildFn:e,context:t})=>{let r;return r="NORMAL"===e||"VERTEX"===e?jd:t.setupClearcoatNormal().context({getUV:null}),r},"vec3").once(["NORMAL","VERTEX"])().toVar("clearcoatNormalView"),Kd=an(([e,t=xd])=>{const r=Cn(t),s=e.div(Tn(r[0].dot(r[0]),r[1].dot(r[1]),r[2].dot(r[2])));return r.mul(s).xyz}),Yd=an(([e],t)=>{const r=t.context.modelNormalViewMatrix;if(r)return r.transformDirection(e);const s=Sd.mul(e);return id.transformDirection(s)}),Qd=an(()=>(d('TSL: "transformedNormalView" is deprecated. Use "normalView" instead.'),jd)).once(["NORMAL","VERTEX"])(),Zd=an(()=>(d('TSL: "transformedNormalWorld" is deprecated. Use "normalWorld" instead.'),qd)).once(["NORMAL","VERTEX"])(),Jd=an(()=>(d('TSL: "transformedClearcoatNormalView" is deprecated. Use "clearcoatNormalView" instead.'),Xd)).once(["NORMAL","VERTEX"])(),ec=new M,tc=new a,rc=xa(0).onReference(({material:e})=>e).onObjectUpdate(({material:e})=>e.refractionRatio),sc=xa(1).onReference(({material:e})=>e).onObjectUpdate(function({material:e,scene:t}){return e.envMap?e.envMapIntensity:t.environmentIntensity}),ic=xa(new a).onReference(function(e){return e.material}).onObjectUpdate(function({material:e,scene:t}){const r=null!==t.environment&&null===e.envMap?t.environmentRotation:e.envMapRotation;return r?(ec.copy(r),tc.makeRotationFromEuler(ec)):tc.identity(),tc}),nc=Ud.negate().reflect(jd),ac=Ud.negate().refract(jd,rc),oc=nc.transformDirection(id).toVar("reflectVector"),uc=ac.transformDirection(id).toVar("reflectVector"),lc=new B;class dc extends Bl{static get type(){return"CubeTextureNode"}constructor(e,t=null,r=null,s=null){super(e,t,r,s),this.isCubeTextureNode=!0}getInputType(){return!0===this.value.isDepthTexture?"cubeDepthTexture":"cubeTexture"}getDefaultUV(){const e=this.value;return e.mapping===L?oc:e.mapping===P?uc:(o('CubeTextureNode: Mapping "%s" not supported.',e.mapping),Tn(0,0,0))}setUpdateMatrix(){}setupUV(e,t){const r=this.value;return!0===r.isDepthTexture?e.renderer.coordinateSystem===h?Tn(t.x,t.y.negate(),t.z):t:(e.renderer.coordinateSystem!==h&&r.isRenderTargetTexture||(t=Tn(t.x.negate(),t.yz)),ic.mul(t))}generateUV(e,t){return t.build(e,!0===this.sampler?"vec3":"ivec3")}}const cc=en(dc).setParameterLength(1,4).setName("cubeTexture"),hc=(e=lc,t=null,r=null,s=null)=>{let i;return e&&!0===e.isCubeTextureNode?(i=Yi(e.clone()),i.referenceNode=e,null!==t&&(i.uvNode=Yi(t)),null!==r&&(i.levelNode=Yi(r)),null!==s&&(i.biasNode=Yi(s))):i=cc(e,t,r,s),i};class pc extends oi{static get type(){return"ReferenceElementNode"}constructor(e,t){super(e,t),this.referenceNode=e,this.isReferenceElementNode=!0}getNodeType(){return this.referenceNode.uniformType}generate(e){const t=super.generate(e),r=this.referenceNode.getNodeType(),s=this.getNodeType();return e.format(t,r,s)}}class gc extends ai{static get type(){return"ReferenceNode"}constructor(e,t,r=null,s=null){super(),this.property=e,this.uniformType=t,this.object=r,this.count=s,this.properties=e.split("."),this.reference=r,this.node=null,this.group=null,this.name=null,this.updateType=Qs.OBJECT}element(e){return Yi(new pc(this,Yi(e)))}setGroup(e){return this.group=e,this}setName(e){return this.name=e,this}label(e){return d('TSL: "label()" has been deprecated. Use "setName()" instead.'),this.setName(e)}setNodeType(e){let t=null;t=null!==this.count?Ul(null,e,this.count):Array.isArray(this.getValueFromReference())?Vl(null,e):"texture"===e?Pl(null):"cubeTexture"===e?hc(null):xa(null,e),null!==this.group&&t.setGroup(this.group),null!==this.name&&t.setName(this.name),this.node=t}getNodeType(e){return null===this.node&&(this.updateReference(e),this.updateValue()),this.node.getNodeType(e)}getValueFromReference(e=this.reference){const{properties:t}=this;let r=e[t[0]];for(let e=1;eYi(new gc(e,t,r)),fc=(e,t,r,s)=>Yi(new gc(e,t,s,r));class yc extends gc{static get type(){return"MaterialReferenceNode"}constructor(e,t,r=null){super(e,t,r),this.material=r,this.isMaterialReferenceNode=!0}updateReference(e){return this.reference=null!==this.material?this.material:e.material,this.reference}}const bc=(e,t,r=null)=>Yi(new yc(e,t,r)),xc=Rl(),Tc=Dd.dFdx(),_c=Dd.dFdy(),vc=xc.dFdx(),Nc=xc.dFdy(),Sc=jd,Rc=_c.cross(Sc),Ac=Sc.cross(Tc),Ec=Rc.mul(vc.x).add(Ac.mul(Nc.x)),wc=Rc.mul(vc.y).add(Ac.mul(Nc.y)),Cc=Ec.dot(Ec).max(wc.dot(wc)),Mc=Cc.equal(0).select(0,Cc.inverseSqrt()),Bc=Ec.mul(Mc).toVar("tangentViewFrame"),Lc=wc.mul(Mc).toVar("bitangentViewFrame"),Pc=Sl("tangent","vec4"),Fc=Pc.xyz.toVar("tangentLocal"),Dc=an(({subBuildFn:e,geometry:t,material:r})=>{let s;return s="VERTEX"===e||t.hasAttribute("tangent")?Ad.mul(Sn(Fc,0)).xyz.toVarying("v_tangentView").normalize():Bc,!0!==r.flatShading&&(s=kd(s)),s},"vec3").once(["NORMAL","VERTEX"])().toVar("tangentView"),Uc=Dc.transformDirection(id).toVarying("v_tangentWorld").normalize().toVar("tangentWorld"),Ic=an(([e,t],{subBuildFn:r,material:s})=>{let i=e.mul(Pc.w).xyz;return"NORMAL"===r&&!0!==s.flatShading&&(i=i.toVarying(t)),i}).once(["NORMAL"]),Oc=Ic(Gd.cross(Pc),"v_bitangentGeometry").normalize().toVar("bitangentGeometry"),Vc=Ic(zd.cross(Fc),"v_bitangentLocal").normalize().toVar("bitangentLocal"),kc=an(({subBuildFn:e,geometry:t,material:r})=>{let s;return s="VERTEX"===e||t.hasAttribute("tangent")?Ic(jd.cross(Dc),"v_bitangentView").normalize():Lc,!0!==r.flatShading&&(s=kd(s)),s},"vec3").once(["NORMAL","VERTEX"])().toVar("bitangentView"),Gc=Ic(qd.cross(Uc),"v_bitangentWorld").normalize().toVar("bitangentWorld"),zc=Cn(Dc,kc,jd).toVar("TBNViewMatrix"),$c=Ud.mul(zc),Wc=an(()=>{let e=Qn.cross(Ud);return e=e.cross(Qn).normalize(),e=iu(e,jd,Kn.mul(Vn.oneMinus()).oneMinus().pow2().pow2()).normalize(),e}).once()(),Hc=e=>Yi(e).mul(.5).add(.5),jc=e=>Tn(e,fo(au(hn(1).sub(Ko(e,e)))));class qc extends li{static get type(){return"NormalMapNode"}constructor(e,t=null){super("vec3"),this.node=e,this.scaleNode=t,this.normalMapType=F,this.unpackNormalMode=D}setup({material:e}){const{normalMapType:t,scaleNode:r,unpackNormalMode:s}=this;let i=this.node.mul(2).sub(1);if(t===F?s===U?i=jc(i.xy):s===I?i=jc(i.yw):s!==D&&console.error(`THREE.NodeMaterial: Unexpected unpack normal mode: ${s}`):s!==D&&console.error(`THREE.NodeMaterial: Normal map type '${t}' is not compatible with unpack normal mode '${s}'`),null!==r){let t=r;!0===e.flatShading&&(t=kd(t)),i=Tn(i.xy.mul(t),i.z)}let n=null;return t===O?n=Yd(i):t===F?n=zc.mul(i).normalize():(o(`NodeMaterial: Unsupported normal map type: ${t}`),n=jd),n}}const Xc=en(qc).setParameterLength(1,2),Kc=an(({textureNode:e,bumpScale:t})=>{const r=t=>e.isolate().context({getUV:e=>t(e.uvNode||Rl()),forceUVContext:!0}),s=hn(r(e=>e));return fn(hn(r(e=>e.add(e.dFdx()))).sub(s),hn(r(e=>e.add(e.dFdy()))).sub(s)).mul(t)}),Yc=an(e=>{const{surf_pos:t,surf_norm:r,dHdxy:s}=e,i=t.dFdx().normalize(),n=r,a=t.dFdy().normalize().cross(n),o=n.cross(i),u=i.dot(a).mul(Vd),l=u.sign().mul(s.x.mul(a).add(s.y.mul(o)));return u.abs().mul(r).sub(l).normalize()});class Qc extends li{static get type(){return"BumpMapNode"}constructor(e,t=null){super("vec3"),this.textureNode=e,this.scaleNode=t}setup(){const e=null!==this.scaleNode?this.scaleNode:1,t=Kc({textureNode:this.textureNode,bumpScale:e});return Yc({surf_pos:Dd,surf_norm:jd,dHdxy:t})}}const Zc=en(Qc).setParameterLength(1,2),Jc=new Map;class eh extends ai{static get type(){return"MaterialNode"}constructor(e){super(),this.scope=e}getCache(e,t){let r=Jc.get(e);return void 0===r&&(r=bc(e,t),Jc.set(e,r)),r}getFloat(e){return this.getCache(e,"float")}getColor(e){return this.getCache(e,"color")}getTexture(e){return this.getCache("map"===e?"map":e+"Map","texture")}setup(e){const t=e.context.material,r=this.scope;let s=null;if(r===eh.COLOR){const e=void 0!==t.color?this.getColor(r):Tn();s=t.map&&!0===t.map.isTexture?e.mul(this.getTexture("map")):e}else if(r===eh.OPACITY){const e=this.getFloat(r);s=t.alphaMap&&!0===t.alphaMap.isTexture?e.mul(this.getTexture("alpha")):e}else if(r===eh.SPECULAR_STRENGTH)s=t.specularMap&&!0===t.specularMap.isTexture?this.getTexture("specular").r:hn(1);else if(r===eh.SPECULAR_INTENSITY){const e=this.getFloat(r);s=t.specularIntensityMap&&!0===t.specularIntensityMap.isTexture?e.mul(this.getTexture(r).a):e}else if(r===eh.SPECULAR_COLOR){const e=this.getColor(r);s=t.specularColorMap&&!0===t.specularColorMap.isTexture?e.mul(this.getTexture(r).rgb):e}else if(r===eh.ROUGHNESS){const e=this.getFloat(r);s=t.roughnessMap&&!0===t.roughnessMap.isTexture?e.mul(this.getTexture(r).g):e}else if(r===eh.METALNESS){const e=this.getFloat(r);s=t.metalnessMap&&!0===t.metalnessMap.isTexture?e.mul(this.getTexture(r).b):e}else if(r===eh.EMISSIVE){const e=this.getFloat("emissiveIntensity"),i=this.getColor(r).mul(e);s=t.emissiveMap&&!0===t.emissiveMap.isTexture?i.mul(this.getTexture(r)):i}else if(r===eh.NORMAL)t.normalMap?(s=Xc(this.getTexture("normal"),this.getCache("normalScale","vec2")),s.normalMapType=t.normalMapType,t.normalMap.format!=V&&t.normalMap.format!=k&&t.normalMap.format!=G||(s.unpackNormalMode=U)):s=t.bumpMap?Zc(this.getTexture("bump").r,this.getFloat("bumpScale")):jd;else if(r===eh.CLEARCOAT){const e=this.getFloat(r);s=t.clearcoatMap&&!0===t.clearcoatMap.isTexture?e.mul(this.getTexture(r).r):e}else if(r===eh.CLEARCOAT_ROUGHNESS){const e=this.getFloat(r);s=t.clearcoatRoughnessMap&&!0===t.clearcoatRoughnessMap.isTexture?e.mul(this.getTexture(r).r):e}else if(r===eh.CLEARCOAT_NORMAL)s=t.clearcoatNormalMap?Xc(this.getTexture(r),this.getCache(r+"Scale","vec2")):jd;else if(r===eh.SHEEN){const e=this.getColor("sheenColor").mul(this.getFloat("sheen"));s=t.sheenColorMap&&!0===t.sheenColorMap.isTexture?e.mul(this.getTexture("sheenColor").rgb):e}else if(r===eh.SHEEN_ROUGHNESS){const e=this.getFloat(r);s=t.sheenRoughnessMap&&!0===t.sheenRoughnessMap.isTexture?e.mul(this.getTexture(r).a):e,s=s.clamp(1e-4,1)}else if(r===eh.ANISOTROPY)if(t.anisotropyMap&&!0===t.anisotropyMap.isTexture){const e=this.getTexture(r);s=wn(Oh.x,Oh.y,Oh.y.negate(),Oh.x).mul(e.rg.mul(2).sub(fn(1)).normalize().mul(e.b))}else s=Oh;else if(r===eh.IRIDESCENCE_THICKNESS){const e=mc("1","float",t.iridescenceThicknessRange);if(t.iridescenceThicknessMap){const i=mc("0","float",t.iridescenceThicknessRange);s=e.sub(i).mul(this.getTexture(r).g).add(i)}else s=e}else if(r===eh.TRANSMISSION){const e=this.getFloat(r);s=t.transmissionMap?e.mul(this.getTexture(r).r):e}else if(r===eh.THICKNESS){const e=this.getFloat(r);s=t.thicknessMap?e.mul(this.getTexture(r).g):e}else if(r===eh.IOR)s=this.getFloat(r);else if(r===eh.LIGHT_MAP)s=this.getTexture(r).rgb.mul(this.getFloat("lightMapIntensity"));else if(r===eh.AO)s=this.getTexture(r).r.sub(1).mul(this.getFloat("aoMapIntensity")).add(1);else if(r===eh.LINE_DASH_OFFSET)s=t.dashOffset?this.getFloat(r):hn(0);else{const t=this.getNodeType(e);s=this.getCache(r,t)}return s}}eh.ALPHA_TEST="alphaTest",eh.COLOR="color",eh.OPACITY="opacity",eh.SHININESS="shininess",eh.SPECULAR="specular",eh.SPECULAR_STRENGTH="specularStrength",eh.SPECULAR_INTENSITY="specularIntensity",eh.SPECULAR_COLOR="specularColor",eh.REFLECTIVITY="reflectivity",eh.ROUGHNESS="roughness",eh.METALNESS="metalness",eh.NORMAL="normal",eh.CLEARCOAT="clearcoat",eh.CLEARCOAT_ROUGHNESS="clearcoatRoughness",eh.CLEARCOAT_NORMAL="clearcoatNormal",eh.EMISSIVE="emissive",eh.ROTATION="rotation",eh.SHEEN="sheen",eh.SHEEN_ROUGHNESS="sheenRoughness",eh.ANISOTROPY="anisotropy",eh.IRIDESCENCE="iridescence",eh.IRIDESCENCE_IOR="iridescenceIOR",eh.IRIDESCENCE_THICKNESS="iridescenceThickness",eh.IOR="ior",eh.TRANSMISSION="transmission",eh.THICKNESS="thickness",eh.ATTENUATION_DISTANCE="attenuationDistance",eh.ATTENUATION_COLOR="attenuationColor",eh.LINE_SCALE="scale",eh.LINE_DASH_SIZE="dashSize",eh.LINE_GAP_SIZE="gapSize",eh.LINE_WIDTH="linewidth",eh.LINE_DASH_OFFSET="dashOffset",eh.POINT_SIZE="size",eh.DISPERSION="dispersion",eh.LIGHT_MAP="light",eh.AO="ao";const th=tn(eh,eh.ALPHA_TEST),rh=tn(eh,eh.COLOR),sh=tn(eh,eh.SHININESS),ih=tn(eh,eh.EMISSIVE),nh=tn(eh,eh.OPACITY),ah=tn(eh,eh.SPECULAR),oh=tn(eh,eh.SPECULAR_INTENSITY),uh=tn(eh,eh.SPECULAR_COLOR),lh=tn(eh,eh.SPECULAR_STRENGTH),dh=tn(eh,eh.REFLECTIVITY),ch=tn(eh,eh.ROUGHNESS),hh=tn(eh,eh.METALNESS),ph=tn(eh,eh.NORMAL),gh=tn(eh,eh.CLEARCOAT),mh=tn(eh,eh.CLEARCOAT_ROUGHNESS),fh=tn(eh,eh.CLEARCOAT_NORMAL),yh=tn(eh,eh.ROTATION),bh=tn(eh,eh.SHEEN),xh=tn(eh,eh.SHEEN_ROUGHNESS),Th=tn(eh,eh.ANISOTROPY),_h=tn(eh,eh.IRIDESCENCE),vh=tn(eh,eh.IRIDESCENCE_IOR),Nh=tn(eh,eh.IRIDESCENCE_THICKNESS),Sh=tn(eh,eh.TRANSMISSION),Rh=tn(eh,eh.THICKNESS),Ah=tn(eh,eh.IOR),Eh=tn(eh,eh.ATTENUATION_DISTANCE),wh=tn(eh,eh.ATTENUATION_COLOR),Ch=tn(eh,eh.LINE_SCALE),Mh=tn(eh,eh.LINE_DASH_SIZE),Bh=tn(eh,eh.LINE_GAP_SIZE),Lh=tn(eh,eh.LINE_WIDTH),Ph=tn(eh,eh.LINE_DASH_OFFSET),Fh=tn(eh,eh.POINT_SIZE),Dh=tn(eh,eh.DISPERSION),Uh=tn(eh,eh.LIGHT_MAP),Ih=tn(eh,eh.AO),Oh=xa(new t).onReference(function(e){return e.material}).onRenderUpdate(function({material:e}){this.value.set(e.anisotropy*Math.cos(e.anisotropyRotation),e.anisotropy*Math.sin(e.anisotropyRotation))}),Vh=an(e=>e.context.setupModelViewProjection(),"vec4").once()().toVarying("v_modelViewProjection");class kh extends oi{static get type(){return"StorageArrayElementNode"}constructor(e,t){super(e,t),this.isStorageArrayElementNode=!0}set storageBufferNode(e){this.node=e}get storageBufferNode(){return this.node}getMemberType(e,t){const r=this.storageBufferNode.structTypeNode;return r?r.getMemberType(e,t):"void"}setup(e){return!1===e.isAvailable("storageBuffer")&&!0===this.node.isPBO&&e.setupPBO(this.node),super.setup(e)}generate(e,t){let r;const s=e.context.assign;if(r=!1===e.isAvailable("storageBuffer")?!0!==this.node.isPBO||!0===s||!this.node.value.isInstancedBufferAttribute&&"compute"===e.shaderStage?this.node.build(e):e.generatePBO(this):super.generate(e),!0!==s){const s=this.getNodeType(e);r=e.format(r,s,t)}return r}}const Gh=en(kh).setParameterLength(2);class zh extends Dl{static get type(){return"StorageBufferNode"}constructor(e,t=null,r=0){let s,i=null;t&&t.isStruct?(s="struct",i=t.layout,(e.isStorageBufferAttribute||e.isStorageInstancedBufferAttribute)&&(r=e.count)):null===t&&(e.isStorageBufferAttribute||e.isStorageInstancedBufferAttribute)?(s=Vs(e.itemSize),r=e.count):s=t,super(e,s,r),this.isStorageBufferNode=!0,this.structTypeNode=i,this.access=Js.READ_WRITE,this.isAtomic=!1,this.isPBO=!1,this._attribute=null,this._varying=null,this.global=!0,!0!==e.isStorageBufferAttribute&&!0!==e.isStorageInstancedBufferAttribute&&(e.isInstancedBufferAttribute?e.isStorageInstancedBufferAttribute=!0:e.isStorageBufferAttribute=!0)}getHash(e){if(0===this.bufferCount){let t=e.globalCache.getData(this.value);return void 0===t&&(t={node:this},e.globalCache.setData(this.value,t)),t.node.uuid}return this.uuid}getInputType(){return this.value.isIndirectStorageBufferAttribute?"indirectStorageBuffer":"storageBuffer"}element(e){return Gh(this,e)}setPBO(e){return this.isPBO=e,this}getPBO(){return this.isPBO}setAccess(e){return this.access=e,this}toReadOnly(){return this.setAccess(Js.READ_ONLY)}setAtomic(e){return this.isAtomic=e,this}toAtomic(){return this.setAtomic(!0)}getAttributeData(){return null===this._attribute&&(this._attribute=Ju(this.value),this._varying=Fu(this._attribute)),{attribute:this._attribute,varying:this._varying}}getNodeType(e){if(null!==this.structTypeNode)return this.structTypeNode.getNodeType(e);if(e.isAvailable("storageBuffer")||e.isAvailable("indirectStorageBuffer"))return super.getNodeType(e);const{attribute:t}=this.getAttributeData();return t.getNodeType(e)}getMemberType(e,t){return null!==this.structTypeNode?this.structTypeNode.getMemberType(e,t):"void"}generate(e){if(null!==this.structTypeNode&&this.structTypeNode.build(e),e.isAvailable("storageBuffer")||e.isAvailable("indirectStorageBuffer"))return super.generate(e);const{attribute:t,varying:r}=this.getAttributeData(),s=r.build(e);return e.registerTransform(s,t),s}}const $h=(e,t=null,r=0)=>Yi(new zh(e,t,r));class Wh extends ai{static get type(){return"IndexNode"}constructor(e){super("uint"),this.scope=e,this.isIndexNode=!0}generate(e){const t=this.getNodeType(e),r=this.scope;let s,i;if(r===Wh.VERTEX)s=e.getVertexIndex();else if(r===Wh.INSTANCE)s=e.getInstanceIndex();else if(r===Wh.DRAW)s=e.getDrawIndex();else if(r===Wh.INVOCATION_LOCAL)s=e.getInvocationLocalIndex();else if(r===Wh.INVOCATION_SUBGROUP)s=e.getInvocationSubgroupIndex();else{if(r!==Wh.SUBGROUP)throw new Error("THREE.IndexNode: Unknown scope: "+r);s=e.getSubgroupIndex()}if("vertex"===e.shaderStage||"compute"===e.shaderStage)i=s;else{i=Fu(this).build(e,t)}return i}}Wh.VERTEX="vertex",Wh.INSTANCE="instance",Wh.SUBGROUP="subgroup",Wh.INVOCATION_LOCAL="invocationLocal",Wh.INVOCATION_SUBGROUP="invocationSubgroup",Wh.DRAW="draw";const Hh=tn(Wh,Wh.VERTEX),jh=tn(Wh,Wh.INSTANCE),qh=tn(Wh,Wh.SUBGROUP),Xh=tn(Wh,Wh.INVOCATION_SUBGROUP),Kh=tn(Wh,Wh.INVOCATION_LOCAL),Yh=tn(Wh,Wh.DRAW);class Qh extends ai{static get type(){return"InstanceNode"}constructor(e,t,r=null){super("void"),this.count=e,this.instanceMatrix=t,this.instanceColor=r,this.instanceMatrixNode=null,this.instanceColorNode=null,this.updateType=Qs.FRAME,this.buffer=null,this.bufferColor=null}get isStorageMatrix(){const{instanceMatrix:e}=this;return e&&!0===e.isStorageInstancedBufferAttribute}get isStorageColor(){const{instanceColor:e}=this;return e&&!0===e.isStorageInstancedBufferAttribute}setup(e){const{instanceMatrix:t,instanceColor:r,isStorageMatrix:s,isStorageColor:i}=this,{count:n}=t;let{instanceMatrixNode:a,instanceColorNode:o}=this;if(null===a){if(s)a=$h(t,"mat4",Math.max(n,1)).element(jh);else if(n<=1e3)a=Ul(t.array,"mat4",Math.max(n,1)).element(jh);else{const e=new z(t.array,16,1);this.buffer=e;const r=t.usage===x?tl:el,s=[r(e,"vec4",16,0),r(e,"vec4",16,4),r(e,"vec4",16,8),r(e,"vec4",16,12)];a=Mn(...s)}this.instanceMatrixNode=a}if(r&&null===o){if(i)o=$h(r,"vec3",Math.max(r.count,1)).element(jh);else{const e=new $(r.array,3),t=r.usage===x?tl:el;this.bufferColor=e,o=Tn(t(e,"vec3",3,0))}this.instanceColorNode=o}const u=a.mul(Bd).xyz;if(Bd.assign(u),e.hasGeometryAttribute("normal")){const e=Kd(zd,a);zd.assign(e)}null!==this.instanceColorNode&&Dn("vec3","vInstanceColor").assign(this.instanceColorNode)}update(){null!==this.buffer&&!0!==this.isStorageMatrix&&(this.buffer.clearUpdateRanges(),this.buffer.updateRanges.push(...this.instanceMatrix.updateRanges),this.instanceMatrix.usage!==x&&this.instanceMatrix.version!==this.buffer.version&&(this.buffer.version=this.instanceMatrix.version)),this.instanceColor&&null!==this.bufferColor&&!0!==this.isStorageColor&&(this.bufferColor.clearUpdateRanges(),this.bufferColor.updateRanges.push(...this.instanceColor.updateRanges),this.instanceColor.usage!==x&&this.instanceColor.version!==this.bufferColor.version&&(this.bufferColor.version=this.instanceColor.version))}}const Zh=en(Qh).setParameterLength(2,3);class Jh extends Qh{static get type(){return"InstancedMeshNode"}constructor(e){const{count:t,instanceMatrix:r,instanceColor:s}=e;super(t,r,s),this.instancedMesh=e}}const ep=en(Jh).setParameterLength(1);class tp extends ai{static get type(){return"BatchNode"}constructor(e){super("void"),this.batchMesh=e,this.batchingIdNode=null}setup(e){null===this.batchingIdNode&&(null===e.getDrawIndex()?this.batchingIdNode=jh:this.batchingIdNode=Yh);const t=an(([e])=>{const t=pn(El(Fl(this.batchMesh._indirectTexture),0).x).toConst(),r=pn(e).mod(t).toConst(),s=pn(e).div(t).toConst();return Fl(this.batchMesh._indirectTexture,yn(r,s)).x}).setLayout({name:"getIndirectIndex",type:"uint",inputs:[{name:"id",type:"int"}]}),r=t(pn(this.batchingIdNode)),s=this.batchMesh._matricesTexture,i=pn(El(Fl(s),0).x).toConst(),n=hn(r).mul(4).toInt().toConst(),a=n.mod(i).toConst(),o=n.div(i).toConst(),u=Mn(Fl(s,yn(a,o)),Fl(s,yn(a.add(1),o)),Fl(s,yn(a.add(2),o)),Fl(s,yn(a.add(3),o))),l=this.batchMesh._colorsTexture;if(null!==l){const e=an(([e])=>{const t=pn(El(Fl(l),0).x).toConst(),r=e,s=r.mod(t).toConst(),i=r.div(t).toConst();return Fl(l,yn(s,i)).rgb}).setLayout({name:"getBatchingColor",type:"vec3",inputs:[{name:"id",type:"int"}]}),t=e(r);Dn("vec3","vBatchColor").assign(t)}const d=Cn(u);Bd.assign(u.mul(Bd));const c=zd.div(Tn(d[0].dot(d[0]),d[1].dot(d[1]),d[2].dot(d[2]))),h=d.mul(c).xyz;zd.assign(h),e.hasGeometryAttribute("tangent")&&Fc.mulAssign(d)}}const rp=en(tp).setParameterLength(1),sp=new WeakMap;class ip extends ai{static get type(){return"SkinningNode"}constructor(e){super("void"),this.skinnedMesh=e,this.updateType=Qs.OBJECT,this.skinIndexNode=Sl("skinIndex","uvec4"),this.skinWeightNode=Sl("skinWeight","vec4"),this.bindMatrixNode=mc("bindMatrix","mat4"),this.bindMatrixInverseNode=mc("bindMatrixInverse","mat4"),this.boneMatricesNode=fc("skeleton.boneMatrices","mat4",e.skeleton.bones.length),this.positionNode=Bd,this.toPositionNode=Bd,this.previousBoneMatricesNode=null}getSkinnedPosition(e=this.boneMatricesNode,t=this.positionNode){const{skinIndexNode:r,skinWeightNode:s,bindMatrixNode:i,bindMatrixInverseNode:n}=this,a=e.element(r.x),o=e.element(r.y),u=e.element(r.z),l=e.element(r.w),d=i.mul(t),c=wa(a.mul(s.x).mul(d),o.mul(s.y).mul(d),u.mul(s.z).mul(d),l.mul(s.w).mul(d));return n.mul(c).xyz}getSkinnedNormal(e=this.boneMatricesNode,t=zd){const{skinIndexNode:r,skinWeightNode:s,bindMatrixNode:i,bindMatrixInverseNode:n}=this,a=e.element(r.x),o=e.element(r.y),u=e.element(r.z),l=e.element(r.w);let d=wa(s.x.mul(a),s.y.mul(o),s.z.mul(u),s.w.mul(l));return d=n.mul(d).mul(i),d.transformDirection(t).xyz}getPreviousSkinnedPosition(e){const t=e.object;return null===this.previousBoneMatricesNode&&(t.skeleton.previousBoneMatrices=new Float32Array(t.skeleton.boneMatrices),this.previousBoneMatricesNode=fc("skeleton.previousBoneMatrices","mat4",t.skeleton.bones.length)),this.getSkinnedPosition(this.previousBoneMatricesNode,Ld)}needsPreviousBoneMatrices(e){const t=e.renderer.getMRT();return t&&t.has("velocity")||!0===js(e.object).useVelocity}setup(e){this.needsPreviousBoneMatrices(e)&&Ld.assign(this.getPreviousSkinnedPosition(e));const t=this.getSkinnedPosition();if(this.toPositionNode&&this.toPositionNode.assign(t),e.hasGeometryAttribute("normal")){const t=this.getSkinnedNormal();zd.assign(t),e.hasGeometryAttribute("tangent")&&Fc.assign(t)}return t}generate(e,t){if("void"!==t)return super.generate(e,t)}update(e){const t=e.object&&e.object.skeleton?e.object.skeleton:this.skinnedMesh.skeleton;sp.get(t)!==e.frameId&&(sp.set(t,e.frameId),null!==this.previousBoneMatricesNode&&(null===t.previousBoneMatrices&&(t.previousBoneMatrices=new Float32Array(t.boneMatrices)),t.previousBoneMatrices.set(t.boneMatrices)),t.update())}}const np=e=>Yi(new ip(e));class ap extends ai{static get type(){return"LoopNode"}constructor(e=[]){super("void"),this.params=e}getVarName(e){return String.fromCharCode("i".charCodeAt(0)+e)}getProperties(e){const t=e.getNodeProperties(this);if(void 0!==t.stackNode)return t;const r={};for(let e=0,t=this.params.length-1;eNumber(l)?">=":"<")),a)n=`while ( ${l} )`;else{const r={start:u,end:l},s=r.start,i=r.end;let a;const g=()=>h.includes("<")?"+=":"-=";if(null!=p)switch(typeof p){case"function":a=e.flowStagesNode(t.updateNode,"void").code.replace(/\t|;/g,"");break;case"number":a=d+" "+g()+" "+e.generateConst(c,p);break;case"string":a=d+" "+p;break;default:p.isNode?a=d+" "+g()+" "+p.build(e):(o("TSL: 'Loop( { update: ... } )' is not a function, string or number."),a="break /* invalid update */")}else p="int"===c||"uint"===c?h.includes("<")?"++":"--":g()+" 1.",a=d+" "+p;n=`for ( ${e.getVar(c,d)+" = "+s}; ${d+" "+h+" "+i}; ${a} )`}e.addFlowCode((0===s?"\n":"")+e.tab+n+" {\n\n").addFlowTab()}const i=s.build(e,"void");t.returnsNode.build(e,"void"),e.removeFlowTab().addFlowCode("\n"+e.tab+i);for(let t=0,r=this.params.length-1;tnew ap(Ji(e,"int")).toStack(),up=()=>gl("break").toStack(),lp=new WeakMap,dp=new s,cp=an(({bufferMap:e,influence:t,stride:r,width:s,depth:i,offset:n})=>{const a=pn(Hh).mul(r).add(n),o=a.div(s),u=a.sub(o.mul(s));return Fl(e,yn(u,o)).depth(i).xyz.mul(t)});class hp extends ai{static get type(){return"MorphNode"}constructor(e){super("void"),this.mesh=e,this.morphBaseInfluence=xa(1),this.updateType=Qs.OBJECT}setup(e){const{geometry:r}=e,s=void 0!==r.morphAttributes.position,i=r.hasAttribute("normal")&&void 0!==r.morphAttributes.normal,n=r.morphAttributes.position||r.morphAttributes.normal||r.morphAttributes.color,a=void 0!==n?n.length:0,{texture:o,stride:u,size:l}=function(e){const r=void 0!==e.morphAttributes.position,s=void 0!==e.morphAttributes.normal,i=void 0!==e.morphAttributes.color,n=e.morphAttributes.position||e.morphAttributes.normal||e.morphAttributes.color,a=void 0!==n?n.length:0;let o=lp.get(e);if(void 0===o||o.count!==a){void 0!==o&&o.texture.dispose();const u=e.morphAttributes.position||[],l=e.morphAttributes.normal||[],d=e.morphAttributes.color||[];let c=0;!0===r&&(c=1),!0===s&&(c=2),!0===i&&(c=3);let h=e.attributes.position.count*c,p=1;const g=4096;h>g&&(p=Math.ceil(h/g),h=g);const m=new Float32Array(h*p*4*a),f=new W(m,h,p,a);f.type=H,f.needsUpdate=!0;const y=4*c;for(let x=0;x{const t=hn(0).toVar();this.mesh.count>1&&null!==this.mesh.morphTexture&&void 0!==this.mesh.morphTexture?t.assign(Fl(this.mesh.morphTexture,yn(pn(e).add(1),pn(jh))).r):t.assign(mc("morphTargetInfluences","float").element(e).toVar()),ln(t.notEqual(0),()=>{!0===s&&Bd.addAssign(cp({bufferMap:o,influence:t,stride:u,width:d,depth:e,offset:pn(0)})),!0===i&&zd.addAssign(cp({bufferMap:o,influence:t,stride:u,width:d,depth:e,offset:pn(1)}))})})}update(){const e=this.morphBaseInfluence;this.mesh.geometry.morphTargetsRelative?e.value=1:e.value=1-this.mesh.morphTargetInfluences.reduce((e,t)=>e+t,0)}}const pp=en(hp).setParameterLength(1);class gp extends ai{static get type(){return"LightingNode"}constructor(){super("vec3"),this.isLightingNode=!0}}class mp extends gp{static get type(){return"AONode"}constructor(e=null){super(),this.aoNode=e}setup(e){e.context.ambientOcclusion.mulAssign(this.aoNode)}}class fp extends xu{static get type(){return"LightingContextNode"}constructor(e,t=null,r=null,s=null){super(e),this.lightingModel=t,this.backdropNode=r,this.backdropAlphaNode=s,this._value=null}getContext(){const{backdropNode:e,backdropAlphaNode:t}=this,r={directDiffuse:Tn().toVar("directDiffuse"),directSpecular:Tn().toVar("directSpecular"),indirectDiffuse:Tn().toVar("indirectDiffuse"),indirectSpecular:Tn().toVar("indirectSpecular")};return{radiance:Tn().toVar("radiance"),irradiance:Tn().toVar("irradiance"),iblIrradiance:Tn().toVar("iblIrradiance"),ambientOcclusion:hn(1).toVar("ambientOcclusion"),reflectedLight:r,backdrop:e,backdropAlpha:t}}setup(e){return this.value=this._value||(this._value=this.getContext()),this.value.lightingModel=this.lightingModel||e.context.lightingModel,super.setup(e)}}const yp=en(fp);class bp extends gp{static get type(){return"IrradianceNode"}constructor(e){super(),this.node=e}setup(e){e.context.irradiance.addAssign(this.node)}}const xp=new t;class Tp extends Bl{static get type(){return"ViewportTextureNode"}constructor(e=Hl,t=null,r=null){let s=null;null===r?(s=new j,s.minFilter=q,r=s):s=r,super(r,e,t),this.generateMipmaps=!1,this.defaultFramebuffer=s,this.isOutputTextureNode=!0,this.updateBeforeType=Qs.FRAME,this._cacheTextures=new WeakMap}getTextureForReference(e=null){let t,r;if(this.referenceNode?(t=this.referenceNode.defaultFramebuffer,r=this.referenceNode._cacheTextures):(t=this.defaultFramebuffer,r=this._cacheTextures),null===e)return t;if(!1===r.has(e)){const s=t.clone();r.set(e,s)}return r.get(e)}updateReference(e){const t=e.renderer.getRenderTarget();return this.value=this.getTextureForReference(t),this.value}updateBefore(e){const t=e.renderer,r=t.getRenderTarget();null===r?t.getDrawingBufferSize(xp):xp.set(r.width,r.height);const s=this.getTextureForReference(r);s.image.width===xp.width&&s.image.height===xp.height||(s.image.width=xp.width,s.image.height=xp.height,s.needsUpdate=!0);const i=s.generateMipmaps;s.generateMipmaps=this.generateMipmaps,t.copyFramebufferToTexture(s),s.generateMipmaps=i}clone(){const e=new this.constructor(this.uvNode,this.levelNode,this.value);return e.generateMipmaps=this.generateMipmaps,e}}const _p=en(Tp).setParameterLength(0,3),vp=en(Tp,null,null,{generateMipmaps:!0}).setParameterLength(0,3);let Np=null;class Sp extends Tp{static get type(){return"ViewportDepthTextureNode"}constructor(e=Hl,t=null){null===Np&&(Np=new X),super(e,t,Np)}getTextureForReference(){return Np}}const Rp=en(Sp).setParameterLength(0,2);class Ap extends ai{static get type(){return"ViewportDepthNode"}constructor(e,t=null){super("float"),this.scope=e,this.valueNode=t,this.isViewportDepthNode=!0}generate(e){const{scope:t}=this;return t===Ap.DEPTH_BASE?e.getFragDepth():super.generate(e)}setup({camera:e}){const{scope:t}=this,r=this.valueNode;let s=null;if(t===Ap.DEPTH_BASE)null!==r&&(s=Bp().assign(r));else if(t===Ap.DEPTH)s=e.isPerspectiveCamera?wp(Dd.z,ed,td):Ep(Dd.z,ed,td);else if(t===Ap.LINEAR_DEPTH)if(null!==r)if(e.isPerspectiveCamera){const e=Cp(r,ed,td);s=Ep(e,ed,td)}else s=r;else s=Ep(Dd.z,ed,td);return s}}Ap.DEPTH_BASE="depthBase",Ap.DEPTH="depth",Ap.LINEAR_DEPTH="linearDepth";const Ep=(e,t,r)=>e.add(t).div(t.sub(r)),wp=(e,t,r)=>t.add(e).mul(r).div(r.sub(t).mul(e)),Cp=(e,t,r)=>t.mul(r).div(r.sub(t).mul(e).sub(r)),Mp=(e,t,r)=>{t=t.max(1e-6).toVar();const s=mo(e.negate().div(t)),i=mo(r.div(t));return s.div(i)},Bp=en(Ap,Ap.DEPTH_BASE),Lp=tn(Ap,Ap.DEPTH),Pp=en(Ap,Ap.LINEAR_DEPTH).setParameterLength(0,1),Fp=Pp(Rp());Lp.assign=e=>Bp(e);class Dp extends ai{static get type(){return"ClippingNode"}constructor(e=Dp.DEFAULT){super(),this.scope=e}setup(e){super.setup(e);const t=e.clippingContext,{intersectionPlanes:r,unionPlanes:s}=t;return this.hardwareClipping=e.material.hardwareClipping,this.scope===Dp.ALPHA_TO_COVERAGE?this.setupAlphaToCoverage(r,s):this.scope===Dp.HARDWARE?this.setupHardwareClipping(s,e):this.setupDefault(r,s)}setupAlphaToCoverage(e,t){return an(()=>{const r=hn().toVar("distanceToPlane"),s=hn().toVar("distanceToGradient"),i=hn(1).toVar("clipOpacity"),n=t.length;if(!1===this.hardwareClipping&&n>0){const e=Vl(t).setGroup(fa);op(n,({i:t})=>{const n=e.element(t);r.assign(Dd.dot(n.xyz).negate().add(n.w)),s.assign(r.fwidth().div(2)),i.mulAssign(uu(s.negate(),s,r))})}const a=e.length;if(a>0){const t=Vl(e).setGroup(fa),n=hn(1).toVar("intersectionClipOpacity");op(a,({i:e})=>{const i=t.element(e);r.assign(Dd.dot(i.xyz).negate().add(i.w)),s.assign(r.fwidth().div(2)),n.mulAssign(uu(s.negate(),s,r).oneMinus())}),i.mulAssign(n.oneMinus())}Un.a.mulAssign(i),Un.a.equal(0).discard()})()}setupDefault(e,t){return an(()=>{const r=t.length;if(!1===this.hardwareClipping&&r>0){const e=Vl(t).setGroup(fa);op(r,({i:t})=>{const r=e.element(t);Dd.dot(r.xyz).greaterThan(r.w).discard()})}const s=e.length;if(s>0){const t=Vl(e).setGroup(fa),r=mn(!0).toVar("clipped");op(s,({i:e})=>{const s=t.element(e);r.assign(Dd.dot(s.xyz).greaterThan(s.w).and(r))}),r.discard()}})()}setupHardwareClipping(e,t){const r=e.length;return t.enableHardwareClipping(r),an(()=>{const s=Vl(e).setGroup(fa),i=kl(t.getClipDistance());op(r,({i:e})=>{const t=s.element(e),r=Dd.dot(t.xyz).sub(t.w).negate();i.element(e).assign(r)})})()}}Dp.ALPHA_TO_COVERAGE="alphaToCoverage",Dp.DEFAULT="default",Dp.HARDWARE="hardware";const Up=an(([e])=>_o(Ma(1e4,vo(Ma(17,e.x).add(Ma(.1,e.y)))).mul(wa(.1,wo(vo(Ma(13,e.y).add(e.x))))))),Ip=an(([e])=>Up(fn(Up(e.xy),e.z))),Op=an(([e])=>{const t=Wo(Mo(Po(e.xyz)),Mo(Fo(e.xyz))),r=hn(1).div(hn(.05).mul(t)).toVar("pixScale"),s=fn(po(bo(mo(r))),po(xo(mo(r)))),i=fn(Ip(bo(s.x.mul(e.xyz))),Ip(bo(s.y.mul(e.xyz)))),n=_o(mo(r)),a=wa(Ma(n.oneMinus(),i.x),Ma(n,i.y)),o=$o(n,n.oneMinus()),u=Tn(a.mul(a).div(Ma(2,o).mul(Ca(1,o))),a.sub(Ma(.5,o)).div(Ca(1,o)),Ca(1,Ca(1,a).mul(Ca(1,a)).div(Ma(2,o).mul(Ca(1,o))))),l=a.lessThan(o.oneMinus()).select(a.lessThan(o).select(u.x,u.y),u.z);return nu(l,1e-6,1)}).setLayout({name:"getAlphaHashThreshold",type:"float",inputs:[{name:"position",type:"vec3"}]});class Vp extends Nl{static get type(){return"VertexColorNode"}constructor(e){super(null,"vec4"),this.isVertexColorNode=!0,this.index=e}getAttributeName(){const e=this.index;return"color"+(e>0?e:"")}generate(e){const t=this.getAttributeName(e);let r;return r=!0===e.hasGeometryAttribute(t)?super.generate(e):e.generateConst(this.nodeType,new s(1,1,1,1)),r}serialize(e){super.serialize(e),e.index=this.index}deserialize(e){super.deserialize(e),this.index=e.index}}const kp=(e=0)=>Yi(new Vp(e)),Gp=an(([e,t])=>$o(1,e.oneMinus().div(t)).oneMinus()).setLayout({name:"blendBurn",type:"vec3",inputs:[{name:"base",type:"vec3"},{name:"blend",type:"vec3"}]}),zp=an(([e,t])=>$o(e.div(t.oneMinus()),1)).setLayout({name:"blendDodge",type:"vec3",inputs:[{name:"base",type:"vec3"},{name:"blend",type:"vec3"}]}),$p=an(([e,t])=>e.oneMinus().mul(t.oneMinus()).oneMinus()).setLayout({name:"blendScreen",type:"vec3",inputs:[{name:"base",type:"vec3"},{name:"blend",type:"vec3"}]}),Wp=an(([e,t])=>iu(e.mul(2).mul(t),e.oneMinus().mul(2).mul(t.oneMinus()).oneMinus(),Ho(.5,e))).setLayout({name:"blendOverlay",type:"vec3",inputs:[{name:"base",type:"vec3"},{name:"blend",type:"vec3"}]}),Hp=an(([e,t])=>{const r=t.a.add(e.a.mul(t.a.oneMinus()));return Sn(t.rgb.mul(t.a).add(e.rgb.mul(e.a).mul(t.a.oneMinus())).div(r),r)}).setLayout({name:"blendColor",type:"vec4",inputs:[{name:"base",type:"vec4"},{name:"blend",type:"vec4"}]}),jp=an(([e])=>Sn(e.rgb.mul(e.a),e.a),{color:"vec4",return:"vec4"}),qp=an(([e])=>(ln(e.a.equal(0),()=>Sn(0)),Sn(e.rgb.div(e.a),e.a)),{color:"vec4",return:"vec4"});class Xp extends K{static get type(){return"NodeMaterial"}get type(){return this.constructor.type}set type(e){}constructor(){super(),this.isNodeMaterial=!0,this.fog=!0,this.lights=!1,this.hardwareClipping=!1,this.lightsNode=null,this.envNode=null,this.aoNode=null,this.colorNode=null,this.normalNode=null,this.opacityNode=null,this.backdropNode=null,this.backdropAlphaNode=null,this.alphaTestNode=null,this.maskNode=null,this.positionNode=null,this.geometryNode=null,this.depthNode=null,this.receivedShadowPositionNode=null,this.castShadowPositionNode=null,this.receivedShadowNode=null,this.castShadowNode=null,this.outputNode=null,this.mrtNode=null,this.fragmentNode=null,this.vertexNode=null,this.contextNode=null,Object.defineProperty(this,"shadowPositionNode",{get:()=>this.receivedShadowPositionNode,set:e=>{d('NodeMaterial: ".shadowPositionNode" was renamed to ".receivedShadowPositionNode".'),this.receivedShadowPositionNode=e}})}_getNodeChildren(){const e=[];for(const t of Object.getOwnPropertyNames(this)){if(!0===t.startsWith("_"))continue;const r=this[t];r&&!0===r.isNode&&e.push({property:t,childNode:r})}return e}customProgramCacheKey(){const e=[];for(const{property:t,childNode:r}of this._getNodeChildren())e.push(Fs(t.slice(0,-4)),r.getCacheKey());return this.type+Ds(e)}build(e){this.setup(e)}setupObserver(e){return new Ls(e)}setup(e){e.context.setupNormal=()=>Lu(this.setupNormal(e),"NORMAL","vec3"),e.context.setupPositionView=()=>this.setupPositionView(e),e.context.setupModelViewProjection=()=>this.setupModelViewProjection(e);const t=e.renderer,r=t.getRenderTarget();!0===t.contextNode.isContextNode?e.context={...e.context,...t.contextNode.getFlowContextData()}:o('NodeMaterial: "renderer.contextNode" must be an instance of `context()`.'),null!==this.contextNode&&(!0===this.contextNode.isContextNode?e.context={...e.context,...this.contextNode.getFlowContextData()}:o('NodeMaterial: "material.contextNode" must be an instance of `context()`.')),e.addStack();const s=Lu(this.setupVertex(e),"VERTEX"),i=this.vertexNode||s;let n;e.stack.outputNode=i,this.setupHardwareClipping(e),null!==this.geometryNode&&(e.stack.outputNode=e.stack.outputNode.bypass(this.geometryNode)),e.addFlow("vertex",e.removeStack()),e.addStack();const a=this.setupClipping(e);if(!0!==this.depthWrite&&!0!==this.depthTest||(null!==r?!0===r.depthBuffer&&this.setupDepth(e):!0===t.depth&&this.setupDepth(e)),null===this.fragmentNode){this.setupDiffuseColor(e),this.setupVariants(e);const s=this.setupLighting(e);null!==a&&e.stack.addToStack(a);const i=Sn(s,Un.a).max(0);n=this.setupOutput(e,i),ra.assign(n);const o=null!==this.outputNode;if(o&&(n=this.outputNode),e.context.getOutput&&(n=e.context.getOutput(n,e)),null!==r){const e=t.getMRT(),r=this.mrtNode;null!==e?(o&&ra.assign(n),n=e,null!==r&&(n=e.merge(r))):null!==r&&(n=r)}}else{let t=this.fragmentNode;!0!==t.isOutputStructNode&&(t=Sn(t)),n=this.setupOutput(e,t)}e.stack.outputNode=n,e.addFlow("fragment",e.removeStack()),e.observer=this.setupObserver(e)}setupClipping(e){if(null===e.clippingContext)return null;const{unionPlanes:t,intersectionPlanes:r}=e.clippingContext;let s=null;if(t.length>0||r.length>0){const t=e.renderer.currentSamples;this.alphaToCoverage&&t>1?s=Yi(new Dp(Dp.ALPHA_TO_COVERAGE)):e.stack.addToStack(Yi(new Dp))}return s}setupHardwareClipping(e){if(this.hardwareClipping=!1,null===e.clippingContext)return;const t=e.clippingContext.unionPlanes.length;t>0&&t<=8&&e.isAvailable("clipDistance")&&(e.stack.addToStack(Yi(new Dp(Dp.HARDWARE))),this.hardwareClipping=!0)}setupDepth(e){const{renderer:t,camera:r}=e;let s=this.depthNode;if(null===s){const e=t.getMRT();e&&e.has("depth")?s=e.get("depth"):!0===t.logarithmicDepthBuffer&&(s=r.isPerspectiveCamera?Mp(Dd.z,ed,td):Ep(Dd.z,ed,td))}null!==s&&Lp.assign(s).toStack()}setupPositionView(){return Ad.mul(Bd).xyz}setupModelViewProjection(){return rd.mul(Dd)}setupVertex(e){return e.addStack(),this.setupPosition(e),e.context.vertex=e.removeStack(),Vh}setupPosition(e){const{object:t,geometry:r}=e;if((r.morphAttributes.position||r.morphAttributes.normal||r.morphAttributes.color)&&pp(t).toStack(),!0===t.isSkinnedMesh&&np(t).toStack(),this.displacementMap){const e=bc("displacementMap","texture"),t=bc("displacementScale","float"),r=bc("displacementBias","float");Bd.addAssign(zd.normalize().mul(e.x.mul(t).add(r)))}return t.isBatchedMesh&&rp(t).toStack(),t.isInstancedMesh&&t.instanceMatrix&&!0===t.instanceMatrix.isInstancedBufferAttribute&&ep(t).toStack(),null!==this.positionNode&&Bd.assign(Lu(this.positionNode,"POSITION","vec3")),Bd}setupDiffuseColor(e){const{object:t,geometry:r}=e;null!==this.maskNode&&mn(this.maskNode).not().discard();let s=this.colorNode?Sn(this.colorNode):rh;if(!0===this.vertexColors&&r.hasAttribute("color")&&(s=s.mul(kp())),t.instanceColor){s=Dn("vec3","vInstanceColor").mul(s)}if(t.isBatchedMesh&&t._colorsTexture){s=Dn("vec3","vBatchColor").mul(s)}Un.assign(s);const i=this.opacityNode?hn(this.opacityNode):nh;Un.a.assign(Un.a.mul(i));let n=null;(null!==this.alphaTestNode||this.alphaTest>0)&&(n=null!==this.alphaTestNode?hn(this.alphaTestNode):th,!0===this.alphaToCoverage?(Un.a=uu(n,n.add(Oo(Un.a)),Un.a),Un.a.lessThanEqual(0).discard()):Un.a.lessThanEqual(n).discard()),!0===this.alphaHash&&Un.a.lessThan(Op(Bd)).discard(),e.isOpaque()&&Un.a.assign(1)}setupVariants(){}setupOutgoingLight(){return!0===this.lights?Tn(0):Un.rgb}setupNormal(){return this.normalNode?Tn(this.normalNode):ph}setupEnvironment(){let e=null;return this.envNode?e=this.envNode:this.envMap&&(e=this.envMap.isCubeTexture?bc("envMap","cubeTexture"):bc("envMap","texture")),e}setupLightMap(e){let t=null;return e.material.lightMap&&(t=new bp(Uh)),t}setupLights(e){const t=[],r=this.setupEnvironment(e);r&&r.isLightingNode&&t.push(r);const s=this.setupLightMap(e);s&&s.isLightingNode&&t.push(s);let i=this.aoNode;null===i&&e.material.aoMap&&(i=Ih),e.context.getAO&&(i=e.context.getAO(i,e)),i&&t.push(new mp(i));let n=this.lightsNode||e.lightsNode;return t.length>0&&(n=e.renderer.lighting.createNode([...n.getLights(),...t])),n}setupLightingModel(){}setupLighting(e){const{material:t}=e,{backdropNode:r,backdropAlphaNode:s,emissiveNode:i}=this,n=!0===this.lights||null!==this.lightsNode?this.setupLights(e):null;let a=this.setupOutgoingLight(e);if(n&&n.getScope().hasLights){const t=this.setupLightingModel(e)||null;a=yp(n,t,r,s)}else null!==r&&(a=Tn(null!==s?iu(a,r,s):r));return(i&&!0===i.isNode||t.emissive&&!0===t.emissive.isColor)&&(On.assign(Tn(i||ih)),a=a.add(On)),a}setupFog(e,t){const r=e.fogNode;return r&&(ra.assign(t),t=Sn(r.toVar())),t}setupPremultipliedAlpha(e,t){return jp(t)}setupOutput(e,t){return!0===this.fog&&(t=this.setupFog(e,t)),!0===this.premultipliedAlpha&&(t=this.setupPremultipliedAlpha(e,t)),t}setDefaultValues(e){for(const t in e){const r=e[t];void 0===this[t]&&(this[t]=r,r&&r.clone&&(this[t]=r.clone()))}const t=Object.getOwnPropertyDescriptors(e.constructor.prototype);for(const e in t)void 0===Object.getOwnPropertyDescriptor(this.constructor.prototype,e)&&void 0!==t[e].get&&Object.defineProperty(this.constructor.prototype,e,t[e])}toJSON(e){const t=void 0===e||"string"==typeof e;t&&(e={textures:{},images:{},nodes:{}});const r=K.prototype.toJSON.call(this,e);r.inputNodes={};for(const{property:t,childNode:s}of this._getNodeChildren())r.inputNodes[t]=s.toJSON(e).uuid;function s(e){const t=[];for(const r in e){const s=e[r];delete s.metadata,t.push(s)}return t}if(t){const t=s(e.textures),i=s(e.images),n=s(e.nodes);t.length>0&&(r.textures=t),i.length>0&&(r.images=i),n.length>0&&(r.nodes=n)}return r}copy(e){return this.lightsNode=e.lightsNode,this.envNode=e.envNode,this.aoNode=e.aoNode,this.colorNode=e.colorNode,this.normalNode=e.normalNode,this.opacityNode=e.opacityNode,this.backdropNode=e.backdropNode,this.backdropAlphaNode=e.backdropAlphaNode,this.alphaTestNode=e.alphaTestNode,this.maskNode=e.maskNode,this.positionNode=e.positionNode,this.geometryNode=e.geometryNode,this.depthNode=e.depthNode,this.receivedShadowPositionNode=e.receivedShadowPositionNode,this.castShadowPositionNode=e.castShadowPositionNode,this.receivedShadowNode=e.receivedShadowNode,this.castShadowNode=e.castShadowNode,this.outputNode=e.outputNode,this.mrtNode=e.mrtNode,this.fragmentNode=e.fragmentNode,this.vertexNode=e.vertexNode,this.contextNode=e.contextNode,super.copy(e)}}const Kp=new Y;class Yp extends Xp{static get type(){return"LineBasicNodeMaterial"}constructor(e){super(),this.isLineBasicNodeMaterial=!0,this.setDefaultValues(Kp),this.setValues(e)}}const Qp=new Q;class Zp extends Xp{static get type(){return"LineDashedNodeMaterial"}constructor(e){super(),this.isLineDashedNodeMaterial=!0,this.setDefaultValues(Qp),this.dashOffset=0,this.offsetNode=null,this.dashScaleNode=null,this.dashSizeNode=null,this.gapSizeNode=null,this.setValues(e)}setupVariants(){const e=this.offsetNode?hn(this.offsetNode):Ph,t=this.dashScaleNode?hn(this.dashScaleNode):Ch,r=this.dashSizeNode?hn(this.dashSizeNode):Mh,s=this.gapSizeNode?hn(this.gapSizeNode):Bh;sa.assign(r),ia.assign(s);const i=Fu(Sl("lineDistance").mul(t));(e?i.add(e):i).mod(sa.add(ia)).greaterThan(sa).discard()}}let Jp=null;class eg extends Tp{static get type(){return"ViewportSharedTextureNode"}constructor(e=Hl,t=null){null===Jp&&(Jp=new j),super(e,t,Jp)}getTextureForReference(){return Jp}updateReference(){return this}}const tg=en(eg).setParameterLength(0,2),rg=new Q;class sg extends Xp{static get type(){return"Line2NodeMaterial"}constructor(e={}){super(),this.isLine2NodeMaterial=!0,this.setDefaultValues(rg),this.useColor=e.vertexColors,this.dashOffset=0,this.lineColorNode=null,this.offsetNode=null,this.dashScaleNode=null,this.dashSizeNode=null,this.gapSizeNode=null,this.blending=Z,this._useDash=e.dashed,this._useAlphaToCoverage=!0,this._useWorldUnits=!1,this.setValues(e)}setup(e){const{renderer:t}=e,r=this._useAlphaToCoverage,s=this.useColor,i=this._useDash,n=this._useWorldUnits,a=an(({start:e,end:t})=>{const r=rd.element(2).element(2),s=rd.element(3).element(2).mul(-.5).div(r).sub(e.z).div(t.z.sub(e.z));return Sn(iu(e.xyz,t.xyz,s),t.w)}).setLayout({name:"trimSegment",type:"vec4",inputs:[{name:"start",type:"vec4"},{name:"end",type:"vec4"}]});this.vertexNode=an(()=>{const e=Sl("instanceStart"),t=Sl("instanceEnd"),r=Sn(Ad.mul(Sn(e,1))).toVar("start"),s=Sn(Ad.mul(Sn(t,1))).toVar("end");if(i){const e=this.dashScaleNode?hn(this.dashScaleNode):Ch,t=this.offsetNode?hn(this.offsetNode):Ph,r=Sl("instanceDistanceStart"),s=Sl("instanceDistanceEnd");let i=Md.y.lessThan(.5).select(e.mul(r),e.mul(s));i=i.add(t),Dn("float","lineDistance").assign(i)}n&&(Dn("vec3","worldStart").assign(r.xyz),Dn("vec3","worldEnd").assign(s.xyz));const o=Xl.z.div(Xl.w),u=rd.element(2).element(3).equal(-1);ln(u,()=>{ln(r.z.lessThan(0).and(s.z.greaterThan(0)),()=>{s.assign(a({start:r,end:s}))}).ElseIf(s.z.lessThan(0).and(r.z.greaterThanEqual(0)),()=>{r.assign(a({start:s,end:r}))})});const l=rd.mul(r),d=rd.mul(s),c=l.xyz.div(l.w),h=d.xyz.div(d.w),p=h.xy.sub(c.xy).toVar();p.x.assign(p.x.mul(o)),p.assign(p.normalize());const g=Sn().toVar();if(n){const e=s.xyz.sub(r.xyz).normalize(),t=iu(r.xyz,s.xyz,.5).normalize(),n=e.cross(t).normalize(),a=e.cross(n),o=Dn("vec4","worldPos");o.assign(Md.y.lessThan(.5).select(r,s));const u=Lh.mul(.5);o.addAssign(Sn(Md.x.lessThan(0).select(n.mul(u),n.mul(u).negate()),0)),i||(o.addAssign(Sn(Md.y.lessThan(.5).select(e.mul(u).negate(),e.mul(u)),0)),o.addAssign(Sn(a.mul(u),0)),ln(Md.y.greaterThan(1).or(Md.y.lessThan(0)),()=>{o.subAssign(Sn(a.mul(2).mul(u),0))})),g.assign(rd.mul(o));const l=Tn().toVar();l.assign(Md.y.lessThan(.5).select(c,h)),g.z.assign(l.z.mul(g.w))}else{const e=fn(p.y,p.x.negate()).toVar("offset");p.x.assign(p.x.div(o)),e.x.assign(e.x.div(o)),e.assign(Md.x.lessThan(0).select(e.negate(),e)),ln(Md.y.lessThan(0),()=>{e.assign(e.sub(p))}).ElseIf(Md.y.greaterThan(1),()=>{e.assign(e.add(p))}),e.assign(e.mul(Lh)),e.assign(e.div(Xl.w.div(Wl))),g.assign(Md.y.lessThan(.5).select(l,d)),e.assign(e.mul(g.w)),g.assign(g.add(Sn(e,0,0)))}return g})();const o=an(({p1:e,p2:t,p3:r,p4:s})=>{const i=e.sub(r),n=s.sub(r),a=t.sub(e),o=i.dot(n),u=n.dot(a),l=i.dot(a),d=n.dot(n),c=a.dot(a).mul(d).sub(u.mul(u)),h=o.mul(u).sub(l.mul(d)).div(c).clamp(),p=o.add(u.mul(h)).div(d).clamp();return fn(h,p)});if(this.colorNode=an(()=>{const e=Rl();if(i){const t=this.dashSizeNode?hn(this.dashSizeNode):Mh,r=this.gapSizeNode?hn(this.gapSizeNode):Bh;sa.assign(t),ia.assign(r);const s=Dn("float","lineDistance");e.y.lessThan(-1).or(e.y.greaterThan(1)).discard(),s.mod(sa.add(ia)).greaterThan(sa).discard()}const a=hn(1).toVar("alpha");if(n){const e=Dn("vec3","worldStart"),s=Dn("vec3","worldEnd"),n=Dn("vec4","worldPos").xyz.normalize().mul(1e5),u=s.sub(e),l=o({p1:e,p2:s,p3:Tn(0,0,0),p4:n}),d=e.add(u.mul(l.x)),c=n.mul(l.y),h=d.sub(c).length().div(Lh);if(!i)if(r&&t.currentSamples>0){const e=h.fwidth();a.assign(uu(e.negate().add(.5),e.add(.5),h).oneMinus())}else h.greaterThan(.5).discard()}else if(r&&t.currentSamples>0){const t=e.x,r=e.y.greaterThan(0).select(e.y.sub(1),e.y.add(1)),s=t.mul(t).add(r.mul(r)),i=hn(s.fwidth()).toVar("dlen");ln(e.y.abs().greaterThan(1),()=>{a.assign(uu(i.oneMinus(),i.add(1),s).oneMinus())})}else ln(e.y.abs().greaterThan(1),()=>{const t=e.x,r=e.y.greaterThan(0).select(e.y.sub(1),e.y.add(1));t.mul(t).add(r.mul(r)).greaterThan(1).discard()});let u;if(this.lineColorNode)u=this.lineColorNode;else if(s){const e=Sl("instanceColorStart"),t=Sl("instanceColorEnd");u=Md.y.lessThan(.5).select(e,t).mul(rh)}else u=rh;return Sn(u,a)})(),this.transparent){const e=this.opacityNode?hn(this.opacityNode):nh;this.outputNode=Sn(this.colorNode.rgb.mul(e).add(tg().rgb.mul(e.oneMinus())),this.colorNode.a)}super.setup(e)}get worldUnits(){return this._useWorldUnits}set worldUnits(e){this._useWorldUnits!==e&&(this._useWorldUnits=e,this.needsUpdate=!0)}get dashed(){return this._useDash}set dashed(e){this._useDash!==e&&(this._useDash=e,this.needsUpdate=!0)}get alphaToCoverage(){return this._useAlphaToCoverage}set alphaToCoverage(e){this._useAlphaToCoverage!==e&&(this._useAlphaToCoverage=e,this.needsUpdate=!0)}}const ig=new J;class ng extends Xp{static get type(){return"MeshNormalNodeMaterial"}constructor(e){super(),this.isMeshNormalNodeMaterial=!0,this.setDefaultValues(ig),this.setValues(e)}setupDiffuseColor(){const e=this.opacityNode?hn(this.opacityNode):nh;Un.assign(Gu(Sn(Hc(jd),e),ee))}}const ag=an(([e=Fd])=>{const t=e.z.atan(e.x).mul(1/(2*Math.PI)).add(.5),r=e.y.clamp(-1,1).asin().mul(1/Math.PI).add(.5);return fn(t,r)});class og extends te{constructor(e=1,t={}){super(e,t),this.isCubeRenderTarget=!0}fromEquirectangularTexture(e,t){const r=t.minFilter,s=t.generateMipmaps;t.generateMipmaps=!0,this.texture.type=t.type,this.texture.colorSpace=t.colorSpace,this.texture.generateMipmaps=t.generateMipmaps,this.texture.minFilter=t.minFilter,this.texture.magFilter=t.magFilter;const i=new re(5,5,5),n=ag(Fd),a=new Xp;a.colorNode=Pl(t,n,0),a.side=w,a.blending=Z;const o=new se(i,a),u=new ie;u.add(o),t.minFilter===q&&(t.minFilter=ne);const l=new ae(1,10,this),d=e.getMRT();return e.setMRT(null),l.update(e,u),e.setMRT(d),t.minFilter=r,t.currentGenerateMipmaps=s,o.geometry.dispose(),o.material.dispose(),this}}const ug=new WeakMap;class lg extends li{static get type(){return"CubeMapNode"}constructor(e){super("vec3"),this.envNode=e,this._cubeTexture=null,this._cubeTextureNode=hc(null);const t=new B;t.isRenderTargetTexture=!0,this._defaultTexture=t,this.updateBeforeType=Qs.RENDER}updateBefore(e){const{renderer:t,material:r}=e,s=this.envNode;if(s.isTextureNode||s.isMaterialReferenceNode){const e=s.isTextureNode?s.value:r[s.property];if(e&&e.isTexture){const r=e.mapping;if(r===oe||r===ue){if(ug.has(e)){const t=ug.get(e);cg(t,e.mapping),this._cubeTexture=t}else{const r=e.image;if(function(e){return null!=e&&e.height>0}(r)){const s=new og(r.height);s.fromEquirectangularTexture(t,e),cg(s.texture,e.mapping),this._cubeTexture=s.texture,ug.set(e,s.texture),e.addEventListener("dispose",dg)}else this._cubeTexture=this._defaultTexture}this._cubeTextureNode.value=this._cubeTexture}else this._cubeTextureNode=this.envNode}}}setup(e){return this.updateBefore(e),this._cubeTextureNode}}function dg(e){const t=e.target;t.removeEventListener("dispose",dg);const r=ug.get(t);void 0!==r&&(ug.delete(t),r.dispose())}function cg(e,t){t===oe?e.mapping=L:t===ue&&(e.mapping=P)}const hg=en(lg).setParameterLength(1);class pg extends gp{static get type(){return"BasicEnvironmentNode"}constructor(e=null){super(),this.envNode=e}setup(e){e.context.environment=hg(this.envNode)}}class gg extends gp{static get type(){return"BasicLightMapNode"}constructor(e=null){super(),this.lightMapNode=e}setup(e){const t=hn(1/Math.PI);e.context.irradianceLightMap=this.lightMapNode.mul(t)}}class mg{start(e){e.lightsNode.setupLights(e,e.lightsNode.getLightNodes(e)),this.indirect(e)}finish(){}direct(){}directRectArea(){}indirect(){}ambientOcclusion(){}}class fg extends mg{constructor(){super()}indirect({context:e}){const t=e.ambientOcclusion,r=e.reflectedLight,s=e.irradianceLightMap;r.indirectDiffuse.assign(Sn(0)),s?r.indirectDiffuse.addAssign(s):r.indirectDiffuse.addAssign(Sn(1,1,1,0)),r.indirectDiffuse.mulAssign(t),r.indirectDiffuse.mulAssign(Un.rgb)}finish(e){const{material:t,context:r}=e,s=r.outgoingLight,i=e.context.environment;if(i)switch(t.combine){case ce:s.rgb.assign(iu(s.rgb,s.rgb.mul(i.rgb),lh.mul(dh)));break;case de:s.rgb.assign(iu(s.rgb,i.rgb,lh.mul(dh)));break;case le:s.rgb.addAssign(i.rgb.mul(lh.mul(dh)));break;default:d("BasicLightingModel: Unsupported .combine value:",t.combine)}}}const yg=new he;class bg extends Xp{static get type(){return"MeshBasicNodeMaterial"}constructor(e){super(),this.isMeshBasicNodeMaterial=!0,this.lights=!0,this.setDefaultValues(yg),this.setValues(e)}setupNormal(){return kd(Wd)}setupEnvironment(e){const t=super.setupEnvironment(e);return t?new pg(t):null}setupLightMap(e){let t=null;return e.material.lightMap&&(t=new gg(Uh)),t}setupOutgoingLight(){return Un.rgb}setupLightingModel(){return new fg}}const xg=an(({f0:e,f90:t,dotVH:r})=>{const s=r.mul(-5.55473).sub(6.98316).mul(r).exp2();return e.mul(s.oneMinus()).add(t.mul(s))}),Tg=an(e=>e.diffuseColor.mul(1/Math.PI)),_g=an(({dotNH:e})=>ta.mul(hn(.5)).add(1).mul(hn(1/Math.PI)).mul(e.pow(ta))),vg=an(({lightDirection:e})=>{const t=e.add(Ud).normalize(),r=jd.dot(t).clamp(),s=Ud.dot(t).clamp(),i=xg({f0:Zn,f90:1,dotVH:s}),n=hn(.25),a=_g({dotNH:r});return i.mul(n).mul(a)});class Ng extends fg{constructor(e=!0){super(),this.specular=e}direct({lightDirection:e,lightColor:t,reflectedLight:r}){const s=jd.dot(e).clamp().mul(t);r.directDiffuse.addAssign(s.mul(Tg({diffuseColor:Un.rgb}))),!0===this.specular&&r.directSpecular.addAssign(s.mul(vg({lightDirection:e})).mul(lh))}indirect(e){const{ambientOcclusion:t,irradiance:r,reflectedLight:s}=e.context;s.indirectDiffuse.addAssign(r.mul(Tg({diffuseColor:Un}))),s.indirectDiffuse.mulAssign(t)}}const Sg=new pe;class Rg extends Xp{static get type(){return"MeshLambertNodeMaterial"}constructor(e){super(),this.isMeshLambertNodeMaterial=!0,this.lights=!0,this.setDefaultValues(Sg),this.setValues(e)}setupEnvironment(e){const t=super.setupEnvironment(e);return t?new pg(t):null}setupLightingModel(){return new Ng(!1)}}const Ag=new ge;class Eg extends Xp{static get type(){return"MeshPhongNodeMaterial"}constructor(e){super(),this.isMeshPhongNodeMaterial=!0,this.lights=!0,this.shininessNode=null,this.specularNode=null,this.setDefaultValues(Ag),this.setValues(e)}setupEnvironment(e){const t=super.setupEnvironment(e);return t?new pg(t):null}setupLightingModel(){return new Ng}setupVariants(){const e=(this.shininessNode?hn(this.shininessNode):sh).max(1e-4);ta.assign(e);const t=this.specularNode||ah;Zn.assign(t)}copy(e){return this.shininessNode=e.shininessNode,this.specularNode=e.specularNode,super.copy(e)}}const wg=an(e=>{if(!1===e.geometry.hasAttribute("normal"))return hn(0);const t=Wd.dFdx().abs().max(Wd.dFdy().abs());return t.x.max(t.y).max(t.z)}),Cg=an(e=>{const{roughness:t}=e,r=wg();let s=t.max(.0525);return s=s.add(r),s=s.min(1),s}),Mg=an(({alpha:e,dotNL:t,dotNV:r})=>{const s=e.pow2(),i=t.mul(s.add(s.oneMinus().mul(r.pow2())).sqrt()),n=r.mul(s.add(s.oneMinus().mul(t.pow2())).sqrt());return Ba(.5,i.add(n).max(to))}).setLayout({name:"V_GGX_SmithCorrelated",type:"float",inputs:[{name:"alpha",type:"float"},{name:"dotNL",type:"float"},{name:"dotNV",type:"float"}]}),Bg=an(({alphaT:e,alphaB:t,dotTV:r,dotBV:s,dotTL:i,dotBL:n,dotNV:a,dotNL:o})=>{const u=o.mul(Tn(e.mul(r),t.mul(s),a).length()),l=a.mul(Tn(e.mul(i),t.mul(n),o).length());return Ba(.5,u.add(l))}).setLayout({name:"V_GGX_SmithCorrelated_Anisotropic",type:"float",inputs:[{name:"alphaT",type:"float",qualifier:"in"},{name:"alphaB",type:"float",qualifier:"in"},{name:"dotTV",type:"float",qualifier:"in"},{name:"dotBV",type:"float",qualifier:"in"},{name:"dotTL",type:"float",qualifier:"in"},{name:"dotBL",type:"float",qualifier:"in"},{name:"dotNV",type:"float",qualifier:"in"},{name:"dotNL",type:"float",qualifier:"in"}]}),Lg=an(({alpha:e,dotNH:t})=>{const r=e.pow2(),s=t.pow2().mul(r.oneMinus()).oneMinus();return r.div(s.pow2()).mul(1/Math.PI)}).setLayout({name:"D_GGX",type:"float",inputs:[{name:"alpha",type:"float"},{name:"dotNH",type:"float"}]}),Pg=hn(1/Math.PI),Fg=an(({alphaT:e,alphaB:t,dotNH:r,dotTH:s,dotBH:i})=>{const n=e.mul(t),a=Tn(t.mul(s),e.mul(i),n.mul(r)),o=a.dot(a),u=n.div(o);return Pg.mul(n.mul(u.pow2()))}).setLayout({name:"D_GGX_Anisotropic",type:"float",inputs:[{name:"alphaT",type:"float",qualifier:"in"},{name:"alphaB",type:"float",qualifier:"in"},{name:"dotNH",type:"float",qualifier:"in"},{name:"dotTH",type:"float",qualifier:"in"},{name:"dotBH",type:"float",qualifier:"in"}]}),Dg=an(({lightDirection:e,f0:t,f90:r,roughness:s,f:i,normalView:n=jd,USE_IRIDESCENCE:a,USE_ANISOTROPY:o})=>{const u=s.pow2(),l=e.add(Ud).normalize(),d=n.dot(e).clamp(),c=n.dot(Ud).clamp(),h=n.dot(l).clamp(),p=Ud.dot(l).clamp();let g,m,f=xg({f0:t,f90:r,dotVH:p});if(qi(a)&&(f=Hn.mix(f,i)),qi(o)){const t=Yn.dot(e),r=Yn.dot(Ud),s=Yn.dot(l),i=Qn.dot(e),n=Qn.dot(Ud),a=Qn.dot(l);g=Bg({alphaT:Xn,alphaB:u,dotTV:r,dotBV:n,dotTL:t,dotBL:i,dotNV:c,dotNL:d}),m=Fg({alphaT:Xn,alphaB:u,dotNH:h,dotTH:s,dotBH:a})}else g=Mg({alpha:u,dotNL:d,dotNV:c}),m=Lg({alpha:u,dotNH:h});return f.mul(g).mul(m)}),Ug=new Uint16Array([12469,15057,12620,14925,13266,14620,13807,14376,14323,13990,14545,13625,14713,13328,14840,12882,14931,12528,14996,12233,15039,11829,15066,11525,15080,11295,15085,10976,15082,10705,15073,10495,13880,14564,13898,14542,13977,14430,14158,14124,14393,13732,14556,13410,14702,12996,14814,12596,14891,12291,14937,11834,14957,11489,14958,11194,14943,10803,14921,10506,14893,10278,14858,9960,14484,14039,14487,14025,14499,13941,14524,13740,14574,13468,14654,13106,14743,12678,14818,12344,14867,11893,14889,11509,14893,11180,14881,10751,14852,10428,14812,10128,14765,9754,14712,9466,14764,13480,14764,13475,14766,13440,14766,13347,14769,13070,14786,12713,14816,12387,14844,11957,14860,11549,14868,11215,14855,10751,14825,10403,14782,10044,14729,9651,14666,9352,14599,9029,14967,12835,14966,12831,14963,12804,14954,12723,14936,12564,14917,12347,14900,11958,14886,11569,14878,11247,14859,10765,14828,10401,14784,10011,14727,9600,14660,9289,14586,8893,14508,8533,15111,12234,15110,12234,15104,12216,15092,12156,15067,12010,15028,11776,14981,11500,14942,11205,14902,10752,14861,10393,14812,9991,14752,9570,14682,9252,14603,8808,14519,8445,14431,8145,15209,11449,15208,11451,15202,11451,15190,11438,15163,11384,15117,11274,15055,10979,14994,10648,14932,10343,14871,9936,14803,9532,14729,9218,14645,8742,14556,8381,14461,8020,14365,7603,15273,10603,15272,10607,15267,10619,15256,10631,15231,10614,15182,10535,15118,10389,15042,10167,14963,9787,14883,9447,14800,9115,14710,8665,14615,8318,14514,7911,14411,7507,14279,7198,15314,9675,15313,9683,15309,9712,15298,9759,15277,9797,15229,9773,15166,9668,15084,9487,14995,9274,14898,8910,14800,8539,14697,8234,14590,7790,14479,7409,14367,7067,14178,6621,15337,8619,15337,8631,15333,8677,15325,8769,15305,8871,15264,8940,15202,8909,15119,8775,15022,8565,14916,8328,14804,8009,14688,7614,14569,7287,14448,6888,14321,6483,14088,6171,15350,7402,15350,7419,15347,7480,15340,7613,15322,7804,15287,7973,15229,8057,15148,8012,15046,7846,14933,7611,14810,7357,14682,7069,14552,6656,14421,6316,14251,5948,14007,5528,15356,5942,15356,5977,15353,6119,15348,6294,15332,6551,15302,6824,15249,7044,15171,7122,15070,7050,14949,6861,14818,6611,14679,6349,14538,6067,14398,5651,14189,5311,13935,4958,15359,4123,15359,4153,15356,4296,15353,4646,15338,5160,15311,5508,15263,5829,15188,6042,15088,6094,14966,6001,14826,5796,14678,5543,14527,5287,14377,4985,14133,4586,13869,4257,15360,1563,15360,1642,15358,2076,15354,2636,15341,3350,15317,4019,15273,4429,15203,4732,15105,4911,14981,4932,14836,4818,14679,4621,14517,4386,14359,4156,14083,3795,13808,3437,15360,122,15360,137,15358,285,15355,636,15344,1274,15322,2177,15281,2765,15215,3223,15120,3451,14995,3569,14846,3567,14681,3466,14511,3305,14344,3121,14037,2800,13753,2467,15360,0,15360,1,15359,21,15355,89,15346,253,15325,479,15287,796,15225,1148,15133,1492,15008,1749,14856,1882,14685,1886,14506,1783,14324,1608,13996,1398,13702,1183]);let Ig=null;const Og=an(({roughness:e,dotNV:t})=>{null===Ig&&(Ig=new me(Ug,16,16,V,fe),Ig.name="DFG_LUT",Ig.minFilter=ne,Ig.magFilter=ne,Ig.wrapS=ye,Ig.wrapT=ye,Ig.generateMipmaps=!1,Ig.needsUpdate=!0);const r=fn(e,t);return Pl(Ig,r).rg}),Vg=an(({lightDirection:e,f0:t,f90:r,roughness:s,f:i,USE_IRIDESCENCE:n,USE_ANISOTROPY:a})=>{const o=Dg({lightDirection:e,f0:t,f90:r,roughness:s,f:i,USE_IRIDESCENCE:n,USE_ANISOTROPY:a}),u=jd.dot(e).clamp(),l=jd.dot(Ud).clamp(),d=Og({roughness:s,dotNV:l}),c=Og({roughness:s,dotNV:u}),h=t.mul(d.x).add(r.mul(d.y)),p=t.mul(c.x).add(r.mul(c.y)),g=d.x.add(d.y),m=c.x.add(c.y),f=hn(1).sub(g),y=hn(1).sub(m),b=t.add(t.oneMinus().mul(.047619)),x=h.mul(p).mul(b).div(hn(1).sub(f.mul(y).mul(b).mul(b)).add(to)),T=f.mul(y),_=x.mul(T);return o.add(_)}),kg=an(e=>{const{dotNV:t,specularColor:r,specularF90:s,roughness:i}=e,n=Og({dotNV:t,roughness:i});return r.mul(n.x).add(s.mul(n.y))}),Gg=an(({f:e,f90:t,dotVH:r})=>{const s=r.oneMinus().saturate(),i=s.mul(s),n=s.mul(i,i).clamp(0,.9999);return e.sub(Tn(t).mul(n)).div(n.oneMinus())}).setLayout({name:"Schlick_to_F0",type:"vec3",inputs:[{name:"f",type:"vec3"},{name:"f90",type:"float"},{name:"dotVH",type:"float"}]}),zg=an(({roughness:e,dotNH:t})=>{const r=e.pow2(),s=hn(1).div(r),i=t.pow2().oneMinus().max(.0078125);return hn(2).add(s).mul(i.pow(s.mul(.5))).div(2*Math.PI)}).setLayout({name:"D_Charlie",type:"float",inputs:[{name:"roughness",type:"float"},{name:"dotNH",type:"float"}]}),$g=an(({dotNV:e,dotNL:t})=>hn(1).div(hn(4).mul(t.add(e).sub(t.mul(e))))).setLayout({name:"V_Neubelt",type:"float",inputs:[{name:"dotNV",type:"float"},{name:"dotNL",type:"float"}]}),Wg=an(({lightDirection:e})=>{const t=e.add(Ud).normalize(),r=jd.dot(e).clamp(),s=jd.dot(Ud).clamp(),i=jd.dot(t).clamp(),n=zg({roughness:Wn,dotNH:i}),a=$g({dotNV:s,dotNL:r});return $n.mul(n).mul(a)}),Hg=an(({N:e,V:t,roughness:r})=>{const s=e.dot(t).saturate(),i=fn(r,s.oneMinus().sqrt());return i.assign(i.mul(.984375).add(.0078125)),i}).setLayout({name:"LTC_Uv",type:"vec2",inputs:[{name:"N",type:"vec3"},{name:"V",type:"vec3"},{name:"roughness",type:"float"}]}),jg=an(({f:e})=>{const t=e.length();return Wo(t.mul(t).add(e.z).div(t.add(1)),0)}).setLayout({name:"LTC_ClippedSphereFormFactor",type:"float",inputs:[{name:"f",type:"vec3"}]}),qg=an(({v1:e,v2:t})=>{const r=e.dot(t),s=r.abs().toVar(),i=s.mul(.0145206).add(.4965155).mul(s).add(.8543985).toVar(),n=s.add(4.1616724).mul(s).add(3.417594).toVar(),a=i.div(n),o=r.greaterThan(0).select(a,Wo(r.mul(r).oneMinus(),1e-7).inverseSqrt().mul(.5).sub(a));return e.cross(t).mul(o)}).setLayout({name:"LTC_EdgeVectorFormFactor",type:"vec3",inputs:[{name:"v1",type:"vec3"},{name:"v2",type:"vec3"}]}),Xg=an(({N:e,V:t,P:r,mInv:s,p0:i,p1:n,p2:a,p3:o})=>{const u=n.sub(i).toVar(),l=o.sub(i).toVar(),d=u.cross(l),c=Tn().toVar();return ln(d.dot(r.sub(i)).greaterThanEqual(0),()=>{const u=t.sub(e.mul(t.dot(e))).normalize(),l=e.cross(u).negate(),d=s.mul(Cn(u,l,e).transpose()).toVar(),h=d.mul(i.sub(r)).normalize().toVar(),p=d.mul(n.sub(r)).normalize().toVar(),g=d.mul(a.sub(r)).normalize().toVar(),m=d.mul(o.sub(r)).normalize().toVar(),f=Tn(0).toVar();f.addAssign(qg({v1:h,v2:p})),f.addAssign(qg({v1:p,v2:g})),f.addAssign(qg({v1:g,v2:m})),f.addAssign(qg({v1:m,v2:h})),c.assign(Tn(jg({f:f})))}),c}).setLayout({name:"LTC_Evaluate",type:"vec3",inputs:[{name:"N",type:"vec3"},{name:"V",type:"vec3"},{name:"P",type:"vec3"},{name:"mInv",type:"mat3"},{name:"p0",type:"vec3"},{name:"p1",type:"vec3"},{name:"p2",type:"vec3"},{name:"p3",type:"vec3"}]}),Kg=an(({P:e,p0:t,p1:r,p2:s,p3:i})=>{const n=r.sub(t).toVar(),a=i.sub(t).toVar(),o=n.cross(a),u=Tn().toVar();return ln(o.dot(e.sub(t)).greaterThanEqual(0),()=>{const n=t.sub(e).normalize().toVar(),a=r.sub(e).normalize().toVar(),o=s.sub(e).normalize().toVar(),l=i.sub(e).normalize().toVar(),d=Tn(0).toVar();d.addAssign(qg({v1:n,v2:a})),d.addAssign(qg({v1:a,v2:o})),d.addAssign(qg({v1:o,v2:l})),d.addAssign(qg({v1:l,v2:n})),u.assign(Tn(jg({f:d.abs()})))}),u}).setLayout({name:"LTC_Evaluate",type:"vec3",inputs:[{name:"P",type:"vec3"},{name:"p0",type:"vec3"},{name:"p1",type:"vec3"},{name:"p2",type:"vec3"},{name:"p3",type:"vec3"}]}),Yg=1/6,Qg=e=>Ma(Yg,Ma(e,Ma(e,e.negate().add(3)).sub(3)).add(1)),Zg=e=>Ma(Yg,Ma(e,Ma(e,Ma(3,e).sub(6))).add(4)),Jg=e=>Ma(Yg,Ma(e,Ma(e,Ma(-3,e).add(3)).add(3)).add(1)),em=e=>Ma(Yg,Qo(e,3)),tm=e=>Qg(e).add(Zg(e)),rm=e=>Jg(e).add(em(e)),sm=e=>wa(-1,Zg(e).div(Qg(e).add(Zg(e)))),im=e=>wa(1,em(e).div(Jg(e).add(em(e)))),nm=(e,t,r)=>{const s=e.uvNode,i=Ma(s,t.zw).add(.5),n=bo(i),a=_o(i),o=tm(a.x),u=rm(a.x),l=sm(a.x),d=im(a.x),c=sm(a.y),h=im(a.y),p=fn(n.x.add(l),n.y.add(c)).sub(.5).mul(t.xy),g=fn(n.x.add(d),n.y.add(c)).sub(.5).mul(t.xy),m=fn(n.x.add(l),n.y.add(h)).sub(.5).mul(t.xy),f=fn(n.x.add(d),n.y.add(h)).sub(.5).mul(t.xy),y=tm(a.y).mul(wa(o.mul(e.sample(p).level(r)),u.mul(e.sample(g).level(r)))),b=rm(a.y).mul(wa(o.mul(e.sample(m).level(r)),u.mul(e.sample(f).level(r))));return y.add(b)},am=an(([e,t])=>{const r=fn(e.size(pn(t))),s=fn(e.size(pn(t.add(1)))),i=Ba(1,r),n=Ba(1,s),a=nm(e,Sn(i,r),bo(t)),o=nm(e,Sn(n,s),xo(t));return _o(t).mix(a,o)}),om=an(([e,t])=>{const r=t.mul(Cl(e));return am(e,r)}),um=an(([e,t,r,s,i])=>{const n=Tn(ou(t.negate(),To(e),Ba(1,s))),a=Tn(Mo(i[0].xyz),Mo(i[1].xyz),Mo(i[2].xyz));return To(n).mul(r.mul(a))}).setLayout({name:"getVolumeTransmissionRay",type:"vec3",inputs:[{name:"n",type:"vec3"},{name:"v",type:"vec3"},{name:"thickness",type:"float"},{name:"ior",type:"float"},{name:"modelMatrix",type:"mat4"}]}),lm=an(([e,t])=>e.mul(nu(t.mul(2).sub(2),0,1))).setLayout({name:"applyIorToRoughness",type:"float",inputs:[{name:"roughness",type:"float"},{name:"ior",type:"float"}]}),dm=vp(),cm=vp(),hm=an(([e,t,r],{material:s})=>{const i=(s.side===w?dm:cm).sample(e),n=mo(jl.x).mul(lm(t,r));return am(i,n)}),pm=an(([e,t,r])=>(ln(r.notEqual(0),()=>{const s=go(t).negate().div(r);return ho(s.negate().mul(e))}),Tn(1))).setLayout({name:"volumeAttenuation",type:"vec3",inputs:[{name:"transmissionDistance",type:"float"},{name:"attenuationColor",type:"vec3"},{name:"attenuationDistance",type:"float"}]}),gm=an(([e,t,r,s,i,n,a,o,u,l,d,c,h,p,g])=>{let m,f;if(g){m=Sn().toVar(),f=Tn().toVar();const i=d.sub(1).mul(g.mul(.025)),n=Tn(d.sub(i),d,d.add(i));op({start:0,end:3},({i:i})=>{const d=n.element(i),g=um(e,t,c,d,o),y=a.add(g),b=l.mul(u.mul(Sn(y,1))),x=fn(b.xy.div(b.w)).toVar();x.addAssign(1),x.divAssign(2),x.assign(fn(x.x,x.y.oneMinus()));const T=hm(x,r,d);m.element(i).assign(T.element(i)),m.a.addAssign(T.a),f.element(i).assign(s.element(i).mul(pm(Mo(g),h,p).element(i)))}),m.a.divAssign(3)}else{const i=um(e,t,c,d,o),n=a.add(i),g=l.mul(u.mul(Sn(n,1))),y=fn(g.xy.div(g.w)).toVar();y.addAssign(1),y.divAssign(2),y.assign(fn(y.x,y.y.oneMinus())),m=hm(y,r,d),f=s.mul(pm(Mo(i),h,p))}const y=f.rgb.mul(m.rgb),b=e.dot(t).clamp(),x=Tn(kg({dotNV:b,specularColor:i,specularF90:n,roughness:r})),T=f.r.add(f.g,f.b).div(3);return Sn(x.oneMinus().mul(y),m.a.oneMinus().mul(T).oneMinus())}),mm=Cn(3.2404542,-.969266,.0556434,-1.5371385,1.8760108,-.2040259,-.4985314,.041556,1.0572252),fm=(e,t)=>e.sub(t).div(e.add(t)).pow2(),ym=an(({outsideIOR:e,eta2:t,cosTheta1:r,thinFilmThickness:s,baseF0:i})=>{const n=iu(e,t,uu(0,.03,s)),a=e.div(n).pow2().mul(r.pow2().oneMinus()).oneMinus();ln(a.lessThan(0),()=>Tn(1));const o=a.sqrt(),u=fm(n,e),l=xg({f0:u,f90:1,dotVH:r}),d=l.oneMinus(),c=n.lessThan(e).select(Math.PI,0),h=hn(Math.PI).sub(c),p=(e=>{const t=e.sqrt();return Tn(1).add(t).div(Tn(1).sub(t))})(i.clamp(0,.9999)),g=fm(p,n.toVec3()),m=xg({f0:g,f90:1,dotVH:o}),f=Tn(p.x.lessThan(n).select(Math.PI,0),p.y.lessThan(n).select(Math.PI,0),p.z.lessThan(n).select(Math.PI,0)),y=n.mul(s,o,2),b=Tn(h).add(f),x=l.mul(m).clamp(1e-5,.9999),T=x.sqrt(),_=d.pow2().mul(m).div(Tn(1).sub(x)),v=l.add(_).toVar(),N=_.sub(d).toVar();return op({start:1,end:2,condition:"<=",name:"m"},({m:e})=>{N.mulAssign(T);const t=((e,t)=>{const r=e.mul(2*Math.PI*1e-9),s=Tn(54856e-17,44201e-17,52481e-17),i=Tn(1681e3,1795300,2208400),n=Tn(43278e5,93046e5,66121e5),a=hn(9747e-17*Math.sqrt(2*Math.PI*45282e5)).mul(r.mul(2239900).add(t.x).cos()).mul(r.pow2().mul(-45282e5).exp());let o=s.mul(n.mul(2*Math.PI).sqrt()).mul(i.mul(r).add(t).cos()).mul(r.pow2().negate().mul(n).exp());return o=Tn(o.x.add(a),o.y,o.z).div(1.0685e-7),mm.mul(o)})(hn(e).mul(y),hn(e).mul(b)).mul(2);v.addAssign(N.mul(t))}),v.max(Tn(0))}).setLayout({name:"evalIridescence",type:"vec3",inputs:[{name:"outsideIOR",type:"float"},{name:"eta2",type:"float"},{name:"cosTheta1",type:"float"},{name:"thinFilmThickness",type:"float"},{name:"baseF0",type:"vec3"}]}),bm=an(({normal:e,viewDir:t,roughness:r})=>{const s=e.dot(t).saturate(),i=r.mul(r),n=r.add(.1).reciprocal(),a=hn(-1.9362).add(r.mul(1.0678)).add(i.mul(.4573)).sub(n.mul(.8469)),o=hn(-.6014).add(r.mul(.5538)).sub(i.mul(.467)).sub(n.mul(.1255));return a.mul(s).add(o).exp().saturate()}),xm=Tn(.04),Tm=hn(1);class _m extends mg{constructor(e=!1,t=!1,r=!1,s=!1,i=!1,n=!1){super(),this.clearcoat=e,this.sheen=t,this.iridescence=r,this.anisotropy=s,this.transmission=i,this.dispersion=n,this.clearcoatRadiance=null,this.clearcoatSpecularDirect=null,this.clearcoatSpecularIndirect=null,this.sheenSpecularDirect=null,this.sheenSpecularIndirect=null,this.iridescenceFresnel=null,this.iridescenceF0=null,this.iridescenceF0Dielectric=null,this.iridescenceF0Metallic=null}start(e){if(!0===this.clearcoat&&(this.clearcoatRadiance=Tn().toVar("clearcoatRadiance"),this.clearcoatSpecularDirect=Tn().toVar("clearcoatSpecularDirect"),this.clearcoatSpecularIndirect=Tn().toVar("clearcoatSpecularIndirect")),!0===this.sheen&&(this.sheenSpecularDirect=Tn().toVar("sheenSpecularDirect"),this.sheenSpecularIndirect=Tn().toVar("sheenSpecularIndirect")),!0===this.iridescence){const e=jd.dot(Ud).clamp(),t=ym({outsideIOR:hn(1),eta2:jn,cosTheta1:e,thinFilmThickness:qn,baseF0:Zn}),r=ym({outsideIOR:hn(1),eta2:jn,cosTheta1:e,thinFilmThickness:qn,baseF0:Un.rgb});this.iridescenceFresnel=iu(t,r,kn),this.iridescenceF0Dielectric=Gg({f:t,f90:1,dotVH:e}),this.iridescenceF0Metallic=Gg({f:r,f90:1,dotVH:e}),this.iridescenceF0=iu(this.iridescenceF0Dielectric,this.iridescenceF0Metallic,kn)}if(!0===this.transmission){const t=Pd,r=od.sub(Pd).normalize(),s=qd,i=e.context;i.backdrop=gm(s,r,Vn,In,Jn,ea,t,xd,id,rd,aa,ua,da,la,this.dispersion?ca:null),i.backdropAlpha=oa,Un.a.mulAssign(iu(1,i.backdrop.a,oa))}super.start(e)}computeMultiscattering(e,t,r,s,i=null){const n=jd.dot(Ud).clamp(),a=Og({roughness:Vn,dotNV:n}),o=i?Hn.mix(s,i):s,u=o.mul(a.x).add(r.mul(a.y)),l=a.x.add(a.y).oneMinus(),d=o.add(o.oneMinus().mul(.047619)),c=u.mul(d).div(l.mul(d).oneMinus());e.addAssign(u),t.addAssign(c.mul(l))}direct({lightDirection:e,lightColor:t,reflectedLight:r}){const s=jd.dot(e).clamp().mul(t).toVar();if(!0===this.sheen){this.sheenSpecularDirect.addAssign(s.mul(Wg({lightDirection:e})));const t=bm({normal:jd,viewDir:Ud,roughness:Wn}),r=bm({normal:jd,viewDir:e,roughness:Wn}),i=$n.r.max($n.g).max($n.b).mul(t.max(r)).oneMinus();s.mulAssign(i)}if(!0===this.clearcoat){const r=Xd.dot(e).clamp().mul(t);this.clearcoatSpecularDirect.addAssign(r.mul(Dg({lightDirection:e,f0:xm,f90:Tm,roughness:zn,normalView:Xd})))}r.directDiffuse.addAssign(s.mul(Tg({diffuseColor:In}))),r.directSpecular.addAssign(s.mul(Vg({lightDirection:e,f0:Jn,f90:1,roughness:Vn,f:this.iridescenceFresnel,USE_IRIDESCENCE:this.iridescence,USE_ANISOTROPY:this.anisotropy})))}directRectArea({lightColor:e,lightPosition:t,halfWidth:r,halfHeight:s,reflectedLight:i,ltc_1:n,ltc_2:a}){const o=t.add(r).sub(s),u=t.sub(r).sub(s),l=t.sub(r).add(s),d=t.add(r).add(s),c=jd,h=Ud,p=Dd.toVar(),g=Hg({N:c,V:h,roughness:Vn}),m=n.sample(g).toVar(),f=a.sample(g).toVar(),y=Cn(Tn(m.x,0,m.y),Tn(0,1,0),Tn(m.z,0,m.w)).toVar(),b=Jn.mul(f.x).add(Jn.oneMinus().mul(f.y)).toVar();i.directSpecular.addAssign(e.mul(b).mul(Xg({N:c,V:h,P:p,mInv:y,p0:o,p1:u,p2:l,p3:d}))),i.directDiffuse.addAssign(e.mul(In).mul(Xg({N:c,V:h,P:p,mInv:Cn(1,0,0,0,1,0,0,0,1),p0:o,p1:u,p2:l,p3:d})))}indirect(e){this.indirectDiffuse(e),this.indirectSpecular(e),this.ambientOcclusion(e)}indirectDiffuse(e){const{irradiance:t,reflectedLight:r}=e.context,s=t.mul(Tg({diffuseColor:In})).toVar();if(!0===this.sheen){const e=bm({normal:jd,viewDir:Ud,roughness:Wn}),t=$n.r.max($n.g).max($n.b).mul(e).oneMinus();s.mulAssign(t)}r.indirectDiffuse.addAssign(s)}indirectSpecular(e){const{radiance:t,iblIrradiance:r,reflectedLight:s}=e.context;if(!0===this.sheen&&this.sheenSpecularIndirect.addAssign(r.mul($n,bm({normal:jd,viewDir:Ud,roughness:Wn}))),!0===this.clearcoat){const e=Xd.dot(Ud).clamp(),t=kg({dotNV:e,specularColor:xm,specularF90:Tm,roughness:zn});this.clearcoatSpecularIndirect.addAssign(this.clearcoatRadiance.mul(t))}const i=Tn().toVar("singleScatteringDielectric"),n=Tn().toVar("multiScatteringDielectric"),a=Tn().toVar("singleScatteringMetallic"),o=Tn().toVar("multiScatteringMetallic");this.computeMultiscattering(i,n,ea,Zn,this.iridescenceF0Dielectric),this.computeMultiscattering(a,o,ea,Un.rgb,this.iridescenceF0Metallic);const u=iu(i,a,kn),l=iu(n,o,kn),d=i.add(n),c=In.mul(d.oneMinus()),h=r.mul(1/Math.PI),p=t.mul(u).add(l.mul(h)).toVar(),g=c.mul(h).toVar();if(!0===this.sheen){const e=bm({normal:jd,viewDir:Ud,roughness:Wn}),t=$n.r.max($n.g).max($n.b).mul(e).oneMinus();p.mulAssign(t),g.mulAssign(t)}s.indirectSpecular.addAssign(p),s.indirectDiffuse.addAssign(g)}ambientOcclusion(e){const{ambientOcclusion:t,reflectedLight:r}=e.context,s=jd.dot(Ud).clamp().add(t),i=Vn.mul(-16).oneMinus().negate().exp2(),n=t.sub(s.pow(i).oneMinus()).clamp();!0===this.clearcoat&&this.clearcoatSpecularIndirect.mulAssign(t),!0===this.sheen&&this.sheenSpecularIndirect.mulAssign(t),r.indirectDiffuse.mulAssign(t),r.indirectSpecular.mulAssign(n)}finish({context:e}){const{outgoingLight:t}=e;if(!0===this.clearcoat){const e=Xd.dot(Ud).clamp(),r=xg({dotVH:e,f0:xm,f90:Tm}),s=t.mul(Gn.mul(r).oneMinus()).add(this.clearcoatSpecularDirect.add(this.clearcoatSpecularIndirect).mul(Gn));t.assign(s)}if(!0===this.sheen){const e=t.add(this.sheenSpecularDirect,this.sheenSpecularIndirect.mul(1/Math.PI));t.assign(e)}}}const vm=hn(1),Nm=hn(-2),Sm=hn(.8),Rm=hn(-1),Am=hn(.4),Em=hn(2),wm=hn(.305),Cm=hn(3),Mm=hn(.21),Bm=hn(4),Lm=hn(4),Pm=hn(16),Fm=an(([e])=>{const t=Tn(wo(e)).toVar(),r=hn(-1).toVar();return ln(t.x.greaterThan(t.z),()=>{ln(t.x.greaterThan(t.y),()=>{r.assign(bu(e.x.greaterThan(0),0,3))}).Else(()=>{r.assign(bu(e.y.greaterThan(0),1,4))})}).Else(()=>{ln(t.z.greaterThan(t.y),()=>{r.assign(bu(e.z.greaterThan(0),2,5))}).Else(()=>{r.assign(bu(e.y.greaterThan(0),1,4))})}),r}).setLayout({name:"getFace",type:"float",inputs:[{name:"direction",type:"vec3"}]}),Dm=an(([e,t])=>{const r=fn().toVar();return ln(t.equal(0),()=>{r.assign(fn(e.z,e.y).div(wo(e.x)))}).ElseIf(t.equal(1),()=>{r.assign(fn(e.x.negate(),e.z.negate()).div(wo(e.y)))}).ElseIf(t.equal(2),()=>{r.assign(fn(e.x.negate(),e.y).div(wo(e.z)))}).ElseIf(t.equal(3),()=>{r.assign(fn(e.z.negate(),e.y).div(wo(e.x)))}).ElseIf(t.equal(4),()=>{r.assign(fn(e.x.negate(),e.z).div(wo(e.y)))}).Else(()=>{r.assign(fn(e.x,e.y).div(wo(e.z)))}),Ma(.5,r.add(1))}).setLayout({name:"getUV",type:"vec2",inputs:[{name:"direction",type:"vec3"},{name:"face",type:"float"}]}),Um=an(([e])=>{const t=hn(0).toVar();return ln(e.greaterThanEqual(Sm),()=>{t.assign(vm.sub(e).mul(Rm.sub(Nm)).div(vm.sub(Sm)).add(Nm))}).ElseIf(e.greaterThanEqual(Am),()=>{t.assign(Sm.sub(e).mul(Em.sub(Rm)).div(Sm.sub(Am)).add(Rm))}).ElseIf(e.greaterThanEqual(wm),()=>{t.assign(Am.sub(e).mul(Cm.sub(Em)).div(Am.sub(wm)).add(Em))}).ElseIf(e.greaterThanEqual(Mm),()=>{t.assign(wm.sub(e).mul(Bm.sub(Cm)).div(wm.sub(Mm)).add(Cm))}).Else(()=>{t.assign(hn(-2).mul(mo(Ma(1.16,e))))}),t}).setLayout({name:"roughnessToMip",type:"float",inputs:[{name:"roughness",type:"float"}]}),Im=an(([e,t])=>{const r=e.toVar();r.assign(Ma(2,r).sub(1));const s=Tn(r,1).toVar();return ln(t.equal(0),()=>{s.assign(s.zyx)}).ElseIf(t.equal(1),()=>{s.assign(s.xzy),s.xz.mulAssign(-1)}).ElseIf(t.equal(2),()=>{s.x.mulAssign(-1)}).ElseIf(t.equal(3),()=>{s.assign(s.zyx),s.xz.mulAssign(-1)}).ElseIf(t.equal(4),()=>{s.assign(s.xzy),s.xy.mulAssign(-1)}).ElseIf(t.equal(5),()=>{s.z.mulAssign(-1)}),s}).setLayout({name:"getDirection",type:"vec3",inputs:[{name:"uv",type:"vec2"},{name:"face",type:"float"}]}),Om=an(([e,t,r,s,i,n])=>{const a=hn(r),o=Tn(t),u=nu(Um(a),Nm,n),l=_o(u),d=bo(u),c=Tn(Vm(e,o,d,s,i,n)).toVar();return ln(l.notEqual(0),()=>{const t=Tn(Vm(e,o,d.add(1),s,i,n)).toVar();c.assign(iu(c,t,l))}),c}),Vm=an(([e,t,r,s,i,n])=>{const a=hn(r).toVar(),o=Tn(t),u=hn(Fm(o)).toVar(),l=hn(Wo(Lm.sub(a),0)).toVar();a.assign(Wo(a,Lm));const d=hn(po(a)).toVar(),c=fn(Dm(o,u).mul(d.sub(2)).add(1)).toVar();return ln(u.greaterThan(2),()=>{c.y.addAssign(d),u.subAssign(3)}),c.x.addAssign(u.mul(d)),c.x.addAssign(l.mul(Ma(3,Pm))),c.y.addAssign(Ma(4,po(n).sub(d))),c.x.mulAssign(s),c.y.mulAssign(i),e.sample(c).grad(fn(),fn())}),km=an(({envMap:e,mipInt:t,outputDirection:r,theta:s,axis:i,CUBEUV_TEXEL_WIDTH:n,CUBEUV_TEXEL_HEIGHT:a,CUBEUV_MAX_MIP:o})=>{const u=No(s),l=r.mul(u).add(i.cross(r).mul(vo(s))).add(i.mul(i.dot(r).mul(u.oneMinus())));return Vm(e,l,t,n,a,o)}),Gm=an(({n:e,latitudinal:t,poleAxis:r,outputDirection:s,weights:i,samples:n,dTheta:a,mipInt:o,envMap:u,CUBEUV_TEXEL_WIDTH:l,CUBEUV_TEXEL_HEIGHT:d,CUBEUV_MAX_MIP:c})=>{const h=Tn(bu(t,r,Yo(r,s))).toVar();ln(h.equal(Tn(0)),()=>{h.assign(Tn(s.z,0,s.x.negate()))}),h.assign(To(h));const p=Tn().toVar();return p.addAssign(i.element(0).mul(km({theta:0,axis:h,outputDirection:s,mipInt:o,envMap:u,CUBEUV_TEXEL_WIDTH:l,CUBEUV_TEXEL_HEIGHT:d,CUBEUV_MAX_MIP:c}))),op({start:pn(1),end:e},({i:e})=>{ln(e.greaterThanEqual(n),()=>{up()});const t=hn(a.mul(hn(e))).toVar();p.addAssign(i.element(e).mul(km({theta:t.mul(-1),axis:h,outputDirection:s,mipInt:o,envMap:u,CUBEUV_TEXEL_WIDTH:l,CUBEUV_TEXEL_HEIGHT:d,CUBEUV_MAX_MIP:c}))),p.addAssign(i.element(e).mul(km({theta:t,axis:h,outputDirection:s,mipInt:o,envMap:u,CUBEUV_TEXEL_WIDTH:l,CUBEUV_TEXEL_HEIGHT:d,CUBEUV_MAX_MIP:c})))}),Sn(p,1)}),zm=an(([e])=>{const t=gn(e).toVar();return t.assign(t.shiftLeft(gn(16)).bitOr(t.shiftRight(gn(16)))),t.assign(t.bitAnd(gn(1431655765)).shiftLeft(gn(1)).bitOr(t.bitAnd(gn(2863311530)).shiftRight(gn(1)))),t.assign(t.bitAnd(gn(858993459)).shiftLeft(gn(2)).bitOr(t.bitAnd(gn(3435973836)).shiftRight(gn(2)))),t.assign(t.bitAnd(gn(252645135)).shiftLeft(gn(4)).bitOr(t.bitAnd(gn(4042322160)).shiftRight(gn(4)))),t.assign(t.bitAnd(gn(16711935)).shiftLeft(gn(8)).bitOr(t.bitAnd(gn(4278255360)).shiftRight(gn(8)))),hn(t).mul(2.3283064365386963e-10)}),$m=an(([e,t])=>fn(hn(e).div(hn(t)),zm(e))),Wm=an(([e,t,r])=>{const s=Tn(t).toVar(),i=hn(r),n=i.mul(i).toVar(),a=To(Tn(n.mul(s.x),n.mul(s.y),s.z)).toVar(),o=a.x.mul(a.x).add(a.y.mul(a.y)),u=bu(o.greaterThan(0),Tn(a.y.negate(),a.x,0).div(fo(o)),Tn(1,0,0)).toVar(),l=Yo(a,u).toVar(),d=fo(e.x),c=Ma(2,3.14159265359).mul(e.y),h=d.mul(No(c)).toVar(),p=d.mul(vo(c)).toVar(),g=Ma(.5,a.z.add(1));p.assign(g.oneMinus().mul(fo(h.mul(h).oneMinus())).add(g.mul(p)));const m=u.mul(h).add(l.mul(p)).add(a.mul(fo(Wo(0,h.mul(h).add(p.mul(p)).oneMinus()))));return To(Tn(n.mul(m.x),n.mul(m.y),Wo(0,m.z)))}),Hm=an(({roughness:e,mipInt:t,envMap:r,N_immutable:s,GGX_SAMPLES:i,CUBEUV_TEXEL_WIDTH:n,CUBEUV_TEXEL_HEIGHT:a,CUBEUV_MAX_MIP:o})=>{const u=Tn(s).toVar(),l=Tn(0).toVar(),d=hn(0).toVar();return ln(e.lessThan(.001),()=>{l.assign(Vm(r,u,t,n,a,o))}).Else(()=>{const s=bu(wo(u.z).lessThan(.999),Tn(0,0,1),Tn(1,0,0)),c=To(Yo(s,u)).toVar(),h=Yo(u,c).toVar();op({start:gn(0),end:i},({i:s})=>{const p=$m(s,i),g=Wm(p,Tn(0,0,1),e),m=To(c.mul(g.x).add(h.mul(g.y)).add(u.mul(g.z))),f=To(m.mul(Ko(u,m).mul(2)).sub(u)),y=Wo(Ko(u,f),0);ln(y.greaterThan(0),()=>{const e=Vm(r,f,t,n,a,o);l.addAssign(e.mul(y)),d.addAssign(y)})}),ln(d.greaterThan(0),()=>{l.assign(l.div(d))})}),Sn(l,1)}),jm=[.125,.215,.35,.446,.526,.582],qm=20,Xm=new xe(-1,1,1,-1,0,1),Km=new Te(90,1),Ym=new e;let Qm=null,Zm=0,Jm=0;const ef=new r,tf=new WeakMap,rf=[3,1,5,0,4,2],sf=Im(Rl(),Sl("faceIndex")).normalize(),nf=Tn(sf.x,sf.y,sf.z);class af{constructor(e){this._renderer=e,this._pingPongRenderTarget=null,this._lodMax=0,this._cubeSize=0,this._sizeLods=[],this._sigmas=[],this._lodMeshes=[],this._blurMaterial=null,this._ggxMaterial=null,this._cubemapMaterial=null,this._equirectMaterial=null,this._backgroundBox=null}get _hasInitialized(){return this._renderer.hasInitialized()}fromScene(e,t=0,r=.1,s=100,i={}){const{size:n=256,position:a=ef,renderTarget:o=null}=i;if(this._setSize(n),!1===this._hasInitialized){d('PMREMGenerator: ".fromScene()" called before the backend is initialized. Try using "await renderer.init()" instead.');const n=o||this._allocateTarget();return i.renderTarget=n,this.fromSceneAsync(e,t,r,s,i),n}Qm=this._renderer.getRenderTarget(),Zm=this._renderer.getActiveCubeFace(),Jm=this._renderer.getActiveMipmapLevel();const u=o||this._allocateTarget();return u.depthBuffer=!0,this._init(u),this._sceneToCubeUV(e,r,s,u,a),t>0&&this._blur(u,0,0,t),this._applyPMREM(u),this._cleanup(u),u}async fromSceneAsync(e,t=0,r=.1,s=100,i={}){return v('PMREMGenerator: ".fromSceneAsync()" is deprecated. Use "await renderer.init()" instead.'),await this._renderer.init(),this.fromScene(e,t,r,s,i)}fromEquirectangular(e,t=null){if(!1===this._hasInitialized){d('PMREMGenerator: .fromEquirectangular() called before the backend is initialized. Try using "await renderer.init()" instead.'),this._setSizeFromTexture(e);const r=t||this._allocateTarget();return this.fromEquirectangularAsync(e,r),r}return this._fromTexture(e,t)}async fromEquirectangularAsync(e,t=null){return v('PMREMGenerator: ".fromEquirectangularAsync()" is deprecated. Use "await renderer.init()" instead.'),await this._renderer.init(),this._fromTexture(e,t)}fromCubemap(e,t=null){if(!1===this._hasInitialized){d("PMREMGenerator: .fromCubemap() called before the backend is initialized. Try using .fromCubemapAsync() instead."),this._setSizeFromTexture(e);const r=t||this._allocateTarget();return this.fromCubemapAsync(e,t),r}return this._fromTexture(e,t)}async fromCubemapAsync(e,t=null){return v('PMREMGenerator: ".fromCubemapAsync()" is deprecated. Use "await renderer.init()" instead.'),await this._renderer.init(),this._fromTexture(e,t)}async compileCubemapShader(){null===this._cubemapMaterial&&(this._cubemapMaterial=df(),await this._compileMaterial(this._cubemapMaterial))}async compileEquirectangularShader(){null===this._equirectMaterial&&(this._equirectMaterial=cf(),await this._compileMaterial(this._equirectMaterial))}dispose(){this._dispose(),null!==this._cubemapMaterial&&this._cubemapMaterial.dispose(),null!==this._equirectMaterial&&this._equirectMaterial.dispose(),null!==this._backgroundBox&&(this._backgroundBox.geometry.dispose(),this._backgroundBox.material.dispose())}_setSizeFromTexture(e){e.mapping===L||e.mapping===P?this._setSize(0===e.image.length?16:e.image[0].width||e.image[0].image.width):this._setSize(e.image.width/4)}_setSize(e){this._lodMax=Math.floor(Math.log2(e)),this._cubeSize=Math.pow(2,this._lodMax)}_dispose(){null!==this._blurMaterial&&this._blurMaterial.dispose(),null!==this._ggxMaterial&&this._ggxMaterial.dispose(),null!==this._pingPongRenderTarget&&this._pingPongRenderTarget.dispose();for(let e=0;ee-4?o=jm[a-e+4-1]:0===a&&(o=0),r.push(o);const u=1/(n-2),l=-u,d=1+u,c=[l,l,d,l,d,d,l,l,d,d,l,d],h=6,p=6,g=3,m=2,f=1,y=new Float32Array(g*p*h),b=new Float32Array(m*p*h),x=new Float32Array(f*p*h);for(let e=0;e2?0:-1,s=[t,r,0,t+2/3,r,0,t+2/3,r+1,0,t,r,0,t+2/3,r+1,0,t,r+1,0],i=rf[e];y.set(s,g*p*i),b.set(c,m*p*i);const n=[i,i,i,i,i,i];x.set(n,f*p*i)}const T=new be;T.setAttribute("position",new Re(y,g)),T.setAttribute("uv",new Re(b,m)),T.setAttribute("faceIndex",new Re(x,f)),s.push(new se(T,null)),i>4&&i--}return{lodMeshes:s,sizeLods:t,sigmas:r}}(t)),this._blurMaterial=function(e,t,s){const i=Vl(new Array(qm).fill(0)),n=xa(new r(0,1,0)),a=xa(0),o=hn(qm),u=xa(0),l=xa(1),d=Pl(),c=xa(0),h=hn(1/t),p=hn(1/s),g=hn(e),m={n:o,latitudinal:u,weights:i,poleAxis:n,outputDirection:nf,dTheta:a,samples:l,envMap:d,mipInt:c,CUBEUV_TEXEL_WIDTH:h,CUBEUV_TEXEL_HEIGHT:p,CUBEUV_MAX_MIP:g},f=lf("blur");return f.fragmentNode=Gm({...m,latitudinal:u.equal(1)}),tf.set(f,m),f}(t,e.width,e.height),this._ggxMaterial=function(e,t,r){const s=Pl(),i=xa(0),n=xa(0),a=hn(1/t),o=hn(1/r),u=hn(e),l={envMap:s,roughness:i,mipInt:n,CUBEUV_TEXEL_WIDTH:a,CUBEUV_TEXEL_HEIGHT:o,CUBEUV_MAX_MIP:u},d=lf("ggx");return d.fragmentNode=Hm({...l,N_immutable:nf,GGX_SAMPLES:gn(512)}),tf.set(d,l),d}(t,e.width,e.height)}}async _compileMaterial(e){const t=new se(new be,e);await this._renderer.compile(t,Xm)}_sceneToCubeUV(e,t,r,s,i){const n=Km;n.near=t,n.far=r;const a=[1,1,1,1,-1,1],o=[1,-1,1,-1,1,-1],u=this._renderer,l=u.autoClear;u.getClearColor(Ym),u.autoClear=!1,null===this._backgroundBox&&(this._backgroundBox=new se(new re,new he({name:"PMREM.Background",side:w,depthWrite:!1,depthTest:!1})));const d=this._backgroundBox,c=d.material;let h=!1;const p=e.background;p?p.isColor&&(c.color.copy(p),e.background=null,h=!0):(c.color.copy(Ym),h=!0),u.setRenderTarget(s),u.clear(),h&&u.render(d,n);for(let t=0;t<6;t++){const r=t%3;0===r?(n.up.set(0,a[t],0),n.position.set(i.x,i.y,i.z),n.lookAt(i.x+o[t],i.y,i.z)):1===r?(n.up.set(0,0,a[t]),n.position.set(i.x,i.y,i.z),n.lookAt(i.x,i.y+o[t],i.z)):(n.up.set(0,a[t],0),n.position.set(i.x,i.y,i.z),n.lookAt(i.x,i.y,i.z+o[t]));const l=this._cubeSize;uf(s,r*l,t>2?l:0,l,l),u.render(e,n)}u.autoClear=l,e.background=p}_textureToCubeUV(e,t){const r=this._renderer,s=e.mapping===L||e.mapping===P;s?null===this._cubemapMaterial&&(this._cubemapMaterial=df(e)):null===this._equirectMaterial&&(this._equirectMaterial=cf(e));const i=s?this._cubemapMaterial:this._equirectMaterial;i.fragmentNode.value=e;const n=this._lodMeshes[0];n.material=i;const a=this._cubeSize;uf(t,0,0,3*a,2*a),r.setRenderTarget(t),r.render(n,Xm)}_applyPMREM(e){const t=this._renderer,r=t.autoClear;t.autoClear=!1;const s=this._lodMeshes.length;for(let t=1;tc-4?r-c+4:0),g=4*(this._cubeSize-h);e.texture.frame=(e.texture.frame||0)+1,o.envMap.value=e.texture,o.roughness.value=d,o.mipInt.value=c-t,uf(i,p,g,3*h,2*h),s.setRenderTarget(i),s.render(a,Xm),i.texture.frame=(i.texture.frame||0)+1,o.envMap.value=i.texture,o.roughness.value=0,o.mipInt.value=c-r,uf(e,p,g,3*h,2*h),s.setRenderTarget(e),s.render(a,Xm)}_blur(e,t,r,s,i){const n=this._pingPongRenderTarget;this._halfBlur(e,n,t,r,s,"latitudinal",i),this._halfBlur(n,e,r,r,s,"longitudinal",i)}_halfBlur(e,t,r,s,i,n,a){const u=this._renderer,l=this._blurMaterial;"latitudinal"!==n&&"longitudinal"!==n&&o("blur direction must be either latitudinal or longitudinal!");const c=this._lodMeshes[s];c.material=l;const h=tf.get(l),p=this._sizeLods[r]-1,g=isFinite(i)?Math.PI/(2*p):2*Math.PI/39,m=i/g,f=isFinite(i)?1+Math.floor(3*m):qm;f>qm&&d(`sigmaRadians, ${i}, is too large and will clip, as it requested ${f} samples when the maximum is set to 20`);const y=[];let b=0;for(let e=0;ex-4?s-x+4:0),4*(this._cubeSize-T),3*T,2*T),u.setRenderTarget(t),u.render(c,Xm)}}function of(e,t){const r=new _e(e,t,{magFilter:ne,minFilter:ne,generateMipmaps:!1,type:fe,format:Ne,colorSpace:ve});return r.texture.mapping=Se,r.texture.name="PMREM.cubeUv",r.texture.isPMREMTexture=!0,r.scissorTest=!0,r}function uf(e,t,r,s,i){e.viewport.set(t,r,s,i),e.scissor.set(t,r,s,i)}function lf(e){const t=new Xp;return t.depthTest=!1,t.depthWrite=!1,t.blending=Z,t.name=`PMREM_${e}`,t}function df(e){const t=lf("cubemap");return t.fragmentNode=hc(e,nf),t}function cf(e){const t=lf("equirect");return t.fragmentNode=Pl(e,ag(nf),0),t}const hf=new WeakMap;function pf(e,t,r){const s=function(e){let t=hf.get(e);void 0===t&&(t=new WeakMap,hf.set(e,t));return t}(t);let i=s.get(e);if((void 0!==i?i.pmremVersion:-1)!==e.pmremVersion){const t=e.image;if(e.isCubeTexture){if(!function(e){if(null==e)return!1;let t=0;const r=6;for(let s=0;s0}(t))return null;i=r.fromEquirectangular(e,i)}i.pmremVersion=e.pmremVersion,s.set(e,i)}return i.texture}class gf extends li{static get type(){return"PMREMNode"}constructor(e,t=null,r=null){super("vec3"),this._value=e,this._pmrem=null,this.uvNode=t,this.levelNode=r,this._generator=null;const s=new N;s.isRenderTargetTexture=!0,this._texture=Pl(s),this._width=xa(0),this._height=xa(0),this._maxMip=xa(0),this.updateBeforeType=Qs.RENDER}set value(e){this._value=e,this._pmrem=null}get value(){return this._value}updateFromTexture(e){const t=function(e){const t=Math.log2(e)-2,r=1/e;return{texelWidth:1/(3*Math.max(Math.pow(2,t),112)),texelHeight:r,maxMip:t}}(e.image.height);this._texture.value=e,this._width.value=t.texelWidth,this._height.value=t.texelHeight,this._maxMip.value=t.maxMip}updateBefore(e){let t=this._pmrem;const r=t?t.pmremVersion:-1,s=this._value;r!==s.pmremVersion&&(t=!0===s.isPMREMTexture?s:pf(s,e.renderer,this._generator),null!==t&&(this._pmrem=t,this.updateFromTexture(t)))}setup(e){null===this._generator&&(this._generator=new af(e.renderer)),this.updateBefore(e);let t=this.uvNode;null===t&&e.context.getUV&&(t=e.context.getUV(this,e)),t=ic.mul(Tn(t.x,t.y.negate(),t.z));let r=this.levelNode;return null===r&&e.context.getTextureLevel&&(r=e.context.getTextureLevel(this)),Om(this._texture,t,r,this._width,this._height,this._maxMip)}dispose(){super.dispose(),null!==this._generator&&this._generator.dispose()}}const mf=en(gf).setParameterLength(1,3),ff=new WeakMap;class yf extends gp{static get type(){return"EnvironmentNode"}constructor(e=null){super(),this.envNode=e}setup(e){const{material:t}=e;let r=this.envNode;if(r.isTextureNode||r.isMaterialReferenceNode){const e=r.isTextureNode?r.value:t[r.property];let s=ff.get(e);void 0===s&&(s=mf(e),ff.set(e,s)),r=s}const s=!0===t.useAnisotropy||t.anisotropy>0?Wc:jd,i=r.context(bf(Vn,s)).mul(sc),n=r.context(xf(qd)).mul(Math.PI).mul(sc),a=al(i),o=al(n);e.context.radiance.addAssign(a),e.context.iblIrradiance.addAssign(o);const u=e.context.lightingModel.clearcoatRadiance;if(u){const e=r.context(bf(zn,Xd)).mul(sc),t=al(e);u.addAssign(t)}}}const bf=(e,t)=>{let r=null;return{getUV:()=>(null===r&&(r=Ud.negate().reflect(t),r=eu(e).mix(r,t).normalize(),r=r.transformDirection(id)),r),getTextureLevel:()=>e}},xf=e=>({getUV:()=>e,getTextureLevel:()=>hn(1)}),Tf=new Ae;class _f extends Xp{static get type(){return"MeshStandardNodeMaterial"}constructor(e){super(),this.isMeshStandardNodeMaterial=!0,this.lights=!0,this.emissiveNode=null,this.metalnessNode=null,this.roughnessNode=null,this.setDefaultValues(Tf),this.setValues(e)}setupEnvironment(e){let t=super.setupEnvironment(e);return null===t&&e.environmentNode&&(t=e.environmentNode),t?new yf(t):null}setupLightingModel(){return new _m}setupSpecular(){const e=iu(Tn(.04),Un.rgb,kn);Zn.assign(Tn(.04)),Jn.assign(e),ea.assign(1)}setupVariants(){const e=this.metalnessNode?hn(this.metalnessNode):hh;kn.assign(e);let t=this.roughnessNode?hn(this.roughnessNode):ch;t=Cg({roughness:t}),Vn.assign(t),this.setupSpecular(),In.assign(Un.rgb.mul(e.oneMinus()))}copy(e){return this.emissiveNode=e.emissiveNode,this.metalnessNode=e.metalnessNode,this.roughnessNode=e.roughnessNode,super.copy(e)}}const vf=new Ee;class Nf extends _f{static get type(){return"MeshPhysicalNodeMaterial"}constructor(e){super(),this.isMeshPhysicalNodeMaterial=!0,this.clearcoatNode=null,this.clearcoatRoughnessNode=null,this.clearcoatNormalNode=null,this.sheenNode=null,this.sheenRoughnessNode=null,this.iridescenceNode=null,this.iridescenceIORNode=null,this.iridescenceThicknessNode=null,this.specularIntensityNode=null,this.specularColorNode=null,this.iorNode=null,this.transmissionNode=null,this.thicknessNode=null,this.attenuationDistanceNode=null,this.attenuationColorNode=null,this.dispersionNode=null,this.anisotropyNode=null,this.setDefaultValues(vf),this.setValues(e)}get useClearcoat(){return this.clearcoat>0||null!==this.clearcoatNode}get useIridescence(){return this.iridescence>0||null!==this.iridescenceNode}get useSheen(){return this.sheen>0||null!==this.sheenNode}get useAnisotropy(){return this.anisotropy>0||null!==this.anisotropyNode}get useTransmission(){return this.transmission>0||null!==this.transmissionNode}get useDispersion(){return this.dispersion>0||null!==this.dispersionNode}setupSpecular(){const e=this.iorNode?hn(this.iorNode):Ah;aa.assign(e),Zn.assign($o(Zo(aa.sub(1).div(aa.add(1))).mul(uh),Tn(1)).mul(oh)),Jn.assign(iu(Zn,Un.rgb,kn)),ea.assign(iu(oh,1,kn))}setupLightingModel(){return new _m(this.useClearcoat,this.useSheen,this.useIridescence,this.useAnisotropy,this.useTransmission,this.useDispersion)}setupVariants(e){if(super.setupVariants(e),this.useClearcoat){const e=this.clearcoatNode?hn(this.clearcoatNode):gh,t=this.clearcoatRoughnessNode?hn(this.clearcoatRoughnessNode):mh;Gn.assign(e),zn.assign(Cg({roughness:t}))}if(this.useSheen){const e=this.sheenNode?Tn(this.sheenNode):bh,t=this.sheenRoughnessNode?hn(this.sheenRoughnessNode):xh;$n.assign(e),Wn.assign(t)}if(this.useIridescence){const e=this.iridescenceNode?hn(this.iridescenceNode):_h,t=this.iridescenceIORNode?hn(this.iridescenceIORNode):vh,r=this.iridescenceThicknessNode?hn(this.iridescenceThicknessNode):Nh;Hn.assign(e),jn.assign(t),qn.assign(r)}if(this.useAnisotropy){const e=(this.anisotropyNode?fn(this.anisotropyNode):Th).toVar();Kn.assign(e.length()),ln(Kn.equal(0),()=>{e.assign(fn(1,0))}).Else(()=>{e.divAssign(fn(Kn)),Kn.assign(Kn.saturate())}),Xn.assign(Kn.pow2().mix(Vn.pow2(),1)),Yn.assign(zc[0].mul(e.x).add(zc[1].mul(e.y))),Qn.assign(zc[1].mul(e.x).sub(zc[0].mul(e.y)))}if(this.useTransmission){const e=this.transmissionNode?hn(this.transmissionNode):Sh,t=this.thicknessNode?hn(this.thicknessNode):Rh,r=this.attenuationDistanceNode?hn(this.attenuationDistanceNode):Eh,s=this.attenuationColorNode?Tn(this.attenuationColorNode):wh;if(oa.assign(e),ua.assign(t),la.assign(r),da.assign(s),this.useDispersion){const e=this.dispersionNode?hn(this.dispersionNode):Dh;ca.assign(e)}}}setupClearcoatNormal(){return this.clearcoatNormalNode?Tn(this.clearcoatNormalNode):fh}setup(e){e.context.setupClearcoatNormal=()=>Lu(this.setupClearcoatNormal(e),"NORMAL","vec3"),super.setup(e)}copy(e){return this.clearcoatNode=e.clearcoatNode,this.clearcoatRoughnessNode=e.clearcoatRoughnessNode,this.clearcoatNormalNode=e.clearcoatNormalNode,this.sheenNode=e.sheenNode,this.sheenRoughnessNode=e.sheenRoughnessNode,this.iridescenceNode=e.iridescenceNode,this.iridescenceIORNode=e.iridescenceIORNode,this.iridescenceThicknessNode=e.iridescenceThicknessNode,this.specularIntensityNode=e.specularIntensityNode,this.specularColorNode=e.specularColorNode,this.transmissionNode=e.transmissionNode,this.thicknessNode=e.thicknessNode,this.attenuationDistanceNode=e.attenuationDistanceNode,this.attenuationColorNode=e.attenuationColorNode,this.dispersionNode=e.dispersionNode,this.anisotropyNode=e.anisotropyNode,super.copy(e)}}class Sf extends _m{constructor(e=!1,t=!1,r=!1,s=!1,i=!1,n=!1,a=!1){super(e,t,r,s,i,n),this.useSSS=a}direct({lightDirection:e,lightColor:t,reflectedLight:r},s){if(!0===this.useSSS){const i=s.material,{thicknessColorNode:n,thicknessDistortionNode:a,thicknessAmbientNode:o,thicknessAttenuationNode:u,thicknessPowerNode:l,thicknessScaleNode:d}=i,c=e.add(jd.mul(a)).normalize(),h=hn(Ud.dot(c.negate()).saturate().pow(l).mul(d)),p=Tn(h.add(o).mul(n));r.directDiffuse.addAssign(p.mul(u.mul(t)))}super.direct({lightDirection:e,lightColor:t,reflectedLight:r},s)}}class Rf extends Nf{static get type(){return"MeshSSSNodeMaterial"}constructor(e){super(e),this.thicknessColorNode=null,this.thicknessDistortionNode=hn(.1),this.thicknessAmbientNode=hn(0),this.thicknessAttenuationNode=hn(.1),this.thicknessPowerNode=hn(2),this.thicknessScaleNode=hn(10)}get useSSS(){return null!==this.thicknessColorNode}setupLightingModel(){return new Sf(this.useClearcoat,this.useSheen,this.useIridescence,this.useAnisotropy,this.useTransmission,this.useDispersion,this.useSSS)}copy(e){return this.thicknessColorNode=e.thicknessColorNode,this.thicknessDistortionNode=e.thicknessDistortionNode,this.thicknessAmbientNode=e.thicknessAmbientNode,this.thicknessAttenuationNode=e.thicknessAttenuationNode,this.thicknessPowerNode=e.thicknessPowerNode,this.thicknessScaleNode=e.thicknessScaleNode,super.copy(e)}}const Af=an(({normal:e,lightDirection:t,builder:r})=>{const s=e.dot(t),i=fn(s.mul(.5).add(.5),0);if(r.material.gradientMap){const e=bc("gradientMap","texture").context({getUV:()=>i});return Tn(e.r)}{const e=i.fwidth().mul(.5);return iu(Tn(.7),Tn(1),uu(hn(.7).sub(e.x),hn(.7).add(e.x),i.x))}});class Ef extends mg{direct({lightDirection:e,lightColor:t,reflectedLight:r},s){const i=Af({normal:Gd,lightDirection:e,builder:s}).mul(t);r.directDiffuse.addAssign(i.mul(Tg({diffuseColor:Un.rgb})))}indirect(e){const{ambientOcclusion:t,irradiance:r,reflectedLight:s}=e.context;s.indirectDiffuse.addAssign(r.mul(Tg({diffuseColor:Un}))),s.indirectDiffuse.mulAssign(t)}}const wf=new we;class Cf extends Xp{static get type(){return"MeshToonNodeMaterial"}constructor(e){super(),this.isMeshToonNodeMaterial=!0,this.lights=!0,this.setDefaultValues(wf),this.setValues(e)}setupLightingModel(){return new Ef}}const Mf=an(()=>{const e=Tn(Ud.z,0,Ud.x.negate()).normalize(),t=Ud.cross(e);return fn(e.dot(jd),t.dot(jd)).mul(.495).add(.5)}).once(["NORMAL","VERTEX"])().toVar("matcapUV"),Bf=new Ce;class Lf extends Xp{static get type(){return"MeshMatcapNodeMaterial"}constructor(e){super(),this.isMeshMatcapNodeMaterial=!0,this.setDefaultValues(Bf),this.setValues(e)}setupVariants(e){const t=Mf;let r;r=e.material.matcap?bc("matcap","texture").context({getUV:()=>t}):Tn(iu(.2,.8,t.y)),Un.rgb.mulAssign(r.rgb)}}class Pf extends li{static get type(){return"RotateNode"}constructor(e,t){super(),this.positionNode=e,this.rotationNode=t}getNodeType(e){return this.positionNode.getNodeType(e)}setup(e){const{rotationNode:t,positionNode:r}=this;if("vec2"===this.getNodeType(e)){const e=t.cos(),s=t.sin();return wn(e,s,s.negate(),e).mul(r)}{const e=t,s=Mn(Sn(1,0,0,0),Sn(0,No(e.x),vo(e.x).negate(),0),Sn(0,vo(e.x),No(e.x),0),Sn(0,0,0,1)),i=Mn(Sn(No(e.y),0,vo(e.y),0),Sn(0,1,0,0),Sn(vo(e.y).negate(),0,No(e.y),0),Sn(0,0,0,1)),n=Mn(Sn(No(e.z),vo(e.z).negate(),0,0),Sn(vo(e.z),No(e.z),0,0),Sn(0,0,1,0),Sn(0,0,0,1));return s.mul(i).mul(n).mul(Sn(r,1)).xyz}}}const Ff=en(Pf).setParameterLength(2),Df=new Me;class Uf extends Xp{static get type(){return"SpriteNodeMaterial"}constructor(e){super(),this.isSpriteNodeMaterial=!0,this._useSizeAttenuation=!0,this.positionNode=null,this.rotationNode=null,this.scaleNode=null,this.transparent=!0,this.setDefaultValues(Df),this.setValues(e)}setupPositionView(e){const{object:t,camera:r}=e,{positionNode:s,rotationNode:i,scaleNode:n,sizeAttenuation:a}=this,o=Ad.mul(Tn(s||0));let u=fn(xd[0].xyz.length(),xd[1].xyz.length());null!==n&&(u=u.mul(fn(n))),r.isPerspectiveCamera&&!1===a&&(u=u.mul(o.z.negate()));let l=Md.xy;if(t.center&&!0===t.center.isVector2){const e=((e,t,r)=>Yi(new $u(e,t,r)))("center","vec2",t);l=l.sub(e.sub(.5))}l=l.mul(u);const d=hn(i||yh),c=Ff(l,d);return Sn(o.xy.add(c),o.zw)}copy(e){return this.positionNode=e.positionNode,this.rotationNode=e.rotationNode,this.scaleNode=e.scaleNode,super.copy(e)}get sizeAttenuation(){return this._useSizeAttenuation}set sizeAttenuation(e){this._useSizeAttenuation!==e&&(this._useSizeAttenuation=e,this.needsUpdate=!0)}}const If=new Be,Of=new t;class Vf extends Uf{static get type(){return"PointsNodeMaterial"}constructor(e){super(),this.sizeNode=null,this.isPointsNodeMaterial=!0,this.setDefaultValues(If),this.setValues(e)}setupPositionView(){const{positionNode:e}=this;return Ad.mul(Tn(e||Bd)).xyz}setupVertexSprite(e){const{material:t,camera:r}=e,{rotationNode:s,scaleNode:i,sizeNode:n,sizeAttenuation:a}=this;let o=super.setupVertex(e);if(!0!==t.isNodeMaterial)return o;let u=null!==n?fn(n):Fh;u=u.mul(Wl),r.isPerspectiveCamera&&!0===a&&(u=u.mul(kf.div(Dd.z.negate()))),i&&i.isNode&&(u=u.mul(fn(i)));let l=Md.xy;if(s&&s.isNode){const e=hn(s);l=Ff(l,e)}return l=l.mul(u),l=l.div(Kl.div(2)),l=l.mul(o.w),o=o.add(Sn(l,0,0)),o}setupVertex(e){return e.object.isPoints?super.setupVertex(e):this.setupVertexSprite(e)}get alphaToCoverage(){return this._useAlphaToCoverage}set alphaToCoverage(e){this._useAlphaToCoverage!==e&&(this._useAlphaToCoverage=e,this.needsUpdate=!0)}}const kf=xa(1).onFrameUpdate(function({renderer:e}){const t=e.getSize(Of);this.value=.5*t.y});class Gf extends mg{constructor(){super(),this.shadowNode=hn(1).toVar("shadowMask")}direct({lightNode:e}){null!==e.shadowNode&&this.shadowNode.mulAssign(e.shadowNode)}finish({context:e}){Un.a.mulAssign(this.shadowNode.oneMinus()),e.outgoingLight.rgb.assign(Un.rgb)}}const zf=new Le;class $f extends Xp{static get type(){return"ShadowNodeMaterial"}constructor(e){super(),this.isShadowNodeMaterial=!0,this.lights=!0,this.transparent=!0,this.setDefaultValues(zf),this.setValues(e)}setupLightingModel(){return new Gf}}const Wf=Fn("vec3"),Hf=Fn("vec3"),jf=Fn("vec3");class qf extends mg{constructor(){super()}start(e){const{material:t}=e,r=Fn("vec3"),s=Fn("vec3");ln(od.sub(Pd).length().greaterThan(Nd.mul(2)),()=>{r.assign(od),s.assign(Pd)}).Else(()=>{r.assign(Pd),s.assign(od)});const i=s.sub(r),n=xa("int").onRenderUpdate(({material:e})=>e.steps),a=i.length().div(n).toVar(),o=i.normalize().toVar(),u=hn(0).toVar(),l=Tn(1).toVar();t.offsetNode&&u.addAssign(t.offsetNode.mul(a)),op(n,()=>{const s=r.add(o.mul(u)),i=id.mul(Sn(s,1)).xyz;let n;null!==t.depthNode&&(Hf.assign(Pp(wp(i.z,ed,td))),e.context.sceneDepthNode=Pp(t.depthNode).toVar()),e.context.positionWorld=s,e.context.shadowPositionWorld=s,e.context.positionView=i,Wf.assign(0),t.scatteringNode&&(n=t.scatteringNode({positionRay:s})),super.start(e),n&&Wf.mulAssign(n);const d=Wf.mul(.01).negate().mul(a).exp();l.mulAssign(d),u.addAssign(a)}),jf.addAssign(l.saturate().oneMinus())}scatteringLight(e,t){const r=t.context.sceneDepthNode;r?ln(r.greaterThanEqual(Hf),()=>{Wf.addAssign(e)}):Wf.addAssign(e)}direct({lightNode:e,lightColor:t},r){if(void 0===e.light.distance)return;const s=t.xyz.toVar();s.mulAssign(e.shadowNode),this.scatteringLight(s,r)}directRectArea({lightColor:e,lightPosition:t,halfWidth:r,halfHeight:s},i){const n=t.add(r).sub(s),a=t.sub(r).sub(s),o=t.sub(r).add(s),u=t.add(r).add(s),l=i.context.positionView,d=e.xyz.mul(Kg({P:l,p0:n,p1:a,p2:o,p3:u})).pow(1.5);this.scatteringLight(d,i)}finish(e){e.context.outgoingLight.assign(jf)}}class Xf extends Xp{static get type(){return"VolumeNodeMaterial"}constructor(e){super(),this.isVolumeNodeMaterial=!0,this.steps=25,this.offsetNode=null,this.scatteringNode=null,this.lights=!0,this.transparent=!0,this.side=w,this.depthTest=!1,this.depthWrite=!1,this.setValues(e)}setupLightingModel(){return new qf}}class Kf{constructor(e,t,r){this.renderer=e,this.nodes=t,this.info=r,this._context="undefined"!=typeof self?self:null,this._animationLoop=null,this._requestId=null}start(){const e=(t,r)=>{this._requestId=this._context.requestAnimationFrame(e),!0===this.info.autoReset&&this.info.reset(),this.nodes.nodeFrame.update(),this.info.frame=this.nodes.nodeFrame.frameId,this.renderer._inspector.begin(),null!==this._animationLoop&&this._animationLoop(t,r),this.renderer._inspector.finish()};e()}stop(){this._context.cancelAnimationFrame(this._requestId),this._requestId=null}getAnimationLoop(){return this._animationLoop}setAnimationLoop(e){this._animationLoop=e}getContext(){return this._context}setContext(e){this._context=e}dispose(){this.stop()}}class Yf{constructor(){this.weakMap=new WeakMap}get(e){let t=this.weakMap;for(let r=0;r{this.dispose()},this.onGeometryDispose=()=>{this.attributes=null,this.attributesId=null},this.material.addEventListener("dispose",this.onMaterialDispose),this.geometry.addEventListener("dispose",this.onGeometryDispose)}updateClipping(e){this.clippingContext=e}get clippingNeedsUpdate(){return null!==this.clippingContext&&this.clippingContext.cacheKey!==this.clippingContextCacheKey&&(this.clippingContextCacheKey=this.clippingContext.cacheKey,!0)}get hardwareClippingPlanes(){return!0===this.material.hardwareClipping?this.clippingContext.unionClippingCount:0}getNodeBuilderState(){return this._nodeBuilderState||(this._nodeBuilderState=this._nodes.getForRender(this))}getMonitor(){return this._monitor||(this._monitor=this.getNodeBuilderState().observer)}getBindings(){return this._bindings||(this._bindings=this.getNodeBuilderState().createBindings())}getBindingGroup(e){for(const t of this.getBindings())if(t.name===e)return t}getIndex(){return this._geometries.getIndex(this)}getIndirect(){return this._geometries.getIndirect(this)}getIndirectOffset(){return this._geometries.getIndirectOffset(this)}getChainArray(){return[this.object,this.material,this.context,this.lightsNode]}setGeometry(e){this.geometry=e,this.attributes=null,this.attributesId=null}getAttributes(){if(null!==this.attributes)return this.attributes;const e=this.getNodeBuilderState().nodeAttributes,t=this.geometry,r=[],s=new Set,i={};for(const n of e){let e;if(n.node&&n.node.attribute?e=n.node.attribute:(e=t.getAttribute(n.name),i[n.name]=e.version),void 0===e)continue;r.push(e);const a=e.isInterleavedBufferAttribute?e.data:e;s.add(a)}return this.attributes=r,this.attributesId=i,this.vertexBuffers=Array.from(s.values()),r}getVertexBuffers(){return null===this.vertexBuffers&&this.getAttributes(),this.vertexBuffers}getDrawParameters(){const{object:e,material:t,geometry:r,group:s,drawRange:i}=this,n=this.drawParams||(this.drawParams={vertexCount:0,firstVertex:0,instanceCount:0,firstInstance:0}),a=this.getIndex(),o=null!==a;let u=1;if(!0===r.isInstancedBufferGeometry?u=r.instanceCount:void 0!==e.count&&(u=Math.max(0,e.count)),0===u)return null;if(n.instanceCount=u,!0===e.isBatchedMesh)return n;let l=1;!0!==t.wireframe||e.isPoints||e.isLineSegments||e.isLine||e.isLineLoop||(l=2);let d=i.start*l,c=(i.start+i.count)*l;null!==s&&(d=Math.max(d,s.start*l),c=Math.min(c,(s.start+s.count)*l));const h=r.attributes.position;let p=1/0;o?p=a.count:null!=h&&(p=h.count),d=Math.max(d,0),c=Math.min(c,p);const g=c-d;return g<0||g===1/0?null:(n.vertexCount=g,n.firstVertex=d,n)}getGeometryCacheKey(){const{geometry:e}=this;let t="";for(const r of Object.keys(e.attributes).sort()){const s=e.attributes[r];t+=r+",",s.data&&(t+=s.data.stride+","),s.offset&&(t+=s.offset+","),s.itemSize&&(t+=s.itemSize+","),s.normalized&&(t+="n,")}for(const r of Object.keys(e.morphAttributes).sort()){const s=e.morphAttributes[r];t+="morph-"+r+",";for(let e=0,r=s.length;e1||Array.isArray(e.morphTargetInfluences))&&(s+=e.uuid+","),s+=this.context.id+",",s+=e.receiveShadow+",",Fs(s)}get needsGeometryUpdate(){if(this.geometry.id!==this.object.geometry.id)return!0;if(null!==this.attributes){const e=this.attributesId;for(const t in e){const r=this.geometry.getAttribute(t);if(void 0===r||e[t]!==r.id)return!0}}return!1}get needsUpdate(){return this.initialNodesCacheKey!==this.getDynamicCacheKey()||this.clippingNeedsUpdate}getDynamicCacheKey(){let e=0;return!0!==this.material.isShadowPassMaterial&&(e=this._nodes.getCacheKey(this.scene,this.lightsNode)),this.camera.isArrayCamera&&(e=Us(e,this.camera.cameras.length)),this.object.receiveShadow&&(e=Us(e,1)),e=Us(e,this.camera.id,this.renderer.contextNode.id,this.renderer.contextNode.version),e}getCacheKey(){return this.getMaterialCacheKey()+this.getDynamicCacheKey()}dispose(){this.material.removeEventListener("dispose",this.onMaterialDispose),this.geometry.removeEventListener("dispose",this.onGeometryDispose),this.onDispose()}}const Jf=[];class ey{constructor(e,t,r,s,i,n){this.renderer=e,this.nodes=t,this.geometries=r,this.pipelines=s,this.bindings=i,this.info=n,this.chainMaps={}}get(e,t,r,s,i,n,a,o){const u=this.getChainMap(o);Jf[0]=e,Jf[1]=t,Jf[2]=n,Jf[3]=i;let l=u.get(Jf);return void 0===l?(l=this.createRenderObject(this.nodes,this.geometries,this.renderer,e,t,r,s,i,n,a,o),u.set(Jf,l)):(l.updateClipping(a),l.needsGeometryUpdate&&l.setGeometry(e.geometry),(l.version!==t.version||l.needsUpdate)&&(l.initialCacheKey!==l.getCacheKey()?(l.dispose(),l=this.get(e,t,r,s,i,n,a,o)):l.version=t.version)),Jf.length=0,l}getChainMap(e="default"){return this.chainMaps[e]||(this.chainMaps[e]=new Yf)}dispose(){this.chainMaps={}}createRenderObject(e,t,r,s,i,n,a,o,u,l,d){const c=this.getChainMap(d),h=new Zf(e,t,r,s,i,n,a,o,u,l);return h.onDispose=()=>{this.pipelines.delete(h),this.bindings.deleteForRender(h),this.nodes.delete(h),c.delete(h.getChainArray())},h}}class ty{constructor(){this.data=new WeakMap}get(e){let t=this.data.get(e);return void 0===t&&(t={},this.data.set(e,t)),t}delete(e){let t=null;return this.data.has(e)&&(t=this.data.get(e),this.data.delete(e)),t}has(e){return this.data.has(e)}dispose(){this.data=new WeakMap}}const ry=1,sy=2,iy=3,ny=4,ay=16;class oy extends ty{constructor(e){super(),this.backend=e}delete(e){const t=super.delete(e);return null!==t&&this.backend.destroyAttribute(e),t}update(e,t){const r=this.get(e);if(void 0===r.version)t===ry?this.backend.createAttribute(e):t===sy?this.backend.createIndexAttribute(e):t===iy?this.backend.createStorageAttribute(e):t===ny&&this.backend.createIndirectStorageAttribute(e),r.version=this._getBufferAttribute(e).version;else{const t=this._getBufferAttribute(e);(r.version{this.info.memory.geometries--;const s=t.index,i=e.getAttributes();null!==s&&this.attributes.delete(s);for(const e of i)this.attributes.delete(e);const n=this.wireframes.get(t);void 0!==n&&this.attributes.delete(n),t.removeEventListener("dispose",r),this._geometryDisposeListeners.delete(t)};t.addEventListener("dispose",r),this._geometryDisposeListeners.set(t,r)}updateAttributes(e){const t=e.getAttributes();for(const e of t)e.isStorageBufferAttribute||e.isStorageInstancedBufferAttribute?this.updateAttribute(e,iy):this.updateAttribute(e,ry);const r=this.getIndex(e);null!==r&&this.updateAttribute(r,sy);const s=e.geometry.indirect;null!==s&&this.updateAttribute(s,ny)}updateAttribute(e,t){const r=this.info.render.calls;e.isInterleavedBufferAttribute?void 0===this.attributeCall.get(e)?(this.attributes.update(e,t),this.attributeCall.set(e,r)):this.attributeCall.get(e.data)!==r&&(this.attributes.update(e,t),this.attributeCall.set(e.data,r),this.attributeCall.set(e,r)):this.attributeCall.get(e)!==r&&(this.attributes.update(e,t),this.attributeCall.set(e,r))}getIndirect(e){return e.geometry.indirect}getIndirectOffset(e){return e.geometry.indirectOffset}getIndex(e){const{geometry:t,material:r}=e;let s=t.index;if(!0===r.wireframe){const e=this.wireframes;let r=e.get(t);void 0===r?(r=ly(t),e.set(t,r)):r.version!==uy(t)&&(this.attributes.delete(r),r=ly(t),e.set(t,r)),s=r}return s}dispose(){for(const[e,t]of this._geometryDisposeListeners.entries())e.removeEventListener("dispose",t);this._geometryDisposeListeners.clear()}}class cy{constructor(){this.autoReset=!0,this.frame=0,this.calls=0,this.render={calls:0,frameCalls:0,drawCalls:0,triangles:0,points:0,lines:0,timestamp:0},this.compute={calls:0,frameCalls:0,timestamp:0},this.memory={geometries:0,textures:0}}update(e,t,r){this.render.drawCalls++,e.isMesh||e.isSprite?this.render.triangles+=r*(t/3):e.isPoints?this.render.points+=r*t:e.isLineSegments?this.render.lines+=r*(t/2):e.isLine?this.render.lines+=r*(t-1):o("WebGPUInfo: Unknown object type.")}reset(){this.render.drawCalls=0,this.render.frameCalls=0,this.compute.frameCalls=0,this.render.triangles=0,this.render.points=0,this.render.lines=0}dispose(){this.reset(),this.calls=0,this.render.calls=0,this.compute.calls=0,this.render.timestamp=0,this.compute.timestamp=0,this.memory.geometries=0,this.memory.textures=0}}class hy{constructor(e){this.cacheKey=e,this.usedTimes=0}}class py extends hy{constructor(e,t,r){super(e),this.vertexProgram=t,this.fragmentProgram=r}}class gy extends hy{constructor(e,t){super(e),this.computeProgram=t,this.isComputePipeline=!0}}let my=0;class fy{constructor(e,t,r,s=null,i=null){this.id=my++,this.code=e,this.stage=t,this.name=r,this.transforms=s,this.attributes=i,this.usedTimes=0}}class yy extends ty{constructor(e,t){super(),this.backend=e,this.nodes=t,this.bindings=null,this.caches=new Map,this.programs={vertex:new Map,fragment:new Map,compute:new Map}}getForCompute(e,t){const{backend:r}=this,s=this.get(e);if(this._needsComputeUpdate(e)){const i=s.pipeline;i&&(i.usedTimes--,i.computeProgram.usedTimes--);const n=this.nodes.getForCompute(e);let a=this.programs.compute.get(n.computeShader);void 0===a&&(i&&0===i.computeProgram.usedTimes&&this._releaseProgram(i.computeProgram),a=new fy(n.computeShader,"compute",e.name,n.transforms,n.nodeAttributes),this.programs.compute.set(n.computeShader,a),r.createProgram(a));const o=this._getComputeCacheKey(e,a);let u=this.caches.get(o);void 0===u&&(i&&0===i.usedTimes&&this._releasePipeline(i),u=this._getComputePipeline(e,a,o,t)),u.usedTimes++,a.usedTimes++,s.version=e.version,s.pipeline=u}return s.pipeline}getForRender(e,t=null){const{backend:r}=this,s=this.get(e);if(this._needsRenderUpdate(e)){const i=s.pipeline;i&&(i.usedTimes--,i.vertexProgram.usedTimes--,i.fragmentProgram.usedTimes--);const n=e.getNodeBuilderState(),a=e.material?e.material.name:"";let o=this.programs.vertex.get(n.vertexShader);void 0===o&&(i&&0===i.vertexProgram.usedTimes&&this._releaseProgram(i.vertexProgram),o=new fy(n.vertexShader,"vertex",a),this.programs.vertex.set(n.vertexShader,o),r.createProgram(o));let u=this.programs.fragment.get(n.fragmentShader);void 0===u&&(i&&0===i.fragmentProgram.usedTimes&&this._releaseProgram(i.fragmentProgram),u=new fy(n.fragmentShader,"fragment",a),this.programs.fragment.set(n.fragmentShader,u),r.createProgram(u));const l=this._getRenderCacheKey(e,o,u);let d=this.caches.get(l);void 0===d?(i&&0===i.usedTimes&&this._releasePipeline(i),d=this._getRenderPipeline(e,o,u,l,t)):e.pipeline=d,d.usedTimes++,o.usedTimes++,u.usedTimes++,s.pipeline=d}return s.pipeline}delete(e){const t=this.get(e).pipeline;return t&&(t.usedTimes--,0===t.usedTimes&&this._releasePipeline(t),t.isComputePipeline?(t.computeProgram.usedTimes--,0===t.computeProgram.usedTimes&&this._releaseProgram(t.computeProgram)):(t.fragmentProgram.usedTimes--,t.vertexProgram.usedTimes--,0===t.vertexProgram.usedTimes&&this._releaseProgram(t.vertexProgram),0===t.fragmentProgram.usedTimes&&this._releaseProgram(t.fragmentProgram))),super.delete(e)}dispose(){super.dispose(),this.caches=new Map,this.programs={vertex:new Map,fragment:new Map,compute:new Map}}updateForRender(e){this.getForRender(e)}_getComputePipeline(e,t,r,s){r=r||this._getComputeCacheKey(e,t);let i=this.caches.get(r);return void 0===i&&(i=new gy(r,t),this.caches.set(r,i),this.backend.createComputePipeline(i,s)),i}_getRenderPipeline(e,t,r,s,i){s=s||this._getRenderCacheKey(e,t,r);let n=this.caches.get(s);return void 0===n&&(n=new py(s,t,r),this.caches.set(s,n),e.pipeline=n,this.backend.createRenderPipeline(e,i)),n}_getComputeCacheKey(e,t){return e.id+","+t.id}_getRenderCacheKey(e,t,r){return t.id+","+r.id+","+this.backend.getRenderCacheKey(e)}_releasePipeline(e){this.caches.delete(e.cacheKey)}_releaseProgram(e){const t=e.code,r=e.stage;this.programs[r].delete(t)}_needsComputeUpdate(e){const t=this.get(e);return void 0===t.pipeline||t.version!==e.version}_needsRenderUpdate(e){return void 0===this.get(e).pipeline||this.backend.needsRenderUpdate(e)}}class by extends ty{constructor(e,t,r,s,i,n){super(),this.backend=e,this.textures=r,this.pipelines=i,this.attributes=s,this.nodes=t,this.info=n,this.pipelines.bindings=this}getForRender(e){const t=e.getBindings();for(const e of t){const r=this.get(e);void 0===r.bindGroup&&(this._init(e),this.backend.createBindings(e,t,0),r.bindGroup=e)}return t}getForCompute(e){const t=this.nodes.getForCompute(e).bindings;for(const e of t){const r=this.get(e);void 0===r.bindGroup&&(this._init(e),this.backend.createBindings(e,t,0),r.bindGroup=e)}return t}updateForCompute(e){this._updateBindings(this.getForCompute(e))}updateForRender(e){this._updateBindings(this.getForRender(e))}deleteForCompute(e){const t=this.nodes.getForCompute(e).bindings;for(const e of t)this.backend.deleteBindGroupData(e),this.delete(e)}deleteForRender(e){const t=e.getBindings();for(const e of t)this.backend.deleteBindGroupData(e),this.delete(e)}_updateBindings(e){for(const t of e)this._update(t,e)}_init(e){for(const t of e.bindings)if(t.isSampledTexture)this.textures.updateTexture(t.texture);else if(t.isSampler)this.textures.updateSampler(t.texture);else if(t.isStorageBuffer){const e=t.attribute,r=e.isIndirectStorageBufferAttribute?ny:iy;this.attributes.update(e,r)}}_update(e,t){const{backend:r}=this;let s=!1,i=!0,n=0,a=0;for(const t of e.bindings){if(!1!==this.nodes.updateGroup(t)){if(t.isStorageBuffer){const e=t.attribute,r=e.isIndirectStorageBufferAttribute?ny:iy;this.attributes.update(e,r)}if(t.isUniformBuffer){t.update()&&r.updateBinding(t)}else if(t.isSampledTexture){const e=t.update(),o=t.texture,u=this.textures.get(o);e&&(this.textures.updateTexture(o),t.generation!==u.generation&&(t.generation=u.generation,s=!0,i=!1));if(void 0!==r.get(o).externalTexture||u.isDefaultTexture?i=!1:(n=10*n+o.id,a+=o.version),!0===o.isStorageTexture&&!0===o.mipmapsAutoUpdate){const e=this.get(o);!0===t.store?e.needsMipmap=!0:this.textures.needsMipmaps(o)&&!0===e.needsMipmap&&(this.backend.generateMipmaps(o),e.needsMipmap=!1)}}else if(t.isSampler){if(t.update()){const e=this.textures.updateSampler(t.texture);t.samplerKey!==e&&(t.samplerKey=e,s=!0,i=!1)}}}}!0===s&&this.backend.updateBindings(e,t,i?n:0,a)}}function xy(e,t){return e.groupOrder!==t.groupOrder?e.groupOrder-t.groupOrder:e.renderOrder!==t.renderOrder?e.renderOrder-t.renderOrder:e.z!==t.z?e.z-t.z:e.id-t.id}function Ty(e,t){return e.groupOrder!==t.groupOrder?e.groupOrder-t.groupOrder:e.renderOrder!==t.renderOrder?e.renderOrder-t.renderOrder:e.z!==t.z?t.z-e.z:e.id-t.id}function _y(e){return(e.transmission>0||e.transmissionNode&&e.transmissionNode.isNode)&&e.side===C&&!1===e.forceSinglePass}class vy{constructor(e,t,r){this.renderItems=[],this.renderItemsIndex=0,this.opaque=[],this.transparentDoublePass=[],this.transparent=[],this.bundles=[],this.lightsNode=e.getNode(t,r),this.lightsArray=[],this.scene=t,this.camera=r,this.occlusionQueryCount=0}begin(){return this.renderItemsIndex=0,this.opaque.length=0,this.transparentDoublePass.length=0,this.transparent.length=0,this.bundles.length=0,this.lightsArray.length=0,this.occlusionQueryCount=0,this}getNextRenderItem(e,t,r,s,i,n,a){let o=this.renderItems[this.renderItemsIndex];return void 0===o?(o={id:e.id,object:e,geometry:t,material:r,groupOrder:s,renderOrder:e.renderOrder,z:i,group:n,clippingContext:a},this.renderItems[this.renderItemsIndex]=o):(o.id=e.id,o.object=e,o.geometry=t,o.material=r,o.groupOrder=s,o.renderOrder=e.renderOrder,o.z=i,o.group=n,o.clippingContext=a),this.renderItemsIndex++,o}push(e,t,r,s,i,n,a){const o=this.getNextRenderItem(e,t,r,s,i,n,a);!0===e.occlusionTest&&this.occlusionQueryCount++,!0===r.transparent||r.transmission>0||r.transmissionNode&&r.transmissionNode.isNode||r.backdropNode&&r.backdropNode.isNode?(_y(r)&&this.transparentDoublePass.push(o),this.transparent.push(o)):this.opaque.push(o)}unshift(e,t,r,s,i,n,a){const o=this.getNextRenderItem(e,t,r,s,i,n,a);!0===r.transparent||r.transmission>0||r.transmissionNode&&r.transmissionNode.isNode||r.backdropNode&&r.backdropNode.isNode?(_y(r)&&this.transparentDoublePass.unshift(o),this.transparent.unshift(o)):this.opaque.unshift(o)}pushBundle(e){this.bundles.push(e)}pushLight(e){this.lightsArray.push(e)}sort(e,t){this.opaque.length>1&&this.opaque.sort(e||xy),this.transparentDoublePass.length>1&&this.transparentDoublePass.sort(t||Ty),this.transparent.length>1&&this.transparent.sort(t||Ty)}finish(){this.lightsNode.setLights(this.lightsArray);for(let e=this.renderItemsIndex,t=this.renderItems.length;e>t,u=a.height>>t;let l=e.depthTexture||i[t];const d=!0===e.depthBuffer||!0===e.stencilBuffer;let c=!1;void 0===l&&d&&(l=new X,l.format=e.stencilBuffer?Ie:Oe,l.type=e.stencilBuffer?Ve:S,l.image.width=o,l.image.height=u,l.image.depth=a.depth,l.renderTarget=e,l.isArrayTexture=!0===e.multiview&&a.depth>1,i[t]=l),r.width===a.width&&a.height===r.height||(c=!0,l&&(l.needsUpdate=!0,l.image.width=o,l.image.height=u,l.image.depth=l.isArrayTexture?l.image.depth:1)),r.width=a.width,r.height=a.height,r.textures=n,r.depthTexture=l||null,r.depth=e.depthBuffer,r.stencil=e.stencilBuffer,r.renderTarget=e,r.sampleCount!==s&&(c=!0,l&&(l.needsUpdate=!0),r.sampleCount=s);const h={sampleCount:s};if(!0!==e.isXRRenderTarget){for(let e=0;e{this._destroyRenderTarget(e)},e.addEventListener("dispose",r.onDispose))}updateTexture(e,t={}){const r=this.get(e);if(!0===r.initialized&&r.version===e.version)return;const s=e.isRenderTargetTexture||e.isDepthTexture||e.isFramebufferTexture,i=this.backend;if(s&&!0===r.initialized&&i.destroyTexture(e),e.isFramebufferTexture){const t=this.renderer.getRenderTarget();e.type=t?t.texture.type:ke}const{width:n,height:a,depth:o}=this.getSize(e);if(t.width=n,t.height=a,t.depth=o,t.needsMipmaps=this.needsMipmaps(e),t.levels=t.needsMipmaps?this.getMipLevels(e,n,a):1,e.isCubeTexture&&e.mipmaps.length>0&&t.levels++,s||!0===e.isStorageTexture||!0===e.isExternalTexture)i.createTexture(e,t),r.generation=e.version;else if(e.version>0){const s=e.image;if(void 0===s)d("Renderer: Texture marked for update but image is undefined.");else if(!1===s.complete)d("Renderer: Texture marked for update but image is incomplete.");else{if(e.images){const r=[];for(const t of e.images)r.push(t);t.images=r}else t.image=s;void 0!==r.isDefaultTexture&&!0!==r.isDefaultTexture||(i.createTexture(e,t),r.isDefaultTexture=!1,r.generation=e.version),!0===e.source.dataReady&&i.updateTexture(e,t);const n=!0===e.isStorageTexture&&!1===e.mipmapsAutoUpdate;t.needsMipmaps&&0===e.mipmaps.length&&!n&&i.generateMipmaps(e),e.onUpdate&&e.onUpdate(e)}}else i.createDefaultTexture(e),r.isDefaultTexture=!0,r.generation=e.version;!0!==r.initialized&&(r.initialized=!0,r.generation=e.version,this.info.memory.textures++,e.isVideoTexture&&p.getTransfer(e.colorSpace)!==g&&d("WebGPURenderer: Video textures must use a color space with a sRGB transfer function, e.g. SRGBColorSpace."),r.onDispose=()=>{this._destroyTexture(e)},e.addEventListener("dispose",r.onDispose)),r.version=e.version}updateSampler(e){return this.backend.updateSampler(e)}getSize(e,t=Ly){let r=e.images?e.images[0]:e.image;return r?(void 0!==r.image&&(r=r.image),"undefined"!=typeof HTMLVideoElement&&r instanceof HTMLVideoElement?(t.width=r.videoWidth||1,t.height=r.videoHeight||1,t.depth=1):"undefined"!=typeof VideoFrame&&r instanceof VideoFrame?(t.width=r.displayWidth||1,t.height=r.displayHeight||1,t.depth=1):(t.width=r.width||1,t.height=r.height||1,t.depth=e.isCubeTexture?6:r.depth||1)):t.width=t.height=t.depth=1,t}getMipLevels(e,t,r){let s;return s=e.mipmaps.length>0?e.mipmaps.length:!0===e.isCompressedTexture?1:Math.floor(Math.log2(Math.max(t,r)))+1,s}needsMipmaps(e){return!0===e.generateMipmaps||e.mipmaps.length>0}_destroyRenderTarget(e){if(!0===this.has(e)){const t=this.get(e),r=t.textures,s=t.depthTexture;e.removeEventListener("dispose",t.onDispose);for(let e=0;e=2)for(let r=0;r{if(this._currentNode=t,!t.isVarNode||!t.isIntent(e)||!0===t.isAssign(e))if("setup"===s)t.build(e);else if("analyze"===s)t.build(e,this);else if("generate"===s){const r=e.getDataFromNode(t,"any").stages,s=r&&r[e.shaderStage];if(t.isVarNode&&s&&1===s.length&&s[0]&&s[0].isStackNode)return;t.build(e,"void")}},n=[...this.nodes];for(const e of n)i(e);this._currentNode=null;const a=this.nodes.filter(e=>-1===n.indexOf(e));for(const e of a)i(e);let o;return o=this.hasOutput?this.outputNode.build(e,...t):super.build(e,...t),on(r),e.removeActiveStack(this),o}}const Iy=en(Uy).setParameterLength(0,1);class Oy extends ai{static get type(){return"StructTypeNode"}constructor(e,t=null){var r;super("struct"),this.membersLayout=(r=e,Object.entries(r).map(([e,t])=>"string"==typeof t?{name:e,type:t,atomic:!1}:{name:e,type:t.type,atomic:t.atomic||!1})),this.name=t,this.isStructLayoutNode=!0}getLength(){const e=Float32Array.BYTES_PER_ELEMENT;let t=1,r=0;for(const s of this.membersLayout){const i=s.type,n=zs(i),a=$s(i)/e;t=Math.max(t,a);const o=r%t%a;0!==o&&(r+=a-o),r+=n}return Math.ceil(r/t)*t}getMemberType(e,t){const r=this.membersLayout.find(e=>e.name===t);return r?r.type:"void"}getNodeType(e){return e.getStructTypeFromNode(this,this.membersLayout,this.name).name}setup(e){e.getStructTypeFromNode(this,this.membersLayout,this.name),e.addInclude(this)}generate(e){return this.getNodeType(e)}}class Vy extends ai{static get type(){return"StructNode"}constructor(e,t){super("vec3"),this.structTypeNode=e,this.values=t,this.isStructNode=!0}getNodeType(e){return this.structTypeNode.getNodeType(e)}getMemberType(e,t){return this.structTypeNode.getMemberType(e,t)}generate(e){const t=e.getVarFromNode(this),r=t.type,s=e.getPropertyName(t);return e.addLineFlowCode(`${s} = ${e.generateStruct(r,this.structTypeNode.membersLayout,this.values)}`,this),t.name}}class ky extends ai{static get type(){return"OutputStructNode"}constructor(...e){super(),this.members=e,this.isOutputStructNode=!0}getNodeType(e){const t=e.getNodeProperties(this);if(void 0===t.membersLayout){const r=this.members,s=[];for(let t=0;tnew Hy(e,"uint","float"),Xy={};class Ky extends eo{static get type(){return"BitcountNode"}constructor(e,t){super(e,t),this.isBitcountNode=!0}_resolveElementType(e,t,r){"int"===r?t.assign(jy(e,"uint")):t.assign(e)}_returnDataNode(e){switch(e){case"uint":return gn;case"int":return pn;case"uvec2":return bn;case"uvec3":return vn;case"uvec4":return An;case"ivec2":return yn;case"ivec3":return _n;case"ivec4":return Rn}}_createTrailingZerosBaseLayout(e,t){const r=this._returnDataNode(t);return an(([e])=>{const s=gn(0);this._resolveElementType(e,s,t);const i=hn(s.bitAnd(Bo(s))),n=qy(i).shiftRight(23).sub(127);return r(n)}).setLayout({name:e,type:t,inputs:[{name:"value",type:t}]})}_createLeadingZerosBaseLayout(e,t){const r=this._returnDataNode(t);return an(([e])=>{ln(e.equal(gn(0)),()=>gn(32));const s=gn(0),i=gn(0);return this._resolveElementType(e,s,t),ln(s.shiftRight(16).equal(0),()=>{i.addAssign(16),s.shiftLeftAssign(16)}),ln(s.shiftRight(24).equal(0),()=>{i.addAssign(8),s.shiftLeftAssign(8)}),ln(s.shiftRight(28).equal(0),()=>{i.addAssign(4),s.shiftLeftAssign(4)}),ln(s.shiftRight(30).equal(0),()=>{i.addAssign(2),s.shiftLeftAssign(2)}),ln(s.shiftRight(31).equal(0),()=>{i.addAssign(1)}),r(i)}).setLayout({name:e,type:t,inputs:[{name:"value",type:t}]})}_createOneBitsBaseLayout(e,t){const r=this._returnDataNode(t);return an(([e])=>{const s=gn(0);this._resolveElementType(e,s,t),s.assign(s.sub(s.shiftRight(gn(1)).bitAnd(gn(1431655765)))),s.assign(s.bitAnd(gn(858993459)).add(s.shiftRight(gn(2)).bitAnd(gn(858993459))));const i=s.add(s.shiftRight(gn(4))).bitAnd(gn(252645135)).mul(gn(16843009)).shiftRight(gn(24));return r(i)}).setLayout({name:e,type:t,inputs:[{name:"value",type:t}]})}_createMainLayout(e,t,r,s){const i=this._returnDataNode(t);return an(([e])=>{if(1===r)return i(s(e));{const t=i(0),n=["x","y","z","w"];for(let i=0;id(r))()}}Ky.COUNT_TRAILING_ZEROS="countTrailingZeros",Ky.COUNT_LEADING_ZEROS="countLeadingZeros",Ky.COUNT_ONE_BITS="countOneBits";const Yy=rn(Ky,Ky.COUNT_TRAILING_ZEROS).setParameterLength(1),Qy=rn(Ky,Ky.COUNT_LEADING_ZEROS).setParameterLength(1),Zy=rn(Ky,Ky.COUNT_ONE_BITS).setParameterLength(1),Jy=an(([e])=>{const t=e.toUint().mul(747796405).add(2891336453),r=t.shiftRight(t.shiftRight(28).add(4)).bitXor(t).mul(277803737);return r.shiftRight(22).bitXor(r).toFloat().mul(1/2**32)}),eb=(e,t)=>Qo(Ma(4,e.mul(Ca(1,e))),t);class tb extends li{static get type(){return"PackFloatNode"}constructor(e,t){super(),this.vectorNode=t,this.encoding=e,this.isPackFloatNode=!0}getNodeType(){return"uint"}generate(e){const t=this.vectorNode.getNodeType(e);return`${e.getFloatPackingMethod(this.encoding)}(${this.vectorNode.build(e,t)})`}}const rb=rn(tb,"snorm").setParameterLength(1),sb=rn(tb,"unorm").setParameterLength(1),ib=rn(tb,"float16").setParameterLength(1);class nb extends li{static get type(){return"UnpackFloatNode"}constructor(e,t){super(),this.uintNode=t,this.encoding=e,this.isUnpackFloatNode=!0}getNodeType(){return"vec2"}generate(e){const t=this.uintNode.getNodeType(e);return`${e.getFloatUnpackingMethod(this.encoding)}(${this.uintNode.build(e,t)})`}}const ab=rn(nb,"snorm").setParameterLength(1),ob=rn(nb,"unorm").setParameterLength(1),ub=rn(nb,"float16").setParameterLength(1),lb=an(([e])=>e.fract().sub(.5).abs()).setLayout({name:"tri",type:"float",inputs:[{name:"x",type:"float"}]}),db=an(([e])=>Tn(lb(e.z.add(lb(e.y.mul(1)))),lb(e.z.add(lb(e.x.mul(1)))),lb(e.y.add(lb(e.x.mul(1)))))).setLayout({name:"tri3",type:"vec3",inputs:[{name:"p",type:"vec3"}]}),cb=an(([e,t,r])=>{const s=Tn(e).toVar(),i=hn(1.4).toVar(),n=hn(0).toVar(),a=Tn(s).toVar();return op({start:hn(0),end:hn(3),type:"float",condition:"<="},()=>{const e=Tn(db(a.mul(2))).toVar();s.addAssign(e.add(r.mul(hn(.1).mul(t)))),a.mulAssign(1.8),i.mulAssign(1.5),s.mulAssign(1.2);const o=hn(lb(s.z.add(lb(s.x.add(lb(s.y)))))).toVar();n.addAssign(o.div(i)),a.addAssign(.14)}),n}).setLayout({name:"triNoise3D",type:"float",inputs:[{name:"position",type:"vec3"},{name:"speed",type:"float"},{name:"time",type:"float"}]});class hb extends ai{static get type(){return"FunctionOverloadingNode"}constructor(e=[],...t){super(),this.functionNodes=e,this.parametersNodes=t,this._candidateFn=null,this.global=!0}getNodeType(e){return this.getCandidateFn(e).shaderNode.layout.type}getCandidateFn(e){const t=this.parametersNodes;let r=this._candidateFn;if(null===r){let s=null,i=-1;for(const r of this.functionNodes){const n=r.shaderNode.layout;if(null===n)throw new Error("FunctionOverloadingNode: FunctionNode must be a layout.");const a=n.inputs;if(t.length===a.length){let n=0;for(let r=0;ri&&(s=r,i=n)}}this._candidateFn=r=s}return r}setup(e){return this.getCandidateFn(e)(...this.parametersNodes)}}const pb=en(hb),gb=e=>(...t)=>pb(e,...t),mb=xa(0).setGroup(fa).onRenderUpdate(e=>e.time),fb=xa(0).setGroup(fa).onRenderUpdate(e=>e.deltaTime),yb=xa(0,"uint").setGroup(fa).onRenderUpdate(e=>e.frameId);const bb=an(([e,t,r=fn(.5)])=>Ff(e.sub(r),t).add(r)),xb=an(([e,t,r=fn(.5)])=>{const s=e.sub(r),i=s.dot(s),n=i.mul(i).mul(t);return e.add(s.mul(n))}),Tb=an(({position:e=null,horizontal:t=!0,vertical:r=!1})=>{let s;null!==e?(s=xd.toVar(),s[3][0]=e.x,s[3][1]=e.y,s[3][2]=e.z):s=xd;const i=id.mul(s);return qi(t)&&(i[0][0]=xd[0].length(),i[0][1]=0,i[0][2]=0),qi(r)&&(i[1][0]=0,i[1][1]=xd[1].length(),i[1][2]=0),i[2][0]=0,i[2][1]=0,i[2][2]=1,rd.mul(i).mul(Bd)}),_b=an(([e=null])=>{const t=Pp();return Pp(Rp(e)).sub(t).lessThan(0).select(Hl,e)});class vb extends ai{static get type(){return"SpriteSheetUVNode"}constructor(e,t=Rl(),r=hn(0)){super("vec2"),this.countNode=e,this.uvNode=t,this.frameNode=r}setup(){const{frameNode:e,uvNode:t,countNode:r}=this,{width:s,height:i}=r,n=e.mod(s.mul(i)).floor(),a=n.mod(s),o=i.sub(n.add(1).div(s).ceil()),u=r.reciprocal(),l=fn(a,o);return t.add(l).mul(u)}}const Nb=en(vb).setParameterLength(3),Sb=an(([e,t=null,r=null,s=hn(1),i=Bd,n=zd])=>{let a=n.abs().normalize();a=a.div(a.dot(Tn(1)));const o=i.yz.mul(s),u=i.zx.mul(s),l=i.xy.mul(s),d=e.value,c=null!==t?t.value:d,h=null!==r?r.value:d,p=Pl(d,o).mul(a.x),g=Pl(c,u).mul(a.y),m=Pl(h,l).mul(a.z);return wa(p,g,m)}),Rb=new Ge,Ab=new r,Eb=new r,wb=new r,Cb=new a,Mb=new r(0,0,-1),Bb=new s,Lb=new r,Pb=new r,Fb=new s,Db=new t,Ub=new _e,Ib=Hl.flipX();Ub.depthTexture=new X(1,1);let Ob=!1;class Vb extends Bl{static get type(){return"ReflectorNode"}constructor(e={}){super(e.defaultTexture||Ub.texture,Ib),this._reflectorBaseNode=e.reflector||new kb(this,e),this._depthNode=null,this.setUpdateMatrix(!1)}get reflector(){return this._reflectorBaseNode}get target(){return this._reflectorBaseNode.target}getDepthNode(){if(null===this._depthNode){if(!0!==this._reflectorBaseNode.depth)throw new Error("THREE.ReflectorNode: Depth node can only be requested when the reflector is created with { depth: true }. ");this._depthNode=Yi(new Vb({defaultTexture:Ub.depthTexture,reflector:this._reflectorBaseNode}))}return this._depthNode}setup(e){return e.object.isQuadMesh||this._reflectorBaseNode.build(e),super.setup(e)}clone(){const e=new this.constructor(this.reflectorNode);return e.uvNode=this.uvNode,e.levelNode=this.levelNode,e.biasNode=this.biasNode,e.sampler=this.sampler,e.depthNode=this.depthNode,e.compareNode=this.compareNode,e.gradNode=this.gradNode,e.offsetNode=this.offsetNode,e._reflectorBaseNode=this._reflectorBaseNode,e}dispose(){super.dispose(),this._reflectorBaseNode.dispose()}}class kb extends ai{static get type(){return"ReflectorBaseNode"}constructor(e,t={}){super();const{target:r=new ze,resolutionScale:s=1,generateMipmaps:i=!1,bounces:n=!0,depth:a=!1,samples:o=0}=t;this.textureNode=e,this.target=r,this.resolutionScale=s,void 0!==t.resolution&&(v('ReflectorNode: The "resolution" parameter has been renamed to "resolutionScale".'),this.resolutionScale=t.resolution),this.generateMipmaps=i,this.bounces=n,this.depth=a,this.samples=o,this.updateBeforeType=n?Qs.RENDER:Qs.FRAME,this.virtualCameras=new WeakMap,this.renderTargets=new Map,this.forceUpdate=!1,this.hasOutput=!1}_updateResolution(e,t){const r=this.resolutionScale;t.getDrawingBufferSize(Db),e.setSize(Math.round(Db.width*r),Math.round(Db.height*r))}setup(e){return this._updateResolution(Ub,e.renderer),super.setup(e)}dispose(){super.dispose();for(const e of this.renderTargets.values())e.dispose()}getVirtualCamera(e){let t=this.virtualCameras.get(e);return void 0===t&&(t=e.clone(),this.virtualCameras.set(e,t)),t}getRenderTarget(e){let t=this.renderTargets.get(e);return void 0===t&&(t=new _e(0,0,{type:fe,samples:this.samples}),!0===this.generateMipmaps&&(t.texture.minFilter=$e,t.texture.generateMipmaps=!0),!0===this.depth&&(t.depthTexture=new X),this.renderTargets.set(e,t)),t}updateBefore(e){if(!1===this.bounces&&Ob)return!1;Ob=!0;const{scene:t,camera:r,renderer:s,material:i}=e,{target:n}=this,a=this.getVirtualCamera(r),o=this.getRenderTarget(a);s.getDrawingBufferSize(Db),this._updateResolution(o,s),Eb.setFromMatrixPosition(n.matrixWorld),wb.setFromMatrixPosition(r.matrixWorld),Cb.extractRotation(n.matrixWorld),Ab.set(0,0,1),Ab.applyMatrix4(Cb),Lb.subVectors(Eb,wb);let u=!1;if(!0===Lb.dot(Ab)>0&&!1===this.forceUpdate){if(!1===this.hasOutput)return void(Ob=!1);u=!0}Lb.reflect(Ab).negate(),Lb.add(Eb),Cb.extractRotation(r.matrixWorld),Mb.set(0,0,-1),Mb.applyMatrix4(Cb),Mb.add(wb),Pb.subVectors(Eb,Mb),Pb.reflect(Ab).negate(),Pb.add(Eb),a.coordinateSystem=r.coordinateSystem,a.position.copy(Lb),a.up.set(0,1,0),a.up.applyMatrix4(Cb),a.up.reflect(Ab),a.lookAt(Pb),a.near=r.near,a.far=r.far,a.updateMatrixWorld(),a.projectionMatrix.copy(r.projectionMatrix),Rb.setFromNormalAndCoplanarPoint(Ab,Eb),Rb.applyMatrix4(a.matrixWorldInverse),Bb.set(Rb.normal.x,Rb.normal.y,Rb.normal.z,Rb.constant);const l=a.projectionMatrix;Fb.x=(Math.sign(Bb.x)+l.elements[8])/l.elements[0],Fb.y=(Math.sign(Bb.y)+l.elements[9])/l.elements[5],Fb.z=-1,Fb.w=(1+l.elements[10])/l.elements[14],Bb.multiplyScalar(1/Bb.dot(Fb));l.elements[2]=Bb.x,l.elements[6]=Bb.y,l.elements[10]=s.coordinateSystem===h?Bb.z-0:Bb.z+1-0,l.elements[14]=Bb.w,this.textureNode.value=o.texture,!0===this.depth&&(this.textureNode.getDepthNode().value=o.depthTexture),i.visible=!1;const d=s.getRenderTarget(),c=s.getMRT(),p=s.autoClear;s.setMRT(null),s.setRenderTarget(o),s.autoClear=!0;const g=t.name;t.name=(t.name||"Scene")+" [ Reflector ]",u?(s.clear(),this.hasOutput=!1):(s.render(t,a),this.hasOutput=!0),t.name=g,s.setMRT(c),s.setRenderTarget(d),s.autoClear=p,i.visible=!0,Ob=!1,this.forceUpdate=!1}get resolution(){return v('ReflectorNode: The "resolution" property has been renamed to "resolutionScale".'),this.resolutionScale}set resolution(e){v('ReflectorNode: The "resolution" property has been renamed to "resolutionScale".'),this.resolutionScale=e}}const Gb=new xe(-1,1,1,-1,0,1);class zb extends be{constructor(e=!1){super();const t=!1===e?[0,-1,0,1,2,1]:[0,2,0,0,2,0];this.setAttribute("position",new We([-1,3,0,-1,-1,0,3,-1,0],3)),this.setAttribute("uv",new We(t,2))}}const $b=new zb;class Wb extends se{constructor(e=null){super($b,e),this.camera=Gb,this.isQuadMesh=!0}async renderAsync(e){v('QuadMesh: "renderAsync()" has been deprecated. Use "render()" and "await renderer.init();" when creating the renderer.'),await e.init(),e.render(this,Gb)}render(e){e.render(this,Gb)}}const Hb=new t;class jb extends Bl{static get type(){return"RTTNode"}constructor(e,t=null,r=null,s={type:fe}){const i=new _e(t,r,s);super(i.texture,Rl()),this.isRTTNode=!0,this.node=e,this.width=t,this.height=r,this.pixelRatio=1,this.renderTarget=i,this.textureNeedsUpdate=!0,this.autoUpdate=!0,this._rttNode=null,this._quadMesh=new Wb(new Xp),this.updateBeforeType=Qs.RENDER}get autoResize(){return null===this.width}setup(e){return this._rttNode=this.node.context(e.getSharedContext()),this._quadMesh.material.name="RTT",this._quadMesh.material.needsUpdate=!0,super.setup(e)}setSize(e,t){this.width=e,this.height=t;const r=e*this.pixelRatio,s=t*this.pixelRatio;this.renderTarget.setSize(r,s),this.textureNeedsUpdate=!0}setPixelRatio(e){this.pixelRatio=e,this.setSize(this.width,this.height)}updateBefore({renderer:e}){if(!1===this.textureNeedsUpdate&&!1===this.autoUpdate)return;if(this.textureNeedsUpdate=!1,!0===this.autoResize){const t=e.getPixelRatio(),r=e.getSize(Hb),s=Math.floor(r.width*t),i=Math.floor(r.height*t);s===this.renderTarget.width&&i===this.renderTarget.height||(this.renderTarget.setSize(s,i),this.textureNeedsUpdate=!0)}let t="RTT";this.node.name&&(t=this.node.name+" [ "+t+" ]"),this._quadMesh.material.fragmentNode=this._rttNode,this._quadMesh.name=t;const r=e.getRenderTarget();e.setRenderTarget(this.renderTarget),this._quadMesh.render(e),e.setRenderTarget(r)}clone(){const e=new Bl(this.value,this.uvNode,this.levelNode);return e.sampler=this.sampler,e.referenceNode=this,e}}const qb=(e,...t)=>Yi(new jb(Yi(e),...t)),Xb=an(([e,t,r],s)=>{let i;s.renderer.coordinateSystem===h?(e=fn(e.x,e.y.oneMinus()).mul(2).sub(1),i=Sn(Tn(e,t),1)):i=Sn(Tn(e.x,e.y.oneMinus(),t).mul(2).sub(1),1);const n=Sn(r.mul(i));return n.xyz.div(n.w)}),Kb=an(([e,t])=>{const r=t.mul(Sn(e,1)),s=r.xy.div(r.w).mul(.5).add(.5).toVar();return fn(s.x,s.y.oneMinus())}),Yb=an(([e,t,r])=>{const s=El(Fl(t)),i=yn(e.mul(s)).toVar(),n=Fl(t,i).toVar(),a=Fl(t,i.sub(yn(2,0))).toVar(),o=Fl(t,i.sub(yn(1,0))).toVar(),u=Fl(t,i.add(yn(1,0))).toVar(),l=Fl(t,i.add(yn(2,0))).toVar(),d=Fl(t,i.add(yn(0,2))).toVar(),c=Fl(t,i.add(yn(0,1))).toVar(),h=Fl(t,i.sub(yn(0,1))).toVar(),p=Fl(t,i.sub(yn(0,2))).toVar(),g=wo(Ca(hn(2).mul(o).sub(a),n)).toVar(),m=wo(Ca(hn(2).mul(u).sub(l),n)).toVar(),f=wo(Ca(hn(2).mul(c).sub(d),n)).toVar(),y=wo(Ca(hn(2).mul(h).sub(p),n)).toVar(),b=Xb(e,n,r).toVar(),x=g.lessThan(m).select(b.sub(Xb(e.sub(fn(hn(1).div(s.x),0)),o,r)),b.negate().add(Xb(e.add(fn(hn(1).div(s.x),0)),u,r))),T=f.lessThan(y).select(b.sub(Xb(e.add(fn(0,hn(1).div(s.y))),c,r)),b.negate().add(Xb(e.sub(fn(0,hn(1).div(s.y))),h,r)));return To(Yo(x,T))}),Qb=an(([e])=>_o(hn(52.9829189).mul(_o(Ko(e,fn(.06711056,.00583715)))))).setLayout({name:"interleavedGradientNoise",type:"float",inputs:[{name:"position",type:"vec2"}]}),Zb=an(([e,t,r])=>{const s=hn(2.399963229728653),i=fo(hn(e).add(.5).div(hn(t))),n=hn(e).mul(s).add(r);return fn(No(n),vo(n)).mul(i)}).setLayout({name:"vogelDiskSample",type:"vec2",inputs:[{name:"sampleIndex",type:"int"},{name:"samplesCount",type:"int"},{name:"phi",type:"float"}]});class Jb extends ai{static get type(){return"SampleNode"}constructor(e,t=null){super(),this.callback=e,this.uvNode=t,this.isSampleNode=!0}setup(){return this.sample(Rl())}sample(e){return this.callback(e)}}class ex extends ai{static get type(){return"EventNode"}constructor(e,t){super("void"),this.eventType=e,this.callback=t,e===ex.OBJECT?this.updateType=Qs.OBJECT:e===ex.MATERIAL?this.updateType=Qs.RENDER:e===ex.BEFORE_OBJECT?this.updateBeforeType=Qs.OBJECT:e===ex.BEFORE_MATERIAL&&(this.updateBeforeType=Qs.RENDER)}update(e){this.callback(e)}updateBefore(e){this.callback(e)}}ex.OBJECT="object",ex.MATERIAL="material",ex.BEFORE_OBJECT="beforeObject",ex.BEFORE_MATERIAL="beforeMaterial";const tx=(e,t)=>Yi(new ex(e,t)).toStack();class rx extends ${constructor(e,t,r=Float32Array){super(ArrayBuffer.isView(e)?e:new r(e*t),t),this.isStorageInstancedBufferAttribute=!0}}class sx extends Re{constructor(e,t,r=Float32Array){super(ArrayBuffer.isView(e)?e:new r(e*t),t),this.isStorageBufferAttribute=!0}}class ix extends ai{static get type(){return"PointUVNode"}constructor(){super("vec2"),this.isPointUVNode=!0}generate(){return"vec2( gl_PointCoord.x, 1.0 - gl_PointCoord.y )"}}const nx=tn(ix),ax=new M,ox=new a;class ux extends ai{static get type(){return"SceneNode"}constructor(e=ux.BACKGROUND_BLURRINESS,t=null){super(),this.scope=e,this.scene=t}setup(e){const t=this.scope,r=null!==this.scene?this.scene:e.scene;let s;return t===ux.BACKGROUND_BLURRINESS?s=mc("backgroundBlurriness","float",r):t===ux.BACKGROUND_INTENSITY?s=mc("backgroundIntensity","float",r):t===ux.BACKGROUND_ROTATION?s=xa("mat4").setName("backgroundRotation").setGroup(fa).onRenderUpdate(()=>{const e=r.background;return null!==e&&e.isTexture&&e.mapping!==He?(ax.copy(r.backgroundRotation),ax.x*=-1,ax.y*=-1,ax.z*=-1,ox.makeRotationFromEuler(ax)):ox.identity(),ox}):o("SceneNode: Unknown scope:",t),s}}ux.BACKGROUND_BLURRINESS="backgroundBlurriness",ux.BACKGROUND_INTENSITY="backgroundIntensity",ux.BACKGROUND_ROTATION="backgroundRotation";const lx=tn(ux,ux.BACKGROUND_BLURRINESS),dx=tn(ux,ux.BACKGROUND_INTENSITY),cx=tn(ux,ux.BACKGROUND_ROTATION);class hx extends Bl{static get type(){return"StorageTextureNode"}constructor(e,t,r=null){super(e,t),this.storeNode=r,this.mipLevel=0,this.isStorageTextureNode=!0,this.access=Js.WRITE_ONLY}getInputType(){return"storageTexture"}setup(e){super.setup(e);const t=e.getNodeProperties(this);return t.storeNode=this.storeNode,t}setAccess(e){return this.access=e,this}setMipLevel(e){return this.mipLevel=e,this}generate(e,t){let r;return r=null!==this.storeNode?this.generateStore(e):super.generate(e,t),r}toReadWrite(){return this.setAccess(Js.READ_WRITE)}toReadOnly(){return this.setAccess(Js.READ_ONLY)}toWriteOnly(){return this.setAccess(Js.WRITE_ONLY)}generateStore(e){const t=e.getNodeProperties(this),{uvNode:r,storeNode:s,depthNode:i}=t,n=super.generate(e,"property"),a=r.build(e,!0===this.value.is3DTexture?"uvec3":"uvec2"),o=s.build(e,"vec4"),u=i?i.build(e,"int"):null,l=e.generateTextureStore(e,n,a,u,o);e.addLineFlowCode(l,this)}clone(){const e=super.clone();return e.storeNode=this.storeNode,e.mipLevel=this.mipLevel,e}}const px=en(hx).setParameterLength(1,3),gx=an(({texture:e,uv:t})=>{const r=1e-4,s=Tn().toVar();return ln(t.x.lessThan(r),()=>{s.assign(Tn(1,0,0))}).ElseIf(t.y.lessThan(r),()=>{s.assign(Tn(0,1,0))}).ElseIf(t.z.lessThan(r),()=>{s.assign(Tn(0,0,1))}).ElseIf(t.x.greaterThan(.9999),()=>{s.assign(Tn(-1,0,0))}).ElseIf(t.y.greaterThan(.9999),()=>{s.assign(Tn(0,-1,0))}).ElseIf(t.z.greaterThan(.9999),()=>{s.assign(Tn(0,0,-1))}).Else(()=>{const r=.01,i=e.sample(t.add(Tn(-.01,0,0))).r.sub(e.sample(t.add(Tn(r,0,0))).r),n=e.sample(t.add(Tn(0,-.01,0))).r.sub(e.sample(t.add(Tn(0,r,0))).r),a=e.sample(t.add(Tn(0,0,-.01))).r.sub(e.sample(t.add(Tn(0,0,r))).r);s.assign(Tn(i,n,a))}),s.normalize()});class mx extends Bl{static get type(){return"Texture3DNode"}constructor(e,t=null,r=null){super(e,t,r),this.isTexture3DNode=!0}getInputType(){return"texture3D"}getDefaultUV(){return Tn(.5,.5,.5)}setUpdateMatrix(){}setupUV(e,t){const r=this.value;return!e.isFlipY()||!0!==r.isRenderTargetTexture&&!0!==r.isFramebufferTexture||(t=this.sampler?t.flipY():t.setY(pn(El(this,this.levelNode).y).sub(t.y).sub(1))),t}generateUV(e,t){return t.build(e,!0===this.sampler?"vec3":"ivec3")}generateOffset(e,t){return t.build(e,"ivec3")}normal(e){return gx({texture:this,uv:e})}}const fx=en(mx).setParameterLength(1,3);class yx extends gc{static get type(){return"UserDataNode"}constructor(e,t,r=null){super(e,t,r),this.userData=r}updateReference(e){return this.reference=null!==this.userData?this.userData:e.object.userData,this.reference}}const bx=new WeakMap;class xx extends li{static get type(){return"VelocityNode"}constructor(){super("vec2"),this.projectionMatrix=null,this.updateType=Qs.OBJECT,this.updateAfterType=Qs.OBJECT,this.previousModelWorldMatrix=xa(new a),this.previousProjectionMatrix=xa(new a).setGroup(fa),this.previousCameraViewMatrix=xa(new a)}setProjectionMatrix(e){this.projectionMatrix=e}update({frameId:e,camera:t,object:r}){const s=_x(r);this.previousModelWorldMatrix.value.copy(s);const i=Tx(t);i.frameId!==e&&(i.frameId=e,void 0===i.previousProjectionMatrix?(i.previousProjectionMatrix=new a,i.previousCameraViewMatrix=new a,i.currentProjectionMatrix=new a,i.currentCameraViewMatrix=new a,i.previousProjectionMatrix.copy(this.projectionMatrix||t.projectionMatrix),i.previousCameraViewMatrix.copy(t.matrixWorldInverse)):(i.previousProjectionMatrix.copy(i.currentProjectionMatrix),i.previousCameraViewMatrix.copy(i.currentCameraViewMatrix)),i.currentProjectionMatrix.copy(this.projectionMatrix||t.projectionMatrix),i.currentCameraViewMatrix.copy(t.matrixWorldInverse),this.previousProjectionMatrix.value.copy(i.previousProjectionMatrix),this.previousCameraViewMatrix.value.copy(i.previousCameraViewMatrix))}updateAfter({object:e}){_x(e).copy(e.matrixWorld)}setup(){const e=null===this.projectionMatrix?rd:xa(this.projectionMatrix),t=this.previousCameraViewMatrix.mul(this.previousModelWorldMatrix),r=e.mul(Ad).mul(Bd),s=this.previousProjectionMatrix.mul(t).mul(Ld),i=r.xy.div(r.w),n=s.xy.div(s.w);return Ca(i,n)}}function Tx(e){let t=bx.get(e);return void 0===t&&(t={},bx.set(e,t)),t}function _x(e,t=0){const r=Tx(e);let s=r[t];return void 0===s&&(r[t]=s=new a,r[t].copy(e.matrixWorld)),s}const vx=tn(xx),Nx=an(([e])=>Ex(e.rgb)),Sx=an(([e,t=hn(1)])=>t.mix(Ex(e.rgb),e.rgb)),Rx=an(([e,t=hn(1)])=>{const r=wa(e.r,e.g,e.b).div(3),s=e.r.max(e.g.max(e.b)),i=s.sub(r).mul(t).mul(-3);return iu(e.rgb,s,i)}),Ax=an(([e,t=hn(1)])=>{const r=Tn(.57735,.57735,.57735),s=t.cos();return Tn(e.rgb.mul(s).add(r.cross(e.rgb).mul(t.sin()).add(r.mul(Ko(r,e.rgb).mul(s.oneMinus())))))}),Ex=(e,t=Tn(p.getLuminanceCoefficients(new r)))=>Ko(e,t),wx=an(([e,t=Tn(1),s=Tn(0),i=Tn(1),n=hn(1),a=Tn(p.getLuminanceCoefficients(new r,ve))])=>{const o=e.rgb.dot(Tn(a)),u=Wo(e.rgb.mul(t).add(s),0).toVar(),l=u.pow(i).toVar();return ln(u.r.greaterThan(0),()=>{u.r.assign(l.r)}),ln(u.g.greaterThan(0),()=>{u.g.assign(l.g)}),ln(u.b.greaterThan(0),()=>{u.b.assign(l.b)}),u.assign(o.add(u.sub(o).mul(n))),Sn(u.rgb,e.a)});class Cx extends li{static get type(){return"PosterizeNode"}constructor(e,t){super(),this.sourceNode=e,this.stepsNode=t}setup(){const{sourceNode:e,stepsNode:t}=this;return e.mul(t).floor().div(t)}}const Mx=en(Cx).setParameterLength(2),Bx=new t;class Lx extends Bl{static get type(){return"PassTextureNode"}constructor(e,t){super(t),this.passNode=e,this.setUpdateMatrix(!1)}setup(e){return this.passNode.build(e),super.setup(e)}clone(){return new this.constructor(this.passNode,this.value)}}class Px extends Lx{static get type(){return"PassMultipleTextureNode"}constructor(e,t,r=!1){super(e,null),this.textureName=t,this.previousTexture=r}updateTexture(){this.value=this.previousTexture?this.passNode.getPreviousTexture(this.textureName):this.passNode.getTexture(this.textureName)}setup(e){return this.updateTexture(),super.setup(e)}clone(){const e=new this.constructor(this.passNode,this.textureName,this.previousTexture);return e.uvNode=this.uvNode,e.levelNode=this.levelNode,e.biasNode=this.biasNode,e.sampler=this.sampler,e.depthNode=this.depthNode,e.compareNode=this.compareNode,e.gradNode=this.gradNode,e.offsetNode=this.offsetNode,e}}class Fx extends li{static get type(){return"PassNode"}constructor(e,t,r,s={}){super("vec4"),this.scope=e,this.scene=t,this.camera=r,this.options=s,this._pixelRatio=1,this._width=1,this._height=1;const i=new X;i.isRenderTargetTexture=!0,i.name="depth";const n=new _e(this._width*this._pixelRatio,this._height*this._pixelRatio,{type:fe,...s});n.texture.name="output",n.depthTexture=i,this.renderTarget=n,this.overrideMaterial=null,this.transparent=!0,this.opaque=!0,this.contextNode=null,this._contextNodeCache=null,this._textures={output:n.texture,depth:i},this._textureNodes={},this._linearDepthNodes={},this._viewZNodes={},this._previousTextures={},this._previousTextureNodes={},this._cameraNear=xa(0),this._cameraFar=xa(0),this._mrt=null,this._layers=null,this._resolutionScale=1,this._viewport=null,this._scissor=null,this.isPassNode=!0,this.updateBeforeType=Qs.FRAME,this.global=!0}setResolutionScale(e){return this._resolutionScale=e,this}getResolutionScale(){return this._resolutionScale}setResolution(e){return d("PassNode: .setResolution() is deprecated. Use .setResolutionScale() instead."),this.setResolutionScale(e)}getResolution(){return d("PassNode: .getResolution() is deprecated. Use .getResolutionScale() instead."),this.getResolutionScale()}setLayers(e){return this._layers=e,this}getLayers(){return this._layers}setMRT(e){return this._mrt=e,this}getMRT(){return this._mrt}getTexture(e){let t=this._textures[e];if(void 0===t){t=this.renderTarget.texture.clone(),t.name=e,this._textures[e]=t,this.renderTarget.textures.push(t)}return t}getPreviousTexture(e){let t=this._previousTextures[e];return void 0===t&&(t=this.getTexture(e).clone(),this._previousTextures[e]=t),t}toggleTexture(e){const t=this._previousTextures[e];if(void 0!==t){const r=this._textures[e],s=this.renderTarget.textures.indexOf(r);this.renderTarget.textures[s]=t,this._textures[e]=t,this._previousTextures[e]=r,this._textureNodes[e].updateTexture(),this._previousTextureNodes[e].updateTexture()}}getTextureNode(e="output"){let t=this._textureNodes[e];return void 0===t&&(t=Yi(new Px(this,e)),t.updateTexture(),this._textureNodes[e]=t),t}getPreviousTextureNode(e="output"){let t=this._previousTextureNodes[e];return void 0===t&&(void 0===this._textureNodes[e]&&this.getTextureNode(e),t=Yi(new Px(this,e,!0)),t.updateTexture(),this._previousTextureNodes[e]=t),t}getViewZNode(e="depth"){let t=this._viewZNodes[e];if(void 0===t){const r=this._cameraNear,s=this._cameraFar;this._viewZNodes[e]=t=Cp(this.getTextureNode(e),r,s)}return t}getLinearDepthNode(e="depth"){let t=this._linearDepthNodes[e];if(void 0===t){const r=this._cameraNear,s=this._cameraFar,i=this.getViewZNode(e);this._linearDepthNodes[e]=t=Ep(i,r,s)}return t}async compileAsync(e){const t=e.getRenderTarget(),r=e.getMRT();e.setRenderTarget(this.renderTarget),e.setMRT(this._mrt),await e.compileAsync(this.scene,this.camera),e.setRenderTarget(t),e.setMRT(r)}setup({renderer:e}){return this.renderTarget.samples=void 0===this.options.samples?e.samples:this.options.samples,this.renderTarget.texture.type=e.getColorBufferType(),this.scope===Fx.COLOR?this.getTextureNode():this.getLinearDepthNode()}updateBefore(e){const{renderer:t}=e,{scene:r}=this;let s,i;const n=t.getOutputRenderTarget();n&&!0===n.isXRRenderTarget?(i=1,s=t.xr.getCamera(),t.xr.updateCamera(s),Bx.set(n.width,n.height)):(s=this.camera,i=t.getPixelRatio(),t.getSize(Bx)),this._pixelRatio=i,this.setSize(Bx.width,Bx.height);const a=t.getRenderTarget(),o=t.getMRT(),u=t.autoClear,l=t.transparent,d=t.opaque,c=s.layers.mask,h=t.contextNode,p=r.overrideMaterial;this._cameraNear.value=s.near,this._cameraFar.value=s.far,null!==this._layers&&(s.layers.mask=this._layers.mask);for(const e in this._previousTextures)this.toggleTexture(e);null!==this.overrideMaterial&&(r.overrideMaterial=this.overrideMaterial),t.setRenderTarget(this.renderTarget),t.setMRT(this._mrt),t.autoClear=!0,t.transparent=this.transparent,t.opaque=this.opaque,null!==this.contextNode&&(null!==this._contextNodeCache&&this._contextNodeCache.version===this.version||(this._contextNodeCache={version:this.version,context:Tu({...t.contextNode.getFlowContextData(),...this.contextNode.getFlowContextData()})}),t.contextNode=this._contextNodeCache.context);const g=r.name;r.name=this.name?this.name:r.name,t.render(r,s),r.name=g,r.overrideMaterial=p,t.setRenderTarget(a),t.setMRT(o),t.autoClear=u,t.transparent=l,t.opaque=d,t.contextNode=h,s.layers.mask=c}setSize(e,t){this._width=e,this._height=t;const r=Math.floor(this._width*this._pixelRatio*this._resolutionScale),s=Math.floor(this._height*this._pixelRatio*this._resolutionScale);this.renderTarget.setSize(r,s),null!==this._scissor&&this.renderTarget.scissor.copy(this._scissor),null!==this._viewport&&this.renderTarget.viewport.copy(this._viewport)}setScissor(e,t,r,i){null===e?this._scissor=null:(null===this._scissor&&(this._scissor=new s),e.isVector4?this._scissor.copy(e):this._scissor.set(e,t,r,i),this._scissor.multiplyScalar(this._pixelRatio*this._resolutionScale).floor())}setViewport(e,t,r,i){null===e?this._viewport=null:(null===this._viewport&&(this._viewport=new s),e.isVector4?this._viewport.copy(e):this._viewport.set(e,t,r,i),this._viewport.multiplyScalar(this._pixelRatio*this._resolutionScale).floor())}setPixelRatio(e){this._pixelRatio=e,this.setSize(this._width,this._height)}dispose(){this.renderTarget.dispose()}}Fx.COLOR="color",Fx.DEPTH="depth";class Dx extends Fx{static get type(){return"ToonOutlinePassNode"}constructor(e,t,r,s,i){super(Fx.COLOR,e,t),this.colorNode=r,this.thicknessNode=s,this.alphaNode=i,this._materialCache=new WeakMap,this.name="Outline Pass"}updateBefore(e){const{renderer:t}=e,r=t.getRenderObjectFunction();t.setRenderObjectFunction((e,r,s,i,n,a,o,u)=>{if((n.isMeshToonMaterial||n.isMeshToonNodeMaterial)&&!1===n.wireframe){const l=this._getOutlineMaterial(n);t.renderObject(e,r,s,i,l,a,o,u)}t.renderObject(e,r,s,i,n,a,o,u)}),super.updateBefore(e),t.setRenderObjectFunction(r)}_createMaterial(){const e=new Xp;e.isMeshToonOutlineMaterial=!0,e.name="Toon_Outline",e.side=w;const t=zd.negate(),r=rd.mul(Ad),s=hn(1),i=r.mul(Sn(Bd,1)),n=r.mul(Sn(Bd.add(t),1)),a=To(i.sub(n));return e.vertexNode=i.add(a.mul(this.thicknessNode).mul(i.w).mul(s)),e.colorNode=Sn(this.colorNode,this.alphaNode),e}_getOutlineMaterial(e){let t=this._materialCache.get(e);return void 0===t&&(t=this._createMaterial(),this._materialCache.set(e,t)),t}}const Ux=an(([e,t])=>e.mul(t).clamp()).setLayout({name:"linearToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]}),Ix=an(([e,t])=>(e=e.mul(t)).div(e.add(1)).clamp()).setLayout({name:"reinhardToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]}),Ox=an(([e,t])=>{const r=(e=(e=e.mul(t)).sub(.004).max(0)).mul(e.mul(6.2).add(.5)),s=e.mul(e.mul(6.2).add(1.7)).add(.06);return r.div(s).pow(2.2)}).setLayout({name:"cineonToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]}),Vx=an(([e])=>{const t=e.mul(e.add(.0245786)).sub(90537e-9),r=e.mul(e.add(.432951).mul(.983729)).add(.238081);return t.div(r)}),kx=an(([e,t])=>{const r=Cn(.59719,.35458,.04823,.076,.90834,.01566,.0284,.13383,.83777),s=Cn(1.60475,-.53108,-.07367,-.10208,1.10813,-.00605,-.00327,-.07276,1.07602);return e=e.mul(t).div(.6),e=r.mul(e),e=Vx(e),(e=s.mul(e)).clamp()}).setLayout({name:"acesFilmicToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]}),Gx=Cn(Tn(1.6605,-.1246,-.0182),Tn(-.5876,1.1329,-.1006),Tn(-.0728,-.0083,1.1187)),zx=Cn(Tn(.6274,.0691,.0164),Tn(.3293,.9195,.088),Tn(.0433,.0113,.8956)),$x=an(([e])=>{const t=Tn(e).toVar(),r=Tn(t.mul(t)).toVar(),s=Tn(r.mul(r)).toVar();return hn(15.5).mul(s.mul(r)).sub(Ma(40.14,s.mul(t))).add(Ma(31.96,s).sub(Ma(6.868,r.mul(t))).add(Ma(.4298,r).add(Ma(.1191,t).sub(.00232))))}),Wx=an(([e,t])=>{const r=Tn(e).toVar(),s=Cn(Tn(.856627153315983,.137318972929847,.11189821299995),Tn(.0951212405381588,.761241990602591,.0767994186031903),Tn(.0482516061458583,.101439036467562,.811302368396859)),i=Cn(Tn(1.1271005818144368,-.1413297634984383,-.14132976349843826),Tn(-.11060664309660323,1.157823702216272,-.11060664309660294),Tn(-.016493938717834573,-.016493938717834257,1.2519364065950405)),n=hn(-12.47393),a=hn(4.026069);return r.mulAssign(t),r.assign(zx.mul(r)),r.assign(s.mul(r)),r.assign(Wo(r,1e-10)),r.assign(mo(r)),r.assign(r.sub(n).div(a.sub(n))),r.assign(nu(r,0,1)),r.assign($x(r)),r.assign(i.mul(r)),r.assign(Qo(Wo(Tn(0),r),Tn(2.2))),r.assign(Gx.mul(r)),r.assign(nu(r,0,1)),r}).setLayout({name:"agxToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]}),Hx=an(([e,t])=>{const r=hn(.76),s=hn(.15);e=e.mul(t);const i=$o(e.r,$o(e.g,e.b)),n=bu(i.lessThan(.08),i.sub(Ma(6.25,i.mul(i))),.04);e.subAssign(n);const a=Wo(e.r,Wo(e.g,e.b));ln(a.lessThan(r),()=>e);const o=Ca(1,r),u=Ca(1,o.mul(o).div(a.add(o.sub(r))));e.mulAssign(u.div(a));const l=Ca(1,Ba(1,s.mul(a.sub(u)).add(1)));return iu(e,Tn(u),l)}).setLayout({name:"neutralToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]});class jx extends ai{static get type(){return"CodeNode"}constructor(e="",t=[],r=""){super("code"),this.isCodeNode=!0,this.global=!0,this.code=e,this.includes=t,this.language=r}setIncludes(e){return this.includes=e,this}getIncludes(){return this.includes}generate(e){const t=this.getIncludes(e);for(const r of t)r.build(e);const r=e.getCodeFromNode(this,this.getNodeType(e));return r.code=this.code,r.code}serialize(e){super.serialize(e),e.code=this.code,e.language=this.language}deserialize(e){super.deserialize(e),this.code=e.code,this.language=e.language}}const qx=en(jx).setParameterLength(1,3);class Xx extends jx{static get type(){return"FunctionNode"}constructor(e="",t=[],r=""){super(e,t,r)}getNodeType(e){return this.getNodeFunction(e).type}getMemberType(e,t){const r=this.getNodeType(e);return e.getStructTypeNode(r).getMemberType(e,t)}getInputs(e){return this.getNodeFunction(e).inputs}getNodeFunction(e){const t=e.getDataFromNode(this);let r=t.nodeFunction;return void 0===r&&(r=e.parser.parseFunction(this.code),t.nodeFunction=r),r}generate(e,t){super.generate(e);const r=this.getNodeFunction(e),s=r.name,i=r.type,n=e.getCodeFromNode(this,i);""!==s&&(n.name=s);const a=e.getPropertyName(n),o=this.getNodeFunction(e).getCode(a);return n.code=o+"\n","property"===t?a:e.format(`${a}()`,i,t)}}const Kx=(e,t=[],r="")=>{for(let e=0;es.call(...e);return i.functionNode=s,i};class Yx extends ai{static get type(){return"ScriptableValueNode"}constructor(e=null){super(),this._value=e,this._cache=null,this.inputType=null,this.outputType=null,this.events=new u,this.isScriptableValueNode=!0}get isScriptableOutputNode(){return null!==this.outputType}set value(e){this._value!==e&&(this._cache&&"URL"===this.inputType&&this.value.value instanceof ArrayBuffer&&(URL.revokeObjectURL(this._cache),this._cache=null),this._value=e,this.events.dispatchEvent({type:"change"}),this.refresh())}get value(){return this._value}refresh(){this.events.dispatchEvent({type:"refresh"})}getValue(){const e=this.value;if(e&&null===this._cache&&"URL"===this.inputType&&e.value instanceof ArrayBuffer)this._cache=URL.createObjectURL(new Blob([e.value]));else if(e&&null!==e.value&&void 0!==e.value&&(("URL"===this.inputType||"String"===this.inputType)&&"string"==typeof e.value||"Number"===this.inputType&&"number"==typeof e.value||"Vector2"===this.inputType&&e.value.isVector2||"Vector3"===this.inputType&&e.value.isVector3||"Vector4"===this.inputType&&e.value.isVector4||"Color"===this.inputType&&e.value.isColor||"Matrix3"===this.inputType&&e.value.isMatrix3||"Matrix4"===this.inputType&&e.value.isMatrix4))return e.value;return this._cache||e}getNodeType(e){return this.value&&this.value.isNode?this.value.getNodeType(e):"float"}setup(){return this.value&&this.value.isNode?this.value:hn()}serialize(e){super.serialize(e),null!==this.value?"ArrayBuffer"===this.inputType?e.value=qs(this.value):e.value=this.value?this.value.toJSON(e.meta).uuid:null:e.value=null,e.inputType=this.inputType,e.outputType=this.outputType}deserialize(e){super.deserialize(e);let t=null;null!==e.value&&(t="ArrayBuffer"===e.inputType?Xs(e.value):"Texture"===e.inputType?e.meta.textures[e.value]:e.meta.nodes[e.value]||null),this.value=t,this.inputType=e.inputType,this.outputType=e.outputType}}const Qx=en(Yx).setParameterLength(1);class Zx extends Map{get(e,t=null,...r){if(this.has(e))return super.get(e);if(null!==t){const s=t(...r);return this.set(e,s),s}}}class Jx{constructor(e){this.scriptableNode=e}get parameters(){return this.scriptableNode.parameters}get layout(){return this.scriptableNode.getLayout()}getInputLayout(e){return this.scriptableNode.getInputLayout(e)}get(e){const t=this.parameters[e];return t?t.getValue():null}}const eT=new Zx;class tT extends ai{static get type(){return"ScriptableNode"}constructor(e=null,t={}){super(),this.codeNode=e,this.parameters=t,this._local=new Zx,this._output=Qx(null),this._outputs={},this._source=this.source,this._method=null,this._object=null,this._value=null,this._needsOutputUpdate=!0,this.onRefresh=this.onRefresh.bind(this),this.isScriptableNode=!0}get source(){return this.codeNode?this.codeNode.code:""}setLocal(e,t){return this._local.set(e,t)}getLocal(e){return this._local.get(e)}onRefresh(){this._refresh()}getInputLayout(e){for(const t of this.getLayout())if(t.inputType&&(t.id===e||t.name===e))return t}getOutputLayout(e){for(const t of this.getLayout())if(t.outputType&&(t.id===e||t.name===e))return t}setOutput(e,t){const r=this._outputs;return void 0===r[e]?r[e]=Qx(t):r[e].value=t,this}getOutput(e){return this._outputs[e]}getParameter(e){return this.parameters[e]}setParameter(e,t){const r=this.parameters;return t&&t.isScriptableNode?(this.deleteParameter(e),r[e]=t,r[e].getDefaultOutput().events.addEventListener("refresh",this.onRefresh)):t&&t.isScriptableValueNode?(this.deleteParameter(e),r[e]=t,r[e].events.addEventListener("refresh",this.onRefresh)):void 0===r[e]?(r[e]=Qx(t),r[e].events.addEventListener("refresh",this.onRefresh)):r[e].value=t,this}getValue(){return this.getDefaultOutput().getValue()}deleteParameter(e){let t=this.parameters[e];return t&&(t.isScriptableNode&&(t=t.getDefaultOutput()),t.events.removeEventListener("refresh",this.onRefresh)),this}clearParameters(){for(const e of Object.keys(this.parameters))this.deleteParameter(e);return this.needsUpdate=!0,this}call(e,...t){const r=this.getObject()[e];if("function"==typeof r)return r(...t)}async callAsync(e,...t){const r=this.getObject()[e];if("function"==typeof r)return"AsyncFunction"===r.constructor.name?await r(...t):r(...t)}getNodeType(e){return this.getDefaultOutputNode().getNodeType(e)}refresh(e=null){null!==e?this.getOutput(e).refresh():this._refresh()}getObject(){if(this.needsUpdate&&this.dispose(),null!==this._object)return this._object;const e=new Jx(this),t=eT.get("THREE"),r=eT.get("TSL"),s=this.getMethod(),i=[e,this._local,eT,()=>this.refresh(),(e,t)=>this.setOutput(e,t),t,r];this._object=s(...i);const n=this._object.layout;if(n&&(!1===n.cache&&this._local.clear(),this._output.outputType=n.outputType||null,Array.isArray(n.elements)))for(const e of n.elements){const t=e.id||e.name;e.inputType&&(void 0===this.getParameter(t)&&this.setParameter(t,null),this.getParameter(t).inputType=e.inputType),e.outputType&&(void 0===this.getOutput(t)&&this.setOutput(t,null),this.getOutput(t).outputType=e.outputType)}return this._object}deserialize(e){super.deserialize(e);for(const e in this.parameters){let t=this.parameters[e];t.isScriptableNode&&(t=t.getDefaultOutput()),t.events.addEventListener("refresh",this.onRefresh)}}getLayout(){return this.getObject().layout}getDefaultOutputNode(){const e=this.getDefaultOutput().value;return e&&e.isNode?e:hn()}getDefaultOutput(){return this._exec()._output}getMethod(){if(this.needsUpdate&&this.dispose(),null!==this._method)return this._method;const e=["layout","init","main","dispose"].join(", "),t="\nreturn { ...output, "+e+" };",r="var "+e+"; var output = {};\n"+this.codeNode.code+t;return this._method=new Function(...["parameters","local","global","refresh","setOutput","THREE","TSL"],r),this._method}dispose(){null!==this._method&&(this._object&&"function"==typeof this._object.dispose&&this._object.dispose(),this._method=null,this._object=null,this._source=null,this._value=null,this._needsOutputUpdate=!0,this._output.value=null,this._outputs={})}setup(){return this.getDefaultOutputNode()}getCacheKey(e){const t=[Fs(this.source),this.getDefaultOutputNode().getCacheKey(e)];for(const r in this.parameters)t.push(this.parameters[r].getCacheKey(e));return Ds(t)}set needsUpdate(e){!0===e&&this.dispose()}get needsUpdate(){return this.source!==this._source}_exec(){return null===this.codeNode||(!0===this._needsOutputUpdate&&(this._value=this.call("main"),this._needsOutputUpdate=!1),this._output.value=this._value),this}_refresh(){this.needsUpdate=!0,this._exec(),this._output.refresh()}}const rT=en(tT).setParameterLength(1,2);function sT(e){let t;const r=e.context.getViewZ;return void 0!==r&&(t=r(this)),(t||Dd.z).negate()}const iT=an(([e,t],r)=>{const s=sT(r);return uu(e,t,s)}),nT=an(([e],t)=>{const r=sT(t);return e.mul(e,r,r).negate().exp().oneMinus()}),aT=an(([e,t])=>Sn(t.toFloat().mix(ra.rgb,e.toVec3()),ra.a));let oT=null,uT=null;class lT extends ai{static get type(){return"RangeNode"}constructor(e=hn(),t=hn()){super(),this.minNode=e,this.maxNode=t}getVectorLength(e){const t=this.getConstNode(this.minNode),r=this.getConstNode(this.maxNode),s=e.getTypeLength(Ws(t.value)),i=e.getTypeLength(Ws(r.value));return s>i?s:i}getNodeType(e){return e.object.count>1?e.getTypeFromLength(this.getVectorLength(e)):"float"}getConstNode(e){let t=null;if(e.traverse(e=>{!0===e.isConstNode&&(t=e)}),null===t)throw new Error('THREE.TSL: No "ConstNode" found in node graph.');return t}setup(e){const t=e.object;let r=null;if(t.count>1){const i=this.getConstNode(this.minNode),n=this.getConstNode(this.maxNode),a=i.value,o=n.value,u=e.getTypeLength(Ws(a)),d=e.getTypeLength(Ws(o));oT=oT||new s,uT=uT||new s,oT.setScalar(0),uT.setScalar(0),1===u?oT.setScalar(a):a.isColor?oT.set(a.r,a.g,a.b,1):oT.set(a.x,a.y,a.z||0,a.w||0),1===d?uT.setScalar(o):o.isColor?uT.set(o.r,o.g,o.b,1):uT.set(o.x,o.y,o.z||0,o.w||0);const c=4,h=c*t.count,p=new Float32Array(h);for(let e=0;eYi(new cT(e,t)),pT=hT("numWorkgroups","uvec3"),gT=hT("workgroupId","uvec3"),mT=hT("globalId","uvec3"),fT=hT("localId","uvec3"),yT=hT("subgroupSize","uint");const bT=en(class extends ai{constructor(e){super(),this.scope=e}generate(e){const{scope:t}=this,{renderer:r}=e;!0===r.backend.isWebGLBackend?e.addFlowCode(`\t// ${t}Barrier \n`):e.addLineFlowCode(`${t}Barrier()`,this)}});class xT extends oi{constructor(e,t){super(e,t),this.isWorkgroupInfoElementNode=!0}generate(e,t){let r;const s=e.context.assign;if(r=super.generate(e),!0!==s){const s=this.getNodeType(e);r=e.format(r,s,t)}return r}}class TT extends ai{constructor(e,t,r=0){super(t),this.bufferType=t,this.bufferCount=r,this.isWorkgroupInfoNode=!0,this.elementType=t,this.scope=e,this.name=""}setName(e){return this.name=e,this}label(e){return d('TSL: "label()" has been deprecated. Use "setName()" instead.'),this.setName(e)}setScope(e){return this.scope=e,this}getElementType(){return this.elementType}getInputType(){return`${this.scope}Array`}element(e){return Yi(new xT(this,e))}generate(e){const t=""!==this.name?this.name:`${this.scope}Array_${this.id}`;return e.getScopedArray(t,this.scope.toLowerCase(),this.bufferType,this.bufferCount)}}class _T extends ai{static get type(){return"AtomicFunctionNode"}constructor(e,t,r){super("uint"),this.method=e,this.pointerNode=t,this.valueNode=r,this.parents=!0}getInputType(e){return this.pointerNode.getNodeType(e)}getNodeType(e){return this.getInputType(e)}generate(e){const t=e.getNodeProperties(this),r=t.parents,s=this.method,i=this.getNodeType(e),n=this.getInputType(e),a=this.pointerNode,o=this.valueNode,u=[];u.push(`&${a.build(e,n)}`),null!==o&&u.push(o.build(e,n));const l=`${e.getMethod(s,i)}( ${u.join(", ")} )`;if(!(!!r&&(1===r.length&&!0===r[0].isStackNode)))return void 0===t.constNode&&(t.constNode=gl(l,i).toConst()),t.constNode.build(e);e.addLineFlowCode(l,this)}}_T.ATOMIC_LOAD="atomicLoad",_T.ATOMIC_STORE="atomicStore",_T.ATOMIC_ADD="atomicAdd",_T.ATOMIC_SUB="atomicSub",_T.ATOMIC_MAX="atomicMax",_T.ATOMIC_MIN="atomicMin",_T.ATOMIC_AND="atomicAnd",_T.ATOMIC_OR="atomicOr",_T.ATOMIC_XOR="atomicXor";const vT=en(_T),NT=(e,t,r)=>vT(e,t,r).toStack();class ST extends li{static get type(){return"SubgroupFunctionNode"}constructor(e,t=null,r=null){super(),this.method=e,this.aNode=t,this.bNode=r}getInputType(e){const t=this.aNode?this.aNode.getNodeType(e):null,r=this.bNode?this.bNode.getNodeType(e):null;return(e.isMatrix(t)?0:e.getTypeLength(t))>(e.isMatrix(r)?0:e.getTypeLength(r))?t:r}getNodeType(e){const t=this.method;return t===ST.SUBGROUP_ELECT?"bool":t===ST.SUBGROUP_BALLOT?"uvec4":this.getInputType(e)}generate(e,t){const r=this.method,s=this.getNodeType(e),i=this.getInputType(e),n=this.aNode,a=this.bNode,o=[];if(r===ST.SUBGROUP_BROADCAST||r===ST.SUBGROUP_SHUFFLE||r===ST.QUAD_BROADCAST){const t=a.getNodeType(e);o.push(n.build(e,s),a.build(e,"float"===t?"int":s))}else r===ST.SUBGROUP_SHUFFLE_XOR||r===ST.SUBGROUP_SHUFFLE_DOWN||r===ST.SUBGROUP_SHUFFLE_UP?o.push(n.build(e,s),a.build(e,"uint")):(null!==n&&o.push(n.build(e,i)),null!==a&&o.push(a.build(e,i)));const u=0===o.length?"()":`( ${o.join(", ")} )`;return e.format(`${e.getMethod(r,s)}${u}`,s,t)}serialize(e){super.serialize(e),e.method=this.method}deserialize(e){super.deserialize(e),this.method=e.method}}ST.SUBGROUP_ELECT="subgroupElect",ST.SUBGROUP_BALLOT="subgroupBallot",ST.SUBGROUP_ADD="subgroupAdd",ST.SUBGROUP_INCLUSIVE_ADD="subgroupInclusiveAdd",ST.SUBGROUP_EXCLUSIVE_AND="subgroupExclusiveAdd",ST.SUBGROUP_MUL="subgroupMul",ST.SUBGROUP_INCLUSIVE_MUL="subgroupInclusiveMul",ST.SUBGROUP_EXCLUSIVE_MUL="subgroupExclusiveMul",ST.SUBGROUP_AND="subgroupAnd",ST.SUBGROUP_OR="subgroupOr",ST.SUBGROUP_XOR="subgroupXor",ST.SUBGROUP_MIN="subgroupMin",ST.SUBGROUP_MAX="subgroupMax",ST.SUBGROUP_ALL="subgroupAll",ST.SUBGROUP_ANY="subgroupAny",ST.SUBGROUP_BROADCAST_FIRST="subgroupBroadcastFirst",ST.QUAD_SWAP_X="quadSwapX",ST.QUAD_SWAP_Y="quadSwapY",ST.QUAD_SWAP_DIAGONAL="quadSwapDiagonal",ST.SUBGROUP_BROADCAST="subgroupBroadcast",ST.SUBGROUP_SHUFFLE="subgroupShuffle",ST.SUBGROUP_SHUFFLE_XOR="subgroupShuffleXor",ST.SUBGROUP_SHUFFLE_UP="subgroupShuffleUp",ST.SUBGROUP_SHUFFLE_DOWN="subgroupShuffleDown",ST.QUAD_BROADCAST="quadBroadcast";const RT=rn(ST,ST.SUBGROUP_ELECT).setParameterLength(0),AT=rn(ST,ST.SUBGROUP_BALLOT).setParameterLength(1),ET=rn(ST,ST.SUBGROUP_ADD).setParameterLength(1),wT=rn(ST,ST.SUBGROUP_INCLUSIVE_ADD).setParameterLength(1),CT=rn(ST,ST.SUBGROUP_EXCLUSIVE_AND).setParameterLength(1),MT=rn(ST,ST.SUBGROUP_MUL).setParameterLength(1),BT=rn(ST,ST.SUBGROUP_INCLUSIVE_MUL).setParameterLength(1),LT=rn(ST,ST.SUBGROUP_EXCLUSIVE_MUL).setParameterLength(1),PT=rn(ST,ST.SUBGROUP_AND).setParameterLength(1),FT=rn(ST,ST.SUBGROUP_OR).setParameterLength(1),DT=rn(ST,ST.SUBGROUP_XOR).setParameterLength(1),UT=rn(ST,ST.SUBGROUP_MIN).setParameterLength(1),IT=rn(ST,ST.SUBGROUP_MAX).setParameterLength(1),OT=rn(ST,ST.SUBGROUP_ALL).setParameterLength(0),VT=rn(ST,ST.SUBGROUP_ANY).setParameterLength(0),kT=rn(ST,ST.SUBGROUP_BROADCAST_FIRST).setParameterLength(2),GT=rn(ST,ST.QUAD_SWAP_X).setParameterLength(1),zT=rn(ST,ST.QUAD_SWAP_Y).setParameterLength(1),$T=rn(ST,ST.QUAD_SWAP_DIAGONAL).setParameterLength(1),WT=rn(ST,ST.SUBGROUP_BROADCAST).setParameterLength(2),HT=rn(ST,ST.SUBGROUP_SHUFFLE).setParameterLength(2),jT=rn(ST,ST.SUBGROUP_SHUFFLE_XOR).setParameterLength(2),qT=rn(ST,ST.SUBGROUP_SHUFFLE_UP).setParameterLength(2),XT=rn(ST,ST.SUBGROUP_SHUFFLE_DOWN).setParameterLength(2),KT=rn(ST,ST.QUAD_BROADCAST).setParameterLength(1);let YT;function QT(e){YT=YT||new WeakMap;let t=YT.get(e);return void 0===t&&YT.set(e,t={}),t}function ZT(e){const t=QT(e);return t.shadowMatrix||(t.shadowMatrix=xa("mat4").setGroup(fa).onRenderUpdate(t=>(!0===e.castShadow&&!1!==t.renderer.shadowMap.enabled||(e.shadow.camera.coordinateSystem!==t.camera.coordinateSystem&&(e.shadow.camera.coordinateSystem=t.camera.coordinateSystem,e.shadow.camera.updateProjectionMatrix()),e.shadow.updateMatrices(e)),e.shadow.matrix)))}function JT(e,t=Pd){const r=ZT(e).mul(t);return r.xyz.div(r.w)}function e_(e){const t=QT(e);return t.position||(t.position=xa(new r).setGroup(fa).onRenderUpdate((t,r)=>r.value.setFromMatrixPosition(e.matrixWorld)))}function t_(e){const t=QT(e);return t.targetPosition||(t.targetPosition=xa(new r).setGroup(fa).onRenderUpdate((t,r)=>r.value.setFromMatrixPosition(e.target.matrixWorld)))}function r_(e){const t=QT(e);return t.viewPosition||(t.viewPosition=xa(new r).setGroup(fa).onRenderUpdate(({camera:t},s)=>{s.value=s.value||new r,s.value.setFromMatrixPosition(e.matrixWorld),s.value.applyMatrix4(t.matrixWorldInverse)}))}const s_=e=>id.transformDirection(e_(e).sub(t_(e))),i_=(e,t)=>{for(const r of t)if(r.isAnalyticLightNode&&r.light.id===e)return r;return null},n_=new WeakMap,a_=[];class o_ extends ai{static get type(){return"LightsNode"}constructor(){super("vec3"),this.totalDiffuseNode=Fn("vec3","totalDiffuse"),this.totalSpecularNode=Fn("vec3","totalSpecular"),this.outgoingLightNode=Fn("vec3","outgoingLight"),this._lights=[],this._lightNodes=null,this._lightNodesHash=null,this.global=!0}customCacheKey(){const e=this._lights;for(let t=0;te.sort((e,t)=>e.id-t.id))(this._lights),i=e.renderer.library;for(const e of s)if(e.isNode)t.push(Yi(e));else{let s=null;if(null!==r&&(s=i_(e.id,r)),null===s){const r=i.getLightNodeClass(e.constructor);if(null===r){d(`LightsNode.setupNodeLights: Light node not found for ${e.constructor.name}`);continue}let s=null;n_.has(e)?s=n_.get(e):(s=Yi(new r(e)),n_.set(e,s)),t.push(s)}}this._lightNodes=t}setupDirectLight(e,t,r){const{lightingModel:s,reflectedLight:i}=e.context;s.direct({...r,lightNode:t,reflectedLight:i},e)}setupDirectRectAreaLight(e,t,r){const{lightingModel:s,reflectedLight:i}=e.context;s.directRectArea({...r,lightNode:t,reflectedLight:i},e)}setupLights(e,t){for(const r of t)r.build(e)}getLightNodes(e){return null===this._lightNodes&&this.setupLightsNode(e),this._lightNodes}setup(e){const t=e.lightsNode;e.lightsNode=this;let r=this.outgoingLightNode;const s=e.context,i=s.lightingModel,n=e.getNodeProperties(this);if(i){const{totalDiffuseNode:t,totalSpecularNode:a}=this;s.outgoingLight=r;const o=e.addStack();n.nodes=o.nodes,i.start(e);const{backdrop:u,backdropAlpha:l}=s,{directDiffuse:d,directSpecular:c,indirectDiffuse:h,indirectSpecular:p}=s.reflectedLight;let g=d.add(h);null!==u&&(g=Tn(null!==l?l.mix(g,u):u)),t.assign(g),a.assign(c.add(p)),r.assign(t.add(a)),i.finish(e),r=r.bypass(e.removeStack())}else n.nodes=[];return e.lightsNode=t,r}setLights(e){return this._lights=e,this._lightNodes=null,this._lightNodesHash=null,this}getLights(){return this._lights}get hasLights(){return this._lights.length>0}}class u_ extends ai{static get type(){return"ShadowBaseNode"}constructor(e){super(),this.light=e,this.updateBeforeType=Qs.RENDER,this.isShadowBaseNode=!0}setupShadowPosition({context:e,material:t}){l_.assign(t.receivedShadowPositionNode||e.shadowPositionWorld||Pd)}}const l_=Fn("vec3","shadowPositionWorld");function d_(t,r={}){return r.toneMapping=t.toneMapping,r.toneMappingExposure=t.toneMappingExposure,r.outputColorSpace=t.outputColorSpace,r.renderTarget=t.getRenderTarget(),r.activeCubeFace=t.getActiveCubeFace(),r.activeMipmapLevel=t.getActiveMipmapLevel(),r.renderObjectFunction=t.getRenderObjectFunction(),r.pixelRatio=t.getPixelRatio(),r.mrt=t.getMRT(),r.clearColor=t.getClearColor(r.clearColor||new e),r.clearAlpha=t.getClearAlpha(),r.autoClear=t.autoClear,r.scissorTest=t.getScissorTest(),r}function c_(e,t){return t=d_(e,t),e.setMRT(null),e.setRenderObjectFunction(null),e.setClearColor(0,1),e.autoClear=!0,t}function h_(e,t){e.toneMapping=t.toneMapping,e.toneMappingExposure=t.toneMappingExposure,e.outputColorSpace=t.outputColorSpace,e.setRenderTarget(t.renderTarget,t.activeCubeFace,t.activeMipmapLevel),e.setRenderObjectFunction(t.renderObjectFunction),e.setPixelRatio(t.pixelRatio),e.setMRT(t.mrt),e.setClearColor(t.clearColor,t.clearAlpha),e.autoClear=t.autoClear,e.setScissorTest(t.scissorTest)}function p_(e,t={}){return t.background=e.background,t.backgroundNode=e.backgroundNode,t.overrideMaterial=e.overrideMaterial,t}function g_(e,t){return t=p_(e,t),e.background=null,e.backgroundNode=null,e.overrideMaterial=null,t}function m_(e,t){e.background=t.background,e.backgroundNode=t.backgroundNode,e.overrideMaterial=t.overrideMaterial}function f_(e,t,r){return r=g_(t,r=c_(e,r))}function y_(e,t,r){h_(e,r),m_(t,r)}var b_=Object.freeze({__proto__:null,resetRendererAndSceneState:f_,resetRendererState:c_,resetSceneState:g_,restoreRendererAndSceneState:y_,restoreRendererState:h_,restoreSceneState:m_,saveRendererAndSceneState:function(e,t,r={}){return r=p_(t,r=d_(e,r))},saveRendererState:d_,saveSceneState:p_});const x_=new WeakMap,T_=an(({depthTexture:e,shadowCoord:t,depthLayer:r})=>{let s=Pl(e,t.xy).setName("t_basic");return e.isArrayTexture&&(s=s.depth(r)),s.compare(t.z)}),__=an(({depthTexture:e,shadowCoord:t,shadow:r,depthLayer:s})=>{const i=(t,r)=>{let i=Pl(e,t);return e.isArrayTexture&&(i=i.depth(s)),i.compare(r)},n=mc("mapSize","vec2",r).setGroup(fa),a=mc("radius","float",r).setGroup(fa),o=fn(1).div(n),u=a.mul(o.x),l=Qb(ql.xy).mul(6.28318530718);return wa(i(t.xy.add(Zb(0,5,l).mul(u)),t.z),i(t.xy.add(Zb(1,5,l).mul(u)),t.z),i(t.xy.add(Zb(2,5,l).mul(u)),t.z),i(t.xy.add(Zb(3,5,l).mul(u)),t.z),i(t.xy.add(Zb(4,5,l).mul(u)),t.z)).mul(.2)}),v_=an(({depthTexture:e,shadowCoord:t,shadow:r,depthLayer:s})=>{const i=(t,r)=>{let i=Pl(e,t);return e.isArrayTexture&&(i=i.depth(s)),i.compare(r)},n=mc("mapSize","vec2",r).setGroup(fa),a=fn(1).div(n),o=a.x,u=a.y,l=t.xy,d=_o(l.mul(n).add(.5));return l.subAssign(d.mul(a)),wa(i(l,t.z),i(l.add(fn(o,0)),t.z),i(l.add(fn(0,u)),t.z),i(l.add(a),t.z),iu(i(l.add(fn(o.negate(),0)),t.z),i(l.add(fn(o.mul(2),0)),t.z),d.x),iu(i(l.add(fn(o.negate(),u)),t.z),i(l.add(fn(o.mul(2),u)),t.z),d.x),iu(i(l.add(fn(0,u.negate())),t.z),i(l.add(fn(0,u.mul(2))),t.z),d.y),iu(i(l.add(fn(o,u.negate())),t.z),i(l.add(fn(o,u.mul(2))),t.z),d.y),iu(iu(i(l.add(fn(o.negate(),u.negate())),t.z),i(l.add(fn(o.mul(2),u.negate())),t.z),d.x),iu(i(l.add(fn(o.negate(),u.mul(2))),t.z),i(l.add(fn(o.mul(2),u.mul(2))),t.z),d.x),d.y)).mul(1/9)}),N_=an(({depthTexture:e,shadowCoord:t,depthLayer:r})=>{let s=Pl(e).sample(t.xy);e.isArrayTexture&&(s=s.depth(r)),s=s.rg;const i=s.x,n=Wo(1e-7,s.y.mul(s.y)),a=Ho(t.z,i);ln(a.equal(1),()=>hn(1));const o=t.z.sub(i);let u=n.div(n.add(o.mul(o)));return u=nu(Ca(u,.3).div(.65)),Wo(a,u)}),S_=an(([e,t,r])=>{let s=Pd.sub(e).length();return s=s.sub(t).div(r.sub(t)),s=s.saturate(),s}),R_=e=>{let t=x_.get(e);if(void 0===t){const r=e.isPointLight?(e=>{const t=e.shadow.camera,r=mc("near","float",t).setGroup(fa),s=mc("far","float",t).setGroup(fa),i=pd(e);return S_(i,r,s)})(e):null;t=new Xp,t.colorNode=Sn(0,0,0,1),t.depthNode=r,t.isShadowPassMaterial=!0,t.name="ShadowMaterial",t.fog=!1,x_.set(e,t)}return t},A_=new Yf,E_=[],w_=(e,t,r,s)=>{E_[0]=e,E_[1]=t;let i=A_.get(E_);return void 0!==i&&i.shadowType===r&&i.useVelocity===s||(i=(i,n,a,o,u,l,...d)=>{(!0===i.castShadow||i.receiveShadow&&r===je)&&(s&&(js(i).useVelocity=!0),i.onBeforeShadow(e,i,a,t.camera,o,n.overrideMaterial,l),e.renderObject(i,n,a,o,u,l,...d),i.onAfterShadow(e,i,a,t.camera,o,n.overrideMaterial,l))},i.shadowType=r,i.useVelocity=s,A_.set(E_,i)),E_[0]=null,E_[1]=null,i},C_=an(({samples:e,radius:t,size:r,shadowPass:s,depthLayer:i})=>{const n=hn(0).toVar("meanVertical"),a=hn(0).toVar("squareMeanVertical"),o=e.lessThanEqual(hn(1)).select(hn(0),hn(2).div(e.sub(1))),u=e.lessThanEqual(hn(1)).select(hn(0),hn(-1));op({start:pn(0),end:pn(e),type:"int",condition:"<"},({i:e})=>{const l=u.add(hn(e).mul(o));let d=s.sample(wa(ql.xy,fn(0,l).mul(t)).div(r));s.value.isArrayTexture&&(d=d.depth(i)),d=d.x,n.addAssign(d),a.addAssign(d.mul(d))}),n.divAssign(e),a.divAssign(e);const l=fo(a.sub(n.mul(n)).max(0));return fn(n,l)}),M_=an(({samples:e,radius:t,size:r,shadowPass:s,depthLayer:i})=>{const n=hn(0).toVar("meanHorizontal"),a=hn(0).toVar("squareMeanHorizontal"),o=e.lessThanEqual(hn(1)).select(hn(0),hn(2).div(e.sub(1))),u=e.lessThanEqual(hn(1)).select(hn(0),hn(-1));op({start:pn(0),end:pn(e),type:"int",condition:"<"},({i:e})=>{const l=u.add(hn(e).mul(o));let d=s.sample(wa(ql.xy,fn(l,0).mul(t)).div(r));s.value.isArrayTexture&&(d=d.depth(i)),n.addAssign(d.x),a.addAssign(wa(d.y.mul(d.y),d.x.mul(d.x)))}),n.divAssign(e),a.divAssign(e);const l=fo(a.sub(n.mul(n)).max(0));return fn(n,l)}),B_=[T_,__,v_,N_];let L_;const P_=new Wb;class F_ extends u_{static get type(){return"ShadowNode"}constructor(e,t=null){super(e),this.shadow=t||e.shadow,this.shadowMap=null,this.vsmShadowMapVertical=null,this.vsmShadowMapHorizontal=null,this.vsmMaterialVertical=null,this.vsmMaterialHorizontal=null,this._node=null,this._currentShadowType=null,this._cameraFrameId=new WeakMap,this.isShadowNode=!0,this.depthLayer=0}setupShadowFilter(e,{filterFn:t,depthTexture:r,shadowCoord:s,shadow:i,depthLayer:n}){const a=s.x.greaterThanEqual(0).and(s.x.lessThanEqual(1)).and(s.y.greaterThanEqual(0)).and(s.y.lessThanEqual(1)).and(s.z.lessThanEqual(1)),o=t({depthTexture:r,shadowCoord:s,shadow:i,depthLayer:n});return a.select(o,hn(1))}setupShadowCoord(e,t){const{shadow:r}=this,{renderer:s}=e,i=mc("bias","float",r).setGroup(fa);let n,a=t;if(r.camera.isOrthographicCamera||!0!==s.logarithmicDepthBuffer)a=a.xyz.div(a.w),n=a.z,s.coordinateSystem===h&&(n=n.mul(2).sub(1));else{const e=a.w;a=a.xy.div(e);const t=mc("near","float",r.camera).setGroup(fa),s=mc("far","float",r.camera).setGroup(fa);n=Mp(e.negate(),t,s)}return a=Tn(a.x,a.y.oneMinus(),n.add(i)),a}getShadowFilterFn(e){return B_[e]}setupRenderTarget(e,t){const r=new X(e.mapSize.width,e.mapSize.height);r.name="ShadowDepthTexture",r.compareFunction=qe;const s=t.createRenderTarget(e.mapSize.width,e.mapSize.height);return s.texture.name="ShadowMap",s.texture.type=e.mapType,s.depthTexture=r,{shadowMap:s,depthTexture:r}}setupShadow(e){const{renderer:t,camera:r}=e,{light:s,shadow:i}=this,n=t.shadowMap.type,{depthTexture:a,shadowMap:o}=this.setupRenderTarget(i,e);if(i.camera.coordinateSystem=r.coordinateSystem,i.camera.updateProjectionMatrix(),n===je&&!0!==i.isPointLightShadow){a.compareFunction=null,o.depth>1?(o._vsmShadowMapVertical||(o._vsmShadowMapVertical=e.createRenderTarget(i.mapSize.width,i.mapSize.height,{format:V,type:fe,depth:o.depth,depthBuffer:!1}),o._vsmShadowMapVertical.texture.name="VSMVertical"),this.vsmShadowMapVertical=o._vsmShadowMapVertical,o._vsmShadowMapHorizontal||(o._vsmShadowMapHorizontal=e.createRenderTarget(i.mapSize.width,i.mapSize.height,{format:V,type:fe,depth:o.depth,depthBuffer:!1}),o._vsmShadowMapHorizontal.texture.name="VSMHorizontal"),this.vsmShadowMapHorizontal=o._vsmShadowMapHorizontal):(this.vsmShadowMapVertical=e.createRenderTarget(i.mapSize.width,i.mapSize.height,{format:V,type:fe,depthBuffer:!1}),this.vsmShadowMapHorizontal=e.createRenderTarget(i.mapSize.width,i.mapSize.height,{format:V,type:fe,depthBuffer:!1}));let t=Pl(a);a.isArrayTexture&&(t=t.depth(this.depthLayer));let r=Pl(this.vsmShadowMapVertical.texture);a.isArrayTexture&&(r=r.depth(this.depthLayer));const s=mc("blurSamples","float",i).setGroup(fa),n=mc("radius","float",i).setGroup(fa),u=mc("mapSize","vec2",i).setGroup(fa);let l=this.vsmMaterialVertical||(this.vsmMaterialVertical=new Xp);l.fragmentNode=C_({samples:s,radius:n,size:u,shadowPass:t,depthLayer:this.depthLayer}).context(e.getSharedContext()),l.name="VSMVertical",l=this.vsmMaterialHorizontal||(this.vsmMaterialHorizontal=new Xp),l.fragmentNode=M_({samples:s,radius:n,size:u,shadowPass:r,depthLayer:this.depthLayer}).context(e.getSharedContext()),l.name="VSMHorizontal"}const u=mc("intensity","float",i).setGroup(fa),l=mc("normalBias","float",i).setGroup(fa),d=ZT(s).mul(l_.add(qd.mul(l))),c=this.setupShadowCoord(e,d),h=i.filterNode||this.getShadowFilterFn(t.shadowMap.type)||null;if(null===h)throw new Error("THREE.WebGPURenderer: Shadow map type not supported yet.");const p=n===je&&!0!==i.isPointLightShadow?this.vsmShadowMapHorizontal.texture:a,g=this.setupShadowFilter(e,{filterFn:h,shadowTexture:o.texture,depthTexture:p,shadowCoord:c,shadow:i,depthLayer:this.depthLayer});let m;o.texture.isCubeTexture?m=hc(o.texture,c.xyz):(m=Pl(o.texture,c),a.isArrayTexture&&(m=m.depth(this.depthLayer)));const f=iu(1,g.rgb.mix(m,1),u.mul(m.a)).toVar();this.shadowMap=o,this.shadow.map=o;const y=`${this.light.type} Shadow [ ${this.light.name||"ID: "+this.light.id} ]`;return f.toInspector(`${y} / Color`,()=>this.shadowMap.texture.isCubeTexture?hc(this.shadowMap.texture):Pl(this.shadowMap.texture)).toInspector(`${y} / Depth`,()=>this.shadowMap.texture.isCubeTexture?hc(this.shadowMap.texture).r.oneMinus():Fl(this.shadowMap.depthTexture,Rl().mul(El(Pl(this.shadowMap.depthTexture)))).r.oneMinus())}setup(e){if(!1!==e.renderer.shadowMap.enabled)return an(()=>{const t=e.renderer.shadowMap.type;this._currentShadowType!==t&&(this._reset(),this._node=null);let r=this._node;return this.setupShadowPosition(e),null===r&&(this._node=r=this.setupShadow(e),this._currentShadowType=t),e.material.shadowNode&&d('NodeMaterial: ".shadowNode" is deprecated. Use ".castShadowNode" instead.'),e.material.receivedShadowNode&&(r=e.material.receivedShadowNode(r)),r})()}renderShadow(e){const{shadow:t,shadowMap:r,light:s}=this,{renderer:i,scene:n}=e;t.updateMatrices(s),r.setSize(t.mapSize.width,t.mapSize.height,r.depth);const a=n.name;n.name=`Shadow Map [ ${s.name||"ID: "+s.id} ]`,i.render(n,t.camera),n.name=a}updateShadow(e){const{shadowMap:t,light:r,shadow:s}=this,{renderer:i,scene:n,camera:a}=e,o=i.shadowMap.type,u=t.depthTexture.version;this._depthVersionCached=u;const l=s.camera.layers.mask;4294967294&s.camera.layers.mask||(s.camera.layers.mask=a.layers.mask);const d=i.getRenderObjectFunction(),c=i.getMRT(),h=!!c&&c.has("velocity");L_=f_(i,n,L_),n.overrideMaterial=R_(r),i.setRenderObjectFunction(w_(i,s,o,h)),i.setClearColor(0,0),i.setRenderTarget(t),this.renderShadow(e),i.setRenderObjectFunction(d),o===je&&!0!==s.isPointLightShadow&&this.vsmPass(i),s.camera.layers.mask=l,y_(i,n,L_)}vsmPass(e){const{shadow:t}=this,r=this.shadowMap.depth;this.vsmShadowMapVertical.setSize(t.mapSize.width,t.mapSize.height,r),this.vsmShadowMapHorizontal.setSize(t.mapSize.width,t.mapSize.height,r),e.setRenderTarget(this.vsmShadowMapVertical),P_.material=this.vsmMaterialVertical,P_.render(e),e.setRenderTarget(this.vsmShadowMapHorizontal),P_.material=this.vsmMaterialHorizontal,P_.render(e)}dispose(){this._reset(),super.dispose()}_reset(){this._currentShadowType=null,this.shadowMap&&(this.shadowMap.dispose(),this.shadowMap=null),null!==this.vsmShadowMapVertical&&(this.vsmShadowMapVertical.dispose(),this.vsmShadowMapVertical=null,this.vsmMaterialVertical.dispose(),this.vsmMaterialVertical=null),null!==this.vsmShadowMapHorizontal&&(this.vsmShadowMapHorizontal.dispose(),this.vsmShadowMapHorizontal=null,this.vsmMaterialHorizontal.dispose(),this.vsmMaterialHorizontal=null)}updateBefore(e){const{shadow:t}=this;let r=t.needsUpdate||t.autoUpdate;r&&(this._cameraFrameId[e.camera]===e.frameId&&(r=!1),this._cameraFrameId[e.camera]=e.frameId),r&&(this.updateShadow(e),this.shadowMap.depthTexture.version===this._depthVersionCached&&(t.needsUpdate=!1))}}const D_=(e,t)=>Yi(new F_(e,t)),U_=new e,I_=new a,O_=new r,V_=new r,k_=[new r(1,0,0),new r(-1,0,0),new r(0,-1,0),new r(0,1,0),new r(0,0,1),new r(0,0,-1)],G_=[new r(0,-1,0),new r(0,-1,0),new r(0,0,-1),new r(0,0,1),new r(0,-1,0),new r(0,-1,0)],z_=[new r(1,0,0),new r(-1,0,0),new r(0,1,0),new r(0,-1,0),new r(0,0,1),new r(0,0,-1)],$_=[new r(0,-1,0),new r(0,-1,0),new r(0,0,1),new r(0,0,-1),new r(0,-1,0),new r(0,-1,0)],W_=an(({depthTexture:e,bd3D:t,dp:r})=>hc(e,t).compare(r)),H_=an(({depthTexture:e,bd3D:t,dp:r,shadow:s})=>{const i=mc("radius","float",s).setGroup(fa),n=mc("mapSize","vec2",s).setGroup(fa),a=i.div(n.x),o=wo(t),u=To(Yo(t,o.x.greaterThan(o.z).select(Tn(0,1,0),Tn(1,0,0)))),l=Yo(t,u),d=Qb(ql.xy).mul(6.28318530718),c=Zb(0,5,d),h=Zb(1,5,d),p=Zb(2,5,d),g=Zb(3,5,d),m=Zb(4,5,d);return hc(e,t.add(u.mul(c.x).add(l.mul(c.y)).mul(a))).compare(r).add(hc(e,t.add(u.mul(h.x).add(l.mul(h.y)).mul(a))).compare(r)).add(hc(e,t.add(u.mul(p.x).add(l.mul(p.y)).mul(a))).compare(r)).add(hc(e,t.add(u.mul(g.x).add(l.mul(g.y)).mul(a))).compare(r)).add(hc(e,t.add(u.mul(m.x).add(l.mul(m.y)).mul(a))).compare(r)).mul(.2)}),j_=an(({filterFn:e,depthTexture:t,shadowCoord:r,shadow:s})=>{const i=r.xyz.toVar(),n=i.length(),a=xa("float").setGroup(fa).onRenderUpdate(()=>s.camera.near),o=xa("float").setGroup(fa).onRenderUpdate(()=>s.camera.far),u=mc("bias","float",s).setGroup(fa),l=hn(1).toVar();return ln(n.sub(o).lessThanEqual(0).and(n.sub(a).greaterThanEqual(0)),()=>{const r=n.sub(a).div(o.sub(a)).toVar();r.addAssign(u);const d=i.normalize();l.assign(e({depthTexture:t,bd3D:d,dp:r,shadow:s}))}),l});class q_ extends F_{static get type(){return"PointShadowNode"}constructor(e,t=null){super(e,t)}getShadowFilterFn(e){return e===Xe?W_:H_}setupShadowCoord(e,t){return t}setupShadowFilter(e,{filterFn:t,depthTexture:r,shadowCoord:s,shadow:i}){return j_({filterFn:t,depthTexture:r,shadowCoord:s,shadow:i})}setupRenderTarget(e,t){const r=new Ke(e.mapSize.width);r.name="PointShadowDepthTexture",r.compareFunction=qe;const s=t.createCubeRenderTarget(e.mapSize.width);return s.texture.name="PointShadowMap",s.depthTexture=r,{shadowMap:s,depthTexture:r}}renderShadow(e){const{shadow:t,shadowMap:r,light:s}=this,{renderer:i,scene:n}=e,a=t.camera,o=t.matrix,u=i.coordinateSystem===h,l=u?k_:z_,d=u?G_:$_;r.setSize(t.mapSize.width,t.mapSize.width);const c=i.autoClear,p=i.getClearColor(U_),g=i.getClearAlpha();i.autoClear=!1,i.setClearColor(t.clearColor,t.clearAlpha);for(let e=0;e<6;e++){i.setRenderTarget(r,e),i.clear();const u=s.distance||a.far;u!==a.far&&(a.far=u,a.updateProjectionMatrix()),O_.setFromMatrixPosition(s.matrixWorld),a.position.copy(O_),V_.copy(a.position),V_.add(l[e]),a.up.copy(d[e]),a.lookAt(V_),a.updateMatrixWorld(),o.makeTranslation(-O_.x,-O_.y,-O_.z),I_.multiplyMatrices(a.projectionMatrix,a.matrixWorldInverse),t._frustum.setFromProjectionMatrix(I_,a.coordinateSystem,a.reversedDepth);const c=n.name;n.name=`Point Light Shadow [ ${s.name||"ID: "+s.id} ] - Face ${e+1}`,i.render(n,a),n.name=c}i.autoClear=c,i.setClearColor(p,g)}}const X_=(e,t)=>Yi(new q_(e,t));class K_ extends gp{static get type(){return"AnalyticLightNode"}constructor(t=null){super(),this.light=t,this.color=new e,this.colorNode=t&&t.colorNode||xa(this.color).setGroup(fa),this.baseColorNode=null,this.shadowNode=null,this.shadowColorNode=null,this.isAnalyticLightNode=!0,this.updateType=Qs.FRAME}getHash(){return this.light.uuid}getLightVector(e){return r_(this.light).sub(e.context.positionView||Dd)}setupDirect(){}setupDirectRectArea(){}setupShadowNode(){return D_(this.light)}setupShadow(e){const{renderer:t}=e;if(!1===t.shadowMap.enabled)return;let r=this.shadowColorNode;if(null===r){const e=this.light.shadow.shadowNode;let t;t=void 0!==e?Yi(e):this.setupShadowNode(),this.shadowNode=t,this.shadowColorNode=r=this.colorNode.mul(t),this.baseColorNode=this.colorNode}e.context.getShadow&&(r=e.context.getShadow(this,e)),this.colorNode=r}setup(e){this.colorNode=this.baseColorNode||this.colorNode,this.light.castShadow?e.object.receiveShadow&&this.setupShadow(e):null!==this.shadowNode&&(this.shadowNode.dispose(),this.shadowNode=null,this.shadowColorNode=null);const t=this.setupDirect(e),r=this.setupDirectRectArea(e);t&&e.lightsNode.setupDirectLight(e,this,t),r&&e.lightsNode.setupDirectRectAreaLight(e,this,r)}update(){const{light:e}=this;this.color.copy(e.color).multiplyScalar(e.intensity)}}const Y_=an(({lightDistance:e,cutoffDistance:t,decayExponent:r})=>{const s=e.pow(r).max(.01).reciprocal();return t.greaterThan(0).select(s.mul(e.div(t).pow4().oneMinus().clamp().pow2()),s)}),Q_=({color:e,lightVector:t,cutoffDistance:r,decayExponent:s})=>{const i=t.normalize(),n=t.length(),a=Y_({lightDistance:n,cutoffDistance:r,decayExponent:s});return{lightDirection:i,lightColor:e.mul(a)}};class Z_ extends K_{static get type(){return"PointLightNode"}constructor(e=null){super(e),this.cutoffDistanceNode=xa(0).setGroup(fa),this.decayExponentNode=xa(2).setGroup(fa)}update(e){const{light:t}=this;super.update(e),this.cutoffDistanceNode.value=t.distance,this.decayExponentNode.value=t.decay}setupShadowNode(){return X_(this.light)}setupDirect(e){return Q_({color:this.colorNode,lightVector:this.getLightVector(e),cutoffDistance:this.cutoffDistanceNode,decayExponent:this.decayExponentNode})}}const J_=an(([e=Rl()])=>{const t=e.mul(2),r=t.x.floor(),s=t.y.floor();return r.add(s).mod(2).sign()}),ev=an(([e=Rl()],{renderer:t,material:r})=>{const s=su(e.mul(2).sub(1));let i;if(r.alphaToCoverage&&t.currentSamples>0){const e=hn(s.fwidth()).toVar();i=uu(e.oneMinus(),e.add(1),s).oneMinus()}else i=bu(s.greaterThan(1),0,1);return i}),tv=an(([e,t,r])=>{const s=hn(r).toVar(),i=hn(t).toVar(),n=mn(e).toVar();return bu(n,i,s)}).setLayout({name:"mx_select",type:"float",inputs:[{name:"b",type:"bool"},{name:"t",type:"float"},{name:"f",type:"float"}]}),rv=an(([e,t])=>{const r=mn(t).toVar(),s=hn(e).toVar();return bu(r,s.negate(),s)}).setLayout({name:"mx_negate_if",type:"float",inputs:[{name:"val",type:"float"},{name:"b",type:"bool"}]}),sv=an(([e])=>{const t=hn(e).toVar();return pn(bo(t))}).setLayout({name:"mx_floor",type:"int",inputs:[{name:"x",type:"float"}]}),iv=an(([e,t])=>{const r=hn(e).toVar();return t.assign(sv(r)),r.sub(hn(t))}),nv=gb([an(([e,t,r,s,i,n])=>{const a=hn(n).toVar(),o=hn(i).toVar(),u=hn(s).toVar(),l=hn(r).toVar(),d=hn(t).toVar(),c=hn(e).toVar(),h=hn(Ca(1,o)).toVar();return Ca(1,a).mul(c.mul(h).add(d.mul(o))).add(a.mul(l.mul(h).add(u.mul(o))))}).setLayout({name:"mx_bilerp_0",type:"float",inputs:[{name:"v0",type:"float"},{name:"v1",type:"float"},{name:"v2",type:"float"},{name:"v3",type:"float"},{name:"s",type:"float"},{name:"t",type:"float"}]}),an(([e,t,r,s,i,n])=>{const a=hn(n).toVar(),o=hn(i).toVar(),u=Tn(s).toVar(),l=Tn(r).toVar(),d=Tn(t).toVar(),c=Tn(e).toVar(),h=hn(Ca(1,o)).toVar();return Ca(1,a).mul(c.mul(h).add(d.mul(o))).add(a.mul(l.mul(h).add(u.mul(o))))}).setLayout({name:"mx_bilerp_1",type:"vec3",inputs:[{name:"v0",type:"vec3"},{name:"v1",type:"vec3"},{name:"v2",type:"vec3"},{name:"v3",type:"vec3"},{name:"s",type:"float"},{name:"t",type:"float"}]})]),av=gb([an(([e,t,r,s,i,n,a,o,u,l,d])=>{const c=hn(d).toVar(),h=hn(l).toVar(),p=hn(u).toVar(),g=hn(o).toVar(),m=hn(a).toVar(),f=hn(n).toVar(),y=hn(i).toVar(),b=hn(s).toVar(),x=hn(r).toVar(),T=hn(t).toVar(),_=hn(e).toVar(),v=hn(Ca(1,p)).toVar(),N=hn(Ca(1,h)).toVar();return hn(Ca(1,c)).toVar().mul(N.mul(_.mul(v).add(T.mul(p))).add(h.mul(x.mul(v).add(b.mul(p))))).add(c.mul(N.mul(y.mul(v).add(f.mul(p))).add(h.mul(m.mul(v).add(g.mul(p))))))}).setLayout({name:"mx_trilerp_0",type:"float",inputs:[{name:"v0",type:"float"},{name:"v1",type:"float"},{name:"v2",type:"float"},{name:"v3",type:"float"},{name:"v4",type:"float"},{name:"v5",type:"float"},{name:"v6",type:"float"},{name:"v7",type:"float"},{name:"s",type:"float"},{name:"t",type:"float"},{name:"r",type:"float"}]}),an(([e,t,r,s,i,n,a,o,u,l,d])=>{const c=hn(d).toVar(),h=hn(l).toVar(),p=hn(u).toVar(),g=Tn(o).toVar(),m=Tn(a).toVar(),f=Tn(n).toVar(),y=Tn(i).toVar(),b=Tn(s).toVar(),x=Tn(r).toVar(),T=Tn(t).toVar(),_=Tn(e).toVar(),v=hn(Ca(1,p)).toVar(),N=hn(Ca(1,h)).toVar();return hn(Ca(1,c)).toVar().mul(N.mul(_.mul(v).add(T.mul(p))).add(h.mul(x.mul(v).add(b.mul(p))))).add(c.mul(N.mul(y.mul(v).add(f.mul(p))).add(h.mul(m.mul(v).add(g.mul(p))))))}).setLayout({name:"mx_trilerp_1",type:"vec3",inputs:[{name:"v0",type:"vec3"},{name:"v1",type:"vec3"},{name:"v2",type:"vec3"},{name:"v3",type:"vec3"},{name:"v4",type:"vec3"},{name:"v5",type:"vec3"},{name:"v6",type:"vec3"},{name:"v7",type:"vec3"},{name:"s",type:"float"},{name:"t",type:"float"},{name:"r",type:"float"}]})]),ov=an(([e,t,r])=>{const s=hn(r).toVar(),i=hn(t).toVar(),n=gn(e).toVar(),a=gn(n.bitAnd(gn(7))).toVar(),o=hn(tv(a.lessThan(gn(4)),i,s)).toVar(),u=hn(Ma(2,tv(a.lessThan(gn(4)),s,i))).toVar();return rv(o,mn(a.bitAnd(gn(1)))).add(rv(u,mn(a.bitAnd(gn(2)))))}).setLayout({name:"mx_gradient_float_0",type:"float",inputs:[{name:"hash",type:"uint"},{name:"x",type:"float"},{name:"y",type:"float"}]}),uv=an(([e,t,r,s])=>{const i=hn(s).toVar(),n=hn(r).toVar(),a=hn(t).toVar(),o=gn(e).toVar(),u=gn(o.bitAnd(gn(15))).toVar(),l=hn(tv(u.lessThan(gn(8)),a,n)).toVar(),d=hn(tv(u.lessThan(gn(4)),n,tv(u.equal(gn(12)).or(u.equal(gn(14))),a,i))).toVar();return rv(l,mn(u.bitAnd(gn(1)))).add(rv(d,mn(u.bitAnd(gn(2)))))}).setLayout({name:"mx_gradient_float_1",type:"float",inputs:[{name:"hash",type:"uint"},{name:"x",type:"float"},{name:"y",type:"float"},{name:"z",type:"float"}]}),lv=gb([ov,uv]),dv=an(([e,t,r])=>{const s=hn(r).toVar(),i=hn(t).toVar(),n=vn(e).toVar();return Tn(lv(n.x,i,s),lv(n.y,i,s),lv(n.z,i,s))}).setLayout({name:"mx_gradient_vec3_0",type:"vec3",inputs:[{name:"hash",type:"uvec3"},{name:"x",type:"float"},{name:"y",type:"float"}]}),cv=an(([e,t,r,s])=>{const i=hn(s).toVar(),n=hn(r).toVar(),a=hn(t).toVar(),o=vn(e).toVar();return Tn(lv(o.x,a,n,i),lv(o.y,a,n,i),lv(o.z,a,n,i))}).setLayout({name:"mx_gradient_vec3_1",type:"vec3",inputs:[{name:"hash",type:"uvec3"},{name:"x",type:"float"},{name:"y",type:"float"},{name:"z",type:"float"}]}),hv=gb([dv,cv]),pv=an(([e])=>{const t=hn(e).toVar();return Ma(.6616,t)}).setLayout({name:"mx_gradient_scale2d_0",type:"float",inputs:[{name:"v",type:"float"}]}),gv=an(([e])=>{const t=hn(e).toVar();return Ma(.982,t)}).setLayout({name:"mx_gradient_scale3d_0",type:"float",inputs:[{name:"v",type:"float"}]}),mv=gb([pv,an(([e])=>{const t=Tn(e).toVar();return Ma(.6616,t)}).setLayout({name:"mx_gradient_scale2d_1",type:"vec3",inputs:[{name:"v",type:"vec3"}]})]),fv=gb([gv,an(([e])=>{const t=Tn(e).toVar();return Ma(.982,t)}).setLayout({name:"mx_gradient_scale3d_1",type:"vec3",inputs:[{name:"v",type:"vec3"}]})]),yv=an(([e,t])=>{const r=pn(t).toVar(),s=gn(e).toVar();return s.shiftLeft(r).bitOr(s.shiftRight(pn(32).sub(r)))}).setLayout({name:"mx_rotl32",type:"uint",inputs:[{name:"x",type:"uint"},{name:"k",type:"int"}]}),bv=an(([e,t,r])=>{e.subAssign(r),e.bitXorAssign(yv(r,pn(4))),r.addAssign(t),t.subAssign(e),t.bitXorAssign(yv(e,pn(6))),e.addAssign(r),r.subAssign(t),r.bitXorAssign(yv(t,pn(8))),t.addAssign(e),e.subAssign(r),e.bitXorAssign(yv(r,pn(16))),r.addAssign(t),t.subAssign(e),t.bitXorAssign(yv(e,pn(19))),e.addAssign(r),r.subAssign(t),r.bitXorAssign(yv(t,pn(4))),t.addAssign(e)}),xv=an(([e,t,r])=>{const s=gn(r).toVar(),i=gn(t).toVar(),n=gn(e).toVar();return s.bitXorAssign(i),s.subAssign(yv(i,pn(14))),n.bitXorAssign(s),n.subAssign(yv(s,pn(11))),i.bitXorAssign(n),i.subAssign(yv(n,pn(25))),s.bitXorAssign(i),s.subAssign(yv(i,pn(16))),n.bitXorAssign(s),n.subAssign(yv(s,pn(4))),i.bitXorAssign(n),i.subAssign(yv(n,pn(14))),s.bitXorAssign(i),s.subAssign(yv(i,pn(24))),s}).setLayout({name:"mx_bjfinal",type:"uint",inputs:[{name:"a",type:"uint"},{name:"b",type:"uint"},{name:"c",type:"uint"}]}),Tv=an(([e])=>{const t=gn(e).toVar();return hn(t).div(hn(gn(pn(4294967295))))}).setLayout({name:"mx_bits_to_01",type:"float",inputs:[{name:"bits",type:"uint"}]}),_v=an(([e])=>{const t=hn(e).toVar();return t.mul(t).mul(t).mul(t.mul(t.mul(6).sub(15)).add(10))}).setLayout({name:"mx_fade",type:"float",inputs:[{name:"t",type:"float"}]}),vv=gb([an(([e])=>{const t=pn(e).toVar(),r=gn(gn(1)).toVar(),s=gn(gn(pn(3735928559)).add(r.shiftLeft(gn(2))).add(gn(13))).toVar();return xv(s.add(gn(t)),s,s)}).setLayout({name:"mx_hash_int_0",type:"uint",inputs:[{name:"x",type:"int"}]}),an(([e,t])=>{const r=pn(t).toVar(),s=pn(e).toVar(),i=gn(gn(2)).toVar(),n=gn().toVar(),a=gn().toVar(),o=gn().toVar();return n.assign(a.assign(o.assign(gn(pn(3735928559)).add(i.shiftLeft(gn(2))).add(gn(13))))),n.addAssign(gn(s)),a.addAssign(gn(r)),xv(n,a,o)}).setLayout({name:"mx_hash_int_1",type:"uint",inputs:[{name:"x",type:"int"},{name:"y",type:"int"}]}),an(([e,t,r])=>{const s=pn(r).toVar(),i=pn(t).toVar(),n=pn(e).toVar(),a=gn(gn(3)).toVar(),o=gn().toVar(),u=gn().toVar(),l=gn().toVar();return o.assign(u.assign(l.assign(gn(pn(3735928559)).add(a.shiftLeft(gn(2))).add(gn(13))))),o.addAssign(gn(n)),u.addAssign(gn(i)),l.addAssign(gn(s)),xv(o,u,l)}).setLayout({name:"mx_hash_int_2",type:"uint",inputs:[{name:"x",type:"int"},{name:"y",type:"int"},{name:"z",type:"int"}]}),an(([e,t,r,s])=>{const i=pn(s).toVar(),n=pn(r).toVar(),a=pn(t).toVar(),o=pn(e).toVar(),u=gn(gn(4)).toVar(),l=gn().toVar(),d=gn().toVar(),c=gn().toVar();return l.assign(d.assign(c.assign(gn(pn(3735928559)).add(u.shiftLeft(gn(2))).add(gn(13))))),l.addAssign(gn(o)),d.addAssign(gn(a)),c.addAssign(gn(n)),bv(l,d,c),l.addAssign(gn(i)),xv(l,d,c)}).setLayout({name:"mx_hash_int_3",type:"uint",inputs:[{name:"x",type:"int"},{name:"y",type:"int"},{name:"z",type:"int"},{name:"xx",type:"int"}]}),an(([e,t,r,s,i])=>{const n=pn(i).toVar(),a=pn(s).toVar(),o=pn(r).toVar(),u=pn(t).toVar(),l=pn(e).toVar(),d=gn(gn(5)).toVar(),c=gn().toVar(),h=gn().toVar(),p=gn().toVar();return c.assign(h.assign(p.assign(gn(pn(3735928559)).add(d.shiftLeft(gn(2))).add(gn(13))))),c.addAssign(gn(l)),h.addAssign(gn(u)),p.addAssign(gn(o)),bv(c,h,p),c.addAssign(gn(a)),h.addAssign(gn(n)),xv(c,h,p)}).setLayout({name:"mx_hash_int_4",type:"uint",inputs:[{name:"x",type:"int"},{name:"y",type:"int"},{name:"z",type:"int"},{name:"xx",type:"int"},{name:"yy",type:"int"}]})]),Nv=gb([an(([e,t])=>{const r=pn(t).toVar(),s=pn(e).toVar(),i=gn(vv(s,r)).toVar(),n=vn().toVar();return n.x.assign(i.bitAnd(pn(255))),n.y.assign(i.shiftRight(pn(8)).bitAnd(pn(255))),n.z.assign(i.shiftRight(pn(16)).bitAnd(pn(255))),n}).setLayout({name:"mx_hash_vec3_0",type:"uvec3",inputs:[{name:"x",type:"int"},{name:"y",type:"int"}]}),an(([e,t,r])=>{const s=pn(r).toVar(),i=pn(t).toVar(),n=pn(e).toVar(),a=gn(vv(n,i,s)).toVar(),o=vn().toVar();return o.x.assign(a.bitAnd(pn(255))),o.y.assign(a.shiftRight(pn(8)).bitAnd(pn(255))),o.z.assign(a.shiftRight(pn(16)).bitAnd(pn(255))),o}).setLayout({name:"mx_hash_vec3_1",type:"uvec3",inputs:[{name:"x",type:"int"},{name:"y",type:"int"},{name:"z",type:"int"}]})]),Sv=gb([an(([e])=>{const t=fn(e).toVar(),r=pn().toVar(),s=pn().toVar(),i=hn(iv(t.x,r)).toVar(),n=hn(iv(t.y,s)).toVar(),a=hn(_v(i)).toVar(),o=hn(_v(n)).toVar(),u=hn(nv(lv(vv(r,s),i,n),lv(vv(r.add(pn(1)),s),i.sub(1),n),lv(vv(r,s.add(pn(1))),i,n.sub(1)),lv(vv(r.add(pn(1)),s.add(pn(1))),i.sub(1),n.sub(1)),a,o)).toVar();return mv(u)}).setLayout({name:"mx_perlin_noise_float_0",type:"float",inputs:[{name:"p",type:"vec2"}]}),an(([e])=>{const t=Tn(e).toVar(),r=pn().toVar(),s=pn().toVar(),i=pn().toVar(),n=hn(iv(t.x,r)).toVar(),a=hn(iv(t.y,s)).toVar(),o=hn(iv(t.z,i)).toVar(),u=hn(_v(n)).toVar(),l=hn(_v(a)).toVar(),d=hn(_v(o)).toVar(),c=hn(av(lv(vv(r,s,i),n,a,o),lv(vv(r.add(pn(1)),s,i),n.sub(1),a,o),lv(vv(r,s.add(pn(1)),i),n,a.sub(1),o),lv(vv(r.add(pn(1)),s.add(pn(1)),i),n.sub(1),a.sub(1),o),lv(vv(r,s,i.add(pn(1))),n,a,o.sub(1)),lv(vv(r.add(pn(1)),s,i.add(pn(1))),n.sub(1),a,o.sub(1)),lv(vv(r,s.add(pn(1)),i.add(pn(1))),n,a.sub(1),o.sub(1)),lv(vv(r.add(pn(1)),s.add(pn(1)),i.add(pn(1))),n.sub(1),a.sub(1),o.sub(1)),u,l,d)).toVar();return fv(c)}).setLayout({name:"mx_perlin_noise_float_1",type:"float",inputs:[{name:"p",type:"vec3"}]})]),Rv=gb([an(([e])=>{const t=fn(e).toVar(),r=pn().toVar(),s=pn().toVar(),i=hn(iv(t.x,r)).toVar(),n=hn(iv(t.y,s)).toVar(),a=hn(_v(i)).toVar(),o=hn(_v(n)).toVar(),u=Tn(nv(hv(Nv(r,s),i,n),hv(Nv(r.add(pn(1)),s),i.sub(1),n),hv(Nv(r,s.add(pn(1))),i,n.sub(1)),hv(Nv(r.add(pn(1)),s.add(pn(1))),i.sub(1),n.sub(1)),a,o)).toVar();return mv(u)}).setLayout({name:"mx_perlin_noise_vec3_0",type:"vec3",inputs:[{name:"p",type:"vec2"}]}),an(([e])=>{const t=Tn(e).toVar(),r=pn().toVar(),s=pn().toVar(),i=pn().toVar(),n=hn(iv(t.x,r)).toVar(),a=hn(iv(t.y,s)).toVar(),o=hn(iv(t.z,i)).toVar(),u=hn(_v(n)).toVar(),l=hn(_v(a)).toVar(),d=hn(_v(o)).toVar(),c=Tn(av(hv(Nv(r,s,i),n,a,o),hv(Nv(r.add(pn(1)),s,i),n.sub(1),a,o),hv(Nv(r,s.add(pn(1)),i),n,a.sub(1),o),hv(Nv(r.add(pn(1)),s.add(pn(1)),i),n.sub(1),a.sub(1),o),hv(Nv(r,s,i.add(pn(1))),n,a,o.sub(1)),hv(Nv(r.add(pn(1)),s,i.add(pn(1))),n.sub(1),a,o.sub(1)),hv(Nv(r,s.add(pn(1)),i.add(pn(1))),n,a.sub(1),o.sub(1)),hv(Nv(r.add(pn(1)),s.add(pn(1)),i.add(pn(1))),n.sub(1),a.sub(1),o.sub(1)),u,l,d)).toVar();return fv(c)}).setLayout({name:"mx_perlin_noise_vec3_1",type:"vec3",inputs:[{name:"p",type:"vec3"}]})]),Av=gb([an(([e])=>{const t=hn(e).toVar(),r=pn(sv(t)).toVar();return Tv(vv(r))}).setLayout({name:"mx_cell_noise_float_0",type:"float",inputs:[{name:"p",type:"float"}]}),an(([e])=>{const t=fn(e).toVar(),r=pn(sv(t.x)).toVar(),s=pn(sv(t.y)).toVar();return Tv(vv(r,s))}).setLayout({name:"mx_cell_noise_float_1",type:"float",inputs:[{name:"p",type:"vec2"}]}),an(([e])=>{const t=Tn(e).toVar(),r=pn(sv(t.x)).toVar(),s=pn(sv(t.y)).toVar(),i=pn(sv(t.z)).toVar();return Tv(vv(r,s,i))}).setLayout({name:"mx_cell_noise_float_2",type:"float",inputs:[{name:"p",type:"vec3"}]}),an(([e])=>{const t=Sn(e).toVar(),r=pn(sv(t.x)).toVar(),s=pn(sv(t.y)).toVar(),i=pn(sv(t.z)).toVar(),n=pn(sv(t.w)).toVar();return Tv(vv(r,s,i,n))}).setLayout({name:"mx_cell_noise_float_3",type:"float",inputs:[{name:"p",type:"vec4"}]})]),Ev=gb([an(([e])=>{const t=hn(e).toVar(),r=pn(sv(t)).toVar();return Tn(Tv(vv(r,pn(0))),Tv(vv(r,pn(1))),Tv(vv(r,pn(2))))}).setLayout({name:"mx_cell_noise_vec3_0",type:"vec3",inputs:[{name:"p",type:"float"}]}),an(([e])=>{const t=fn(e).toVar(),r=pn(sv(t.x)).toVar(),s=pn(sv(t.y)).toVar();return Tn(Tv(vv(r,s,pn(0))),Tv(vv(r,s,pn(1))),Tv(vv(r,s,pn(2))))}).setLayout({name:"mx_cell_noise_vec3_1",type:"vec3",inputs:[{name:"p",type:"vec2"}]}),an(([e])=>{const t=Tn(e).toVar(),r=pn(sv(t.x)).toVar(),s=pn(sv(t.y)).toVar(),i=pn(sv(t.z)).toVar();return Tn(Tv(vv(r,s,i,pn(0))),Tv(vv(r,s,i,pn(1))),Tv(vv(r,s,i,pn(2))))}).setLayout({name:"mx_cell_noise_vec3_2",type:"vec3",inputs:[{name:"p",type:"vec3"}]}),an(([e])=>{const t=Sn(e).toVar(),r=pn(sv(t.x)).toVar(),s=pn(sv(t.y)).toVar(),i=pn(sv(t.z)).toVar(),n=pn(sv(t.w)).toVar();return Tn(Tv(vv(r,s,i,n,pn(0))),Tv(vv(r,s,i,n,pn(1))),Tv(vv(r,s,i,n,pn(2))))}).setLayout({name:"mx_cell_noise_vec3_3",type:"vec3",inputs:[{name:"p",type:"vec4"}]})]),wv=an(([e,t,r,s])=>{const i=hn(s).toVar(),n=hn(r).toVar(),a=pn(t).toVar(),o=Tn(e).toVar(),u=hn(0).toVar(),l=hn(1).toVar();return op(a,()=>{u.addAssign(l.mul(Sv(o))),l.mulAssign(i),o.mulAssign(n)}),u}).setLayout({name:"mx_fractal_noise_float",type:"float",inputs:[{name:"p",type:"vec3"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),Cv=an(([e,t,r,s])=>{const i=hn(s).toVar(),n=hn(r).toVar(),a=pn(t).toVar(),o=Tn(e).toVar(),u=Tn(0).toVar(),l=hn(1).toVar();return op(a,()=>{u.addAssign(l.mul(Rv(o))),l.mulAssign(i),o.mulAssign(n)}),u}).setLayout({name:"mx_fractal_noise_vec3",type:"vec3",inputs:[{name:"p",type:"vec3"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),Mv=an(([e,t,r,s])=>{const i=hn(s).toVar(),n=hn(r).toVar(),a=pn(t).toVar(),o=Tn(e).toVar();return fn(wv(o,a,n,i),wv(o.add(Tn(pn(19),pn(193),pn(17))),a,n,i))}).setLayout({name:"mx_fractal_noise_vec2",type:"vec2",inputs:[{name:"p",type:"vec3"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),Bv=an(([e,t,r,s])=>{const i=hn(s).toVar(),n=hn(r).toVar(),a=pn(t).toVar(),o=Tn(e).toVar(),u=Tn(Cv(o,a,n,i)).toVar(),l=hn(wv(o.add(Tn(pn(19),pn(193),pn(17))),a,n,i)).toVar();return Sn(u,l)}).setLayout({name:"mx_fractal_noise_vec4",type:"vec4",inputs:[{name:"p",type:"vec3"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),Lv=gb([an(([e,t,r,s,i,n,a])=>{const o=pn(a).toVar(),u=hn(n).toVar(),l=pn(i).toVar(),d=pn(s).toVar(),c=pn(r).toVar(),h=pn(t).toVar(),p=fn(e).toVar(),g=Tn(Ev(fn(h.add(d),c.add(l)))).toVar(),m=fn(g.x,g.y).toVar();m.subAssign(.5),m.mulAssign(u),m.addAssign(.5);const f=fn(fn(hn(h),hn(c)).add(m)).toVar(),y=fn(f.sub(p)).toVar();return ln(o.equal(pn(2)),()=>wo(y.x).add(wo(y.y))),ln(o.equal(pn(3)),()=>Wo(wo(y.x),wo(y.y))),Ko(y,y)}).setLayout({name:"mx_worley_distance_0",type:"float",inputs:[{name:"p",type:"vec2"},{name:"x",type:"int"},{name:"y",type:"int"},{name:"xoff",type:"int"},{name:"yoff",type:"int"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),an(([e,t,r,s,i,n,a,o,u])=>{const l=pn(u).toVar(),d=hn(o).toVar(),c=pn(a).toVar(),h=pn(n).toVar(),p=pn(i).toVar(),g=pn(s).toVar(),m=pn(r).toVar(),f=pn(t).toVar(),y=Tn(e).toVar(),b=Tn(Ev(Tn(f.add(p),m.add(h),g.add(c)))).toVar();b.subAssign(.5),b.mulAssign(d),b.addAssign(.5);const x=Tn(Tn(hn(f),hn(m),hn(g)).add(b)).toVar(),T=Tn(x.sub(y)).toVar();return ln(l.equal(pn(2)),()=>wo(T.x).add(wo(T.y)).add(wo(T.z))),ln(l.equal(pn(3)),()=>Wo(wo(T.x),wo(T.y),wo(T.z))),Ko(T,T)}).setLayout({name:"mx_worley_distance_1",type:"float",inputs:[{name:"p",type:"vec3"},{name:"x",type:"int"},{name:"y",type:"int"},{name:"z",type:"int"},{name:"xoff",type:"int"},{name:"yoff",type:"int"},{name:"zoff",type:"int"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]})]),Pv=an(([e,t,r])=>{const s=pn(r).toVar(),i=hn(t).toVar(),n=fn(e).toVar(),a=pn().toVar(),o=pn().toVar(),u=fn(iv(n.x,a),iv(n.y,o)).toVar(),l=hn(1e6).toVar();return op({start:-1,end:pn(1),name:"x",condition:"<="},({x:e})=>{op({start:-1,end:pn(1),name:"y",condition:"<="},({y:t})=>{const r=hn(Lv(u,e,t,a,o,i,s)).toVar();l.assign($o(l,r))})}),ln(s.equal(pn(0)),()=>{l.assign(fo(l))}),l}).setLayout({name:"mx_worley_noise_float_0",type:"float",inputs:[{name:"p",type:"vec2"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),Fv=an(([e,t,r])=>{const s=pn(r).toVar(),i=hn(t).toVar(),n=fn(e).toVar(),a=pn().toVar(),o=pn().toVar(),u=fn(iv(n.x,a),iv(n.y,o)).toVar(),l=fn(1e6,1e6).toVar();return op({start:-1,end:pn(1),name:"x",condition:"<="},({x:e})=>{op({start:-1,end:pn(1),name:"y",condition:"<="},({y:t})=>{const r=hn(Lv(u,e,t,a,o,i,s)).toVar();ln(r.lessThan(l.x),()=>{l.y.assign(l.x),l.x.assign(r)}).ElseIf(r.lessThan(l.y),()=>{l.y.assign(r)})})}),ln(s.equal(pn(0)),()=>{l.assign(fo(l))}),l}).setLayout({name:"mx_worley_noise_vec2_0",type:"vec2",inputs:[{name:"p",type:"vec2"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),Dv=an(([e,t,r])=>{const s=pn(r).toVar(),i=hn(t).toVar(),n=fn(e).toVar(),a=pn().toVar(),o=pn().toVar(),u=fn(iv(n.x,a),iv(n.y,o)).toVar(),l=Tn(1e6,1e6,1e6).toVar();return op({start:-1,end:pn(1),name:"x",condition:"<="},({x:e})=>{op({start:-1,end:pn(1),name:"y",condition:"<="},({y:t})=>{const r=hn(Lv(u,e,t,a,o,i,s)).toVar();ln(r.lessThan(l.x),()=>{l.z.assign(l.y),l.y.assign(l.x),l.x.assign(r)}).ElseIf(r.lessThan(l.y),()=>{l.z.assign(l.y),l.y.assign(r)}).ElseIf(r.lessThan(l.z),()=>{l.z.assign(r)})})}),ln(s.equal(pn(0)),()=>{l.assign(fo(l))}),l}).setLayout({name:"mx_worley_noise_vec3_0",type:"vec3",inputs:[{name:"p",type:"vec2"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),Uv=gb([Pv,an(([e,t,r])=>{const s=pn(r).toVar(),i=hn(t).toVar(),n=Tn(e).toVar(),a=pn().toVar(),o=pn().toVar(),u=pn().toVar(),l=Tn(iv(n.x,a),iv(n.y,o),iv(n.z,u)).toVar(),d=hn(1e6).toVar();return op({start:-1,end:pn(1),name:"x",condition:"<="},({x:e})=>{op({start:-1,end:pn(1),name:"y",condition:"<="},({y:t})=>{op({start:-1,end:pn(1),name:"z",condition:"<="},({z:r})=>{const n=hn(Lv(l,e,t,r,a,o,u,i,s)).toVar();d.assign($o(d,n))})})}),ln(s.equal(pn(0)),()=>{d.assign(fo(d))}),d}).setLayout({name:"mx_worley_noise_float_1",type:"float",inputs:[{name:"p",type:"vec3"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]})]),Iv=gb([Fv,an(([e,t,r])=>{const s=pn(r).toVar(),i=hn(t).toVar(),n=Tn(e).toVar(),a=pn().toVar(),o=pn().toVar(),u=pn().toVar(),l=Tn(iv(n.x,a),iv(n.y,o),iv(n.z,u)).toVar(),d=fn(1e6,1e6).toVar();return op({start:-1,end:pn(1),name:"x",condition:"<="},({x:e})=>{op({start:-1,end:pn(1),name:"y",condition:"<="},({y:t})=>{op({start:-1,end:pn(1),name:"z",condition:"<="},({z:r})=>{const n=hn(Lv(l,e,t,r,a,o,u,i,s)).toVar();ln(n.lessThan(d.x),()=>{d.y.assign(d.x),d.x.assign(n)}).ElseIf(n.lessThan(d.y),()=>{d.y.assign(n)})})})}),ln(s.equal(pn(0)),()=>{d.assign(fo(d))}),d}).setLayout({name:"mx_worley_noise_vec2_1",type:"vec2",inputs:[{name:"p",type:"vec3"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]})]),Ov=gb([Dv,an(([e,t,r])=>{const s=pn(r).toVar(),i=hn(t).toVar(),n=Tn(e).toVar(),a=pn().toVar(),o=pn().toVar(),u=pn().toVar(),l=Tn(iv(n.x,a),iv(n.y,o),iv(n.z,u)).toVar(),d=Tn(1e6,1e6,1e6).toVar();return op({start:-1,end:pn(1),name:"x",condition:"<="},({x:e})=>{op({start:-1,end:pn(1),name:"y",condition:"<="},({y:t})=>{op({start:-1,end:pn(1),name:"z",condition:"<="},({z:r})=>{const n=hn(Lv(l,e,t,r,a,o,u,i,s)).toVar();ln(n.lessThan(d.x),()=>{d.z.assign(d.y),d.y.assign(d.x),d.x.assign(n)}).ElseIf(n.lessThan(d.y),()=>{d.z.assign(d.y),d.y.assign(n)}).ElseIf(n.lessThan(d.z),()=>{d.z.assign(n)})})})}),ln(s.equal(pn(0)),()=>{d.assign(fo(d))}),d}).setLayout({name:"mx_worley_noise_vec3_1",type:"vec3",inputs:[{name:"p",type:"vec3"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]})]),Vv=an(([e,t,r,s,i,n,a,o,u,l,d])=>{const c=pn(e).toVar(),h=fn(t).toVar(),p=fn(r).toVar(),g=fn(s).toVar(),m=hn(i).toVar(),f=hn(n).toVar(),y=hn(a).toVar(),b=mn(o).toVar(),x=pn(u).toVar(),T=hn(l).toVar(),_=hn(d).toVar(),v=h.mul(p).add(g),N=hn(0).toVar();return ln(c.equal(pn(0)),()=>{N.assign(Rv(v))}),ln(c.equal(pn(1)),()=>{N.assign(Ev(v))}),ln(c.equal(pn(2)),()=>{N.assign(Ov(v,m,pn(0)))}),ln(c.equal(pn(3)),()=>{N.assign(Cv(Tn(v,0),x,T,_))}),N.assign(N.mul(y.sub(f)).add(f)),ln(b,()=>{N.assign(nu(N,f,y))}),N}).setLayout({name:"mx_unifiednoise2d",type:"float",inputs:[{name:"noiseType",type:"int"},{name:"texcoord",type:"vec2"},{name:"freq",type:"vec2"},{name:"offset",type:"vec2"},{name:"jitter",type:"float"},{name:"outmin",type:"float"},{name:"outmax",type:"float"},{name:"clampoutput",type:"bool"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),kv=an(([e,t,r,s,i,n,a,o,u,l,d])=>{const c=pn(e).toVar(),h=Tn(t).toVar(),p=Tn(r).toVar(),g=Tn(s).toVar(),m=hn(i).toVar(),f=hn(n).toVar(),y=hn(a).toVar(),b=mn(o).toVar(),x=pn(u).toVar(),T=hn(l).toVar(),_=hn(d).toVar(),v=h.mul(p).add(g),N=hn(0).toVar();return ln(c.equal(pn(0)),()=>{N.assign(Rv(v))}),ln(c.equal(pn(1)),()=>{N.assign(Ev(v))}),ln(c.equal(pn(2)),()=>{N.assign(Ov(v,m,pn(0)))}),ln(c.equal(pn(3)),()=>{N.assign(Cv(v,x,T,_))}),N.assign(N.mul(y.sub(f)).add(f)),ln(b,()=>{N.assign(nu(N,f,y))}),N}).setLayout({name:"mx_unifiednoise3d",type:"float",inputs:[{name:"noiseType",type:"int"},{name:"position",type:"vec3"},{name:"freq",type:"vec3"},{name:"offset",type:"vec3"},{name:"jitter",type:"float"},{name:"outmin",type:"float"},{name:"outmax",type:"float"},{name:"clampoutput",type:"bool"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),Gv=an(([e])=>{const t=e.y,r=e.z,s=Tn().toVar();return ln(t.lessThan(1e-4),()=>{s.assign(Tn(r,r,r))}).Else(()=>{let i=e.x;i=i.sub(bo(i)).mul(6).toVar();const n=pn(Io(i)),a=i.sub(hn(n)),o=r.mul(t.oneMinus()),u=r.mul(t.mul(a).oneMinus()),l=r.mul(t.mul(a.oneMinus()).oneMinus());ln(n.equal(pn(0)),()=>{s.assign(Tn(r,l,o))}).ElseIf(n.equal(pn(1)),()=>{s.assign(Tn(u,r,o))}).ElseIf(n.equal(pn(2)),()=>{s.assign(Tn(o,r,l))}).ElseIf(n.equal(pn(3)),()=>{s.assign(Tn(o,u,r))}).ElseIf(n.equal(pn(4)),()=>{s.assign(Tn(l,o,r))}).Else(()=>{s.assign(Tn(r,o,u))})}),s}).setLayout({name:"mx_hsvtorgb",type:"vec3",inputs:[{name:"hsv",type:"vec3"}]}),zv=an(([e])=>{const t=Tn(e).toVar(),r=hn(t.x).toVar(),s=hn(t.y).toVar(),i=hn(t.z).toVar(),n=hn($o(r,$o(s,i))).toVar(),a=hn(Wo(r,Wo(s,i))).toVar(),o=hn(a.sub(n)).toVar(),u=hn().toVar(),l=hn().toVar(),d=hn().toVar();return d.assign(a),ln(a.greaterThan(0),()=>{l.assign(o.div(a))}).Else(()=>{l.assign(0)}),ln(l.lessThanEqual(0),()=>{u.assign(0)}).Else(()=>{ln(r.greaterThanEqual(a),()=>{u.assign(s.sub(i).div(o))}).ElseIf(s.greaterThanEqual(a),()=>{u.assign(wa(2,i.sub(r).div(o)))}).Else(()=>{u.assign(wa(4,r.sub(s).div(o)))}),u.mulAssign(1/6),ln(u.lessThan(0),()=>{u.addAssign(1)})}),Tn(u,l,d)}).setLayout({name:"mx_rgbtohsv",type:"vec3",inputs:[{name:"c",type:"vec3"}]}),$v=an(([e])=>{const t=Tn(e).toVar(),r=Nn(Ua(t,Tn(.04045))).toVar(),s=Tn(t.div(12.92)).toVar(),i=Tn(Qo(Wo(t.add(Tn(.055)),Tn(0)).div(1.055),Tn(2.4))).toVar();return iu(s,i,r)}).setLayout({name:"mx_srgb_texture_to_lin_rec709",type:"vec3",inputs:[{name:"color",type:"vec3"}]}),Wv=(e,t)=>{e=hn(e),t=hn(t);const r=fn(t.dFdx(),t.dFdy()).length().mul(.7071067811865476);return uu(e.sub(r),e.add(r),t)},Hv=(e,t,r,s)=>iu(e,t,r[s].clamp()),jv=(e,t,r,s,i)=>iu(e,t,Wv(r,s[i])),qv=an(([e,t,r])=>{const s=To(e).toVar(),i=Ca(hn(.5).mul(t.sub(r)),Pd).div(s).toVar(),n=Ca(hn(-.5).mul(t.sub(r)),Pd).div(s).toVar(),a=Tn().toVar();a.x=s.x.greaterThan(hn(0)).select(i.x,n.x),a.y=s.y.greaterThan(hn(0)).select(i.y,n.y),a.z=s.z.greaterThan(hn(0)).select(i.z,n.z);const o=$o(a.x,a.y,a.z).toVar();return Pd.add(s.mul(o)).toVar().sub(r)}),Xv=an(([e,t])=>{const r=e.x,s=e.y,i=e.z;let n=t.element(0).mul(.886227);return n=n.add(t.element(1).mul(1.023328).mul(s)),n=n.add(t.element(2).mul(1.023328).mul(i)),n=n.add(t.element(3).mul(1.023328).mul(r)),n=n.add(t.element(4).mul(.858086).mul(r).mul(s)),n=n.add(t.element(5).mul(.858086).mul(s).mul(i)),n=n.add(t.element(6).mul(i.mul(i).mul(.743125).sub(.247708))),n=n.add(t.element(7).mul(.858086).mul(r).mul(i)),n=n.add(t.element(8).mul(.429043).mul(Ma(r,r).sub(Ma(s,s)))),n});var Kv=Object.freeze({__proto__:null,BRDF_GGX:Dg,BRDF_Lambert:Tg,BasicPointShadowFilter:W_,BasicShadowFilter:T_,Break:up,Const:Cu,Continue:()=>gl("continue").toStack(),DFGLUT:Og,D_GGX:Lg,Discard:ml,EPSILON:to,F_Schlick:xg,Fn:an,HALF_PI:ao,INFINITY:ro,If:ln,Loop:op,NodeAccess:Js,NodeShaderStage:Ys,NodeType:Zs,NodeUpdateType:Qs,OnBeforeMaterialUpdate:e=>tx(ex.BEFORE_MATERIAL,e),OnBeforeObjectUpdate:e=>tx(ex.BEFORE_OBJECT,e),OnMaterialUpdate:e=>tx(ex.MATERIAL,e),OnObjectUpdate:e=>tx(ex.OBJECT,e),PCFShadowFilter:__,PCFSoftShadowFilter:v_,PI:so,PI2:io,PointShadowFilter:H_,Return:()=>gl("return").toStack(),Schlick_to_F0:Gg,ScriptableNodeResources:eT,ShaderNode:Ki,Stack:dn,Switch:(...e)=>xi.Switch(...e),TBNViewMatrix:zc,TWO_PI:no,VSMShadowFilter:N_,V_GGX_SmithCorrelated:Mg,Var:wu,VarIntent:Mu,abs:wo,acesFilmicToneMapping:kx,acos:Ao,add:wa,addMethodChaining:_i,addNodeElement:function(e){d("TSL: AddNodeElement has been removed in favor of tree-shaking. Trying add",e)},agxToneMapping:Wx,all:oo,alphaT:Xn,and:Va,anisotropy:Kn,anisotropyB:Qn,anisotropyT:Yn,any:uo,append:e=>(d("TSL: append() has been renamed to Stack()."),dn(e)),array:_a,arrayBuffer:e=>Yi(new yi(e,"ArrayBuffer")),asin:Ro,assign:Na,atan:Eo,atan2:gu,atomicAdd:(e,t)=>NT(_T.ATOMIC_ADD,e,t),atomicAnd:(e,t)=>NT(_T.ATOMIC_AND,e,t),atomicFunc:NT,atomicLoad:e=>NT(_T.ATOMIC_LOAD,e,null),atomicMax:(e,t)=>NT(_T.ATOMIC_MAX,e,t),atomicMin:(e,t)=>NT(_T.ATOMIC_MIN,e,t),atomicOr:(e,t)=>NT(_T.ATOMIC_OR,e,t),atomicStore:(e,t)=>NT(_T.ATOMIC_STORE,e,t),atomicSub:(e,t)=>NT(_T.ATOMIC_SUB,e,t),atomicXor:(e,t)=>NT(_T.ATOMIC_XOR,e,t),attenuationColor:da,attenuationDistance:la,attribute:Sl,attributeArray:(e,t="float")=>{let r,s;!0===t.isStruct?(r=t.layout.getLength(),s=ks("float")):(r=Gs(t),s=ks(t));const i=new sx(e,r,s);return $h(i,t,e)},backgroundBlurriness:lx,backgroundIntensity:dx,backgroundRotation:cx,batch:rp,bentNormalView:Wc,billboarding:Tb,bitAnd:$a,bitNot:Wa,bitOr:Ha,bitXor:ja,bitangentGeometry:Oc,bitangentLocal:Vc,bitangentView:kc,bitangentWorld:Gc,bitcast:jy,blendBurn:Gp,blendColor:Hp,blendDodge:zp,blendOverlay:Wp,blendScreen:$p,blur:Gm,bool:mn,buffer:Ul,bufferAttribute:Ju,builtin:kl,builtinAOContext:Su,builtinShadowContext:Nu,bumpMap:Zc,burn:(...e)=>(d('TSL: "burn" has been renamed. Use "blendBurn" instead.'),Gp(e)),bvec2:xn,bvec3:Nn,bvec4:En,bypass:ll,cache:ol,call:Ra,cameraFar:td,cameraIndex:Jl,cameraNear:ed,cameraNormalMatrix:ad,cameraPosition:od,cameraProjectionMatrix:rd,cameraProjectionMatrixInverse:sd,cameraViewMatrix:id,cameraViewport:ud,cameraWorldMatrix:nd,cbrt:ru,cdl:wx,ceil:xo,checker:J_,cineonToneMapping:Ox,clamp:nu,clearcoat:Gn,clearcoatNormalView:Xd,clearcoatRoughness:zn,code:qx,color:cn,colorSpaceToWorking:Gu,colorToDirection:e=>Yi(e).mul(2).sub(1),compute:il,computeKernel:sl,computeSkinning:(e,t=null)=>{const r=new ip(e);return r.positionNode=$h(new $(e.geometry.getAttribute("position").array,3),"vec3").setPBO(!0).toReadOnly().element(jh).toVar(),r.skinIndexNode=$h(new $(new Uint32Array(e.geometry.getAttribute("skinIndex").array),4),"uvec4").setPBO(!0).toReadOnly().element(jh).toVar(),r.skinWeightNode=$h(new $(e.geometry.getAttribute("skinWeight").array,4),"vec4").setPBO(!0).toReadOnly().element(jh).toVar(),r.bindMatrixNode=xa(e.bindMatrix,"mat4"),r.bindMatrixInverseNode=xa(e.bindMatrixInverse,"mat4"),r.boneMatricesNode=Ul(e.skeleton.boneMatrices,"mat4",e.skeleton.bones.length),r.toPositionNode=t,Yi(r)},context:Tu,convert:Ln,convertColorSpace:(e,t,r)=>Yi(new Vu(Yi(e),t,r)),convertToTexture:(e,...t)=>e.isSampleNode||e.isTextureNode?e:e.isPassNode?e.getTextureNode():qb(e,...t),cos:No,countLeadingZeros:Qy,countOneBits:Zy,countTrailingZeros:Yy,cross:Yo,cubeTexture:hc,cubeTextureBase:cc,dFdx:Po,dFdy:Fo,dashSize:sa,debug:xl,decrement:Za,decrementBefore:Ya,defaultBuildStages:ti,defaultShaderStages:ei,defined:qi,degrees:co,deltaTime:fb,densityFog:function(e,t){return d('TSL: "densityFog( color, density )" is deprecated. Use "fog( color, densityFogFactor( density ) )" instead.'),aT(e,nT(t))},densityFogFactor:nT,depth:Lp,depthPass:(e,t,r)=>Yi(new Fx(Fx.DEPTH,e,t,r)),determinant:ko,difference:Xo,diffuseColor:Un,diffuseContribution:In,directPointLight:Q_,directionToColor:Hc,directionToFaceDirection:kd,dispersion:ca,distance:qo,div:Ba,dodge:(...e)=>(d('TSL: "dodge" has been renamed. Use "blendDodge" instead.'),zp(e)),dot:Ko,drawIndex:Yh,dynamicBufferAttribute:(e,t=null,r=0,s=0)=>Zu(e,t,r,s,x),element:Bn,emissive:On,equal:Pa,equals:zo,equirectUV:ag,exp:ho,exp2:po,expression:gl,faceDirection:Vd,faceForward:lu,faceforward:mu,float:hn,floatBitsToInt:e=>new Hy(e,"int","float"),floatBitsToUint:qy,floor:bo,fog:aT,fract:_o,frameGroup:ma,frameId:yb,frontFacing:Od,fwidth:Oo,gain:(e,t)=>e.lessThan(.5)?eb(e.mul(2),t).div(2):Ca(1,eb(Ma(Ca(1,e),2),t).div(2)),gapSize:ia,getConstNodeType:Xi,getCurrentStack:un,getDirection:Im,getDistanceAttenuation:Y_,getGeometryRoughness:wg,getNormalFromDepth:Yb,getParallaxCorrectNormal:qv,getRoughness:Cg,getScreenPosition:Kb,getShIrradianceAt:Xv,getShadowMaterial:R_,getShadowRenderObjectFunction:w_,getTextureIndex:zy,getViewPosition:Xb,ggxConvolution:Hm,globalId:mT,glsl:(e,t)=>qx(e,t,"glsl"),glslFn:(e,t)=>Kx(e,t,"glsl"),grayscale:Nx,greaterThan:Ua,greaterThanEqual:Oa,hash:Jy,highpModelNormalViewMatrix:Cd,highpModelViewMatrix:wd,hue:Ax,increment:Qa,incrementBefore:Ka,inspector:vl,instance:Zh,instanceIndex:jh,instancedArray:(e,t="float")=>{let r,s;!0===t.isStruct?(r=t.layout.getLength(),s=ks("float")):(r=Gs(t),s=ks(t));const i=new rx(e,r,s);return $h(i,t,e)},instancedBufferAttribute:el,instancedDynamicBufferAttribute:tl,instancedMesh:ep,int:pn,intBitsToFloat:e=>new Hy(e,"float","int"),interleavedGradientNoise:Qb,inverse:Go,inverseSqrt:yo,inversesqrt:fu,invocationLocalIndex:Kh,invocationSubgroupIndex:Xh,ior:aa,iridescence:Hn,iridescenceIOR:jn,iridescenceThickness:qn,isolate:al,ivec2:yn,ivec3:_n,ivec4:Rn,js:(e,t)=>qx(e,t,"js"),label:Ru,length:Mo,lengthSq:su,lessThan:Da,lessThanEqual:Ia,lightPosition:e_,lightProjectionUV:JT,lightShadowMatrix:ZT,lightTargetDirection:s_,lightTargetPosition:t_,lightViewPosition:r_,lightingContext:yp,lights:(e=[])=>Yi(new o_).setLights(e),linearDepth:Pp,linearToneMapping:Ux,localId:fT,log:go,log2:mo,logarithmicDepthToViewZ:(e,t,r)=>{const s=e.mul(go(r.div(t)));return hn(Math.E).pow(s).mul(t).negate()},luminance:Ex,mat2:wn,mat3:Cn,mat4:Mn,matcapUV:Mf,materialAO:Ih,materialAlphaTest:th,materialAnisotropy:Th,materialAnisotropyVector:Oh,materialAttenuationColor:wh,materialAttenuationDistance:Eh,materialClearcoat:gh,materialClearcoatNormal:fh,materialClearcoatRoughness:mh,materialColor:rh,materialDispersion:Dh,materialEmissive:ih,materialEnvIntensity:sc,materialEnvRotation:ic,materialIOR:Ah,materialIridescence:_h,materialIridescenceIOR:vh,materialIridescenceThickness:Nh,materialLightMap:Uh,materialLineDashOffset:Ph,materialLineDashSize:Mh,materialLineGapSize:Bh,materialLineScale:Ch,materialLineWidth:Lh,materialMetalness:hh,materialNormal:ph,materialOpacity:nh,materialPointSize:Fh,materialReference:bc,materialReflectivity:dh,materialRefractionRatio:rc,materialRotation:yh,materialRoughness:ch,materialSheen:bh,materialSheenRoughness:xh,materialShininess:sh,materialSpecular:ah,materialSpecularColor:uh,materialSpecularIntensity:oh,materialSpecularStrength:lh,materialThickness:Rh,materialTransmission:Sh,max:Wo,maxMipLevel:Cl,mediumpModelViewMatrix:Ed,metalness:kn,min:$o,mix:iu,mixElement:cu,mod:La,modInt:Ja,modelDirection:bd,modelNormalMatrix:Sd,modelPosition:Td,modelRadius:Nd,modelScale:_d,modelViewMatrix:Ad,modelViewPosition:vd,modelViewProjection:Vh,modelWorldMatrix:xd,modelWorldMatrixInverse:Rd,morphReference:pp,mrt:Wy,mul:Ma,mx_aastep:Wv,mx_add:(e,t=hn(0))=>wa(e,t),mx_atan2:(e=hn(0),t=hn(1))=>Eo(e,t),mx_cell_noise_float:(e=Rl())=>Av(e.convert("vec2|vec3")),mx_contrast:(e,t=1,r=.5)=>hn(e).sub(r).mul(t).add(r),mx_divide:(e,t=hn(1))=>Ba(e,t),mx_fractal_noise_float:(e=Rl(),t=3,r=2,s=.5,i=1)=>wv(e,pn(t),r,s).mul(i),mx_fractal_noise_vec2:(e=Rl(),t=3,r=2,s=.5,i=1)=>Mv(e,pn(t),r,s).mul(i),mx_fractal_noise_vec3:(e=Rl(),t=3,r=2,s=.5,i=1)=>Cv(e,pn(t),r,s).mul(i),mx_fractal_noise_vec4:(e=Rl(),t=3,r=2,s=.5,i=1)=>Bv(e,pn(t),r,s).mul(i),mx_frame:()=>yb,mx_heighttonormal:(e,t)=>(e=Tn(e),t=hn(t),Zc(e,t)),mx_hsvtorgb:Gv,mx_ifequal:(e,t,r,s)=>e.equal(t).mix(r,s),mx_ifgreater:(e,t,r,s)=>e.greaterThan(t).mix(r,s),mx_ifgreatereq:(e,t,r,s)=>e.greaterThanEqual(t).mix(r,s),mx_invert:(e,t=hn(1))=>Ca(t,e),mx_modulo:(e,t=hn(1))=>La(e,t),mx_multiply:(e,t=hn(1))=>Ma(e,t),mx_noise_float:(e=Rl(),t=1,r=0)=>Sv(e.convert("vec2|vec3")).mul(t).add(r),mx_noise_vec3:(e=Rl(),t=1,r=0)=>Rv(e.convert("vec2|vec3")).mul(t).add(r),mx_noise_vec4:(e=Rl(),t=1,r=0)=>{e=e.convert("vec2|vec3");return Sn(Rv(e),Sv(e.add(fn(19,73)))).mul(t).add(r)},mx_place2d:(e,t=fn(.5,.5),r=fn(1,1),s=hn(0),i=fn(0,0))=>{let n=e;if(t&&(n=n.sub(t)),r&&(n=n.mul(r)),s){const e=s.mul(Math.PI/180),t=e.cos(),r=e.sin();n=fn(n.x.mul(t).sub(n.y.mul(r)),n.x.mul(r).add(n.y.mul(t)))}return t&&(n=n.add(t)),i&&(n=n.add(i)),n},mx_power:(e,t=hn(1))=>Qo(e,t),mx_ramp4:(e,t,r,s,i=Rl())=>{const n=i.x.clamp(),a=i.y.clamp(),o=iu(e,t,n),u=iu(r,s,n);return iu(o,u,a)},mx_ramplr:(e,t,r=Rl())=>Hv(e,t,r,"x"),mx_ramptb:(e,t,r=Rl())=>Hv(e,t,r,"y"),mx_rgbtohsv:zv,mx_rotate2d:(e,t)=>{e=fn(e);const r=(t=hn(t)).mul(Math.PI/180);return Ff(e,r)},mx_rotate3d:(e,t,r)=>{e=Tn(e),t=hn(t),r=Tn(r);const s=t.mul(Math.PI/180),i=r.normalize(),n=s.cos(),a=s.sin(),o=hn(1).sub(n);return e.mul(n).add(i.cross(e).mul(a)).add(i.mul(i.dot(e)).mul(o))},mx_safepower:(e,t=1)=>(e=hn(e)).abs().pow(t).mul(e.sign()),mx_separate:(e,t=null)=>{if("string"==typeof t){const r={x:0,r:0,y:1,g:1,z:2,b:2,w:3,a:3},s=t.replace(/^out/,"").toLowerCase();if(void 0!==r[s])return e.element(r[s])}if("number"==typeof t)return e.element(t);if("string"==typeof t&&1===t.length){const r={x:0,r:0,y:1,g:1,z:2,b:2,w:3,a:3};if(void 0!==r[t])return e.element(r[t])}return e},mx_splitlr:(e,t,r,s=Rl())=>jv(e,t,r,s,"x"),mx_splittb:(e,t,r,s=Rl())=>jv(e,t,r,s,"y"),mx_srgb_texture_to_lin_rec709:$v,mx_subtract:(e,t=hn(0))=>Ca(e,t),mx_timer:()=>mb,mx_transform_uv:(e=1,t=0,r=Rl())=>r.mul(e).add(t),mx_unifiednoise2d:(e,t=Rl(),r=fn(1,1),s=fn(0,0),i=1,n=0,a=1,o=!1,u=1,l=2,d=.5)=>Vv(e,t.convert("vec2|vec3"),r,s,i,n,a,o,u,l,d),mx_unifiednoise3d:(e,t=Rl(),r=fn(1,1),s=fn(0,0),i=1,n=0,a=1,o=!1,u=1,l=2,d=.5)=>kv(e,t.convert("vec2|vec3"),r,s,i,n,a,o,u,l,d),mx_worley_noise_float:(e=Rl(),t=1)=>Uv(e.convert("vec2|vec3"),t,pn(1)),mx_worley_noise_vec2:(e=Rl(),t=1)=>Iv(e.convert("vec2|vec3"),t,pn(1)),mx_worley_noise_vec3:(e=Rl(),t=1)=>Ov(e.convert("vec2|vec3"),t,pn(1)),negate:Bo,neutralToneMapping:Hx,nodeArray:Ji,nodeImmutable:tn,nodeObject:Yi,nodeObjectIntent:Qi,nodeObjects:Zi,nodeProxy:en,nodeProxyIntent:rn,normalFlat:$d,normalGeometry:Gd,normalLocal:zd,normalMap:Xc,normalView:jd,normalViewGeometry:Wd,normalWorld:qd,normalWorldGeometry:Hd,normalize:To,not:Ga,notEqual:Fa,numWorkgroups:pT,objectDirection:cd,objectGroup:ya,objectPosition:pd,objectRadius:fd,objectScale:gd,objectViewPosition:md,objectWorldMatrix:hd,oneMinus:Lo,or:ka,orthographicDepthToViewZ:(e,t,r)=>t.sub(r).mul(e).sub(t),oscSawtooth:(e=mb)=>e.fract(),oscSine:(e=mb)=>e.add(.75).mul(2*Math.PI).sin().mul(.5).add(.5),oscSquare:(e=mb)=>e.fract().round(),oscTriangle:(e=mb)=>e.add(.5).fract().mul(2).sub(1).abs(),output:ra,outputStruct:Gy,overlay:(...e)=>(d('TSL: "overlay" has been renamed. Use "blendOverlay" instead.'),Wp(e)),overloadingFn:gb,packHalf2x16:ib,packSnorm2x16:rb,packUnorm2x16:sb,parabola:eb,parallaxDirection:$c,parallaxUV:(e,t)=>e.sub($c.mul(t)),parameter:(e,t)=>Yi(new Dy(e,t)),pass:(e,t,r)=>Yi(new Fx(Fx.COLOR,e,t,r)),passTexture:(e,t)=>Yi(new Lx(e,t)),pcurve:(e,t,r)=>Qo(Ba(Qo(e,t),wa(Qo(e,t),Qo(Ca(1,e),r))),1/t),perspectiveDepthToViewZ:Cp,pmremTexture:mf,pointShadow:X_,pointUV:nx,pointWidth:na,positionGeometry:Md,positionLocal:Bd,positionPrevious:Ld,positionView:Dd,positionViewDirection:Ud,positionWorld:Pd,positionWorldDirection:Fd,posterize:Mx,pow:Qo,pow2:Zo,pow3:Jo,pow4:eu,premultiplyAlpha:jp,property:Fn,quadBroadcast:KT,quadSwapDiagonal:$T,quadSwapX:GT,quadSwapY:zT,radians:lo,rand:du,range:dT,rangeFog:function(e,t,r){return d('TSL: "rangeFog( color, near, far )" is deprecated. Use "fog( color, rangeFogFactor( near, far ) )" instead.'),aT(e,iT(t,r))},rangeFogFactor:iT,reciprocal:Uo,reference:mc,referenceBuffer:fc,reflect:jo,reflectVector:oc,reflectView:nc,reflector:e=>Yi(new Vb(e)),refract:ou,refractVector:uc,refractView:ac,reinhardToneMapping:Ix,remap:cl,remapClamp:hl,renderGroup:fa,renderOutput:yl,rendererReference:Hu,replaceDefaultUV:function(e,t=null){return Tu(t,{getUV:e})},rotate:Ff,rotateUV:bb,roughness:Vn,round:Do,rtt:qb,sRGBTransferEOTF:Uu,sRGBTransferOETF:Iu,sample:(e,t=null)=>Yi(new Jb(e,Yi(t))),sampler:e=>(!0===e.isNode?e:Pl(e)).convert("sampler"),samplerComparison:e=>(!0===e.isNode?e:Pl(e)).convert("samplerComparison"),saturate:au,saturation:Sx,screen:(...e)=>(d('TSL: "screen" has been renamed. Use "blendScreen" instead.'),$p(e)),screenCoordinate:ql,screenDPR:Wl,screenSize:jl,screenUV:Hl,scriptable:rT,scriptableValue:Qx,select:bu,setCurrentStack:on,setName:vu,shaderStages:ri,shadow:D_,shadowPositionWorld:l_,shapeCircle:ev,sharedUniformGroup:ga,sheen:$n,sheenRoughness:Wn,shiftLeft:qa,shiftRight:Xa,shininess:ta,sign:Co,sin:vo,sinc:(e,t)=>vo(so.mul(t.mul(e).sub(1))).div(so.mul(t.mul(e).sub(1))),skinning:np,smoothstep:uu,smoothstepElement:hu,specularColor:Zn,specularColorBlended:Jn,specularF90:ea,spherizeUV:xb,split:(e,t)=>Yi(new hi(Yi(e),t)),spritesheetUV:Nb,sqrt:fo,stack:Iy,step:Ho,stepElement:pu,storage:$h,storageBarrier:()=>bT("storage").toStack(),storageObject:(e,t,r)=>(d('TSL: "storageObject()" is deprecated. Use "storage().setPBO( true )" instead.'),$h(e,t,r).setPBO(!0)),storageTexture:px,string:(e="")=>Yi(new yi(e,"string")),struct:(e,t=null)=>{const r=new Oy(e,t),s=(...t)=>{let s=null;if(t.length>0)if(t[0].isNode){s={};const r=Object.keys(e);for(let e=0;efx(e,t).level(r),texture3DLoad:(...e)=>fx(...e).setSampler(!1),textureBarrier:()=>bT("texture").toStack(),textureBicubic:om,textureBicubicLevel:am,textureCubeUV:Om,textureLevel:(e,t,r)=>Pl(e,t).level(r),textureLoad:Fl,textureSize:El,textureStore:(e,t,r)=>{const s=px(e,t,r);return null!==r&&s.toStack(),s},thickness:ua,time:mb,toneMapping:qu,toneMappingExposure:Xu,toonOutlinePass:(t,r,s=new e(0,0,0),i=.003,n=1)=>Yi(new Dx(t,r,Yi(s),Yi(i),Yi(n))),transformDirection:tu,transformNormal:Kd,transformNormalToView:Yd,transformedClearcoatNormalView:Jd,transformedNormalView:Qd,transformedNormalWorld:Zd,transmission:oa,transpose:Vo,triNoise3D:cb,triplanarTexture:(...e)=>Sb(...e),triplanarTextures:Sb,trunc:Io,uint:gn,uintBitsToFloat:e=>new Hy(e,"float","uint"),uniform:xa,uniformArray:Vl,uniformCubeTexture:(e=lc)=>cc(e),uniformFlow:_u,uniformGroup:pa,uniformTexture:(e=Ml)=>Pl(e),unpackHalf2x16:ub,unpackNormal:jc,unpackSnorm2x16:ab,unpackUnorm2x16:ob,unpremultiplyAlpha:qp,userData:(e,t,r)=>Yi(new yx(e,t,r)),uv:Rl,uvec2:bn,uvec3:vn,uvec4:An,varying:Fu,varyingProperty:Dn,vec2:fn,vec3:Tn,vec4:Sn,vectorComponents:si,velocity:vx,vertexColor:kp,vertexIndex:Hh,vertexStage:Du,vibrance:Rx,viewZToLogarithmicDepth:Mp,viewZToOrthographicDepth:Ep,viewZToPerspectiveDepth:wp,viewport:Xl,viewportCoordinate:Yl,viewportDepthTexture:Rp,viewportLinearDepth:Fp,viewportMipTexture:vp,viewportResolution:Zl,viewportSafeUV:_b,viewportSharedTexture:tg,viewportSize:Kl,viewportTexture:_p,viewportUV:Ql,vogelDiskSample:Zb,wgsl:(e,t)=>qx(e,t,"wgsl"),wgslFn:(e,t)=>Kx(e,t,"wgsl"),workgroupArray:(e,t)=>Yi(new TT("Workgroup",e,t)),workgroupBarrier:()=>bT("workgroup").toStack(),workgroupId:gT,workingToColorSpace:ku,xor:za});const Yv=new Fy;class Qv extends ty{constructor(e,t){super(),this.renderer=e,this.nodes=t}update(e,t,r){const s=this.renderer,i=this.nodes.getBackgroundNode(e)||e.background;let n=!1;if(null===i)s._clearColor.getRGB(Yv),Yv.a=s._clearColor.a;else if(!0===i.isColor)i.getRGB(Yv),Yv.a=1,n=!0;else if(!0===i.isNode){const u=this.get(e),l=i;Yv.copy(s._clearColor);let d=u.backgroundMesh;if(void 0===d){const h=Sn(l).mul(dx).context({getUV:()=>cx.mul(Hd),getTextureLevel:()=>lx}),p=rd.element(3).element(3).equal(1),g=Ba(1,rd.element(1).element(1)).mul(3),m=p.select(Bd.mul(g),Bd);let f=rd.mul(Ad.mul(Sn(m,1)));f=f.setZ(f.w);const y=new Xp;function b(){i.removeEventListener("dispose",b),d.material.dispose(),d.geometry.dispose()}y.name="Background.material",y.side=w,y.depthTest=!1,y.depthWrite=!1,y.allowOverride=!1,y.fog=!1,y.lights=!1,y.vertexNode=f,y.colorNode=h,u.backgroundMeshNode=h,u.backgroundMesh=d=new se(new Ye(1,32,32),y),d.frustumCulled=!1,d.name="Background.mesh",d.onBeforeRender=function(e,t,r){this.matrixWorld.copyPosition(r.matrixWorld)},i.addEventListener("dispose",b)}const c=l.getCacheKey();u.backgroundCacheKey!==c&&(u.backgroundMeshNode.node=Sn(l).mul(dx),u.backgroundMeshNode.needsUpdate=!0,d.material.needsUpdate=!0,u.backgroundCacheKey=c),t.unshift(d,d.geometry,d.material,0,0,null,null)}else o("Renderer: Unsupported background configuration.",i);const a=s.xr.getEnvironmentBlendMode();if("additive"===a?Yv.set(0,0,0,1):"alpha-blend"===a&&Yv.set(0,0,0,0),!0===s.autoClear||!0===n){const x=r.clearColorValue;x.r=Yv.r,x.g=Yv.g,x.b=Yv.b,x.a=Yv.a,!0!==s.backend.isWebGLBackend&&!0!==s.alpha||(x.r*=x.a,x.g*=x.a,x.b*=x.a),r.depthClearValue=s._clearDepth,r.stencilClearValue=s._clearStencil,r.clearColor=!0===s.autoClearColor,r.clearDepth=!0===s.autoClearDepth,r.clearStencil=!0===s.autoClearStencil}else r.clearColor=!1,r.clearDepth=!1,r.clearStencil=!1}}let Zv=0;class Jv{constructor(e="",t=[],r=0,s=[]){this.name=e,this.bindings=t,this.index=r,this.bindingsReference=s,this.id=Zv++}}class eN{constructor(e,t,r,s,i,n,a,o,u,l=[]){this.vertexShader=e,this.fragmentShader=t,this.computeShader=r,this.transforms=l,this.nodeAttributes=s,this.bindings=i,this.updateNodes=n,this.updateBeforeNodes=a,this.updateAfterNodes=o,this.observer=u,this.usedTimes=0}createBindings(){const e=[];for(const t of this.bindings){if(!0!==t.bindings[0].groupNode.shared){const r=new Jv(t.name,[],t.index,t.bindingsReference);e.push(r);for(const e of t.bindings)r.bindings.push(e.clone())}else e.push(t)}return e}}class tN{constructor(e,t,r=null){this.isNodeAttribute=!0,this.name=e,this.type=t,this.node=r}}class rN{constructor(e,t,r){this.isNodeUniform=!0,this.name=e,this.type=t,this.node=r}get value(){return this.node.value}set value(e){this.node.value=e}get id(){return this.node.id}get groupNode(){return this.node.groupNode}}class sN{constructor(e,t,r=!1,s=null){this.isNodeVar=!0,this.name=e,this.type=t,this.readOnly=r,this.count=s}}class iN extends sN{constructor(e,t,r=null,s=null){super(e,t),this.needsInterpolation=!1,this.isNodeVarying=!0,this.interpolationType=r,this.interpolationSampling=s}}class nN{constructor(e,t,r=""){this.name=e,this.type=t,this.code=r,Object.defineProperty(this,"isNodeCode",{value:!0})}}let aN=0;class oN{constructor(e=null){this.id=aN++,this.nodesData=new WeakMap,this.parent=e}getData(e){let t=this.nodesData.get(e);return void 0===t&&null!==this.parent&&(t=this.parent.getData(e)),t}setData(e,t){this.nodesData.set(e,t)}}class uN{constructor(e,t){this.name=e,this.members=t,this.output=!1}}class lN{constructor(e,t){this.name=e,this.value=t,this.boundary=0,this.itemSize=0,this.offset=0}setValue(e){this.value=e}getValue(){return this.value}}class dN extends lN{constructor(e,t=0){super(e,t),this.isNumberUniform=!0,this.boundary=4,this.itemSize=1}}class cN extends lN{constructor(e,r=new t){super(e,r),this.isVector2Uniform=!0,this.boundary=8,this.itemSize=2}}class hN extends lN{constructor(e,t=new r){super(e,t),this.isVector3Uniform=!0,this.boundary=16,this.itemSize=3}}class pN extends lN{constructor(e,t=new s){super(e,t),this.isVector4Uniform=!0,this.boundary=16,this.itemSize=4}}class gN extends lN{constructor(t,r=new e){super(t,r),this.isColorUniform=!0,this.boundary=16,this.itemSize=3}}class mN extends lN{constructor(e,t=new i){super(e,t),this.isMatrix2Uniform=!0,this.boundary=8,this.itemSize=4}}class fN extends lN{constructor(e,t=new n){super(e,t),this.isMatrix3Uniform=!0,this.boundary=48,this.itemSize=12}}class yN extends lN{constructor(e,t=new a){super(e,t),this.isMatrix4Uniform=!0,this.boundary=64,this.itemSize=16}}class bN extends dN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class xN extends cN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class TN extends hN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class _N extends pN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class vN extends gN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class NN extends mN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class SN extends fN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class RN extends yN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}let AN=0;const EN=new WeakMap,wN=new WeakMap,CN=new Map([[Int8Array,"int"],[Int16Array,"int"],[Int32Array,"int"],[Uint8Array,"uint"],[Uint16Array,"uint"],[Uint32Array,"uint"],[Float32Array,"float"]]),MN=e=>/e/g.test(e)?String(e).replace(/\+/g,""):(e=Number(e))+(e%1?"":".0");class BN{constructor(e,t,r){this.object=e,this.material=e&&e.material||null,this.geometry=e&&e.geometry||null,this.renderer=t,this.parser=r,this.scene=null,this.camera=null,this.nodes=[],this.sequentialNodes=[],this.updateNodes=[],this.updateBeforeNodes=[],this.updateAfterNodes=[],this.hashNodes={},this.observer=null,this.lightsNode=null,this.environmentNode=null,this.fogNode=null,this.clippingContext=null,this.vertexShader=null,this.fragmentShader=null,this.computeShader=null,this.flowNodes={vertex:[],fragment:[],compute:[]},this.flowCode={vertex:"",fragment:"",compute:""},this.uniforms={vertex:[],fragment:[],compute:[],index:0},this.structs={vertex:[],fragment:[],compute:[],index:0},this.types={vertex:[],fragment:[],compute:[],index:0},this.bindings={vertex:{},fragment:{},compute:{}},this.bindingsIndexes={},this.bindGroups=null,this.attributes=[],this.bufferAttributes=[],this.varyings=[],this.codes={},this.vars={},this.declarations={},this.flow={code:""},this.chaining=[],this.stack=Iy(),this.stacks=[],this.tab="\t",this.currentFunctionNode=null,this.context={material:this.material},this.cache=new oN,this.globalCache=this.cache,this.flowsData=new WeakMap,this.shaderStage=null,this.buildStage=null,this.subBuildLayers=[],this.activeStacks=[],this.subBuildFn=null,this.fnCall=null,Object.defineProperty(this,"id",{value:AN++})}isOpaque(){const e=this.material;return!1===e.transparent&&e.blending===Qe&&!1===e.alphaToCoverage}getBindGroupsCache(){let e=wN.get(this.renderer);return void 0===e&&(e=new Yf,wN.set(this.renderer,e)),e}createRenderTarget(e,t,r){return new _e(e,t,r)}createCubeRenderTarget(e,t){return new og(e,t)}includes(e){return this.nodes.includes(e)}getOutputStructName(){}_getBindGroup(e,t){const r=this.getBindGroupsCache(),s=[];let i,n=!0;for(const e of t)s.push(e),n=n&&!0!==e.groupNode.shared;return n?(i=r.get(s),void 0===i&&(i=new Jv(e,s,this.bindingsIndexes[e].group,s),r.set(s,i))):i=new Jv(e,s,this.bindingsIndexes[e].group,s),i}getBindGroupArray(e,t){const r=this.bindings[t];let s=r[e];return void 0===s&&(void 0===this.bindingsIndexes[e]&&(this.bindingsIndexes[e]={binding:0,group:Object.keys(this.bindingsIndexes).length}),r[e]=s=[]),s}getBindings(){let e=this.bindGroups;if(null===e){const t={},r=this.bindings;for(const e of ri)for(const s in r[e]){const i=r[e][s];(t[s]||(t[s]=[])).push(...i)}e=[];for(const r in t){const s=t[r],i=this._getBindGroup(r,s);e.push(i)}this.bindGroups=e}return e}sortBindingGroups(){const e=this.getBindings();e.sort((e,t)=>e.bindings[0].groupNode.order-t.bindings[0].groupNode.order);for(let t=0;t=0?`${Math.round(n)}u`:"0u";if("bool"===i)return n?"true":"false";if("color"===i)return`${this.getType("vec3")}( ${MN(n.r)}, ${MN(n.g)}, ${MN(n.b)} )`;const a=this.getTypeLength(i),o=this.getComponentType(i),u=e=>this.generateConst(o,e);if(2===a)return`${this.getType(i)}( ${u(n.x)}, ${u(n.y)} )`;if(3===a)return`${this.getType(i)}( ${u(n.x)}, ${u(n.y)}, ${u(n.z)} )`;if(4===a&&"mat2"!==i)return`${this.getType(i)}( ${u(n.x)}, ${u(n.y)}, ${u(n.z)}, ${u(n.w)} )`;if(a>=4&&n&&(n.isMatrix2||n.isMatrix3||n.isMatrix4))return`${this.getType(i)}( ${n.elements.map(u).join(", ")} )`;if(a>4)return`${this.getType(i)}()`;throw new Error(`NodeBuilder: Type '${i}' not found in generate constant attempt.`)}getType(e){return"color"===e?"vec3":e}hasGeometryAttribute(e){return this.geometry&&void 0!==this.geometry.getAttribute(e)}getAttribute(e,t){const r=this.attributes;for(const t of r)if(t.name===e)return t;const s=new tN(e,t);return this.registerDeclaration(s),r.push(s),s}getPropertyName(e){return e.name}isVector(e){return/vec\d/.test(e)}isMatrix(e){return/mat\d/.test(e)}isReference(e){return"void"===e||"property"===e||"sampler"===e||"samplerComparison"===e||"texture"===e||"cubeTexture"===e||"storageTexture"===e||"depthTexture"===e||"texture3D"===e}needsToWorkingColorSpace(){return!1}getComponentTypeFromTexture(e){const t=e.type;if(e.isDataTexture){if(t===R)return"int";if(t===S)return"uint"}return"float"}getElementType(e){return"mat2"===e?"vec2":"mat3"===e?"vec3":"mat4"===e?"vec4":this.getComponentType(e)}getComponentType(e){if("float"===(e=this.getVectorType(e))||"bool"===e||"int"===e||"uint"===e)return e;const t=/(b|i|u|)(vec|mat)([2-4])/.exec(e);return null===t?null:"b"===t[1]?"bool":"i"===t[1]?"int":"u"===t[1]?"uint":"float"}getVectorType(e){return"color"===e?"vec3":"texture"===e||"cubeTexture"===e||"storageTexture"===e||"texture3D"===e?"vec4":e}getTypeFromLength(e,t="float"){if(1===e)return t;let r=Vs(e);const s="float"===t?"":t[0];return!0===/mat2/.test(t)&&(r=r.replace("vec","mat")),s+r}getTypeFromArray(e){return CN.get(e.constructor)}isInteger(e){return/int|uint|(i|u)vec/.test(e)}getTypeFromAttribute(e){let t=e;e.isInterleavedBufferAttribute&&(t=e.data);const r=t.array,s=e.itemSize,i=e.normalized;let n;return e instanceof et||!0===i||(n=this.getTypeFromArray(r)),this.getTypeFromLength(s,n)}getTypeLength(e){const t=this.getVectorType(e),r=/vec([2-4])/.exec(t);return null!==r?Number(r[1]):"float"===t||"bool"===t||"int"===t||"uint"===t?1:!0===/mat2/.test(e)?4:!0===/mat3/.test(e)?9:!0===/mat4/.test(e)?16:0}getVectorFromMatrix(e){return e.replace("mat","vec")}changeComponentType(e,t){return this.getTypeFromLength(this.getTypeLength(e),t)}getIntegerType(e){const t=this.getComponentType(e);return"int"===t||"uint"===t?e:this.changeComponentType(e,"int")}setActiveStack(e){this.activeStacks.push(e)}removeActiveStack(e){if(this.activeStacks[this.activeStacks.length-1]!==e)throw new Error("NodeBuilder: Invalid active stack removal.");this.activeStacks.pop()}getActiveStack(){return this.activeStacks[this.activeStacks.length-1]}getBaseStack(){return this.activeStacks[0]}addStack(){this.stack=Iy(this.stack);const e=un();return this.stacks.push(e),on(this.stack),this.stack}removeStack(){const e=this.stack;for(const t of e.nodes){this.getDataFromNode(t).stack=e}return this.stack=e.parent,on(this.stacks.pop()),e}getDataFromNode(e,t=this.shaderStage,r=null){let s=(r=null===r?e.isGlobal(this)?this.globalCache:this.cache:r).getData(e);void 0===s&&(s={},r.setData(e,s)),void 0===s[t]&&(s[t]={});let i=s[t];const n=s.any?s.any.subBuilds:null,a=this.getClosestSubBuild(n);return a&&(void 0===i.subBuildsCache&&(i.subBuildsCache={}),i=i.subBuildsCache[a]||(i.subBuildsCache[a]={}),i.subBuilds=n),i}getNodeProperties(e,t="any"){const r=this.getDataFromNode(e,t);return r.properties||(r.properties={outputNode:null})}getBufferAttributeFromNode(e,t){const r=this.getDataFromNode(e,"vertex");let s=r.bufferAttribute;if(void 0===s){const i=this.uniforms.index++;s=new tN("nodeAttribute"+i,t,e),this.bufferAttributes.push(s),r.bufferAttribute=s}return s}getStructTypeNode(e,t=this.shaderStage){return this.types[t][e]||null}getStructTypeFromNode(e,t,r=null,s=this.shaderStage){const i=this.getDataFromNode(e,s,this.globalCache);let n=i.structType;if(void 0===n){const a=this.structs.index++;null===r&&(r="StructType"+a),n=new uN(r,t),this.structs[s].push(n),this.types[s][r]=e,i.structType=n}return n}getOutputStructTypeFromNode(e,t){const r=this.getStructTypeFromNode(e,t,"OutputType","fragment");return r.output=!0,r}getUniformFromNode(e,t,r=this.shaderStage,s=null){const i=this.getDataFromNode(e,r,this.globalCache);let n=i.uniform;if(void 0===n){const a=this.uniforms.index++;n=new rN(s||"nodeUniform"+a,t,e),this.uniforms[r].push(n),this.registerDeclaration(n),i.uniform=n}return n}getVarFromNode(e,t=null,r=e.getNodeType(this),s=this.shaderStage,i=!1){const n=this.getDataFromNode(e,s),a=this.getSubBuildProperty("variable",n.subBuilds);let o=n[a];if(void 0===o){const u=i?"_const":"_var",l=this.vars[s]||(this.vars[s]=[]),d=this.vars[u]||(this.vars[u]=0);null===t&&(t=(i?"nodeConst":"nodeVar")+d,this.vars[u]++),"variable"!==a&&(t=this.getSubBuildProperty(t,n.subBuilds));const c=e.getArrayCount(this);o=new sN(t,r,i,c),i||l.push(o),this.registerDeclaration(o),n[a]=o}return o}isDeterministic(e){if(e.isMathNode)return this.isDeterministic(e.aNode)&&(!e.bNode||this.isDeterministic(e.bNode))&&(!e.cNode||this.isDeterministic(e.cNode));if(e.isOperatorNode)return this.isDeterministic(e.aNode)&&(!e.bNode||this.isDeterministic(e.bNode));if(e.isArrayNode){if(null!==e.values)for(const t of e.values)if(!this.isDeterministic(t))return!1;return!0}return!!e.isConstNode}getVaryingFromNode(e,t=null,r=e.getNodeType(this),s=null,i=null){const n=this.getDataFromNode(e,"any"),a=this.getSubBuildProperty("varying",n.subBuilds);let o=n[a];if(void 0===o){const e=this.varyings,u=e.length;null===t&&(t="nodeVarying"+u),"varying"!==a&&(t=this.getSubBuildProperty(t,n.subBuilds)),o=new iN(t,r,s,i),e.push(o),this.registerDeclaration(o),n[a]=o}return o}registerDeclaration(e){const t=this.shaderStage,r=this.declarations[t]||(this.declarations[t]={}),s=this.getPropertyName(e);let i=1,n=s;for(;void 0!==r[n];)n=s+"_"+i++;i>1&&(e.name=n,d(`TSL: Declaration name '${s}' of '${e.type}' already in use. Renamed to '${n}'.`)),r[n]=e}getCodeFromNode(e,t,r=this.shaderStage){const s=this.getDataFromNode(e);let i=s.code;if(void 0===i){const e=this.codes[r]||(this.codes[r]=[]),n=e.length;i=new nN("nodeCode"+n,t),e.push(i),s.code=i}return i}addFlowCodeHierarchy(e,t){const{flowCodes:r,flowCodeBlock:s}=this.getDataFromNode(e);let i=!0,n=t;for(;n;){if(!0===s.get(n)){i=!1;break}n=this.getDataFromNode(n).parentNodeBlock}if(i)for(const e of r)this.addLineFlowCode(e)}addLineFlowCodeBlock(e,t,r){const s=this.getDataFromNode(e),i=s.flowCodes||(s.flowCodes=[]),n=s.flowCodeBlock||(s.flowCodeBlock=new WeakMap);i.push(t),n.set(r,!0)}addLineFlowCode(e,t=null){return""===e||(null!==t&&this.context.nodeBlock&&this.addLineFlowCodeBlock(t,e,this.context.nodeBlock),e=this.tab+e,/;\s*$/.test(e)||(e+=";\n"),this.flow.code+=e),this}addFlowCode(e){return this.flow.code+=e,this}addFlowTab(){return this.tab+="\t",this}removeFlowTab(){return this.tab=this.tab.slice(0,-1),this}getFlowData(e){return this.flowsData.get(e)}flowNode(e){const t=e.getNodeType(this),r=this.flowChildNode(e,t);return this.flowsData.set(e,r),r}addInclude(e){null!==this.currentFunctionNode&&this.currentFunctionNode.includes.push(e)}buildFunctionNode(e){const t=new Xx,r=this.currentFunctionNode;return this.currentFunctionNode=t,t.code=this.buildFunctionCode(e),this.currentFunctionNode=r,t}flowShaderNode(e){const t=e.layout,r={[Symbol.iterator](){let e=0;const t=Object.values(this);return{next:()=>({value:t[e],done:e++>=t.length})}}};for(const e of t.inputs)r[e.name]=new Dy(e.type,e.name);e.layout=null;const s=e.call(r),i=this.flowStagesNode(s,t.type);return e.layout=t,i}flowBuildStage(e,t,r=null){const s=this.getBuildStage();this.setBuildStage(t);const i=e.build(this,r);return this.setBuildStage(s),i}flowStagesNode(e,t=null){const r=this.flow,s=this.vars,i=this.declarations,n=this.cache,a=this.buildStage,o=this.stack,u={code:""};this.flow=u,this.vars={},this.declarations={},this.cache=new oN,this.stack=Iy();for(const r of ti)this.setBuildStage(r),u.result=e.build(this,t);return u.vars=this.getVars(this.shaderStage),this.flow=r,this.vars=s,this.declarations=i,this.cache=n,this.stack=o,this.setBuildStage(a),u}getFunctionOperator(){return null}buildFunctionCode(){d("Abstract function.")}flowChildNode(e,t=null){const r=this.flow,s={code:""};return this.flow=s,s.result=e.build(this,t),this.flow=r,s}flowNodeFromShaderStage(e,t,r=null,s=null){const i=this.tab,n=this.cache,a=this.shaderStage,o=this.context;this.setShaderStage(e);const u={...this.context};delete u.nodeBlock,this.cache=this.globalCache,this.tab="\t",this.context=u;let l=null;if("generate"===this.buildStage){const i=this.flowChildNode(t,r);null!==s&&(i.code+=`${this.tab+s} = ${i.result};\n`),this.flowCode[e]=this.flowCode[e]+i.code,l=i}else l=t.build(this);return this.setShaderStage(a),this.cache=n,this.tab=i,this.context=o,l}getAttributesArray(){return this.attributes.concat(this.bufferAttributes)}getAttributes(){d("Abstract function.")}getVaryings(){d("Abstract function.")}getVar(e,t,r=null){return`${null!==r?this.generateArrayDeclaration(e,r):this.getType(e)} ${t}`}getVars(e){let t="";const r=this.vars[e];if(void 0!==r)for(const e of r)t+=`${this.getVar(e.type,e.name)}; `;return t}getUniforms(){d("Abstract function.")}getCodes(e){const t=this.codes[e];let r="";if(void 0!==t)for(const e of t)r+=e.code+"\n";return r}getHash(){return this.vertexShader+this.fragmentShader+this.computeShader}setShaderStage(e){this.shaderStage=e}getShaderStage(){return this.shaderStage}setBuildStage(e){this.buildStage=e}getBuildStage(){return this.buildStage}buildCode(){d("Abstract function.")}get subBuild(){return this.subBuildLayers[this.subBuildLayers.length-1]||null}addSubBuild(e){this.subBuildLayers.push(e)}removeSubBuild(){return this.subBuildLayers.pop()}getClosestSubBuild(e){let t;if(t=e&&e.isNode?e.isShaderCallNodeInternal?e.shaderNode.subBuilds:e.isStackNode?[e.subBuild]:this.getDataFromNode(e,"any").subBuilds:e instanceof Set?[...e]:e,!t)return null;const r=this.subBuildLayers;for(let e=t.length-1;e>=0;e--){const s=t[e];if(r.includes(s))return s}return null}getSubBuildOutput(e){return this.getSubBuildProperty("outputNode",e)}getSubBuildProperty(e="",t=null){let r,s;return r=null!==t?this.getClosestSubBuild(t):this.subBuildFn,s=r?e?r+"_"+e:r:e,s}build(){const{object:e,material:t,renderer:r}=this;if(null!==t){let e=r.library.fromMaterial(t);null===e&&(o(`NodeMaterial: Material "${t.type}" is not compatible.`),e=new Xp),e.build(this)}else this.addFlow("compute",e);for(const e of ti){this.setBuildStage(e),this.context.vertex&&this.context.vertex.isNode&&this.flowNodeFromShaderStage("vertex",this.context.vertex);for(const t of ri){this.setShaderStage(t);const r=this.flowNodes[t];for(const t of r)"generate"===e?this.flowNode(t):t.build(this)}}return this.setBuildStage(null),this.setShaderStage(null),this.buildCode(),this.buildUpdateNodes(),this}getSharedDataFromNode(e){let t=EN.get(e);return void 0===t&&(t={}),t}getNodeUniform(e,t){const r=this.getSharedDataFromNode(e);let s=r.cache;if(void 0===s){if("float"===t||"int"===t||"uint"===t)s=new bN(e);else if("vec2"===t||"ivec2"===t||"uvec2"===t)s=new xN(e);else if("vec3"===t||"ivec3"===t||"uvec3"===t)s=new TN(e);else if("vec4"===t||"ivec4"===t||"uvec4"===t)s=new _N(e);else if("color"===t)s=new vN(e);else if("mat2"===t)s=new NN(e);else if("mat3"===t)s=new SN(e);else{if("mat4"!==t)throw new Error(`Uniform "${t}" not implemented.`);s=new RN(e)}r.cache=s}return s}format(e,t,r){if((t=this.getVectorType(t))===(r=this.getVectorType(r))||null===r||this.isReference(r))return e;const s=this.getTypeLength(t),i=this.getTypeLength(r);return 16===s&&9===i?`${this.getType(r)}( ${e}[ 0 ].xyz, ${e}[ 1 ].xyz, ${e}[ 2 ].xyz )`:9===s&&4===i?`${this.getType(r)}( ${e}[ 0 ].xy, ${e}[ 1 ].xy )`:s>4||i>4||0===i?e:s===i?`${this.getType(r)}( ${e} )`:s>i?(e="bool"===r?`all( ${e} )`:`${e}.${"xyz".slice(0,i)}`,this.format(e,this.getTypeFromLength(i,this.getComponentType(t)),r)):4===i&&s>1?`${this.getType(r)}( ${this.format(e,t,"vec3")}, 1.0 )`:2===s?`${this.getType(r)}( ${this.format(e,t,"vec2")}, 0.0 )`:(1===s&&i>1&&t!==this.getComponentType(r)&&(e=`${this.getType(this.getComponentType(r))}( ${e} )`),`${this.getType(r)}( ${e} )`)}getSignature(){return`// Three.js r${tt} - Node System\n`}}class LN{constructor(){this.time=0,this.deltaTime=0,this.frameId=0,this.renderId=0,this.updateMap=new WeakMap,this.updateBeforeMap=new WeakMap,this.updateAfterMap=new WeakMap,this.renderer=null,this.material=null,this.camera=null,this.object=null,this.scene=null}_getMaps(e,t){let r=e.get(t);return void 0===r&&(r={renderId:0,frameId:0},e.set(t,r)),r}updateBeforeNode(e){const t=e.getUpdateBeforeType(),r=e.updateReference(this);if(t===Qs.FRAME){const t=this._getMaps(this.updateBeforeMap,r);if(t.frameId!==this.frameId){const r=t.frameId;t.frameId=this.frameId,!1===e.updateBefore(this)&&(t.frameId=r)}}else if(t===Qs.RENDER){const t=this._getMaps(this.updateBeforeMap,r);if(t.renderId!==this.renderId){const r=t.renderId;t.renderId=this.renderId,!1===e.updateBefore(this)&&(t.renderId=r)}}else t===Qs.OBJECT&&e.updateBefore(this)}updateAfterNode(e){const t=e.getUpdateAfterType(),r=e.updateReference(this);if(t===Qs.FRAME){const t=this._getMaps(this.updateAfterMap,r);t.frameId!==this.frameId&&!1!==e.updateAfter(this)&&(t.frameId=this.frameId)}else if(t===Qs.RENDER){const t=this._getMaps(this.updateAfterMap,r);t.renderId!==this.renderId&&!1!==e.updateAfter(this)&&(t.renderId=this.renderId)}else t===Qs.OBJECT&&e.updateAfter(this)}updateNode(e){const t=e.getUpdateType(),r=e.updateReference(this);if(t===Qs.FRAME){const t=this._getMaps(this.updateMap,r);t.frameId!==this.frameId&&!1!==e.update(this)&&(t.frameId=this.frameId)}else if(t===Qs.RENDER){const t=this._getMaps(this.updateMap,r);t.renderId!==this.renderId&&!1!==e.update(this)&&(t.renderId=this.renderId)}else t===Qs.OBJECT&&e.update(this)}update(){this.frameId++,void 0===this.lastTime&&(this.lastTime=performance.now()),this.deltaTime=(performance.now()-this.lastTime)/1e3,this.lastTime=performance.now(),this.time+=this.deltaTime}}class PN{constructor(e,t,r=null,s="",i=!1){this.type=e,this.name=t,this.count=r,this.qualifier=s,this.isConst=i}}PN.isNodeFunctionInput=!0;class FN extends K_{static get type(){return"DirectionalLightNode"}constructor(e=null){super(e)}setupDirect(){const e=this.colorNode;return{lightDirection:s_(this.light),lightColor:e}}}const DN=new a,UN=new a;let IN=null;class ON extends K_{static get type(){return"RectAreaLightNode"}constructor(e=null){super(e),this.halfHeight=xa(new r).setGroup(fa),this.halfWidth=xa(new r).setGroup(fa),this.updateType=Qs.RENDER}update(e){super.update(e);const{light:t}=this,r=e.camera.matrixWorldInverse;UN.identity(),DN.copy(t.matrixWorld),DN.premultiply(r),UN.extractRotation(DN),this.halfWidth.value.set(.5*t.width,0,0),this.halfHeight.value.set(0,.5*t.height,0),this.halfWidth.value.applyMatrix4(UN),this.halfHeight.value.applyMatrix4(UN)}setupDirectRectArea(e){let t,r;e.isAvailable("float32Filterable")?(t=Pl(IN.LTC_FLOAT_1),r=Pl(IN.LTC_FLOAT_2)):(t=Pl(IN.LTC_HALF_1),r=Pl(IN.LTC_HALF_2));const{colorNode:s,light:i}=this;return{lightColor:s,lightPosition:r_(i),halfWidth:this.halfWidth,halfHeight:this.halfHeight,ltc_1:t,ltc_2:r}}static setLTC(e){IN=e}}class VN extends K_{static get type(){return"SpotLightNode"}constructor(e=null){super(e),this.coneCosNode=xa(0).setGroup(fa),this.penumbraCosNode=xa(0).setGroup(fa),this.cutoffDistanceNode=xa(0).setGroup(fa),this.decayExponentNode=xa(0).setGroup(fa),this.colorNode=xa(this.color).setGroup(fa)}update(e){super.update(e);const{light:t}=this;this.coneCosNode.value=Math.cos(t.angle),this.penumbraCosNode.value=Math.cos(t.angle*(1-t.penumbra)),this.cutoffDistanceNode.value=t.distance,this.decayExponentNode.value=t.decay}getSpotAttenuation(e,t){const{coneCosNode:r,penumbraCosNode:s}=this;return uu(r,s,t)}getLightCoord(e){const t=e.getNodeProperties(this);let r=t.projectionUV;return void 0===r&&(r=JT(this.light,e.context.positionWorld),t.projectionUV=r),r}setupDirect(e){const{colorNode:t,cutoffDistanceNode:r,decayExponentNode:s,light:i}=this,n=this.getLightVector(e),a=n.normalize(),o=a.dot(s_(i)),u=this.getSpotAttenuation(e,o),l=n.length(),d=Y_({lightDistance:l,cutoffDistance:r,decayExponent:s});let c,h,p=t.mul(u).mul(d);if(i.colorNode?(h=this.getLightCoord(e),c=i.colorNode(h)):i.map&&(h=this.getLightCoord(e),c=Pl(i.map,h.xy).onRenderUpdate(()=>i.map)),c){p=h.mul(2).sub(1).abs().lessThan(1).all().select(p.mul(c),p)}return{lightColor:p,lightDirection:a}}}class kN extends VN{static get type(){return"IESSpotLightNode"}getSpotAttenuation(e,t){const r=this.light.iesMap;let s=null;if(r&&!0===r.isTexture){const e=t.acos().mul(1/Math.PI);s=Pl(r,fn(e,0),0).r}else s=super.getSpotAttenuation(t);return s}}const GN=an(([e,t])=>{const r=e.abs().sub(t);return Mo(Wo(r,0)).add($o(Wo(r.x,r.y),0))});class zN extends VN{static get type(){return"ProjectorLightNode"}update(e){super.update(e);const t=this.light;if(this.penumbraCosNode.value=Math.min(Math.cos(t.angle*(1-t.penumbra)),.99999),null===t.aspect){let e=1;null!==t.map&&(e=t.map.width/t.map.height),t.shadow.aspect=e}else t.shadow.aspect=t.aspect}getSpotAttenuation(e){const t=hn(0),r=this.penumbraCosNode,s=ZT(this.light).mul(e.context.positionWorld||Pd);return ln(s.w.greaterThan(0),()=>{const e=s.xyz.div(s.w),i=GN(e.xy.sub(fn(.5)),fn(.5)),n=Ba(-1,Ca(1,Ao(r)).sub(1));t.assign(au(i.mul(-2).mul(n)))}),t}}class $N extends K_{static get type(){return"AmbientLightNode"}constructor(e=null){super(e)}setup({context:e}){e.irradiance.addAssign(this.colorNode)}}class WN extends K_{static get type(){return"HemisphereLightNode"}constructor(t=null){super(t),this.lightPositionNode=e_(t),this.lightDirectionNode=this.lightPositionNode.normalize(),this.groundColorNode=xa(new e).setGroup(fa)}update(e){const{light:t}=this;super.update(e),this.lightPositionNode.object3d=t,this.groundColorNode.value.copy(t.groundColor).multiplyScalar(t.intensity)}setup(e){const{colorNode:t,groundColorNode:r,lightDirectionNode:s}=this,i=qd.dot(s).mul(.5).add(.5),n=iu(r,t,i);e.context.irradiance.addAssign(n)}}class HN extends K_{static get type(){return"LightProbeNode"}constructor(e=null){super(e);const t=[];for(let e=0;e<9;e++)t.push(new r);this.lightProbe=Vl(t)}update(e){const{light:t}=this;super.update(e);for(let e=0;e<9;e++)this.lightProbe.array[e].copy(t.sh.coefficients[e]).multiplyScalar(t.intensity)}setup(e){const t=Xv(qd,this.lightProbe);e.context.irradiance.addAssign(t)}}class jN{parseFunction(){d("Abstract function.")}}class qN{constructor(e,t,r="",s=""){this.type=e,this.inputs=t,this.name=r,this.precision=s}getCode(){d("Abstract function.")}}qN.isNodeFunction=!0;const XN=/^\s*(highp|mediump|lowp)?\s*([a-z_0-9]+)\s*([a-z_0-9]+)?\s*\(([\s\S]*?)\)/i,KN=/[a-z_0-9]+/gi,YN="#pragma main";class QN extends qN{constructor(e){const{type:t,inputs:r,name:s,precision:i,inputsCode:n,blockCode:a,headerCode:o}=(e=>{const t=(e=e.trim()).indexOf(YN),r=-1!==t?e.slice(t+12):e,s=r.match(XN);if(null!==s&&5===s.length){const i=s[4],n=[];let a=null;for(;null!==(a=KN.exec(i));)n.push(a);const o=[];let u=0;for(;u{const r=this.backend.createNodeBuilder(e.object,this.renderer);return r.scene=e.scene,r.material=t,r.camera=e.camera,r.context.material=t,r.lightsNode=e.lightsNode,r.environmentNode=this.getEnvironmentNode(e.scene),r.fogNode=this.getFogNode(e.scene),r.clippingContext=e.clippingContext,this.renderer.getOutputRenderTarget()&&this.renderer.getOutputRenderTarget().multiview&&r.enableMultiview(),r};let n=t(e.material);try{n.build()}catch(e){n=t(new Xp),n.build(),o("TSL: "+e)}r=this._createNodeBuilderState(n),s.set(i,r)}r.usedTimes++,t.nodeBuilderState=r}return r}delete(e){if(e.isRenderObject){const t=this.get(e).nodeBuilderState;t.usedTimes--,0===t.usedTimes&&this.nodeBuilderCache.delete(this.getForRenderCacheKey(e))}return super.delete(e)}getForCompute(e){const t=this.get(e);let r=t.nodeBuilderState;if(void 0===r){const s=this.backend.createNodeBuilder(e,this.renderer);s.build(),r=this._createNodeBuilderState(s),t.nodeBuilderState=r}return r}_createNodeBuilderState(e){return new eN(e.vertexShader,e.fragmentShader,e.computeShader,e.getAttributesArray(),e.getBindings(),e.updateNodes,e.updateBeforeNodes,e.updateAfterNodes,e.observer,e.transforms)}getEnvironmentNode(e){this.updateEnvironment(e);let t=null;if(e.environmentNode&&e.environmentNode.isNode)t=e.environmentNode;else{const r=this.get(e);r.environmentNode&&(t=r.environmentNode)}return t}getBackgroundNode(e){this.updateBackground(e);let t=null;if(e.backgroundNode&&e.backgroundNode.isNode)t=e.backgroundNode;else{const r=this.get(e);r.backgroundNode&&(t=r.backgroundNode)}return t}getFogNode(e){return this.updateFog(e),e.fogNode||this.get(e).fogNode||null}getCacheKey(e,t){eS[0]=e,eS[1]=t;const r=this.renderer.info.calls,s=this.callHashCache.get(eS)||{};if(s.callId!==r){const i=this.getEnvironmentNode(e),n=this.getFogNode(e);t&&tS.push(t.getCacheKey(!0)),i&&tS.push(i.getCacheKey()),n&&tS.push(n.getCacheKey()),tS.push(this.renderer.getOutputRenderTarget()&&this.renderer.getOutputRenderTarget().multiview?1:0),tS.push(this.renderer.shadowMap.enabled?1:0),tS.push(this.renderer.shadowMap.type),s.callId=r,s.cacheKey=Ds(tS),this.callHashCache.set(eS,s),tS.length=0}return eS.length=0,s.cacheKey}get isToneMappingState(){return!this.renderer.getRenderTarget()}updateBackground(e){const t=this.get(e),r=e.background;if(r){const s=0===e.backgroundBlurriness&&t.backgroundBlurriness>0||e.backgroundBlurriness>0&&0===t.backgroundBlurriness;if(t.background!==r||s){const i=this.getCacheNode("background",r,()=>{if(!0===r.isCubeTexture||r.mapping===oe||r.mapping===ue||r.mapping===Se){if(e.backgroundBlurriness>0||r.mapping===Se)return mf(r);{let e;return e=!0===r.isCubeTexture?hc(r):Pl(r),hg(e)}}if(!0===r.isTexture)return Pl(r,Hl.flipY()).setUpdateMatrix(!0);!0!==r.isColor&&o("WebGPUNodes: Unsupported background configuration.",r)},s);t.backgroundNode=i,t.background=r,t.backgroundBlurriness=e.backgroundBlurriness}}else t.backgroundNode&&(delete t.backgroundNode,delete t.background)}getCacheNode(e,t,r,s=!1){const i=this.cacheLib[e]||(this.cacheLib[e]=new WeakMap);let n=i.get(t);return(void 0===n||s)&&(n=r(),i.set(t,n)),n}updateFog(e){const t=this.get(e),r=e.fog;if(r){if(t.fog!==r){const e=this.getCacheNode("fog",r,()=>{if(r.isFogExp2){const e=mc("color","color",r).setGroup(fa),t=mc("density","float",r).setGroup(fa);return aT(e,nT(t))}if(r.isFog){const e=mc("color","color",r).setGroup(fa),t=mc("near","float",r).setGroup(fa),s=mc("far","float",r).setGroup(fa);return aT(e,iT(t,s))}o("Renderer: Unsupported fog configuration.",r)});t.fogNode=e,t.fog=r}}else delete t.fogNode,delete t.fog}updateEnvironment(e){const t=this.get(e),r=e.environment;if(r){if(t.environment!==r){const e=this.getCacheNode("environment",r,()=>!0===r.isCubeTexture?hc(r):!0===r.isTexture?Pl(r):void o("Nodes: Unsupported environment configuration.",r));t.environmentNode=e,t.environment=r}}else t.environmentNode&&(delete t.environmentNode,delete t.environment)}getNodeFrame(e=this.renderer,t=null,r=null,s=null,i=null){const n=this.nodeFrame;return n.renderer=e,n.scene=t,n.object=r,n.camera=s,n.material=i,n}getNodeFrameForRender(e){return this.getNodeFrame(e.renderer,e.scene,e.object,e.camera,e.material)}getOutputCacheKey(){const e=this.renderer;return e.toneMapping+","+e.currentColorSpace+","+e.xr.isPresenting}hasOutputChange(e){return JN.get(e)!==this.getOutputCacheKey()}getOutputNode(e){const t=this.renderer,r=this.getOutputCacheKey(),s=e.isArrayTexture?fx(e,Tn(Hl,kl("gl_ViewID_OVR"))).renderOutput(t.toneMapping,t.currentColorSpace):Pl(e,Hl).renderOutput(t.toneMapping,t.currentColorSpace);return JN.set(e,r),s}updateBefore(e){const t=e.getNodeBuilderState();for(const r of t.updateBeforeNodes)this.getNodeFrameForRender(e).updateBeforeNode(r)}updateAfter(e){const t=e.getNodeBuilderState();for(const r of t.updateAfterNodes)this.getNodeFrameForRender(e).updateAfterNode(r)}updateForCompute(e){const t=this.getNodeFrame(),r=this.getForCompute(e);for(const e of r.updateNodes)t.updateNode(e)}updateForRender(e){const t=this.getNodeFrameForRender(e),r=e.getNodeBuilderState();for(const e of r.updateNodes)t.updateNode(e)}needsRefresh(e){const t=this.getNodeFrameForRender(e);return e.getMonitor().needsRefresh(e,t)}dispose(){super.dispose(),this.nodeFrame=new LN,this.nodeBuilderCache=new Map,this.cacheLib={}}}const sS=new Ge;class iS{constructor(e=null){this.version=0,this.clipIntersection=null,this.cacheKey="",this.shadowPass=!1,this.viewNormalMatrix=new n,this.clippingGroupContexts=new WeakMap,this.intersectionPlanes=[],this.unionPlanes=[],this.parentVersion=null,null!==e&&(this.viewNormalMatrix=e.viewNormalMatrix,this.clippingGroupContexts=e.clippingGroupContexts,this.shadowPass=e.shadowPass,this.viewMatrix=e.viewMatrix)}projectPlanes(e,t,r){const s=e.length;for(let i=0;i0,alpha:!0,depth:t.depth,stencil:t.stencil,framebufferScaleFactor:this.getFramebufferScaleFactor()},i=new XRWebGLLayer(e,s,r);this._glBaseLayer=i,e.updateRenderState({baseLayer:i}),t.setPixelRatio(1),t._setXRLayerSize(i.framebufferWidth,i.framebufferHeight),this._xrRenderTarget=new hS(i.framebufferWidth,i.framebufferHeight,{format:Ne,type:ke,colorSpace:t.outputColorSpace,stencilBuffer:t.stencil,resolveDepthBuffer:!1===i.ignoreDepthValues,resolveStencilBuffer:!1===i.ignoreDepthValues}),this._xrRenderTarget._isOpaqueFramebuffer=!0,this._referenceSpace=await e.requestReferenceSpace(this.getReferenceSpaceType())}this.setFoveation(this.getFoveation()),t._animation.setAnimationLoop(this._onAnimationFrame),t._animation.setContext(e),t._animation.start(),this.isPresenting=!0,this.dispatchEvent({type:"sessionstart"})}}updateCamera(e){const t=this._session;if(null===t)return;const r=e.near,s=e.far,i=this._cameraXR,n=this._cameraL,a=this._cameraR;i.near=a.near=n.near=r,i.far=a.far=n.far=s,i.isMultiViewCamera=this._useMultiview,this._currentDepthNear===i.near&&this._currentDepthFar===i.far||(t.updateRenderState({depthNear:i.near,depthFar:i.far}),this._currentDepthNear=i.near,this._currentDepthFar=i.far),i.layers.mask=6|e.layers.mask,n.layers.mask=3&i.layers.mask,a.layers.mask=5&i.layers.mask;const o=e.parent,u=i.cameras;fS(i,o);for(let e=0;e=0&&(r[n]=null,t[n].disconnect(i))}for(let s=0;s=r.length){r.push(i),n=e;break}if(null===r[e]){r[e]=i,n=e;break}}if(-1===n)break}const a=t[n];a&&a.connect(i)}}function TS(e){return"quad"===e.type?this._glBinding.createQuadLayer({transform:new XRRigidTransform(e.translation,e.quaternion),width:e.width/2,height:e.height/2,space:this._referenceSpace,viewPixelWidth:e.pixelwidth,viewPixelHeight:e.pixelheight,clearOnAccess:!1}):this._glBinding.createCylinderLayer({transform:new XRRigidTransform(e.translation,e.quaternion),radius:e.radius,centralAngle:e.centralAngle,aspectRatio:e.aspectRatio,space:this._referenceSpace,viewPixelWidth:e.pixelwidth,viewPixelHeight:e.pixelheight,clearOnAccess:!1})}function _S(e,t){if(void 0===t)return;const r=this._cameraXR,i=this._renderer,n=i.backend,a=this._glBaseLayer,o=this.getReferenceSpace(),u=t.getViewerPose(o);if(this._xrFrame=t,null!==u){const e=u.views;null!==this._glBaseLayer&&n.setXRTarget(a.framebuffer);let t=!1;e.length!==r.cameras.length&&(r.cameras.length=0,t=!0);for(let i=0;i{await this.compileAsync(e,t);const s=this._renderLists.get(e,t),i=this._renderContexts.get(e,t,this._renderTarget,this._mrt),n=e.overrideMaterial||r.material,a=this._objects.get(r,n,e,t,s.lightsNode,i,i.clippingContext),{fragmentShader:o,vertexShader:u}=a.getNodeBuilderState();return{fragmentShader:o,vertexShader:u}}}}async init(){return null!==this._initPromise||(this._initPromise=new Promise(async(e,t)=>{let r=this.backend;try{await r.init(this)}catch(e){if(null===this._getFallback)return void t(e);try{this.backend=r=this._getFallback(e),await r.init(this)}catch(e){return void t(e)}}this._nodes=new rS(this,r),this._animation=new Kf(this,this._nodes,this.info),this._attributes=new oy(r),this._background=new Qv(this,this._nodes),this._geometries=new dy(this._attributes,this.info),this._textures=new Py(this,r,this.info),this._pipelines=new yy(r,this._nodes),this._bindings=new by(r,this._nodes,this._textures,this._attributes,this._pipelines,this.info),this._objects=new ey(this,this._nodes,this._geometries,this._pipelines,this._bindings,this.info),this._renderLists=new Sy(this.lighting),this._bundles=new oS,this._renderContexts=new By,this._animation.start(),this._initialized=!0,this._inspector.init(),e(this)})),this._initPromise}get domElement(){return this._canvasTarget.domElement}get coordinateSystem(){return this.backend.coordinateSystem}async compileAsync(e,t,r=null){if(!0===this._isDeviceLost)return;!1===this._initialized&&await this.init();const s=this._nodes.nodeFrame,i=s.renderId,n=this._currentRenderContext,a=this._currentRenderObjectFunction,o=this._compilationPromises,u=!0===e.isScene?e:NS;null===r&&(r=e);const l=this._renderTarget,d=this._renderContexts.get(r,t,l,this._mrt),c=this._activeMipmapLevel,h=[];this._currentRenderContext=d,this._currentRenderObjectFunction=this.renderObject,this._handleObjectFunction=this._createObjectPipeline,this._compilationPromises=h,s.renderId++,s.update(),d.depth=this.depth,d.stencil=this.stencil,d.clippingContext||(d.clippingContext=new iS),d.clippingContext.updateGlobal(u,t),u.onBeforeRender(this,e,t,l);const p=this._renderLists.get(e,t);if(p.begin(),this._projectObject(e,t,0,p,d.clippingContext),r!==e&&r.traverseVisible(function(e){e.isLight&&e.layers.test(t.layers)&&p.pushLight(e)}),p.finish(),null!==l){this._textures.updateRenderTarget(l,c);const e=this._textures.get(l);d.textures=e.textures,d.depthTexture=e.depthTexture}else d.textures=null,d.depthTexture=null;this._background.update(u,p,d);const g=p.opaque,m=p.transparent,f=p.transparentDoublePass,y=p.lightsNode;!0===this.opaque&&g.length>0&&this._renderObjects(g,t,u,y),!0===this.transparent&&m.length>0&&this._renderTransparents(m,f,t,u,y),s.renderId=i,this._currentRenderContext=n,this._currentRenderObjectFunction=a,this._compilationPromises=o,this._handleObjectFunction=this._renderObjectDirect,await Promise.all(h)}async renderAsync(e,t){v('Renderer: "renderAsync()" has been deprecated. Use "render()" and "await renderer.init();" when creating the renderer.'),await this.init(),this.render(e,t)}async waitForGPU(){o("Renderer: waitForGPU() has been removed. Read https://github.com/mrdoob/three.js/issues/32012 for more information.")}set inspector(e){null!==this._inspector&&this._inspector.setRenderer(null),this._inspector=e,this._inspector.setRenderer(this)}get inspector(){return this._inspector}set highPrecision(e){const t=this.contextNode.value;!0===e?(t.modelViewMatrix=wd,t.modelNormalViewMatrix=Cd):this.highPrecision&&(delete t.modelViewMatrix,delete t.modelNormalViewMatrix)}get highPrecision(){const e=this.contextNode.value;return e.modelViewMatrix===wd&&e.modelNormalViewMatrix===Cd}setMRT(e){return this._mrt=e,this}getMRT(){return this._mrt}getColorBufferType(){return this._colorBufferType}_onDeviceLost(e){let t=`THREE.WebGPURenderer: ${e.api} Device Lost:\n\nMessage: ${e.message}`;e.reason&&(t+=`\nReason: ${e.reason}`),o(t),this._isDeviceLost=!0}_renderBundle(e,t,r){const{bundleGroup:s,camera:i,renderList:n}=e,a=this._currentRenderContext,o=this._bundles.get(s,i),u=this.backend.get(o);void 0===u.renderContexts&&(u.renderContexts=new Set);const l=s.version!==u.version,d=!1===u.renderContexts.has(a)||l;if(u.renderContexts.add(a),d){this.backend.beginBundle(a),(void 0===u.renderObjects||l)&&(u.renderObjects=[]),this._currentRenderBundle=o;const{transparentDoublePass:e,transparent:d,opaque:c}=n;!0===this.opaque&&c.length>0&&this._renderObjects(c,i,t,r),!0===this.transparent&&d.length>0&&this._renderTransparents(d,e,i,t,r),this._currentRenderBundle=null,this.backend.finishBundle(a,o),u.version=s.version}else{const{renderObjects:e}=u;for(let t=0,r=e.length;t>=c,p.viewportValue.height>>=c,p.viewportValue.minDepth=T,p.viewportValue.maxDepth=_,p.viewport=!1===p.viewportValue.equals(RS),p.scissorValue.copy(b).multiplyScalar(x).floor(),p.scissor=f._scissorTest&&!1===p.scissorValue.equals(RS),p.scissorValue.width>>=c,p.scissorValue.height>>=c,p.clippingContext||(p.clippingContext=new iS),p.clippingContext.updateGlobal(u,t),u.onBeforeRender(this,e,t,h);const v=t.isArrayCamera?ES:AS;t.isArrayCamera||(wS.multiplyMatrices(t.projectionMatrix,t.matrixWorldInverse),v.setFromProjectionMatrix(wS,t.coordinateSystem,t.reversedDepth));const N=this._renderLists.get(e,t);if(N.begin(),this._projectObject(e,t,0,N,p.clippingContext),N.finish(),!0===this.sortObjects&&N.sort(this._opaqueSort,this._transparentSort),null!==h){this._textures.updateRenderTarget(h,c);const e=this._textures.get(h);p.textures=e.textures,p.depthTexture=e.depthTexture,p.width=e.width,p.height=e.height,p.renderTarget=h,p.depth=h.depthBuffer,p.stencil=h.stencilBuffer}else p.textures=null,p.depthTexture=null,p.width=SS.width,p.height=SS.height,p.depth=this.depth,p.stencil=this.stencil;p.width>>=c,p.height>>=c,p.activeCubeFace=d,p.activeMipmapLevel=c,p.occlusionQueryCount=N.occlusionQueryCount,p.scissorValue.max(CS.set(0,0,0,0)),p.scissorValue.x+p.scissorValue.width>p.width&&(p.scissorValue.width=Math.max(p.width-p.scissorValue.x,0)),p.scissorValue.y+p.scissorValue.height>p.height&&(p.scissorValue.height=Math.max(p.height-p.scissorValue.y,0)),this._background.update(u,N,p),p.camera=t,this.backend.beginRender(p);const{bundles:S,lightsNode:R,transparentDoublePass:A,transparent:E,opaque:w}=N;return S.length>0&&this._renderBundles(S,u,R),!0===this.opaque&&w.length>0&&this._renderObjects(w,t,u,R),!0===this.transparent&&E.length>0&&this._renderTransparents(E,A,t,u,R),this.backend.finishRender(p),i.renderId=n,this._currentRenderContext=a,this._currentRenderObjectFunction=o,null!==s&&(this.setRenderTarget(l,d,c),this._renderOutput(h)),u.onAfterRender(this,e,t,h),this.inspector.finishRender(this.backend.getTimestampUID(p)),p}_setXRLayerSize(e,t){this._canvasTarget._width=e,this._canvasTarget._height=t,this.setViewport(0,0,e,t)}_renderOutput(e){const t=this._quad;this._nodes.hasOutputChange(e.texture)&&(t.material.fragmentNode=this._nodes.getOutputNode(e.texture),t.material.needsUpdate=!0);const r=this.autoClear,s=this.xr.enabled;this.autoClear=!1,this.xr.enabled=!1,this._renderScene(t,t.camera,!1),this.autoClear=r,this.xr.enabled=s}getMaxAnisotropy(){return this.backend.getMaxAnisotropy()}getActiveCubeFace(){return this._activeCubeFace}getActiveMipmapLevel(){return this._activeMipmapLevel}async setAnimationLoop(e){!1===this._initialized&&await this.init(),this._animation.setAnimationLoop(e)}getAnimationLoop(){return this._animation.getAnimationLoop()}async getArrayBufferAsync(e){return await this.backend.getArrayBufferAsync(e)}getContext(){return this.backend.getContext()}getPixelRatio(){return this._canvasTarget.getPixelRatio()}getDrawingBufferSize(e){return this._canvasTarget.getDrawingBufferSize(e)}getSize(e){return this._canvasTarget.getSize(e)}setPixelRatio(e=1){this._canvasTarget.setPixelRatio(e)}setDrawingBufferSize(e,t,r){this.xr&&this.xr.isPresenting||this._canvasTarget.setDrawingBufferSize(e,t,r)}setSize(e,t,r=!0){this.xr&&this.xr.isPresenting||this._canvasTarget.setSize(e,t,r)}setOpaqueSort(e){this._opaqueSort=e}setTransparentSort(e){this._transparentSort=e}getScissor(e){return this._canvasTarget.getScissor(e)}setScissor(e,t,r,s){this._canvasTarget.setScissor(e,t,r,s)}getScissorTest(){return this._canvasTarget.getScissorTest()}setScissorTest(e){this._canvasTarget.setScissorTest(e),this.backend.setScissorTest(e)}getViewport(e){return this._canvasTarget.getViewport(e)}setViewport(e,t,r,s,i=0,n=1){this._canvasTarget.setViewport(e,t,r,s,i,n)}getClearColor(e){return e.copy(this._clearColor)}setClearColor(e,t=1){this._clearColor.set(e),this._clearColor.a=t}getClearAlpha(){return this._clearColor.a}setClearAlpha(e){this._clearColor.a=e}getClearDepth(){return this._clearDepth}setClearDepth(e){this._clearDepth=e}getClearStencil(){return this._clearStencil}setClearStencil(e){this._clearStencil=e}isOccluded(e){const t=this._currentRenderContext;return t&&this.backend.isOccluded(t,e)}clear(e=!0,t=!0,r=!0){if(!1===this._initialized)throw new Error('Renderer: .clear() called before the backend is initialized. Use "await renderer.init();" before before using this method.');const s=this._renderTarget||this._getFrameBufferTarget();let i=null;if(null!==s){this._textures.updateRenderTarget(s);const e=this._textures.get(s);i=this._renderContexts.getForClear(s),i.textures=e.textures,i.depthTexture=e.depthTexture,i.width=e.width,i.height=e.height,i.renderTarget=s,i.depth=s.depthBuffer,i.stencil=s.stencilBuffer,i.clearColorValue=this.backend.getClearColor(),i.activeCubeFace=this.getActiveCubeFace(),i.activeMipmapLevel=this.getActiveMipmapLevel()}this.backend.clear(e,t,r,i),null!==s&&null===this._renderTarget&&this._renderOutput(s)}clearColor(){this.clear(!0,!1,!1)}clearDepth(){this.clear(!1,!0,!1)}clearStencil(){this.clear(!1,!1,!0)}async clearAsync(e=!0,t=!0,r=!0){v('Renderer: "clearAsync()" has been deprecated. Use "clear()" and "await renderer.init();" when creating the renderer.'),await this.init(),this.clear(e,t,r)}async clearColorAsync(){v('Renderer: "clearColorAsync()" has been deprecated. Use "clearColor()" and "await renderer.init();" when creating the renderer.'),this.clear(!0,!1,!1)}async clearDepthAsync(){v('Renderer: "clearDepthAsync()" has been deprecated. Use "clearDepth()" and "await renderer.init();" when creating the renderer.'),this.clear(!1,!0,!1)}async clearStencilAsync(){v('Renderer: "clearStencilAsync()" has been deprecated. Use "clearStencil()" and "await renderer.init();" when creating the renderer.'),this.clear(!1,!1,!0)}get needsFrameBufferTarget(){const e=this.currentToneMapping!==m,t=this.currentColorSpace!==p.workingColorSpace;return e||t}get samples(){return this._samples}get currentSamples(){let e=this._samples;return null!==this._renderTarget?e=this._renderTarget.samples:this.needsFrameBufferTarget&&(e=0),e}get currentToneMapping(){return this.isOutputTarget?this.toneMapping:m}get currentColorSpace(){return this.isOutputTarget?this.outputColorSpace:p.workingColorSpace}get isOutputTarget(){return this._renderTarget===this._outputRenderTarget||null===this._renderTarget}dispose(){!0===this._initialized&&(this.info.dispose(),this.backend.dispose(),this._animation.dispose(),this._objects.dispose(),this._geometries.dispose(),this._pipelines.dispose(),this._nodes.dispose(),this._bindings.dispose(),this._renderLists.dispose(),this._renderContexts.dispose(),this._textures.dispose(),null!==this._frameBufferTarget&&this._frameBufferTarget.dispose(),Object.values(this.backend.timestampQueryPool).forEach(e=>{null!==e&&e.dispose()})),this.setRenderTarget(null),this.setAnimationLoop(null)}setRenderTarget(e,t=0,r=0){this._renderTarget=e,this._activeCubeFace=t,this._activeMipmapLevel=r}getRenderTarget(){return this._renderTarget}setOutputRenderTarget(e){this._outputRenderTarget=e}getOutputRenderTarget(){return this._outputRenderTarget}setCanvasTarget(e){this._canvasTarget.removeEventListener("resize",this._onCanvasTargetResize),this._canvasTarget=e,this._canvasTarget.addEventListener("resize",this._onCanvasTargetResize)}getCanvasTarget(){return this._canvasTarget}_resetXRState(){this.backend.setXRTarget(null),this.setOutputRenderTarget(null),this.setRenderTarget(null),this._frameBufferTarget.dispose(),this._frameBufferTarget=null}setRenderObjectFunction(e){this._renderObjectFunction=e}getRenderObjectFunction(){return this._renderObjectFunction}compute(e,t=null){if(!0===this._isDeviceLost)return;if(!1===this._initialized)return d("Renderer: .compute() called before the backend is initialized. Try using .computeAsync() instead."),this.computeAsync(e,t);const r=this._nodes.nodeFrame,s=r.renderId;this.info.calls++,this.info.compute.calls++,this.info.compute.frameCalls++,r.renderId=this.info.calls,this.backend.updateTimeStampUID(e),this.inspector.beginCompute(this.backend.getTimestampUID(e),e);const i=this.backend,n=this._pipelines,a=this._bindings,o=this._nodes,u=Array.isArray(e)?e:[e];if(void 0===u[0]||!0!==u[0].isComputeNode)throw new Error("THREE.Renderer: .compute() expects a ComputeNode.");i.beginCompute(e);for(const r of u){if(!1===n.has(r)){const e=()=>{r.removeEventListener("dispose",e),n.delete(r),a.deleteForCompute(r),o.delete(r)};r.addEventListener("dispose",e);const t=r.onInitFunction;null!==t&&t.call(r,{renderer:this})}o.updateForCompute(r),a.updateForCompute(r);const s=a.getForCompute(r),u=n.getForCompute(r,s);i.compute(e,r,s,u,t)}i.finishCompute(e),r.renderId=s,this.inspector.finishCompute(this.backend.getTimestampUID(e))}async computeAsync(e,t=null){!1===this._initialized&&await this.init(),this.compute(e,t)}async hasFeatureAsync(e){return v('Renderer: "hasFeatureAsync()" has been deprecated. Use "hasFeature()" and "await renderer.init();" when creating the renderer.'),await this.init(),this.hasFeature(e)}async resolveTimestampsAsync(e="render"){return!1===this._initialized&&await this.init(),this.backend.resolveTimestampsAsync(e)}hasFeature(e){if(!1===this._initialized)throw new Error('Renderer: .hasFeature() called before the backend is initialized. Use "await renderer.init();" before before using this method.');return this.backend.hasFeature(e)}hasInitialized(){return this._initialized}async initTextureAsync(e){v('Renderer: "initTextureAsync()" has been deprecated. Use "initTexture()" and "await renderer.init();" when creating the renderer.'),await this.init(),this.initTexture(e)}initTexture(e){if(!1===this._initialized)throw new Error('Renderer: .initTexture() called before the backend is initialized. Use "await renderer.init();" before before using this method.');this._textures.updateTexture(e)}copyFramebufferToTexture(e,t=null){if(null!==t)if(t.isVector2)t=CS.set(t.x,t.y,e.image.width,e.image.height).floor();else{if(!t.isVector4)return void o("Renderer.copyFramebufferToTexture: Invalid rectangle.");t=CS.copy(t).floor()}else t=CS.set(0,0,e.image.width,e.image.height);let r,s=this._currentRenderContext;null!==s?r=s.renderTarget:(r=this._renderTarget||this._getFrameBufferTarget(),null!==r&&(this._textures.updateRenderTarget(r),s=this._textures.get(r))),this._textures.updateTexture(e,{renderTarget:r}),this.backend.copyFramebufferToTexture(e,s,t),this._inspector.copyFramebufferToTexture(e)}copyTextureToTexture(e,t,r=null,s=null,i=0,n=0){this._textures.updateTexture(e),this._textures.updateTexture(t),this.backend.copyTextureToTexture(e,t,r,s,i,n),this._inspector.copyTextureToTexture(e,t)}async readRenderTargetPixelsAsync(e,t,r,s,i,n=0,a=0){return this.backend.copyTextureToBuffer(e.textures[n],t,r,s,i,a)}_projectObject(e,t,r,s,i){if(!1===e.visible)return;if(e.layers.test(t.layers))if(e.isGroup)r=e.renderOrder,e.isClippingGroup&&e.enabled&&(i=i.getGroupContext(e));else if(e.isLOD)!0===e.autoUpdate&&e.update(t);else if(e.isLight)s.pushLight(e);else if(e.isSprite){const n=t.isArrayCamera?ES:AS;if(!e.frustumCulled||n.intersectsSprite(e,t)){!0===this.sortObjects&&CS.setFromMatrixPosition(e.matrixWorld).applyMatrix4(wS);const{geometry:t,material:n}=e;n.visible&&s.push(e,t,n,r,CS.z,null,i)}}else if(e.isLineLoop)o("Renderer: Objects of type THREE.LineLoop are not supported. Please use THREE.Line or THREE.LineSegments.");else if(e.isMesh||e.isLine||e.isPoints){const n=t.isArrayCamera?ES:AS;if(!e.frustumCulled||n.intersectsObject(e,t)){const{geometry:t,material:n}=e;if(!0===this.sortObjects&&(null===t.boundingSphere&&t.computeBoundingSphere(),CS.copy(t.boundingSphere.center).applyMatrix4(e.matrixWorld).applyMatrix4(wS)),Array.isArray(n)){const a=t.groups;for(let o=0,u=a.length;o0){for(const{material:e}of t)e.side=w;this._renderObjects(t,r,s,i,"backSide");for(const{material:e}of t)e.side=it;this._renderObjects(e,r,s,i);for(const{material:e}of t)e.side=C}else this._renderObjects(e,r,s,i)}_renderObjects(e,t,r,s,i=null){for(let n=0,a=e.length;n0||i.transmissionNode&&i.transmissionNode.isNode||i.backdropNode&&i.backdropNode.isNode,e.isShadowPassMaterial){const{colorNode:t,depthNode:r,positionNode:s}=this._getShadowNodes(i);e.side=null===i.shadowSide?i.side:i.shadowSide,null!==t&&(e.colorNode=t),null!==r&&(e.depthNode=r),null!==s&&(e.positionNode=s)}i=e}!0===i.transparent&&i.side===C&&!1===i.forceSinglePass?(i.side=w,this._handleObjectFunction(e,i,t,r,a,n,o,"backSide"),i.side=it,this._handleObjectFunction(e,i,t,r,a,n,o,u),i.side=C):this._handleObjectFunction(e,i,t,r,a,n,o,u),p&&(t.overrideMaterial.colorNode=l,t.overrideMaterial.depthNode=d,t.overrideMaterial.positionNode=c,t.overrideMaterial.side=h),e.onAfterRender(this,t,r,s,i,n)}_renderObjectDirect(e,t,r,s,i,n,a,o){const u=this._objects.get(e,t,r,s,i,this._currentRenderContext,a,o);u.drawRange=e.geometry.drawRange,u.group=n;const l=this._nodes.needsRefresh(u);if(l&&(this._nodes.updateBefore(u),this._geometries.updateForRender(u),this._nodes.updateForRender(u),this._bindings.updateForRender(u)),this._pipelines.updateForRender(u),null!==this._currentRenderBundle){this.backend.get(this._currentRenderBundle).renderObjects.push(u),u.bundle=this._currentRenderBundle.bundleGroup}this.backend.draw(u,this.info),l&&this._nodes.updateAfter(u)}_createObjectPipeline(e,t,r,s,i,n,a,o){const u=this._objects.get(e,t,r,s,i,this._currentRenderContext,a,o);u.drawRange=e.geometry.drawRange,u.group=n,this._nodes.updateBefore(u),this._geometries.updateForRender(u),this._nodes.updateForRender(u),this._bindings.updateForRender(u),this._pipelines.getForRender(u,this._compilationPromises),this._nodes.updateAfter(u)}_onCanvasTargetResize(){this._initialized&&this.backend.updateSize()}get compile(){return this.compileAsync}}class BS{constructor(e=""){this.name=e,this.visibility=0}setVisibility(e){this.visibility|=e}getVisibility(){return this.visibility}clone(){return Object.assign(new this.constructor,this)}}class LS extends BS{constructor(e,t=null){super(e),this.isBuffer=!0,this.bytesPerElement=Float32Array.BYTES_PER_ELEMENT,this._buffer=t,this._updateRanges=[]}get updateRanges(){return this._updateRanges}addUpdateRange(e,t){this.updateRanges.push({start:e,count:t})}clearUpdateRanges(){this.updateRanges.length=0}get byteLength(){return(e=this._buffer.byteLength)+(ay-e%ay)%ay;var e}get buffer(){return this._buffer}update(){return!0}}class PS extends LS{constructor(e,t=null){super(e,t),this.isUniformBuffer=!0}}let FS=0;class DS extends PS{constructor(e,t){super("UniformBuffer_"+FS++,e?e.value:null),this.nodeUniform=e,this.groupNode=t,this.isNodeUniformBuffer=!0}set updateRanges(e){this.nodeUniform.updateRanges=e}get updateRanges(){return this.nodeUniform.updateRanges}addUpdateRange(e,t){this.nodeUniform.addUpdateRange(e,t)}clearUpdateRanges(){this.nodeUniform.clearUpdateRanges()}get buffer(){return this.nodeUniform.value}}class US extends PS{constructor(e){super(e),this.isUniformsGroup=!0,this._values=null,this.uniforms=[]}addUniform(e){return this.uniforms.push(e),this}removeUniform(e){const t=this.uniforms.indexOf(e);return-1!==t&&this.uniforms.splice(t,1),this}get values(){return null===this._values&&(this._values=Array.from(this.buffer)),this._values}get buffer(){let e=this._buffer;if(null===e){const t=this.byteLength;e=new Float32Array(new ArrayBuffer(t)),this._buffer=e}return e}get byteLength(){const e=this.bytesPerElement;let t=0;for(let r=0,s=this.uniforms.length;r{this.generation=null,this.version=0},this.texture=t,this.version=t?t.version:0,this.generation=null,this.samplerKey="",this.isSampler=!0}set texture(e){this._texture!==e&&(this._texture&&this._texture.removeEventListener("dispose",this._onTextureDispose),this._texture=e,this.generation=null,this.version=0,this._texture&&this._texture.addEventListener("dispose",this._onTextureDispose))}get texture(){return this._texture}update(){const{texture:e,version:t}=this;return t!==e.version&&(this.version=e.version,!0)}clone(){const e=super.clone();return e._texture=null,e._onTextureDispose=()=>{e.generation=null,e.version=0},e.texture=this.texture,e}}let kS=0;class GS extends VS{constructor(e,t){super(e,t),this.id=kS++,this.store=!1,this.mipLevel=0,this.isSampledTexture=!0}}class zS extends GS{constructor(e,t,r,s=null){super(e,t?t.value:null),this.textureNode=t,this.groupNode=r,this.access=s}update(){const{textureNode:e}=this;return this.texture!==e.value?(this.texture=e.value,!0):super.update()}}class $S extends zS{constructor(e,t,r,s=null){super(e,t,r,s),this.isSampledCubeTexture=!0}}class WS extends zS{constructor(e,t,r,s=null){super(e,t,r,s),this.isSampledTexture3D=!0}}const HS={bitcast_int_uint:new jx("uint tsl_bitcast_int_to_uint ( int x ) { return floatBitsToUint( intBitsToFloat ( x ) ); }"),bitcast_uint_int:new jx("uint tsl_bitcast_uint_to_int ( uint x ) { return floatBitsToInt( uintBitsToFloat ( x ) ); }")},jS={textureDimensions:"textureSize",equals:"equal",bitcast_float_int:"floatBitsToInt",bitcast_int_float:"intBitsToFloat",bitcast_uint_float:"uintBitsToFloat",bitcast_float_uint:"floatBitsToUint",bitcast_uint_int:"tsl_bitcast_uint_to_int",bitcast_int_uint:"tsl_bitcast_int_to_uint",floatpack_snorm_2x16:"packSnorm2x16",floatpack_unorm_2x16:"packUnorm2x16",floatpack_float16_2x16:"packHalf2x16",floatunpack_snorm_2x16:"unpackSnorm2x16",floatunpack_unorm_2x16:"unpackUnorm2x16",floatunpack_float16_2x16:"unpackHalf2x16"},qS={low:"lowp",medium:"mediump",high:"highp"},XS={swizzleAssign:!0,storageBuffer:!1},KS={perspective:"smooth",linear:"noperspective"},YS={centroid:"centroid"},QS="\nprecision highp float;\nprecision highp int;\nprecision highp sampler2D;\nprecision highp sampler3D;\nprecision highp samplerCube;\nprecision highp sampler2DArray;\n\nprecision highp usampler2D;\nprecision highp usampler3D;\nprecision highp usamplerCube;\nprecision highp usampler2DArray;\n\nprecision highp isampler2D;\nprecision highp isampler3D;\nprecision highp isamplerCube;\nprecision highp isampler2DArray;\n\nprecision lowp sampler2DShadow;\nprecision lowp sampler2DArrayShadow;\nprecision lowp samplerCubeShadow;\n";class ZS extends BN{constructor(e,t){super(e,t,new ZN),this.uniformGroups={},this.transforms=[],this.extensions={},this.builtins={vertex:[],fragment:[],compute:[]}}needsToWorkingColorSpace(e){return!0===e.isVideoTexture&&e.colorSpace!==T}_include(e){const t=HS[e];return t.build(this),this.addInclude(t),t}getMethod(e){return void 0!==HS[e]&&this._include(e),jS[e]||e}getBitcastMethod(e,t){return this.getMethod(`bitcast_${t}_${e}`)}getFloatPackingMethod(e){return this.getMethod(`floatpack_${e}_2x16`)}getFloatUnpackingMethod(e){return this.getMethod(`floatunpack_${e}_2x16`)}getTernary(e,t,r){return`${e} ? ${t} : ${r}`}getOutputStructName(){return""}buildFunctionCode(e){const t=e.layout,r=this.flowShaderNode(e),s=[];for(const e of t.inputs)s.push(this.getType(e.type)+" "+e.name);return`${this.getType(t.type)} ${t.name}( ${s.join(", ")} ) {\n\n\t${r.vars}\n\n${r.code}\n\treturn ${r.result};\n\n}`}setupPBO(e){const t=e.value;if(void 0===t.pbo){const e=t.array,r=t.count*t.itemSize,{itemSize:s}=t,i=t.array.constructor.name.toLowerCase().includes("int");let n=i?mt:ft;2===s?n=i?Tt:V:3===s?n=i?_t:vt:4===s&&(n=i?Nt:Ne);const a={Float32Array:H,Uint8Array:ke,Uint16Array:xt,Uint32Array:S,Int8Array:bt,Int16Array:yt,Int32Array:R,Uint8ClampedArray:ke},o=Math.pow(2,Math.ceil(Math.log2(Math.sqrt(r/s))));let u=Math.ceil(r/s/o);o*u*s0?s:"";t=`${e.name} {\n\t${r} ${i.name}[${n}];\n};\n`}else{t=`${this.getVectorType(i.type)} ${this.getPropertyName(i,e)};`,n=!0}const a=i.node.precision;if(null!==a&&(t=qS[a]+" "+t),n){t="\t"+t;const e=i.groupNode.name;(s[e]||(s[e]=[])).push(t)}else t="uniform "+t,r.push(t)}let i="";for(const t in s){const r=s[t];i+=this._getGLSLUniformStruct(e+"_"+t,r.join("\n"))+"\n"}return i+=r.join("\n"),i}getTypeFromAttribute(e){let t=super.getTypeFromAttribute(e);if(/^[iu]/.test(t)&&e.gpuType!==R){let r=e;e.isInterleavedBufferAttribute&&(r=e.data);const s=r.array;!1==(s instanceof Uint32Array||s instanceof Int32Array)&&(t=t.slice(1))}return t}getAttributes(e){let t="";if("vertex"===e||"compute"===e){const e=this.getAttributesArray();let r=0;for(const s of e)t+=`layout( location = ${r++} ) in ${s.type} ${s.name};\n`}return t}getStructMembers(e){const t=[];for(const r of e.members)t.push(`\t${r.type} ${r.name};`);return t.join("\n")}getStructs(e){const t=[],r=this.structs[e],s=[];for(const e of r)if(e.output)for(const t of e.members)s.push(`layout( location = ${t.index} ) out ${t.type} ${t.name};`);else{let r="struct "+e.name+" {\n";r+=this.getStructMembers(e),r+="\n};\n",t.push(r)}return 0===s.length&&s.push("layout( location = 0 ) out vec4 fragColor;"),"\n"+s.join("\n")+"\n\n"+t.join("\n")}getVaryings(e){let t="";const r=this.varyings;if("vertex"===e||"compute"===e)for(const s of r){"compute"===e&&(s.needsInterpolation=!0);const r=this.getType(s.type);if(s.needsInterpolation)if(s.interpolationType){t+=`${KS[s.interpolationType]||s.interpolationType} ${YS[s.interpolationSampling]||""} out ${r} ${s.name};\n`}else{t+=`${r.includes("int")||r.includes("uv")||r.includes("iv")?"flat ":""}out ${r} ${s.name};\n`}else t+=`${r} ${s.name};\n`}else if("fragment"===e)for(const e of r)if(e.needsInterpolation){const r=this.getType(e.type);if(e.interpolationType){t+=`${KS[e.interpolationType]||e.interpolationType} ${YS[e.interpolationSampling]||""} in ${r} ${e.name};\n`}else{t+=`${r.includes("int")||r.includes("uv")||r.includes("iv")?"flat ":""}in ${r} ${e.name};\n`}}for(const r of this.builtins[e])t+=`${r};\n`;return t}getVertexIndex(){return"uint( gl_VertexID )"}getInstanceIndex(){return"uint( gl_InstanceID )"}getInvocationLocalIndex(){return`uint( gl_InstanceID ) % ${this.object.workgroupSize.reduce((e,t)=>e*t,1)}u`}getSubgroupSize(){o("GLSLNodeBuilder: WebGLBackend does not support the subgroupSize node")}getInvocationSubgroupIndex(){o("GLSLNodeBuilder: WebGLBackend does not support the invocationSubgroupIndex node")}getSubgroupIndex(){o("GLSLNodeBuilder: WebGLBackend does not support the subgroupIndex node")}getDrawIndex(){return this.renderer.backend.extensions.has("WEBGL_multi_draw")?"uint( gl_DrawID )":null}getFrontFacing(){return"gl_FrontFacing"}getFragCoord(){return"gl_FragCoord.xy"}getFragDepth(){return"gl_FragDepth"}enableExtension(e,t,r=this.shaderStage){const s=this.extensions[r]||(this.extensions[r]=new Map);!1===s.has(e)&&s.set(e,{name:e,behavior:t})}getExtensions(e){const t=[];if("vertex"===e){const t=this.renderer.backend.extensions;this.object.isBatchedMesh&&t.has("WEBGL_multi_draw")&&this.enableExtension("GL_ANGLE_multi_draw","require",e)}const r=this.extensions[e];if(void 0!==r)for(const{name:e,behavior:s}of r.values())t.push(`#extension ${e} : ${s}`);return t.join("\n")}getClipDistance(){return"gl_ClipDistance"}isAvailable(e){let t=XS[e];if(void 0===t){let r;switch(t=!1,e){case"float32Filterable":r="OES_texture_float_linear";break;case"clipDistance":r="WEBGL_clip_cull_distance"}if(void 0!==r){const e=this.renderer.backend.extensions;e.has(r)&&(e.get(r),t=!0)}XS[e]=t}return t}isFlipY(){return!0}enableHardwareClipping(e){this.enableExtension("GL_ANGLE_clip_cull_distance","require"),this.builtins.vertex.push(`out float gl_ClipDistance[ ${e} ]`)}enableMultiview(){this.enableExtension("GL_OVR_multiview2","require","fragment"),this.enableExtension("GL_OVR_multiview2","require","vertex"),this.builtins.vertex.push("layout(num_views = 2) in")}registerTransform(e,t){this.transforms.push({varyingName:e,attributeNode:t})}getTransforms(){const e=this.transforms;let t="";for(let r=0;r0&&(r+="\n"),r+=`\t// flow -> ${n}\n\t`),r+=`${s.code}\n\t`,e===i&&"compute"!==t&&(r+="// result\n\t","vertex"===t?(r+="gl_Position = ",r+=`${s.result};`):"fragment"===t&&(e.outputNode.isOutputStructNode||(r+="fragColor = ",r+=`${s.result};`)))}const n=e[t];n.extensions=this.getExtensions(t),n.uniforms=this.getUniforms(t),n.attributes=this.getAttributes(t),n.varyings=this.getVaryings(t),n.vars=this.getVars(t),n.structs=this.getStructs(t),n.codes=this.getCodes(t),n.transforms=this.getTransforms(t),n.flow=r}null!==this.material?(this.vertexShader=this._getGLSLVertexCode(e.vertex),this.fragmentShader=this._getGLSLFragmentCode(e.fragment)):this.computeShader=this._getGLSLVertexCode(e.compute)}getUniformFromNode(e,t,r,s=null){const i=super.getUniformFromNode(e,t,r,s),n=this.getDataFromNode(e,r,this.globalCache);let a=n.uniformGPU;if(void 0===a){const s=e.groupNode,o=s.name,u=this.getBindGroupArray(o,r);if("texture"===t)a=new zS(i.name,i.node,s),u.push(a);else if("cubeTexture"===t||"cubeDepthTexture"===t)a=new $S(i.name,i.node,s),u.push(a);else if("texture3D"===t)a=new WS(i.name,i.node,s),u.push(a);else if("buffer"===t){i.name=`buffer${e.id}`;const t=this.getSharedDataFromNode(e);let r=t.buffer;void 0===r&&(e.name=`NodeBuffer_${e.id}`,r=new DS(e,s),r.name=e.name,t.buffer=r),u.push(r),a=r}else{const e=this.uniformGroups[r]||(this.uniformGroups[r]={});let n=e[o];void 0===n&&(n=new OS(r+"_"+o,s),e[o]=n,u.push(n)),a=this.getNodeUniform(i,t),n.addUniform(a)}n.uniformGPU=a}return i}}let JS=null,eR=null;class tR{constructor(e={}){this.parameters=Object.assign({},e),this.data=new WeakMap,this.renderer=null,this.domElement=null,this.timestampQueryPool={[St.RENDER]:null,[St.COMPUTE]:null},this.trackTimestamp=!0===e.trackTimestamp}async init(e){this.renderer=e}get coordinateSystem(){}beginRender(){}finishRender(){}beginCompute(){}finishCompute(){}draw(){}compute(){}createProgram(){}destroyProgram(){}createBindings(){}updateBindings(){}updateBinding(){}createRenderPipeline(){}createComputePipeline(){}needsRenderUpdate(){}getRenderCacheKey(){}createNodeBuilder(){}updateSampler(){}createDefaultTexture(){}createTexture(){}updateTexture(){}generateMipmaps(){}destroyTexture(){}async copyTextureToBuffer(){}copyTextureToTexture(){}copyFramebufferToTexture(){}createAttribute(){}createIndexAttribute(){}createStorageAttribute(){}updateAttribute(){}destroyAttribute(){}getContext(){}updateSize(){}updateViewport(){}updateTimeStampUID(e){const t=this.get(e),r=this.renderer.info.frame;let s;s=!0===e.isComputeNode?"c:"+this.renderer.info.compute.frameCalls:"r:"+this.renderer.info.render.frameCalls,t.timestampUID=s+":"+e.id+":f"+r}getTimestampUID(e){return this.get(e).timestampUID}getTimestampFrames(e){const t=this.timestampQueryPool[e];return t?t.getTimestampFrames():[]}_getQueryPool(e){const t=e.startsWith("c:")?St.COMPUTE:St.RENDER;return this.timestampQueryPool[t]}getTimestamp(e){return this._getQueryPool(e).getTimestamp(e)}hasTimestamp(e){return this._getQueryPool(e).hasTimestamp(e)}isOccluded(){}async resolveTimestampsAsync(e="render"){if(!this.trackTimestamp)return void v("WebGPURenderer: Timestamp tracking is disabled.");const t=this.timestampQueryPool[e];if(!t)return;const r=await t.resolveQueriesAsync();return this.renderer.info[e].timestamp=r,r}async getArrayBufferAsync(){}async hasFeatureAsync(){}hasFeature(){}getMaxAnisotropy(){}getDrawingBufferSize(){return JS=JS||new t,this.renderer.getDrawingBufferSize(JS)}setScissorTest(){}getClearColor(){const e=this.renderer;return eR=eR||new Fy,e.getClearColor(eR),eR.getRGB(eR),eR}getDomElement(){let e=this.domElement;return null===e&&(e=void 0!==this.parameters.canvas?this.parameters.canvas:Rt(),"setAttribute"in e&&e.setAttribute("data-engine",`three.js r${tt} webgpu`),this.domElement=e),e}set(e,t){this.data.set(e,t)}get(e){let t=this.data.get(e);return void 0===t&&(t={},this.data.set(e,t)),t}has(e){return this.data.has(e)}deleteBindGroupData(){}delete(e){this.data.delete(e)}dispose(){}}let rR,sR,iR=0;class nR{constructor(e,t){this.buffers=[e.bufferGPU,t],this.type=e.type,this.bufferType=e.bufferType,this.pbo=e.pbo,this.byteLength=e.byteLength,this.bytesPerElement=e.BYTES_PER_ELEMENT,this.version=e.version,this.isInteger=e.isInteger,this.activeBufferIndex=0,this.baseId=e.id}get id(){return`${this.baseId}|${this.activeBufferIndex}`}get bufferGPU(){return this.buffers[this.activeBufferIndex]}get transformBuffer(){return this.buffers[1^this.activeBufferIndex]}switchBuffers(){this.activeBufferIndex^=1}}class aR{constructor(e){this.backend=e}createAttribute(e,t){const r=this.backend,{gl:s}=r,i=e.array,n=e.usage||s.STATIC_DRAW,a=e.isInterleavedBufferAttribute?e.data:e,o=r.get(a);let u,l=o.bufferGPU;if(void 0===l&&(l=this._createBuffer(s,t,i,n),o.bufferGPU=l,o.bufferType=t,o.version=a.version),i instanceof Float32Array)u=s.FLOAT;else if("undefined"!=typeof Float16Array&&i instanceof Float16Array)u=s.HALF_FLOAT;else if(i instanceof Uint16Array)u=e.isFloat16BufferAttribute?s.HALF_FLOAT:s.UNSIGNED_SHORT;else if(i instanceof Int16Array)u=s.SHORT;else if(i instanceof Uint32Array)u=s.UNSIGNED_INT;else if(i instanceof Int32Array)u=s.INT;else if(i instanceof Int8Array)u=s.BYTE;else if(i instanceof Uint8Array)u=s.UNSIGNED_BYTE;else{if(!(i instanceof Uint8ClampedArray))throw new Error("THREE.WebGLBackend: Unsupported buffer data format: "+i);u=s.UNSIGNED_BYTE}let d={bufferGPU:l,bufferType:t,type:u,byteLength:i.byteLength,bytesPerElement:i.BYTES_PER_ELEMENT,version:e.version,pbo:e.pbo,isInteger:u===s.INT||u===s.UNSIGNED_INT||e.gpuType===R,id:iR++};if(e.isStorageBufferAttribute||e.isStorageInstancedBufferAttribute){const e=this._createBuffer(s,t,i,n);d=new nR(d,e)}r.set(e,d)}updateAttribute(e){const t=this.backend,{gl:r}=t,s=e.array,i=e.isInterleavedBufferAttribute?e.data:e,n=t.get(i),a=n.bufferType,o=e.isInterleavedBufferAttribute?e.data.updateRanges:e.updateRanges;if(r.bindBuffer(a,n.bufferGPU),0===o.length)r.bufferSubData(a,0,s);else{for(let e=0,t=o.length;e0?this.enable(s.SAMPLE_ALPHA_TO_COVERAGE):this.disable(s.SAMPLE_ALPHA_TO_COVERAGE),r>0&&this.currentClippingPlanes!==r){const e=12288;for(let t=0;t<8;t++)t{!function i(){const n=e.clientWaitSync(t,e.SYNC_FLUSH_COMMANDS_BIT,0);if(n===e.WAIT_FAILED)return e.deleteSync(t),void s();n!==e.TIMEOUT_EXPIRED?(e.deleteSync(t),r()):requestAnimationFrame(i)}()})}}let lR,dR,cR,hR=!1;class pR{constructor(e){this.backend=e,this.gl=e.gl,this.extensions=e.extensions,this.defaultTextures={},this._srcFramebuffer=null,this._dstFramebuffer=null,!1===hR&&(this._init(),hR=!0)}_init(){const e=this.gl;lR={[Ur]:e.REPEAT,[ye]:e.CLAMP_TO_EDGE,[Dr]:e.MIRRORED_REPEAT},dR={[A]:e.NEAREST,[Ir]:e.NEAREST_MIPMAP_NEAREST,[Je]:e.NEAREST_MIPMAP_LINEAR,[ne]:e.LINEAR,[Ze]:e.LINEAR_MIPMAP_NEAREST,[q]:e.LINEAR_MIPMAP_LINEAR},cR={[Wr]:e.NEVER,[$r]:e.ALWAYS,[qe]:e.LESS,[zr]:e.LEQUAL,[Gr]:e.EQUAL,[kr]:e.GEQUAL,[Vr]:e.GREATER,[Or]:e.NOTEQUAL}}getGLTextureType(e){const{gl:t}=this;let r;return r=!0===e.isCubeTexture?t.TEXTURE_CUBE_MAP:!0===e.isArrayTexture||!0===e.isDataArrayTexture||!0===e.isCompressedArrayTexture?t.TEXTURE_2D_ARRAY:!0===e.isData3DTexture?t.TEXTURE_3D:t.TEXTURE_2D,r}getInternalFormat(e,t,r,s,i=!1){const{gl:n,extensions:a}=this;if(null!==e){if(void 0!==n[e])return n[e];d("WebGLBackend: Attempt to use non-existing WebGL internal format '"+e+"'")}let o=t;if(t===n.RED&&(r===n.FLOAT&&(o=n.R32F),r===n.HALF_FLOAT&&(o=n.R16F),r===n.UNSIGNED_BYTE&&(o=n.R8),r===n.UNSIGNED_SHORT&&(o=n.R16),r===n.UNSIGNED_INT&&(o=n.R32UI),r===n.BYTE&&(o=n.R8I),r===n.SHORT&&(o=n.R16I),r===n.INT&&(o=n.R32I)),t===n.RED_INTEGER&&(r===n.UNSIGNED_BYTE&&(o=n.R8UI),r===n.UNSIGNED_SHORT&&(o=n.R16UI),r===n.UNSIGNED_INT&&(o=n.R32UI),r===n.BYTE&&(o=n.R8I),r===n.SHORT&&(o=n.R16I),r===n.INT&&(o=n.R32I)),t===n.RG&&(r===n.FLOAT&&(o=n.RG32F),r===n.HALF_FLOAT&&(o=n.RG16F),r===n.UNSIGNED_BYTE&&(o=n.RG8),r===n.UNSIGNED_SHORT&&(o=n.RG16),r===n.UNSIGNED_INT&&(o=n.RG32UI),r===n.BYTE&&(o=n.RG8I),r===n.SHORT&&(o=n.RG16I),r===n.INT&&(o=n.RG32I)),t===n.RG_INTEGER&&(r===n.UNSIGNED_BYTE&&(o=n.RG8UI),r===n.UNSIGNED_SHORT&&(o=n.RG16UI),r===n.UNSIGNED_INT&&(o=n.RG32UI),r===n.BYTE&&(o=n.RG8I),r===n.SHORT&&(o=n.RG16I),r===n.INT&&(o=n.RG32I)),t===n.RGB){const e=i?Hr:p.getTransfer(s);r===n.FLOAT&&(o=n.RGB32F),r===n.HALF_FLOAT&&(o=n.RGB16F),r===n.UNSIGNED_BYTE&&(o=n.RGB8),r===n.UNSIGNED_SHORT&&(o=n.RGB16),r===n.UNSIGNED_INT&&(o=n.RGB32UI),r===n.BYTE&&(o=n.RGB8I),r===n.SHORT&&(o=n.RGB16I),r===n.INT&&(o=n.RGB32I),r===n.UNSIGNED_BYTE&&(o=e===g?n.SRGB8:n.RGB8),r===n.UNSIGNED_SHORT_5_6_5&&(o=n.RGB565),r===n.UNSIGNED_SHORT_5_5_5_1&&(o=n.RGB5_A1),r===n.UNSIGNED_SHORT_4_4_4_4&&(o=n.RGB4),r===n.UNSIGNED_INT_5_9_9_9_REV&&(o=n.RGB9_E5),r===n.UNSIGNED_INT_10F_11F_11F_REV&&(o=n.R11F_G11F_B10F)}if(t===n.RGB_INTEGER&&(r===n.UNSIGNED_BYTE&&(o=n.RGB8UI),r===n.UNSIGNED_SHORT&&(o=n.RGB16UI),r===n.UNSIGNED_INT&&(o=n.RGB32UI),r===n.BYTE&&(o=n.RGB8I),r===n.SHORT&&(o=n.RGB16I),r===n.INT&&(o=n.RGB32I)),t===n.RGBA){const e=i?Hr:p.getTransfer(s);r===n.FLOAT&&(o=n.RGBA32F),r===n.HALF_FLOAT&&(o=n.RGBA16F),r===n.UNSIGNED_BYTE&&(o=n.RGBA8),r===n.UNSIGNED_SHORT&&(o=n.RGBA16),r===n.UNSIGNED_INT&&(o=n.RGBA32UI),r===n.BYTE&&(o=n.RGBA8I),r===n.SHORT&&(o=n.RGBA16I),r===n.INT&&(o=n.RGBA32I),r===n.UNSIGNED_BYTE&&(o=e===g?n.SRGB8_ALPHA8:n.RGBA8),r===n.UNSIGNED_SHORT_4_4_4_4&&(o=n.RGBA4),r===n.UNSIGNED_SHORT_5_5_5_1&&(o=n.RGB5_A1)}return t===n.RGBA_INTEGER&&(r===n.UNSIGNED_BYTE&&(o=n.RGBA8UI),r===n.UNSIGNED_SHORT&&(o=n.RGBA16UI),r===n.UNSIGNED_INT&&(o=n.RGBA32UI),r===n.BYTE&&(o=n.RGBA8I),r===n.SHORT&&(o=n.RGBA16I),r===n.INT&&(o=n.RGBA32I)),t===n.DEPTH_COMPONENT&&(r===n.UNSIGNED_SHORT&&(o=n.DEPTH_COMPONENT16),r===n.UNSIGNED_INT&&(o=n.DEPTH_COMPONENT24),r===n.FLOAT&&(o=n.DEPTH_COMPONENT32F)),t===n.DEPTH_STENCIL&&r===n.UNSIGNED_INT_24_8&&(o=n.DEPTH24_STENCIL8),o!==n.R16F&&o!==n.R32F&&o!==n.RG16F&&o!==n.RG32F&&o!==n.RGBA16F&&o!==n.RGBA32F||a.get("EXT_color_buffer_float"),o}setTextureParameters(e,t){const{gl:r,extensions:s,backend:i}=this,n=p.getPrimaries(p.workingColorSpace),a=t.colorSpace===T?null:p.getPrimaries(t.colorSpace),o=t.colorSpace===T||n===a?r.NONE:r.BROWSER_DEFAULT_WEBGL;r.pixelStorei(r.UNPACK_FLIP_Y_WEBGL,t.flipY),r.pixelStorei(r.UNPACK_PREMULTIPLY_ALPHA_WEBGL,t.premultiplyAlpha),r.pixelStorei(r.UNPACK_ALIGNMENT,t.unpackAlignment),r.pixelStorei(r.UNPACK_COLORSPACE_CONVERSION_WEBGL,o),r.texParameteri(e,r.TEXTURE_WRAP_S,lR[t.wrapS]),r.texParameteri(e,r.TEXTURE_WRAP_T,lR[t.wrapT]),e!==r.TEXTURE_3D&&e!==r.TEXTURE_2D_ARRAY||t.isArrayTexture||r.texParameteri(e,r.TEXTURE_WRAP_R,lR[t.wrapR]),r.texParameteri(e,r.TEXTURE_MAG_FILTER,dR[t.magFilter]);const u=void 0!==t.mipmaps&&t.mipmaps.length>0,l=t.minFilter===ne&&u?q:t.minFilter;if(r.texParameteri(e,r.TEXTURE_MIN_FILTER,dR[l]),t.compareFunction&&(r.texParameteri(e,r.TEXTURE_COMPARE_MODE,r.COMPARE_REF_TO_TEXTURE),r.texParameteri(e,r.TEXTURE_COMPARE_FUNC,cR[t.compareFunction])),!0===s.has("EXT_texture_filter_anisotropic")){if(t.magFilter===A)return;if(t.minFilter!==Je&&t.minFilter!==q)return;if(t.type===H&&!1===s.has("OES_texture_float_linear"))return;if(t.anisotropy>1){const n=s.get("EXT_texture_filter_anisotropic");r.texParameterf(e,n.TEXTURE_MAX_ANISOTROPY_EXT,Math.min(t.anisotropy,i.getMaxAnisotropy()))}}}createDefaultTexture(e){const{gl:t,backend:r,defaultTextures:s}=this,i=this.getGLTextureType(e);let n=s[i];void 0===n&&(n=t.createTexture(),r.state.bindTexture(i,n),t.texParameteri(i,t.TEXTURE_MIN_FILTER,t.NEAREST),t.texParameteri(i,t.TEXTURE_MAG_FILTER,t.NEAREST),s[i]=n),r.set(e,{textureGPU:n,glTextureType:i})}createTexture(e,t){const{gl:r,backend:s}=this,{levels:i,width:n,height:a,depth:o}=t,u=s.utils.convert(e.format,e.colorSpace),l=s.utils.convert(e.type),d=this.getInternalFormat(e.internalFormat,u,l,e.colorSpace,e.isVideoTexture),c=r.createTexture(),h=this.getGLTextureType(e);s.state.bindTexture(h,c),this.setTextureParameters(h,e),e.isArrayTexture||e.isDataArrayTexture||e.isCompressedArrayTexture?r.texStorage3D(r.TEXTURE_2D_ARRAY,i,d,n,a,o):e.isData3DTexture?r.texStorage3D(r.TEXTURE_3D,i,d,n,a,o):e.isVideoTexture||r.texStorage2D(h,i,d,n,a),s.set(e,{textureGPU:c,glTextureType:h,glFormat:u,glType:l,glInternalFormat:d})}copyBufferToTexture(e,t){const{gl:r,backend:s}=this,{textureGPU:i,glTextureType:n,glFormat:a,glType:o}=s.get(t),{width:u,height:l}=t.source.data;r.bindBuffer(r.PIXEL_UNPACK_BUFFER,e),s.state.bindTexture(n,i),r.pixelStorei(r.UNPACK_FLIP_Y_WEBGL,!1),r.pixelStorei(r.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!1),r.texSubImage2D(n,0,0,0,u,l,a,o,0),r.bindBuffer(r.PIXEL_UNPACK_BUFFER,null),s.state.unbindTexture()}updateTexture(e,t){const{gl:r}=this,{width:s,height:i}=t,{textureGPU:n,glTextureType:a,glFormat:o,glType:u,glInternalFormat:l}=this.backend.get(e);if(!e.isRenderTargetTexture&&void 0!==n)if(this.backend.state.bindTexture(a,n),this.setTextureParameters(a,e),e.isCompressedTexture){const s=e.mipmaps,i=t.image;for(let t=0;t0){const t=jr(s.width,s.height,e.format,e.type);for(const i of e.layerUpdates){const e=s.data.subarray(i*t/s.data.BYTES_PER_ELEMENT,(i+1)*t/s.data.BYTES_PER_ELEMENT);r.texSubImage3D(r.TEXTURE_2D_ARRAY,0,0,0,i,s.width,s.height,1,o,u,e)}e.clearLayerUpdates()}else r.texSubImage3D(r.TEXTURE_2D_ARRAY,0,0,0,0,s.width,s.height,s.depth,o,u,s.data)}else if(e.isData3DTexture){const e=t.image;r.texSubImage3D(r.TEXTURE_3D,0,0,0,0,e.width,e.height,e.depth,o,u,e.data)}else if(e.isVideoTexture)e.update(),r.texImage2D(a,0,l,o,u,t.image);else{const n=e.mipmaps;if(n.length>0)for(let e=0,t=n.length;e0,c=t.renderTarget?t.renderTarget.height:this.backend.getDrawingBufferSize().y;if(d){const r=0!==a||0!==o;let d,h;if(!0===e.isDepthTexture?(d=s.DEPTH_BUFFER_BIT,h=s.DEPTH_ATTACHMENT,t.stencil&&(d|=s.STENCIL_BUFFER_BIT)):(d=s.COLOR_BUFFER_BIT,h=s.COLOR_ATTACHMENT0),r){const e=this.backend.get(t.renderTarget),r=e.framebuffers[t.getCacheKey()],h=e.msaaFrameBuffer;i.bindFramebuffer(s.DRAW_FRAMEBUFFER,r),i.bindFramebuffer(s.READ_FRAMEBUFFER,h);const p=c-o-l;s.blitFramebuffer(a,p,a+u,p+l,a,p,a+u,p+l,d,s.NEAREST),i.bindFramebuffer(s.READ_FRAMEBUFFER,r),i.bindTexture(s.TEXTURE_2D,n),s.copyTexSubImage2D(s.TEXTURE_2D,0,0,0,a,p,u,l),i.unbindTexture()}else{const e=s.createFramebuffer();i.bindFramebuffer(s.DRAW_FRAMEBUFFER,e),s.framebufferTexture2D(s.DRAW_FRAMEBUFFER,h,s.TEXTURE_2D,n,0),s.blitFramebuffer(0,0,u,l,0,0,u,l,d,s.NEAREST),s.deleteFramebuffer(e)}}else i.bindTexture(s.TEXTURE_2D,n),s.copyTexSubImage2D(s.TEXTURE_2D,0,0,0,a,c-l-o,u,l),i.unbindTexture();e.generateMipmaps&&this.generateMipmaps(e),this.backend._setFramebuffer(t)}setupRenderBufferStorage(e,t,r,s=!1){const{gl:i}=this,n=t.renderTarget,{depthTexture:a,depthBuffer:o,stencilBuffer:u,width:l,height:d}=n;if(i.bindRenderbuffer(i.RENDERBUFFER,e),o&&!u){let t=i.DEPTH_COMPONENT24;if(!0===s){this.extensions.get("WEBGL_multisampled_render_to_texture").renderbufferStorageMultisampleEXT(i.RENDERBUFFER,n.samples,t,l,d)}else r>0?(a&&a.isDepthTexture&&a.type===i.FLOAT&&(t=i.DEPTH_COMPONENT32F),i.renderbufferStorageMultisample(i.RENDERBUFFER,r,t,l,d)):i.renderbufferStorage(i.RENDERBUFFER,t,l,d);i.framebufferRenderbuffer(i.FRAMEBUFFER,i.DEPTH_ATTACHMENT,i.RENDERBUFFER,e)}else o&&u&&(r>0?i.renderbufferStorageMultisample(i.RENDERBUFFER,r,i.DEPTH24_STENCIL8,l,d):i.renderbufferStorage(i.RENDERBUFFER,i.DEPTH_STENCIL,l,d),i.framebufferRenderbuffer(i.FRAMEBUFFER,i.DEPTH_STENCIL_ATTACHMENT,i.RENDERBUFFER,e));i.bindRenderbuffer(i.RENDERBUFFER,null)}async copyTextureToBuffer(e,t,r,s,i,n){const{backend:a,gl:o}=this,{textureGPU:u,glFormat:l,glType:d}=this.backend.get(e),c=o.createFramebuffer();o.bindFramebuffer(o.READ_FRAMEBUFFER,c);const h=e.isCubeTexture?o.TEXTURE_CUBE_MAP_POSITIVE_X+n:o.TEXTURE_2D;o.framebufferTexture2D(o.READ_FRAMEBUFFER,o.COLOR_ATTACHMENT0,h,u,0);const p=this._getTypedArrayType(d),g=s*i*this._getBytesPerTexel(d,l),m=o.createBuffer();o.bindBuffer(o.PIXEL_PACK_BUFFER,m),o.bufferData(o.PIXEL_PACK_BUFFER,g,o.STREAM_READ),o.readPixels(t,r,s,i,l,d,0),o.bindBuffer(o.PIXEL_PACK_BUFFER,null),await a.utils._clientWaitAsync();const f=new p(g/p.BYTES_PER_ELEMENT);return o.bindBuffer(o.PIXEL_PACK_BUFFER,m),o.getBufferSubData(o.PIXEL_PACK_BUFFER,0,f),o.bindBuffer(o.PIXEL_PACK_BUFFER,null),o.deleteFramebuffer(c),f}_getTypedArrayType(e){const{gl:t}=this;if(e===t.UNSIGNED_BYTE)return Uint8Array;if(e===t.UNSIGNED_SHORT_4_4_4_4)return Uint16Array;if(e===t.UNSIGNED_SHORT_5_5_5_1)return Uint16Array;if(e===t.UNSIGNED_SHORT_5_6_5)return Uint16Array;if(e===t.UNSIGNED_SHORT)return Uint16Array;if(e===t.UNSIGNED_INT)return Uint32Array;if(e===t.HALF_FLOAT)return Uint16Array;if(e===t.FLOAT)return Float32Array;throw new Error(`Unsupported WebGL type: ${e}`)}_getBytesPerTexel(e,t){const{gl:r}=this;let s=0;return e===r.UNSIGNED_BYTE&&(s=1),e!==r.UNSIGNED_SHORT_4_4_4_4&&e!==r.UNSIGNED_SHORT_5_5_5_1&&e!==r.UNSIGNED_SHORT_5_6_5&&e!==r.UNSIGNED_SHORT&&e!==r.HALF_FLOAT||(s=2),e!==r.UNSIGNED_INT&&e!==r.FLOAT||(s=4),t===r.RGBA?4*s:t===r.RGB?3*s:t===r.ALPHA?s:void 0}dispose(){const{gl:e}=this;null!==this._srcFramebuffer&&e.deleteFramebuffer(this._srcFramebuffer),null!==this._dstFramebuffer&&e.deleteFramebuffer(this._dstFramebuffer)}}function gR(e){return e.isDataTexture?e.image.data:"undefined"!=typeof HTMLImageElement&&e instanceof HTMLImageElement||"undefined"!=typeof HTMLCanvasElement&&e instanceof HTMLCanvasElement||"undefined"!=typeof ImageBitmap&&e instanceof ImageBitmap||"undefined"!=typeof OffscreenCanvas&&e instanceof OffscreenCanvas?e:e.data}class mR{constructor(e){this.backend=e,this.gl=this.backend.gl,this.availableExtensions=this.gl.getSupportedExtensions(),this.extensions={}}get(e){let t=this.extensions[e];return void 0===t&&(t=this.gl.getExtension(e),this.extensions[e]=t),t}has(e){return this.availableExtensions.includes(e)}}class fR{constructor(e){this.backend=e,this.maxAnisotropy=null}getMaxAnisotropy(){if(null!==this.maxAnisotropy)return this.maxAnisotropy;const e=this.backend.gl,t=this.backend.extensions;if(!0===t.has("EXT_texture_filter_anisotropic")){const r=t.get("EXT_texture_filter_anisotropic");this.maxAnisotropy=e.getParameter(r.MAX_TEXTURE_MAX_ANISOTROPY_EXT)}else this.maxAnisotropy=0;return this.maxAnisotropy}}const yR={WEBGL_multi_draw:"WEBGL_multi_draw",WEBGL_compressed_texture_astc:"texture-compression-astc",WEBGL_compressed_texture_etc:"texture-compression-etc2",WEBGL_compressed_texture_etc1:"texture-compression-etc1",WEBGL_compressed_texture_pvrtc:"texture-compression-pvrtc",WEBGL_compressed_texture_s3tc:"texture-compression-s3tc",EXT_texture_compression_bptc:"texture-compression-bc",EXT_disjoint_timer_query_webgl2:"timestamp-query",OVR_multiview2:"OVR_multiview2"};class bR{constructor(e){this.gl=e.gl,this.extensions=e.extensions,this.info=e.renderer.info,this.mode=null,this.index=0,this.type=null,this.object=null}render(e,t){const{gl:r,mode:s,object:i,type:n,info:a,index:o}=this;0!==o?r.drawElements(s,t,n,e):r.drawArrays(s,e,t),a.update(i,t,1)}renderInstances(e,t,r){const{gl:s,mode:i,type:n,index:a,object:o,info:u}=this;0!==r&&(0!==a?s.drawElementsInstanced(i,t,n,e,r):s.drawArraysInstanced(i,e,t,r),u.update(o,t,r))}renderMultiDraw(e,t,r){const{extensions:s,mode:i,object:n,info:a}=this;if(0===r)return;const o=s.get("WEBGL_multi_draw");if(null===o)for(let s=0;sthis.maxQueries)return v(`WebGPUTimestampQueryPool [${this.type}]: Maximum number of queries exceeded, when using trackTimestamp it is necessary to resolves the queries via renderer.resolveTimestampsAsync( THREE.TimestampQuery.${this.type.toUpperCase()} ).`),null;const t=this.currentQueryIndex;return this.currentQueryIndex+=2,this.queryStates.set(t,"inactive"),this.queryOffsets.set(e,t),t}beginQuery(e){if(!this.trackTimestamp||this.isDisposed)return;const t=this.queryOffsets.get(e);if(null==t)return;if(null!==this.activeQuery)return;const r=this.queries[t];if(r)try{"inactive"===this.queryStates.get(t)&&(this.gl.beginQuery(this.ext.TIME_ELAPSED_EXT,r),this.activeQuery=t,this.queryStates.set(t,"started"))}catch(e){o("Error in beginQuery:",e),this.activeQuery=null,this.queryStates.set(t,"inactive")}}endQuery(e){if(!this.trackTimestamp||this.isDisposed)return;const t=this.queryOffsets.get(e);if(null!=t&&this.activeQuery===t)try{this.gl.endQuery(this.ext.TIME_ELAPSED_EXT),this.queryStates.set(t,"ended"),this.activeQuery=null}catch(e){o("Error in endQuery:",e),this.queryStates.set(t,"inactive"),this.activeQuery=null}}async resolveQueriesAsync(){if(!this.trackTimestamp||this.pendingResolve)return this.lastValue;this.pendingResolve=!0;try{const e=new Map;for(const[t,r]of this.queryOffsets){if("ended"===this.queryStates.get(r)){const s=this.queries[r];e.set(t,this.resolveQuery(s))}}if(0===e.size)return this.lastValue;const t={},r=[];for(const[s,i]of e){const e=s.match(/^(.*):f(\d+)$/),n=parseInt(e[2]);!1===r.includes(n)&&r.push(n),void 0===t[n]&&(t[n]=0);const a=await i;this.timestamps.set(s,a),t[n]+=a}const s=t[r[r.length-1]];return this.lastValue=s,this.frames=r,this.currentQueryIndex=0,this.queryOffsets.clear(),this.queryStates.clear(),this.activeQuery=null,s}catch(e){return o("Error resolving queries:",e),this.lastValue}finally{this.pendingResolve=!1}}async resolveQuery(e){return new Promise(t=>{if(this.isDisposed)return void t(this.lastValue);let r,s=!1;const i=e=>{s||(s=!0,r&&(clearTimeout(r),r=null),t(e))},n=()=>{if(this.isDisposed)i(this.lastValue);else try{if(this.gl.getParameter(this.ext.GPU_DISJOINT_EXT))return void i(this.lastValue);if(!this.gl.getQueryParameter(e,this.gl.QUERY_RESULT_AVAILABLE))return void(r=setTimeout(n,1));const s=this.gl.getQueryParameter(e,this.gl.QUERY_RESULT);t(Number(s)/1e6)}catch(e){o("Error checking query:",e),t(this.lastValue)}};n()})}dispose(){if(!this.isDisposed&&(this.isDisposed=!0,this.trackTimestamp)){for(const e of this.queries)this.gl.deleteQuery(e);this.queries=[],this.queryStates.clear(),this.queryOffsets.clear(),this.lastValue=0,this.activeQuery=null}}}class _R extends tR{constructor(e={}){super(e),this.isWebGLBackend=!0,this.attributeUtils=null,this.extensions=null,this.capabilities=null,this.textureUtils=null,this.bufferRenderer=null,this.gl=null,this.state=null,this.utils=null,this.vaoCache={},this.transformFeedbackCache={},this.discard=!1,this.disjoint=null,this.parallel=null,this._currentContext=null,this._knownBindings=new WeakSet,this._supportsInvalidateFramebuffer="undefined"!=typeof navigator&&/OculusBrowser/g.test(navigator.userAgent),this._xrFramebuffer=null}init(e){super.init(e);const t=this.parameters,r={antialias:e.currentSamples>0,alpha:!0,depth:e.depth,stencil:e.stencil},s=void 0!==t.context?t.context:e.domElement.getContext("webgl2",r);function i(t){t.preventDefault();const r={api:"WebGL",message:t.statusMessage||"Unknown reason",reason:null,originalEvent:t};e.onDeviceLost(r)}this._onContextLost=i,e.domElement.addEventListener("webglcontextlost",i,!1),this.gl=s,this.extensions=new mR(this),this.capabilities=new fR(this),this.attributeUtils=new aR(this),this.textureUtils=new pR(this),this.bufferRenderer=new bR(this),this.state=new oR(this),this.utils=new uR(this),this.extensions.get("EXT_color_buffer_float"),this.extensions.get("WEBGL_clip_cull_distance"),this.extensions.get("OES_texture_float_linear"),this.extensions.get("EXT_color_buffer_half_float"),this.extensions.get("WEBGL_multisampled_render_to_texture"),this.extensions.get("WEBGL_render_shared_exponent"),this.extensions.get("WEBGL_multi_draw"),this.extensions.get("OVR_multiview2"),this.disjoint=this.extensions.get("EXT_disjoint_timer_query_webgl2"),this.parallel=this.extensions.get("KHR_parallel_shader_compile"),this.drawBuffersIndexedExt=this.extensions.get("OES_draw_buffers_indexed")}get coordinateSystem(){return c}async getArrayBufferAsync(e){return await this.attributeUtils.getArrayBufferAsync(e)}async makeXRCompatible(){!0!==this.gl.getContextAttributes().xrCompatible&&await this.gl.makeXRCompatible()}setXRTarget(e){this._xrFramebuffer=e}setXRRenderTargetTextures(e,t,r=null){const s=this.gl;if(this.set(e.texture,{textureGPU:t,glInternalFormat:s.RGBA8}),null!==r){const t=e.stencilBuffer?s.DEPTH24_STENCIL8:s.DEPTH_COMPONENT24;this.set(e.depthTexture,{textureGPU:r,glInternalFormat:t}),!0===this.extensions.has("WEBGL_multisampled_render_to_texture")&&!0===e._autoAllocateDepthBuffer&&!1===e.multiview&&d("WebGLBackend: Render-to-texture extension was disabled because an external texture was provided"),e._autoAllocateDepthBuffer=!1}}initTimestampQuery(e,t){if(!this.disjoint||!this.trackTimestamp)return;this.timestampQueryPool[e]||(this.timestampQueryPool[e]=new TR(this.gl,e,2048));const r=this.timestampQueryPool[e];null!==r.allocateQueriesForContext(t)&&r.beginQuery(t)}prepareTimestampBuffer(e,t){if(!this.disjoint||!this.trackTimestamp)return;this.timestampQueryPool[e].endQuery(t)}getContext(){return this.gl}beginRender(e){const{state:t}=this,r=this.get(e);if(e.viewport)this.updateViewport(e);else{const{width:e,height:r}=this.getDrawingBufferSize();t.viewport(0,0,e,r)}if(e.scissor){const{x:r,y:s,width:i,height:n}=e.scissorValue;t.scissor(r,e.height-n-s,i,n)}this.initTimestampQuery(St.RENDER,this.getTimestampUID(e)),r.previousContext=this._currentContext,this._currentContext=e,this._setFramebuffer(e),this.clear(e.clearColor,e.clearDepth,e.clearStencil,e,!1);const s=e.occlusionQueryCount;s>0&&(r.currentOcclusionQueries=r.occlusionQueries,r.currentOcclusionQueryObjects=r.occlusionQueryObjects,r.lastOcclusionObject=null,r.occlusionQueries=new Array(s),r.occlusionQueryObjects=new Array(s),r.occlusionQueryIndex=0)}finishRender(e){const{gl:t,state:r}=this,s=this.get(e),i=s.previousContext;r.resetVertexState();const n=e.occlusionQueryCount;n>0&&(n>s.occlusionQueryIndex&&t.endQuery(t.ANY_SAMPLES_PASSED),this.resolveOccludedAsync(e));const a=e.textures;if(null!==a)for(let e=0;e{let a=0;for(let t=0;t1&&u.setMRTBlending(i.textures),u.useProgram(a);const h=e.getAttributes(),p=this.get(h);let g=p.vaoGPU;if(void 0===g){const e=this._getVaoKey(h);g=this.vaoCache[e],void 0===g&&(g=this._createVao(h),this.vaoCache[e]=g,p.vaoGPU=g)}const m=e.getIndex(),f=null!==m?this.get(m).bufferGPU:null;u.setVertexState(g,f);const y=l.lastOcclusionObject;if(y!==t&&void 0!==y){if(null!==y&&!0===y.occlusionTest&&(o.endQuery(o.ANY_SAMPLES_PASSED),l.occlusionQueryIndex++),!0===t.occlusionTest){const e=o.createQuery();o.beginQuery(o.ANY_SAMPLES_PASSED,e),l.occlusionQueries[l.occlusionQueryIndex]=e,l.occlusionQueryObjects[l.occlusionQueryIndex]=t}l.lastOcclusionObject=t}const b=this.bufferRenderer;t.isPoints?b.mode=o.POINTS:t.isLineSegments?b.mode=o.LINES:t.isLine?b.mode=o.LINE_STRIP:t.isLineLoop?b.mode=o.LINE_LOOP:!0===s.wireframe?(u.setLineWidth(s.wireframeLinewidth*this.renderer.getPixelRatio()),b.mode=o.LINES):b.mode=o.TRIANGLES;const{vertexCount:x,instanceCount:T}=d;let{firstVertex:_}=d;if(b.object=t,null!==m){_*=m.array.BYTES_PER_ELEMENT;const e=this.get(m);b.index=m.count,b.type=e.type}else b.index=0;const N=()=>{t.isBatchedMesh?null!==t._multiDrawInstances?(v("WebGLBackend: renderMultiDrawInstances has been deprecated and will be removed in r184. Append to renderMultiDraw arguments and use indirection."),b.renderMultiDrawInstances(t._multiDrawStarts,t._multiDrawCounts,t._multiDrawCount,t._multiDrawInstances)):this.hasFeature("WEBGL_multi_draw")?b.renderMultiDraw(t._multiDrawStarts,t._multiDrawCounts,t._multiDrawCount):v("WebGLBackend: WEBGL_multi_draw not supported."):T>1?b.renderInstances(_,x,T):b.render(_,x)};if(!0===e.camera.isArrayCamera&&e.camera.cameras.length>0&&!1===e.camera.isMultiViewCamera){const r=this.get(e.camera),s=e.camera.cameras,i=e.getBindingGroup("cameraIndex").bindings[0];if(void 0===r.indexesGPU||r.indexesGPU.length!==s.length){const e=new Uint32Array([0,0,0,0]),t=[];for(let r=0,i=s.length;r{const i=this.parallel,n=()=>{r.getProgramParameter(a,i.COMPLETION_STATUS_KHR)?(this._completeCompile(e,s),t()):requestAnimationFrame(n)};n()});return void t.push(i)}this._completeCompile(e,s)}_handleSource(e,t){const r=e.split("\n"),s=[],i=Math.max(t-6,0),n=Math.min(t+6,r.length);for(let e=i;e":" "} ${i}: ${r[e]}`)}return s.join("\n")}_getShaderErrors(e,t,r){const s=e.getShaderParameter(t,e.COMPILE_STATUS),i=(e.getShaderInfoLog(t)||"").trim();if(s&&""===i)return"";const n=/ERROR: 0:(\d+)/.exec(i);if(n){const s=parseInt(n[1]);return r.toUpperCase()+"\n\n"+i+"\n\n"+this._handleSource(e.getShaderSource(t),s)}return i}_logProgramError(e,t,r){if(this.renderer.debug.checkShaderErrors){const s=this.gl,i=(s.getProgramInfoLog(e)||"").trim();if(!1===s.getProgramParameter(e,s.LINK_STATUS))if("function"==typeof this.renderer.debug.onShaderError)this.renderer.debug.onShaderError(s,e,r,t);else{const n=this._getShaderErrors(s,r,"vertex"),a=this._getShaderErrors(s,t,"fragment");o("THREE.WebGLProgram: Shader Error "+s.getError()+" - VALIDATE_STATUS "+s.getProgramParameter(e,s.VALIDATE_STATUS)+"\n\nProgram Info Log: "+i+"\n"+n+"\n"+a)}else""!==i&&d("WebGLProgram: Program Info Log:",i)}}_completeCompile(e,t){const{state:r,gl:s}=this,i=this.get(t),{programGPU:n,fragmentShader:a,vertexShader:o}=i;!1===s.getProgramParameter(n,s.LINK_STATUS)&&this._logProgramError(n,a,o),r.useProgram(n);const u=e.getBindings();this._setupBindings(u,n),this.set(t,{programGPU:n})}createComputePipeline(e,t){const{state:r,gl:s}=this,i={stage:"fragment",code:"#version 300 es\nprecision highp float;\nvoid main() {}"};this.createProgram(i);const{computeProgram:n}=e,a=s.createProgram(),o=this.get(i).shaderGPU,u=this.get(n).shaderGPU,l=n.transforms,d=[],c=[];for(let e=0;eyR[t]===e),r=this.extensions;for(let e=0;e1,h=!0===i.isXRRenderTarget,p=!0===h&&!0===i._hasExternalTextures;let g=n.msaaFrameBuffer,m=n.depthRenderbuffer;const f=this.extensions.get("WEBGL_multisampled_render_to_texture"),y=this.extensions.get("OVR_multiview2"),b=this._useMultisampledExtension(i),x=Ey(e);let T;if(l?(n.cubeFramebuffers||(n.cubeFramebuffers={}),T=n.cubeFramebuffers[x]):h&&!1===p?T=this._xrFramebuffer:(n.framebuffers||(n.framebuffers={}),T=n.framebuffers[x]),void 0===T){T=t.createFramebuffer(),r.bindFramebuffer(t.FRAMEBUFFER,T);const s=e.textures,o=[];if(l){n.cubeFramebuffers[x]=T;const{textureGPU:e}=this.get(s[0]),r=this.renderer._activeCubeFace,i=this.renderer._activeMipmapLevel;t.framebufferTexture2D(t.FRAMEBUFFER,t.COLOR_ATTACHMENT0,t.TEXTURE_CUBE_MAP_POSITIVE_X+r,e,i)}else{n.framebuffers[x]=T;for(let r=0;r0&&!1===b&&!i.multiview){if(void 0===g){const s=[];g=t.createFramebuffer(),r.bindFramebuffer(t.FRAMEBUFFER,g);const i=[],l=e.textures;for(let r=0;r0&&!1===this._useMultisampledExtension(s)){const n=i.framebuffers[e.getCacheKey()];let a=t.COLOR_BUFFER_BIT;s.resolveDepthBuffer&&(s.depthBuffer&&(a|=t.DEPTH_BUFFER_BIT),s.stencilBuffer&&s.resolveStencilBuffer&&(a|=t.STENCIL_BUFFER_BIT));const o=i.msaaFrameBuffer,u=i.msaaRenderbuffers,l=e.textures,d=l.length>1;if(r.bindFramebuffer(t.READ_FRAMEBUFFER,o),r.bindFramebuffer(t.DRAW_FRAMEBUFFER,n),d)for(let e=0;e0&&!0===this.extensions.has("WEBGL_multisampled_render_to_texture")&&!1!==e._autoAllocateDepthBuffer}dispose(){null!==this.textureUtils&&this.textureUtils.dispose();const e=this.extensions.get("WEBGL_lose_context");e&&e.loseContext(),this.renderer.domElement.removeEventListener("webglcontextlost",this._onContextLost)}}const vR="point-list",NR="line-list",SR="line-strip",RR="triangle-list",AR="triangle-strip",ER="undefined"!=typeof self?self.GPUShaderStage:{VERTEX:1,FRAGMENT:2,COMPUTE:4},wR="never",CR="less",MR="equal",BR="less-equal",LR="greater",PR="not-equal",FR="greater-equal",DR="always",UR="store",IR="load",OR="clear",VR="ccw",kR="cw",GR="none",zR="back",$R="uint16",WR="uint32",HR="r8unorm",jR="r8snorm",qR="r8uint",XR="r8sint",KR="r16uint",YR="r16sint",QR="r16float",ZR="rg8unorm",JR="rg8snorm",eA="rg8uint",tA="rg8sint",rA="r32uint",sA="r32sint",iA="r32float",nA="rg16uint",aA="rg16sint",oA="rg16float",uA="rgba8unorm",lA="rgba8unorm-srgb",dA="rgba8snorm",cA="rgba8uint",hA="rgba8sint",pA="bgra8unorm",gA="bgra8unorm-srgb",mA="rgb9e5ufloat",fA="rgb10a2unorm",yA="rg11b10ufloat",bA="rg32uint",xA="rg32sint",TA="rg32float",_A="rgba16uint",vA="rgba16sint",NA="rgba16float",SA="rgba32uint",RA="rgba32sint",AA="rgba32float",EA="depth16unorm",wA="depth24plus",CA="depth24plus-stencil8",MA="depth32float",BA="depth32float-stencil8",LA="bc1-rgba-unorm",PA="bc1-rgba-unorm-srgb",FA="bc2-rgba-unorm",DA="bc2-rgba-unorm-srgb",UA="bc3-rgba-unorm",IA="bc3-rgba-unorm-srgb",OA="bc4-r-unorm",VA="bc4-r-snorm",kA="bc5-rg-unorm",GA="bc5-rg-snorm",zA="bc6h-rgb-ufloat",$A="bc6h-rgb-float",WA="bc7-rgba-unorm",HA="bc7-rgba-unorm-srgb",jA="etc2-rgb8unorm",qA="etc2-rgb8unorm-srgb",XA="etc2-rgb8a1unorm",KA="etc2-rgb8a1unorm-srgb",YA="etc2-rgba8unorm",QA="etc2-rgba8unorm-srgb",ZA="eac-r11unorm",JA="eac-r11snorm",eE="eac-rg11unorm",tE="eac-rg11snorm",rE="astc-4x4-unorm",sE="astc-4x4-unorm-srgb",iE="astc-5x4-unorm",nE="astc-5x4-unorm-srgb",aE="astc-5x5-unorm",oE="astc-5x5-unorm-srgb",uE="astc-6x5-unorm",lE="astc-6x5-unorm-srgb",dE="astc-6x6-unorm",cE="astc-6x6-unorm-srgb",hE="astc-8x5-unorm",pE="astc-8x5-unorm-srgb",gE="astc-8x6-unorm",mE="astc-8x6-unorm-srgb",fE="astc-8x8-unorm",yE="astc-8x8-unorm-srgb",bE="astc-10x5-unorm",xE="astc-10x5-unorm-srgb",TE="astc-10x6-unorm",_E="astc-10x6-unorm-srgb",vE="astc-10x8-unorm",NE="astc-10x8-unorm-srgb",SE="astc-10x10-unorm",RE="astc-10x10-unorm-srgb",AE="astc-12x10-unorm",EE="astc-12x10-unorm-srgb",wE="astc-12x12-unorm",CE="astc-12x12-unorm-srgb",ME="clamp-to-edge",BE="repeat",LE="mirror-repeat",PE="linear",FE="nearest",DE="zero",UE="one",IE="src",OE="one-minus-src",VE="src-alpha",kE="one-minus-src-alpha",GE="dst",zE="one-minus-dst",$E="dst-alpha",WE="one-minus-dst-alpha",HE="src-alpha-saturated",jE="constant",qE="one-minus-constant",XE="add",KE="subtract",YE="reverse-subtract",QE="min",ZE="max",JE=0,ew=15,tw="keep",rw="zero",sw="replace",iw="invert",nw="increment-clamp",aw="decrement-clamp",ow="increment-wrap",uw="decrement-wrap",lw="storage",dw="read-only-storage",cw="write-only",hw="read-only",pw="read-write",gw="non-filtering",mw="comparison",fw="float",yw="unfilterable-float",bw="depth",xw="sint",Tw="uint",_w="2d",vw="3d",Nw="2d",Sw="2d-array",Rw="cube",Aw="3d",Ew="all",ww="vertex",Cw="instance",Mw={CoreFeaturesAndLimits:"core-features-and-limits",DepthClipControl:"depth-clip-control",Depth32FloatStencil8:"depth32float-stencil8",TextureCompressionBC:"texture-compression-bc",TextureCompressionBCSliced3D:"texture-compression-bc-sliced-3d",TextureCompressionETC2:"texture-compression-etc2",TextureCompressionASTC:"texture-compression-astc",TextureCompressionASTCSliced3D:"texture-compression-astc-sliced-3d",TimestampQuery:"timestamp-query",IndirectFirstInstance:"indirect-first-instance",ShaderF16:"shader-f16",RG11B10UFloat:"rg11b10ufloat-renderable",BGRA8UNormStorage:"bgra8unorm-storage",Float32Filterable:"float32-filterable",Float32Blendable:"float32-blendable",ClipDistances:"clip-distances",DualSourceBlending:"dual-source-blending",Subgroups:"subgroups",TextureFormatsTier1:"texture-formats-tier1",TextureFormatsTier2:"texture-formats-tier2"},Bw={"texture-compression-s3tc":"texture-compression-bc","texture-compression-etc1":"texture-compression-etc2"};class Lw extends VS{constructor(e,t,r){super(e,t?t.value:null),this.textureNode=t,this.groupNode=r}update(){const{textureNode:e}=this;return this.texture!==e.value?(this.texture=e.value,!0):super.update()}}class Pw extends LS{constructor(e,t){super(e,t?t.array:null),this.attribute=t,this.isStorageBuffer=!0}}let Fw=0;class Dw extends Pw{constructor(e,t){super("StorageBuffer_"+Fw++,e?e.value:null),this.nodeUniform=e,this.access=e?e.access:Js.READ_WRITE,this.groupNode=t}get buffer(){return this.nodeUniform.value}}class Uw extends ty{constructor(e){super(),this.device=e;this.mipmapSampler=e.createSampler({minFilter:PE}),this.flipYSampler=e.createSampler({minFilter:FE}),this.transferPipelines={},this.flipYPipelines={},this.mipmapVertexShaderModule=e.createShaderModule({label:"mipmapVertex",code:"\nstruct VarysStruct {\n\t@builtin( position ) Position: vec4,\n\t@location( 0 ) vTex : vec2\n};\n\n@vertex\nfn main( @builtin( vertex_index ) vertexIndex : u32 ) -> VarysStruct {\n\n\tvar Varys : VarysStruct;\n\n\tvar pos = array< vec2, 4 >(\n\t\tvec2( -1.0, 1.0 ),\n\t\tvec2( 1.0, 1.0 ),\n\t\tvec2( -1.0, -1.0 ),\n\t\tvec2( 1.0, -1.0 )\n\t);\n\n\tvar tex = array< vec2, 4 >(\n\t\tvec2( 0.0, 0.0 ),\n\t\tvec2( 1.0, 0.0 ),\n\t\tvec2( 0.0, 1.0 ),\n\t\tvec2( 1.0, 1.0 )\n\t);\n\n\tVarys.vTex = tex[ vertexIndex ];\n\tVarys.Position = vec4( pos[ vertexIndex ], 0.0, 1.0 );\n\n\treturn Varys;\n\n}\n"}),this.mipmapFragmentShaderModule=e.createShaderModule({label:"mipmapFragment",code:"\n@group( 0 ) @binding( 0 )\nvar imgSampler : sampler;\n\n@group( 0 ) @binding( 1 )\nvar img : texture_2d;\n\n@fragment\nfn main( @location( 0 ) vTex : vec2 ) -> @location( 0 ) vec4 {\n\n\treturn textureSample( img, imgSampler, vTex );\n\n}\n"}),this.flipYFragmentShaderModule=e.createShaderModule({label:"flipYFragment",code:"\n@group( 0 ) @binding( 0 )\nvar imgSampler : sampler;\n\n@group( 0 ) @binding( 1 )\nvar img : texture_2d;\n\n@fragment\nfn main( @location( 0 ) vTex : vec2 ) -> @location( 0 ) vec4 {\n\n\treturn textureSample( img, imgSampler, vec2( vTex.x, 1.0 - vTex.y ) );\n\n}\n"})}getTransferPipeline(e){let t=this.transferPipelines[e];return void 0===t&&(t=this.device.createRenderPipeline({label:`mipmap-${e}`,vertex:{module:this.mipmapVertexShaderModule,entryPoint:"main"},fragment:{module:this.mipmapFragmentShaderModule,entryPoint:"main",targets:[{format:e}]},primitive:{topology:AR,stripIndexFormat:WR},layout:"auto"}),this.transferPipelines[e]=t),t}getFlipYPipeline(e){let t=this.flipYPipelines[e];return void 0===t&&(t=this.device.createRenderPipeline({label:`flipY-${e}`,vertex:{module:this.mipmapVertexShaderModule,entryPoint:"main"},fragment:{module:this.flipYFragmentShaderModule,entryPoint:"main",targets:[{format:e}]},primitive:{topology:AR,stripIndexFormat:WR},layout:"auto"}),this.flipYPipelines[e]=t),t}flipY(e,t,r=0){const s=t.format,{width:i,height:n}=t.size,a=this.getTransferPipeline(s),o=this.getFlipYPipeline(s),u=this.device.createTexture({size:{width:i,height:n,depthOrArrayLayers:1},format:s,usage:GPUTextureUsage.RENDER_ATTACHMENT|GPUTextureUsage.TEXTURE_BINDING}),l=e.createView({baseMipLevel:0,mipLevelCount:1,dimension:Nw,baseArrayLayer:r}),d=u.createView({baseMipLevel:0,mipLevelCount:1,dimension:Nw,baseArrayLayer:0}),c=this.device.createCommandEncoder({}),h=(e,t,r)=>{const s=e.getBindGroupLayout(0),i=this.device.createBindGroup({layout:s,entries:[{binding:0,resource:this.flipYSampler},{binding:1,resource:t}]}),n=c.beginRenderPass({colorAttachments:[{view:r,loadOp:OR,storeOp:UR,clearValue:[0,0,0,0]}]});n.setPipeline(e),n.setBindGroup(0,i),n.draw(4,1,0,0),n.end()};h(a,l,d),h(o,d,l),this.device.queue.submit([c.finish()]),u.destroy()}generateMipmaps(e,t,r=0,s=null){const i=this.get(e);void 0===i.layers&&(i.layers=[]);const n=i.layers[r]||this._mipmapCreateBundles(e,t,r),a=s||this.device.createCommandEncoder({label:"mipmapEncoder"});this._mipmapRunBundles(a,n),null===s&&this.device.queue.submit([a.finish()]),i.layers[r]=n}_mipmapCreateBundles(e,t,r){const s=this.getTransferPipeline(t.format),i=s.getBindGroupLayout(0);let n=e.createView({baseMipLevel:0,mipLevelCount:1,dimension:Nw,baseArrayLayer:r});const a=[];for(let o=1;o0)for(let t=0,n=s.length;t0)for(let t=0,n=s.length;t0?e.width:r.size.width,l=a>0?e.height:r.size.height;o.queue.copyExternalImageToTexture({source:e,flipY:i},{texture:t,mipLevel:a,origin:{x:0,y:0,z:s},premultipliedAlpha:n},{width:u,height:l,depthOrArrayLayers:1})}_getPassUtils(){let e=this._passUtils;return null===e&&(this._passUtils=e=new Uw(this.backend.device)),e}_generateMipmaps(e,t,r=0,s=null){this._getPassUtils().generateMipmaps(e,t,r,s)}_flipY(e,t,r=0){this._getPassUtils().flipY(e,t,r)}_copyBufferToTexture(e,t,r,s,i,n=0,a=0){const o=this.backend.device,u=e.data,l=this._getBytesPerTexel(r.format),d=e.width*l;o.queue.writeTexture({texture:t,mipLevel:a,origin:{x:0,y:0,z:s}},u,{offset:e.width*e.height*l*n,bytesPerRow:d},{width:e.width,height:e.height,depthOrArrayLayers:1}),!0===i&&this._flipY(t,r,s)}_copyCompressedBufferToTexture(e,t,r){const s=this.backend.device,i=this._getBlockData(r.format),n=r.size.depthOrArrayLayers>1;for(let a=0;a]*\s*([a-z_0-9]+(?:<[\s\S]+?>)?)/i,zw=/([a-z_0-9]+)\s*:\s*([a-z_0-9]+(?:<[\s\S]+?>)?)/gi,$w={f32:"float",i32:"int",u32:"uint",bool:"bool","vec2":"vec2","vec2":"ivec2","vec2":"uvec2","vec2":"bvec2",vec2f:"vec2",vec2i:"ivec2",vec2u:"uvec2",vec2b:"bvec2","vec3":"vec3","vec3":"ivec3","vec3":"uvec3","vec3":"bvec3",vec3f:"vec3",vec3i:"ivec3",vec3u:"uvec3",vec3b:"bvec3","vec4":"vec4","vec4":"ivec4","vec4":"uvec4","vec4":"bvec4",vec4f:"vec4",vec4i:"ivec4",vec4u:"uvec4",vec4b:"bvec4","mat2x2":"mat2",mat2x2f:"mat2","mat3x3":"mat3",mat3x3f:"mat3","mat4x4":"mat4",mat4x4f:"mat4",sampler:"sampler",texture_1d:"texture",texture_2d:"texture",texture_2d_array:"texture",texture_multisampled_2d:"cubeTexture",texture_depth_2d:"depthTexture",texture_depth_2d_array:"depthTexture",texture_depth_multisampled_2d:"depthTexture",texture_depth_cube:"depthTexture",texture_depth_cube_array:"depthTexture",texture_3d:"texture3D",texture_cube:"cubeTexture",texture_cube_array:"cubeTexture",texture_storage_1d:"storageTexture",texture_storage_2d:"storageTexture",texture_storage_2d_array:"storageTexture",texture_storage_3d:"storageTexture"};class Ww extends qN{constructor(e){const{type:t,inputs:r,name:s,inputsCode:i,blockCode:n,outputType:a}=(e=>{const t=(e=e.trim()).match(Gw);if(null!==t&&4===t.length){const r=t[2],s=[];let i=null;for(;null!==(i=zw.exec(r));)s.push({name:i[1],type:i[2]});const n=[];for(let e=0;e "+this.outputType:"";return`fn ${e} ( ${this.inputsCode.trim()} ) ${t}`+this.blockCode}}class Hw extends jN{parseFunction(e){return new Ww(e)}}const jw={[Js.READ_ONLY]:"read",[Js.WRITE_ONLY]:"write",[Js.READ_WRITE]:"read_write"},qw={[Ur]:"repeat",[ye]:"clamp",[Dr]:"mirror"},Xw={vertex:ER.VERTEX,fragment:ER.FRAGMENT,compute:ER.COMPUTE},Kw={instance:!0,swizzleAssign:!1,storageBuffer:!0},Yw={"^^":"tsl_xor"},Qw={float:"f32",int:"i32",uint:"u32",bool:"bool",color:"vec3",vec2:"vec2",ivec2:"vec2",uvec2:"vec2",bvec2:"vec2",vec3:"vec3",ivec3:"vec3",uvec3:"vec3",bvec3:"vec3",vec4:"vec4",ivec4:"vec4",uvec4:"vec4",bvec4:"vec4",mat2:"mat2x2",mat3:"mat3x3",mat4:"mat4x4"},Zw={},Jw={tsl_xor:new jx("fn tsl_xor( a : bool, b : bool ) -> bool { return ( a || b ) && !( a && b ); }"),mod_float:new jx("fn tsl_mod_float( x : f32, y : f32 ) -> f32 { return x - y * floor( x / y ); }"),mod_vec2:new jx("fn tsl_mod_vec2( x : vec2f, y : vec2f ) -> vec2f { return x - y * floor( x / y ); }"),mod_vec3:new jx("fn tsl_mod_vec3( x : vec3f, y : vec3f ) -> vec3f { return x - y * floor( x / y ); }"),mod_vec4:new jx("fn tsl_mod_vec4( x : vec4f, y : vec4f ) -> vec4f { return x - y * floor( x / y ); }"),equals_bool:new jx("fn tsl_equals_bool( a : bool, b : bool ) -> bool { return a == b; }"),equals_bvec2:new jx("fn tsl_equals_bvec2( a : vec2f, b : vec2f ) -> vec2 { return vec2( a.x == b.x, a.y == b.y ); }"),equals_bvec3:new jx("fn tsl_equals_bvec3( a : vec3f, b : vec3f ) -> vec3 { return vec3( a.x == b.x, a.y == b.y, a.z == b.z ); }"),equals_bvec4:new jx("fn tsl_equals_bvec4( a : vec4f, b : vec4f ) -> vec4 { return vec4( a.x == b.x, a.y == b.y, a.z == b.z, a.w == b.w ); }"),repeatWrapping_float:new jx("fn tsl_repeatWrapping_float( coord: f32 ) -> f32 { return fract( coord ); }"),mirrorWrapping_float:new jx("fn tsl_mirrorWrapping_float( coord: f32 ) -> f32 { let mirrored = fract( coord * 0.5 ) * 2.0; return 1.0 - abs( 1.0 - mirrored ); }"),clampWrapping_float:new jx("fn tsl_clampWrapping_float( coord: f32 ) -> f32 { return clamp( coord, 0.0, 1.0 ); }"),biquadraticTexture:new jx("\nfn tsl_biquadraticTexture( map : texture_2d, coord : vec2f, iRes : vec2u, level : u32 ) -> vec4f {\n\n\tlet res = vec2f( iRes );\n\n\tlet uvScaled = coord * res;\n\tlet uvWrapping = ( ( uvScaled % res ) + res ) % res;\n\n\t// https://www.shadertoy.com/view/WtyXRy\n\n\tlet uv = uvWrapping - 0.5;\n\tlet iuv = floor( uv );\n\tlet f = fract( uv );\n\n\tlet rg1 = textureLoad( map, vec2u( iuv + vec2( 0.5, 0.5 ) ) % iRes, level );\n\tlet rg2 = textureLoad( map, vec2u( iuv + vec2( 1.5, 0.5 ) ) % iRes, level );\n\tlet rg3 = textureLoad( map, vec2u( iuv + vec2( 0.5, 1.5 ) ) % iRes, level );\n\tlet rg4 = textureLoad( map, vec2u( iuv + vec2( 1.5, 1.5 ) ) % iRes, level );\n\n\treturn mix( mix( rg1, rg2, f.x ), mix( rg3, rg4, f.x ), f.y );\n\n}\n")},eC={dFdx:"dpdx",dFdy:"- dpdy",mod_float:"tsl_mod_float",mod_vec2:"tsl_mod_vec2",mod_vec3:"tsl_mod_vec3",mod_vec4:"tsl_mod_vec4",equals_bool:"tsl_equals_bool",equals_bvec2:"tsl_equals_bvec2",equals_bvec3:"tsl_equals_bvec3",equals_bvec4:"tsl_equals_bvec4",inversesqrt:"inverseSqrt",bitcast:"bitcast",floatpack_snorm_2x16:"pack2x16snorm",floatpack_unorm_2x16:"pack2x16unorm",floatpack_float16_2x16:"pack2x16float",floatunpack_snorm_2x16:"unpack2x16snorm",floatunpack_unorm_2x16:"unpack2x16unorm",floatunpack_float16_2x16:"unpack2x16float"};let tC="";!0!==("undefined"!=typeof navigator&&/Firefox|Deno/g.test(navigator.userAgent))&&(tC+="diagnostic( off, derivative_uniformity );\n");class rC extends BN{constructor(e,t){super(e,t,new Hw),this.uniformGroups={},this.builtins={},this.directives={},this.scopedArrays=new Map}_generateTextureSample(e,t,r,s,i,n=this.shaderStage){return"fragment"===n?s?i?`textureSample( ${t}, ${t}_sampler, ${r}, ${s}, ${i} )`:`textureSample( ${t}, ${t}_sampler, ${r}, ${s} )`:i?`textureSample( ${t}, ${t}_sampler, ${r}, ${i} )`:`textureSample( ${t}, ${t}_sampler, ${r} )`:this.generateTextureSampleLevel(e,t,r,"0",s)}generateTextureSampleLevel(e,t,r,s,i,n){return!1===this.isUnfilterable(e)?n?`textureSampleLevel( ${t}, ${t}_sampler, ${r}, ${s}, ${n} )`:`textureSampleLevel( ${t}, ${t}_sampler, ${r}, ${s} )`:this.isFilteredTexture(e)?this.generateFilteredTexture(e,t,r,n,s):this.generateTextureLod(e,t,r,i,n,s)}generateWrapFunction(e){const t=`tsl_coord_${qw[e.wrapS]}S_${qw[e.wrapT]}_${e.is3DTexture||e.isData3DTexture?"3d":"2d"}T`;let r=Zw[t];if(void 0===r){const s=[],i=e.is3DTexture||e.isData3DTexture?"vec3f":"vec2f";let n=`fn ${t}( coord : ${i} ) -> ${i} {\n\n\treturn ${i}(\n`;const a=(e,t)=>{e===Ur?(s.push(Jw.repeatWrapping_float),n+=`\t\ttsl_repeatWrapping_float( coord.${t} )`):e===ye?(s.push(Jw.clampWrapping_float),n+=`\t\ttsl_clampWrapping_float( coord.${t} )`):e===Dr?(s.push(Jw.mirrorWrapping_float),n+=`\t\ttsl_mirrorWrapping_float( coord.${t} )`):(n+=`\t\tcoord.${t}`,d(`WebGPURenderer: Unsupported texture wrap type "${e}" for vertex shader.`))};a(e.wrapS,"x"),n+=",\n",a(e.wrapT,"y"),(e.is3DTexture||e.isData3DTexture)&&(n+=",\n",a(e.wrapR,"z")),n+="\n\t);\n\n}\n",Zw[t]=r=new jx(n,s)}return r.build(this),t}generateArrayDeclaration(e,t){return`array< ${this.getType(e)}, ${t} >`}generateTextureDimension(e,t,r){const s=this.getDataFromNode(e,this.shaderStage,this.globalCache);void 0===s.dimensionsSnippet&&(s.dimensionsSnippet={});let i=s.dimensionsSnippet[r];if(void 0===s.dimensionsSnippet[r]){let n,a;const{primarySamples:o}=this.renderer.backend.utils.getTextureSampleData(e),u=o>1;a=e.is3DTexture||e.isData3DTexture?"vec3":"vec2",n=u||e.isStorageTexture?t:`${t}${r?`, u32( ${r} )`:""}`,i=new Au(new pl(`textureDimensions( ${n} )`,a)),s.dimensionsSnippet[r]=i,(e.isArrayTexture||e.isDataArrayTexture||e.is3DTexture||e.isData3DTexture)&&(s.arrayLayerCount=new Au(new pl(`textureNumLayers(${t})`,"u32"))),e.isTextureCube&&(s.cubeFaceCount=new Au(new pl("6u","u32")))}return i.build(this)}generateFilteredTexture(e,t,r,s,i="0u"){this._include("biquadraticTexture");const n=this.generateWrapFunction(e),a=this.generateTextureDimension(e,t,i);return s&&(r=`${r} + vec2(${s}) / ${a}`),`tsl_biquadraticTexture( ${t}, ${n}( ${r} ), ${a}, u32( ${i} ) )`}generateTextureLod(e,t,r,s,i,n="0u"){const a=this.generateWrapFunction(e),o=this.generateTextureDimension(e,t,n),u=e.is3DTexture||e.isData3DTexture?"vec3":"vec2";i&&(r=`${r} + ${u}(${i}) / ${u}( ${o} )`);const l=`${u}( ${a}( ${r} ) * ${u}( ${o} ) )`;return this.generateTextureLoad(e,t,l,n,s,null)}generateTextureLoad(e,t,r,s,i,n){let a;return null===s&&(s="0u"),n&&(r=`${r} + ${n}`),i?a=`textureLoad( ${t}, ${r}, ${i}, u32( ${s} ) )`:(a=`textureLoad( ${t}, ${r}, u32( ${s} ) )`,this.renderer.backend.compatibilityMode&&e.isDepthTexture&&(a+=".x")),a}generateTextureStore(e,t,r,s,i){let n;return n=s?`textureStore( ${t}, ${r}, ${s}, ${i} )`:`textureStore( ${t}, ${r}, ${i} )`,n}isSampleCompare(e){return!0===e.isDepthTexture&&null!==e.compareFunction}isUnfilterable(e){return"float"!==this.getComponentTypeFromTexture(e)||!this.isAvailable("float32Filterable")&&!0===e.isDataTexture&&e.type===H||!1===this.isSampleCompare(e)&&e.minFilter===A&&e.magFilter===A||this.renderer.backend.utils.getTextureSampleData(e).primarySamples>1}generateTexture(e,t,r,s,i,n=this.shaderStage){let a=null;return a=this.isUnfilterable(e)?this.generateTextureLod(e,t,r,s,i,"0",n):this._generateTextureSample(e,t,r,s,i,n),a}generateTextureGrad(e,t,r,s,i,n,a=this.shaderStage){if("fragment"===a)return n?`textureSampleGrad( ${t}, ${t}_sampler, ${r}, ${s[0]}, ${s[1]}, ${n} )`:`textureSampleGrad( ${t}, ${t}_sampler, ${r}, ${s[0]}, ${s[1]} )`;o(`WebGPURenderer: THREE.TextureNode.gradient() does not support ${a} shader.`)}generateTextureCompare(e,t,r,s,i,n,a=this.shaderStage){if("fragment"===a)return!0===e.isDepthTexture&&!0===e.isArrayTexture?n?`textureSampleCompare( ${t}, ${t}_sampler, ${r}, ${i}, ${s}, ${n} )`:`textureSampleCompare( ${t}, ${t}_sampler, ${r}, ${i}, ${s} )`:n?`textureSampleCompare( ${t}, ${t}_sampler, ${r}, ${s}, ${n} )`:`textureSampleCompare( ${t}, ${t}_sampler, ${r}, ${s} )`;o(`WebGPURenderer: THREE.DepthTexture.compareFunction() does not support ${a} shader.`)}generateTextureLevel(e,t,r,s,i,n){return!1===this.isUnfilterable(e)?n?`textureSampleLevel( ${t}, ${t}_sampler, ${r}, ${s}, ${n} )`:`textureSampleLevel( ${t}, ${t}_sampler, ${r}, ${s} )`:this.isFilteredTexture(e)?this.generateFilteredTexture(e,t,r,n,s):this.generateTextureLod(e,t,r,i,n,s)}generateTextureBias(e,t,r,s,i,n,a=this.shaderStage){if("fragment"===a)return n?`textureSampleBias( ${t}, ${t}_sampler, ${r}, ${s}, ${n} )`:`textureSampleBias( ${t}, ${t}_sampler, ${r}, ${s} )`;o(`WebGPURenderer: THREE.TextureNode.biasNode does not support ${a} shader.`)}getPropertyName(e,t=this.shaderStage){if(!0===e.isNodeVarying&&!0===e.needsInterpolation){if("vertex"===t)return`varyings.${e.name}`}else if(!0===e.isNodeUniform){const t=e.name,r=e.type;return"texture"===r||"cubeTexture"===r||"cubeDepthTexture"===r||"storageTexture"===r||"texture3D"===r?t:"buffer"===r||"storageBuffer"===r||"indirectStorageBuffer"===r?this.isCustomStruct(e)?t:t+".value":e.groupNode.name+"."+t}return super.getPropertyName(e)}getOutputStructName(){return"output"}getFunctionOperator(e){const t=Yw[e];return void 0!==t?(this._include(t),t):null}getNodeAccess(e,t){return"compute"!==t?!0===e.isAtomic?(d("WebGPURenderer: Atomic operations are only supported in compute shaders."),Js.READ_WRITE):Js.READ_ONLY:e.access}getStorageAccess(e,t){return jw[this.getNodeAccess(e,t)]}getUniformFromNode(e,t,r,s=null){const i=super.getUniformFromNode(e,t,r,s),n=this.getDataFromNode(e,r,this.globalCache);if(void 0===n.uniformGPU){let a;const o=e.groupNode,u=o.name,l=this.getBindGroupArray(u,r);if("texture"===t||"cubeTexture"===t||"cubeDepthTexture"===t||"storageTexture"===t||"texture3D"===t){let s=null;const n=this.getNodeAccess(e,r);if("texture"===t||"storageTexture"===t?s=!0===e.value.is3DTexture?new WS(i.name,i.node,o,n):new zS(i.name,i.node,o,n):"cubeTexture"===t||"cubeDepthTexture"===t?s=new $S(i.name,i.node,o,n):"texture3D"===t&&(s=new WS(i.name,i.node,o,n)),s.store=!0===e.isStorageTextureNode,s.mipLevel=s.store?e.mipLevel:0,s.setVisibility(Xw[r]),!1===this.isUnfilterable(e.value)&&!1===s.store){const e=new Lw(`${i.name}_sampler`,i.node,o);e.setVisibility(Xw[r]),l.push(e,s),a=[e,s]}else l.push(s),a=[s]}else if("buffer"===t||"storageBuffer"===t||"indirectStorageBuffer"===t){const n=this.getSharedDataFromNode(e);let u=n.buffer;if(void 0===u){u=new("buffer"===t?DS:Dw)(e,o),n.buffer=u}u.setVisibility(u.getVisibility()|Xw[r]),l.push(u),a=u,i.name=s||"NodeBuffer_"+i.id}else{const e=this.uniformGroups[r]||(this.uniformGroups[r]={});let s=e[u];void 0===s&&(s=new OS(u,o),s.setVisibility(Xw[r]),e[u]=s,l.push(s)),a=this.getNodeUniform(i,t),s.addUniform(a)}n.uniformGPU=a}return i}getBuiltin(e,t,r,s=this.shaderStage){const i=this.builtins[s]||(this.builtins[s]=new Map);return!1===i.has(e)&&i.set(e,{name:e,property:t,type:r}),t}hasBuiltin(e,t=this.shaderStage){return void 0!==this.builtins[t]&&this.builtins[t].has(e)}getVertexIndex(){return"vertex"===this.shaderStage?this.getBuiltin("vertex_index","vertexIndex","u32","attribute"):"vertexIndex"}buildFunctionCode(e){const t=e.layout,r=this.flowShaderNode(e),s=[];for(const e of t.inputs)s.push(e.name+" : "+this.getType(e.type));let i=`fn ${t.name}( ${s.join(", ")} ) -> ${this.getType(t.type)} {\n${r.vars}\n${r.code}\n`;return r.result&&(i+=`\treturn ${r.result};\n`),i+="\n}\n",i}getInstanceIndex(){return"vertex"===this.shaderStage?this.getBuiltin("instance_index","instanceIndex","u32","attribute"):"instanceIndex"}getInvocationLocalIndex(){return this.getBuiltin("local_invocation_index","invocationLocalIndex","u32","attribute")}getSubgroupSize(){return this.enableSubGroups(),this.getBuiltin("subgroup_size","subgroupSize","u32","attribute")}getInvocationSubgroupIndex(){return this.enableSubGroups(),this.getBuiltin("subgroup_invocation_id","invocationSubgroupIndex","u32","attribute")}getSubgroupIndex(){return this.enableSubGroups(),this.getBuiltin("subgroup_id","subgroupIndex","u32","attribute")}getDrawIndex(){return null}getFrontFacing(){return this.getBuiltin("front_facing","isFront","bool")}getFragCoord(){return this.getBuiltin("position","fragCoord","vec4")+".xy"}getFragDepth(){return"output."+this.getBuiltin("frag_depth","depth","f32","output")}getClipDistance(){return"varyings.hw_clip_distances"}isFlipY(){return!1}enableDirective(e,t=this.shaderStage){(this.directives[t]||(this.directives[t]=new Set)).add(e)}getDirectives(e){const t=[],r=this.directives[e];if(void 0!==r)for(const e of r)t.push(`enable ${e};`);return t.join("\n")}enableSubGroups(){this.enableDirective("subgroups")}enableSubgroupsF16(){this.enableDirective("subgroups-f16")}enableClipDistances(){this.enableDirective("clip_distances")}enableShaderF16(){this.enableDirective("f16")}enableDualSourceBlending(){this.enableDirective("dual_source_blending")}enableHardwareClipping(e){this.enableClipDistances(),this.getBuiltin("clip_distances","hw_clip_distances",`array`,"vertex")}getBuiltins(e){const t=[],r=this.builtins[e];if(void 0!==r)for(const{name:e,property:s,type:i}of r.values())t.push(`@builtin( ${e} ) ${s} : ${i}`);return t.join(",\n\t")}getScopedArray(e,t,r,s){return!1===this.scopedArrays.has(e)&&this.scopedArrays.set(e,{name:e,scope:t,bufferType:r,bufferCount:s}),e}getScopedArrays(e){if("compute"!==e)return;const t=[];for(const{name:e,scope:r,bufferType:s,bufferCount:i}of this.scopedArrays.values()){const n=this.getType(s);t.push(`var<${r}> ${e}: array< ${n}, ${i} >;`)}return t.join("\n")}getAttributes(e){const t=[];if("compute"===e&&(this.getBuiltin("global_invocation_id","globalId","vec3","attribute"),this.getBuiltin("workgroup_id","workgroupId","vec3","attribute"),this.getBuiltin("local_invocation_id","localId","vec3","attribute"),this.getBuiltin("num_workgroups","numWorkgroups","vec3","attribute"),this.renderer.hasFeature("subgroups")&&(this.enableDirective("subgroups",e),this.getBuiltin("subgroup_size","subgroupSize","u32","attribute"))),"vertex"===e||"compute"===e){const e=this.getBuiltins("attribute");e&&t.push(e);const r=this.getAttributesArray();for(let e=0,s=r.length;e"),t.push(`\t${s+r.name} : ${i}`)}return e.output&&t.push(`\t${this.getBuiltins("output")}`),t.join(",\n")}getStructs(e){let t="";const r=this.structs[e];if(r.length>0){const e=[];for(const t of r){let r=`struct ${t.name} {\n`;r+=this.getStructMembers(t),r+="\n};",e.push(r)}t="\n"+e.join("\n\n")+"\n"}return t}getVar(e,t,r=null){let s=`var ${t} : `;return s+=null!==r?this.generateArrayDeclaration(e,r):this.getType(e),s}getVars(e){const t=[],r=this.vars[e];if(void 0!==r)for(const e of r)t.push(`\t${this.getVar(e.type,e.name,e.count)};`);return`\n${t.join("\n")}\n`}getVaryings(e){const t=[];if("vertex"===e&&this.getBuiltin("position","Vertex","vec4","vertex"),"vertex"===e||"fragment"===e){const r=this.varyings,s=this.vars[e];for(let i=0;ir.value.itemSize;return s&&!i}getUniforms(e){const t=this.uniforms[e],r=[],s=[],i=[],n={};for(const i of t){const t=i.groupNode.name,a=this.bindingsIndexes[t];if("texture"===i.type||"cubeTexture"===i.type||"cubeDepthTexture"===i.type||"storageTexture"===i.type||"texture3D"===i.type){const t=i.node.value;let s;!1===this.isUnfilterable(t)&&!0!==i.node.isStorageTextureNode&&(this.isSampleCompare(t)?r.push(`@binding( ${a.binding++} ) @group( ${a.group} ) var ${i.name}_sampler : sampler_comparison;`):r.push(`@binding( ${a.binding++} ) @group( ${a.group} ) var ${i.name}_sampler : sampler;`));let n="";const{primarySamples:o}=this.renderer.backend.utils.getTextureSampleData(t);if(o>1&&(n="_multisampled"),!0===t.isCubeTexture&&!0===t.isDepthTexture)s="texture_depth_cube";else if(!0===t.isCubeTexture)s="texture_cube";else if(!0===t.isDepthTexture)s=this.renderer.backend.compatibilityMode&&null===t.compareFunction?`texture${n}_2d`:`texture_depth${n}_2d${!0===t.isArrayTexture?"_array":""}`;else if(!0===i.node.isStorageTextureNode){const r=kw(t),n=this.getStorageAccess(i.node,e),a=i.node.value.is3DTexture,o=i.node.value.isArrayTexture;s=`texture_storage_${a?"3d":"2d"+(o?"_array":"")}<${r}, ${n}>`}else if(!0===t.isArrayTexture||!0===t.isDataArrayTexture||!0===t.isCompressedArrayTexture)s="texture_2d_array";else if(!0===t.is3DTexture||!0===t.isData3DTexture)s="texture_3d";else{s=`texture${n}_2d<${this.getComponentTypeFromTexture(t).charAt(0)}32>`}r.push(`@binding( ${a.binding++} ) @group( ${a.group} ) var ${i.name} : ${s};`)}else if("buffer"===i.type||"storageBuffer"===i.type||"indirectStorageBuffer"===i.type){const t=i.node,r=this.getType(t.getNodeType(this)),n=t.bufferCount,o=n>0&&"buffer"===i.type?", "+n:"",u=t.isStorageBufferNode?`storage, ${this.getStorageAccess(t,e)}`:"uniform";if(this.isCustomStruct(i))s.push(`@binding( ${a.binding++} ) @group( ${a.group} ) var<${u}> ${i.name} : ${r};`);else{const e=`\tvalue : array< ${t.isAtomic?`atomic<${r}>`:`${r}`}${o} >`;s.push(this._getWGSLStructBinding(i.name,e,u,a.binding++,a.group))}}else{const e=this.getType(this.getVectorType(i.type)),t=i.groupNode.name;(n[t]||(n[t]={index:a.binding++,id:a.group,snippets:[]})).snippets.push(`\t${i.name} : ${e}`)}}for(const e in n){const t=n[e];i.push(this._getWGSLStructBinding(e,t.snippets.join(",\n"),"uniform",t.index,t.id))}let a=r.join("\n");return a+=s.join("\n"),a+=i.join("\n"),a}buildCode(){const e=null!==this.material?{fragment:{},vertex:{}}:{compute:{}};this.sortBindingGroups();for(const t in e){this.shaderStage=t;const r=e[t];r.uniforms=this.getUniforms(t),r.attributes=this.getAttributes(t),r.varyings=this.getVaryings(t),r.structs=this.getStructs(t),r.vars=this.getVars(t),r.codes=this.getCodes(t),r.directives=this.getDirectives(t),r.scopedArrays=this.getScopedArrays(t);let s="// code\n\n";s+=this.flowCode[t];const i=this.flowNodes[t],n=i[i.length-1],a=n.outputNode,o=void 0!==a&&!0===a.isOutputStructNode;for(const e of i){const i=this.getFlowData(e),u=e.name;if(u&&(s.length>0&&(s+="\n"),s+=`\t// flow -> ${u}\n`),s+=`${i.code}\n\t`,e===n&&"compute"!==t)if(s+="// result\n\n\t","vertex"===t)s+=`varyings.Vertex = ${i.result};`;else if("fragment"===t)if(o)r.returnType=a.getNodeType(this),r.structs+="var output : "+r.returnType+";",s+=`return ${i.result};`;else{let e="\t@location(0) color: vec4";const t=this.getBuiltins("output");t&&(e+=",\n\t"+t),r.returnType="OutputStruct",r.structs+=this._getWGSLStruct("OutputStruct",e),r.structs+="\nvar output : OutputStruct;",s+=`output.color = ${i.result};\n\n\treturn output;`}}r.flow=s}if(this.shaderStage=null,null!==this.material)this.vertexShader=this._getWGSLVertexCode(e.vertex),this.fragmentShader=this._getWGSLFragmentCode(e.fragment);else{const t=this.object.workgroupSize;this.computeShader=this._getWGSLComputeCode(e.compute,t)}}getMethod(e,t=null){let r;return null!==t&&(r=this._getWGSLMethod(e+"_"+t)),void 0===r&&(r=this._getWGSLMethod(e)),r||e}getBitcastMethod(e){return`bitcast<${this.getType(e)}>`}getFloatPackingMethod(e){return this.getMethod(`floatpack_${e}_2x16`)}getFloatUnpackingMethod(e){return this.getMethod(`floatunpack_${e}_2x16`)}getTernary(e,t,r){return`select( ${r}, ${t}, ${e} )`}getType(e){return Qw[e]||e}isAvailable(e){let t=Kw[e];return void 0===t&&("float32Filterable"===e?t=this.renderer.hasFeature("float32-filterable"):"clipDistance"===e&&(t=this.renderer.hasFeature("clip-distances")),Kw[e]=t),t}_getWGSLMethod(e){return void 0!==Jw[e]&&this._include(e),eC[e]}_include(e){const t=Jw[e];return t.build(this),this.addInclude(t),t}_getWGSLVertexCode(e){return`${this.getSignature()}\n// directives\n${e.directives}\n\n// structs\n${e.structs}\n\n// uniforms\n${e.uniforms}\n\n// varyings\n${e.varyings}\nvar varyings : VaryingsStruct;\n\n// codes\n${e.codes}\n\n@vertex\nfn main( ${e.attributes} ) -> VaryingsStruct {\n\n\t// vars\n\t${e.vars}\n\n\t// flow\n\t${e.flow}\n\n\treturn varyings;\n\n}\n`}_getWGSLFragmentCode(e){return`${this.getSignature()}\n// global\n${tC}\n\n// structs\n${e.structs}\n\n// uniforms\n${e.uniforms}\n\n// codes\n${e.codes}\n\n@fragment\nfn main( ${e.varyings} ) -> ${e.returnType} {\n\n\t// vars\n\t${e.vars}\n\n\t// flow\n\t${e.flow}\n\n}\n`}_getWGSLComputeCode(e,t){const[r,s,i]=t;return`${this.getSignature()}\n// directives\n${e.directives}\n\n// system\nvar instanceIndex : u32;\n\n// locals\n${e.scopedArrays}\n\n// structs\n${e.structs}\n\n// uniforms\n${e.uniforms}\n\n// codes\n${e.codes}\n\n@compute @workgroup_size( ${r}, ${s}, ${i} )\nfn main( ${e.attributes} ) {\n\n\t// system\n\tinstanceIndex = globalId.x\n\t\t+ globalId.y * ( ${r} * numWorkgroups.x )\n\t\t+ globalId.z * ( ${r} * numWorkgroups.x ) * ( ${s} * numWorkgroups.y );\n\n\t// vars\n\t${e.vars}\n\n\t// flow\n\t${e.flow}\n\n}\n`}_getWGSLStruct(e,t){return`\nstruct ${e} {\n${t}\n};`}_getWGSLStructBinding(e,t,r,s=0,i=0){const n=e+"Struct";return`${this._getWGSLStruct(n,t)}\n@binding( ${s} ) @group( ${i} )\nvar<${r}> ${e} : ${n};`}}class sC{constructor(e){this.backend=e}getCurrentDepthStencilFormat(e){let t;return null!==e.depthTexture?t=this.getTextureFormatGPU(e.depthTexture):e.depth&&e.stencil?t=CA:e.depth&&(t=wA),t}getTextureFormatGPU(e){return this.backend.get(e).format}getTextureSampleData(e){let t;if(e.isFramebufferTexture)t=1;else if(e.isDepthTexture&&!e.renderTarget){const e=this.backend.renderer,r=e.getRenderTarget();t=r?r.samples:e.currentSamples}else e.renderTarget&&(t=e.renderTarget.samples);t=t||1;const r=t>1&&null!==e.renderTarget&&!0!==e.isDepthTexture&&!0!==e.isFramebufferTexture;return{samples:t,primarySamples:r?1:t,isMSAA:r}}getCurrentColorFormat(e){let t;return t=null!==e.textures?this.getTextureFormatGPU(e.textures[0]):this.getPreferredCanvasFormat(),t}getCurrentColorFormats(e){return null!==e.textures?e.textures.map(e=>this.getTextureFormatGPU(e)):[this.getPreferredCanvasFormat()]}getCurrentColorSpace(e){return null!==e.textures?e.textures[0].colorSpace:this.backend.renderer.outputColorSpace}getPrimitiveTopology(e,t){return e.isPoints?vR:e.isLineSegments||e.isMesh&&!0===t.wireframe?NR:e.isLine?SR:e.isMesh?RR:void 0}getSampleCount(e){return e>=4?4:1}getSampleCountRenderContext(e){return null!==e.textures?this.getSampleCount(e.sampleCount):this.getSampleCount(this.backend.renderer.currentSamples)}getPreferredCanvasFormat(){const e=this.backend.parameters.outputType;if(void 0===e)return navigator.gpu.getPreferredCanvasFormat();if(e===ke)return pA;if(e===fe)return NA;throw new Error("Unsupported outputType")}}const iC=new Map([[Int8Array,["sint8","snorm8"]],[Uint8Array,["uint8","unorm8"]],[Int16Array,["sint16","snorm16"]],[Uint16Array,["uint16","unorm16"]],[Int32Array,["sint32","snorm32"]],[Uint32Array,["uint32","unorm32"]],[Float32Array,["float32"]]]);"undefined"!=typeof Float16Array&&iC.set(Float16Array,["float16"]);const nC=new Map([[et,["float16"]]]),aC=new Map([[Int32Array,"sint32"],[Int16Array,"sint32"],[Uint32Array,"uint32"],[Uint16Array,"uint32"],[Float32Array,"float32"]]);class oC{constructor(e){this.backend=e}createAttribute(e,t){const r=this._getBufferAttribute(e),s=this.backend,i=s.get(r);let n=i.buffer;if(void 0===n){const a=s.device;let o=r.array;if(!1===e.normalized)if(o.constructor===Int16Array||o.constructor===Int8Array)o=new Int32Array(o);else if((o.constructor===Uint16Array||o.constructor===Uint8Array)&&(o=new Uint32Array(o),t&GPUBufferUsage.INDEX))for(let e=0;e0&&(void 0===n.groups&&(n.groups=[],n.versions=[]),n.versions[r]===s&&(o=n.groups[r])),void 0===o&&(o=this.createBindGroup(e,a),r>0&&(n.groups[r]=o,n.versions[r]=s)),n.group=o}updateBinding(e){const t=this.backend,r=t.device,s=e.buffer,i=t.get(e).buffer,n=e.updateRanges;if(0===n.length)r.queue.writeBuffer(i,0,s,0);else{const t=qr(s),a=t?1:s.BYTES_PER_ELEMENT;for(let e=0,o=n.length;e1&&(i+=`-${e.texture.depthOrArrayLayers}`),i+=`-${r}-${s}`,a=e[i],void 0===a){const n=Ew;let o;o=t.isSampledCubeTexture?Rw:t.isSampledTexture3D?Aw:t.texture.isArrayTexture||t.texture.isDataArrayTexture||t.texture.isCompressedArrayTexture?Sw:Nw,a=e[i]=e.texture.createView({aspect:n,dimension:o,mipLevelCount:r,baseMipLevel:s})}}n.push({binding:i,resource:a})}else if(t.isSampler){const e=r.get(t.texture);n.push({binding:i,resource:e.sampler})}i++}return s.createBindGroup({label:"bindGroup_"+e.name,layout:t,entries:n})}_createBindingLayoutEntry(e,t){const r=this.backend,s={binding:t,visibility:e.visibility};if(e.isUniformBuffer||e.isStorageBuffer){const t={};e.isStorageBuffer&&(e.visibility&ER.COMPUTE&&(e.access===Js.READ_WRITE||e.access===Js.WRITE_ONLY)?t.type=lw:t.type=dw),s.buffer=t}else if(e.isSampledTexture&&e.store){const t={};t.format=this.backend.get(e.texture).texture.format;const r=e.access;t.access=r===Js.READ_WRITE?pw:r===Js.WRITE_ONLY?cw:hw,e.texture.isArrayTexture?t.viewDimension=Sw:e.texture.is3DTexture&&(t.viewDimension=Aw),s.storageTexture=t}else if(e.isSampledTexture){const t={},{primarySamples:i}=r.utils.getTextureSampleData(e.texture);if(i>1&&(t.multisampled=!0,e.texture.isDepthTexture||(t.sampleType=yw)),e.texture.isDepthTexture)r.compatibilityMode&&null===e.texture.compareFunction?t.sampleType=yw:t.sampleType=bw;else if(e.texture.isDataTexture||e.texture.isDataArrayTexture||e.texture.isData3DTexture){const r=e.texture.type;r===R?t.sampleType=xw:r===S?t.sampleType=Tw:r===H&&(this.backend.hasFeature("float32-filterable")?t.sampleType=fw:t.sampleType=yw)}e.isSampledCubeTexture?t.viewDimension=Rw:e.texture.isArrayTexture||e.texture.isDataArrayTexture||e.texture.isCompressedArrayTexture?t.viewDimension=Sw:e.isSampledTexture3D&&(t.viewDimension=Aw),s.texture=t}else if(e.isSampler){const t={};e.texture.isDepthTexture&&(null!==e.texture.compareFunction?t.type=mw:r.compatibilityMode&&(t.type=gw)),s.sampler=t}else o(`WebGPUBindingUtils: Unsupported binding "${e}".`);return s}_createBindingsLayoutEntries(e){const t=[];let r=0;for(const s of e.bindings)t.push(this._createBindingLayoutEntry(s,r)),r++;return t}deleteBindGroupData(e){const{backend:t}=this,r=t.get(e);r.layout.usedTimes--,0===r.layout.usedTimes&&this.bindGroupLayoutCache.delete(r.layoutKey),r.layout=null}dispose(){this.bindGroupLayoutCache.clear()}}class dC{constructor(e){this.backend=e,this._activePipelines=new WeakMap}setPipeline(e,t){this._activePipelines.get(e)!==t&&(e.setPipeline(t),this._activePipelines.set(e,t))}_getSampleCount(e){return this.backend.utils.getSampleCountRenderContext(e)}createRenderPipeline(e,t){const{object:r,material:s,geometry:i,pipeline:n}=e,{vertexProgram:a,fragmentProgram:u}=n,l=this.backend,d=l.device,c=l.utils,h=l.get(n),p=[];for(const t of e.getBindings()){const e=l.get(t),{layoutGPU:r}=e.layout;p.push(r)}const g=l.attributeUtils.createShaderVertexBuffers(e);let m;s.blending===Z||s.blending===Qe&&!1===s.transparent||(m=this._getBlending(s));let f={};!0===s.stencilWrite&&(f={compare:this._getStencilCompare(s),failOp:this._getStencilOperation(s.stencilFail),depthFailOp:this._getStencilOperation(s.stencilZFail),passOp:this._getStencilOperation(s.stencilZPass)});const y=this._getColorWriteMask(s),b=[];if(null!==e.context.textures){const t=e.context.textures;for(let e=0;e1},layout:d.createPipelineLayout({bindGroupLayouts:p})},A={},E=e.context.depth,w=e.context.stencil;if(!0!==E&&!0!==w||(!0===E&&(A.format=N,A.depthWriteEnabled=s.depthWrite,A.depthCompare=v),!0===w&&(A.stencilFront=f,A.stencilBack={},A.stencilReadMask=s.stencilFuncMask,A.stencilWriteMask=s.stencilWriteMask),!0===s.polygonOffset&&(A.depthBias=s.polygonOffsetUnits,A.depthBiasSlopeScale=s.polygonOffsetFactor,A.depthBiasClamp=0),R.depthStencil=A),d.pushErrorScope("validation"),null===t)h.pipeline=d.createRenderPipeline(R),d.popErrorScope().then(e=>{null!==e&&(h.error=!0,o(e.message))});else{const e=new Promise(async e=>{try{h.pipeline=await d.createRenderPipelineAsync(R)}catch(e){}const t=await d.popErrorScope();null!==t&&(h.error=!0,o(t.message)),e()});t.push(e)}}createBundleEncoder(e,t="renderBundleEncoder"){const r=this.backend,{utils:s,device:i}=r,n=s.getCurrentDepthStencilFormat(e),a={label:t,colorFormats:s.getCurrentColorFormats(e),depthStencilFormat:n,sampleCount:this._getSampleCount(e)};return i.createRenderBundleEncoder(a)}createComputePipeline(e,t){const r=this.backend,s=r.device,i=r.get(e.computeProgram).module,n=r.get(e),a=[];for(const e of t){const t=r.get(e),{layoutGPU:s}=t.layout;a.push(s)}n.pipeline=s.createComputePipeline({compute:i,layout:s.createPipelineLayout({bindGroupLayouts:a})})}_getBlending(e){let t,r;const s=e.blending,i=e.blendSrc,n=e.blendDst,a=e.blendEquation;if(s===nt){const s=null!==e.blendSrcAlpha?e.blendSrcAlpha:i,o=null!==e.blendDstAlpha?e.blendDstAlpha:n,u=null!==e.blendEquationAlpha?e.blendEquationAlpha:a;t={srcFactor:this._getBlendFactor(i),dstFactor:this._getBlendFactor(n),operation:this._getBlendOperation(a)},r={srcFactor:this._getBlendFactor(s),dstFactor:this._getBlendFactor(o),operation:this._getBlendOperation(u)}}else{const i=(e,s,i,n)=>{t={srcFactor:e,dstFactor:s,operation:XE},r={srcFactor:i,dstFactor:n,operation:XE}};if(e.premultipliedAlpha)switch(s){case Qe:i(UE,kE,UE,kE);break;case $t:i(UE,UE,UE,UE);break;case zt:i(DE,OE,DE,UE);break;case Gt:i(GE,kE,DE,UE)}else switch(s){case Qe:i(VE,kE,UE,kE);break;case $t:i(VE,UE,UE,UE);break;case zt:o("WebGPURenderer: SubtractiveBlending requires material.premultipliedAlpha = true");break;case Gt:o("WebGPURenderer: MultiplyBlending requires material.premultipliedAlpha = true")}}if(void 0!==t&&void 0!==r)return{color:t,alpha:r};o("WebGPURenderer: Invalid blending: ",s)}_getBlendFactor(e){let t;switch(e){case ot:t=DE;break;case It:t=UE;break;case Ut:t=IE;break;case Bt:t=OE;break;case Dt:t=VE;break;case Mt:t=kE;break;case Pt:t=GE;break;case Ct:t=zE;break;case Lt:t=$E;break;case wt:t=WE;break;case Ft:t=HE;break;case 211:t=jE;break;case 212:t=qE;break;default:o("WebGPURenderer: Blend factor not supported.",e)}return t}_getStencilCompare(e){let t;const r=e.stencilFunc;switch(r){case ts:t=wR;break;case es:t=DR;break;case Jr:t=CR;break;case Zr:t=BR;break;case Qr:t=MR;break;case Yr:t=FR;break;case Kr:t=LR;break;case Xr:t=PR;break;default:o("WebGPURenderer: Invalid stencil function.",r)}return t}_getStencilOperation(e){let t;switch(e){case ls:t=tw;break;case us:t=rw;break;case os:t=sw;break;case as:t=iw;break;case ns:t=nw;break;case is:t=aw;break;case ss:t=ow;break;case rs:t=uw;break;default:o("WebGPURenderer: Invalid stencil operation.",t)}return t}_getBlendOperation(e){let t;switch(e){case at:t=XE;break;case Et:t=KE;break;case At:t=YE;break;case cs:t=QE;break;case ds:t=ZE;break;default:o("WebGPUPipelineUtils: Blend equation not supported.",e)}return t}_getPrimitiveState(e,t,r){const s={},i=this.backend.utils;s.topology=i.getPrimitiveTopology(e,r),null!==t.index&&!0===e.isLine&&!0!==e.isLineSegments&&(s.stripIndexFormat=t.index.array instanceof Uint16Array?$R:WR);let n=r.side===w;return e.isMesh&&e.matrixWorld.determinant()<0&&(n=!n),s.frontFace=!0===n?kR:VR,s.cullMode=r.side===C?GR:zR,s}_getColorWriteMask(e){return!0===e.colorWrite?ew:JE}_getDepthCompare(e){let t;if(!1===e.depthTest)t=DR;else{const r=e.depthFunc;switch(r){case Qt:t=wR;break;case Yt:t=DR;break;case Kt:t=CR;break;case Xt:t=BR;break;case qt:t=MR;break;case jt:t=FR;break;case Ht:t=LR;break;case Wt:t=PR;break;default:o("WebGPUPipelineUtils: Invalid depth function.",r)}}return t}}class cC extends xR{constructor(e,t,r=2048){super(r),this.device=e,this.type=t,this.querySet=this.device.createQuerySet({type:"timestamp",count:this.maxQueries,label:`queryset_global_timestamp_${t}`});const s=8*this.maxQueries;this.resolveBuffer=this.device.createBuffer({label:`buffer_timestamp_resolve_${t}`,size:s,usage:GPUBufferUsage.QUERY_RESOLVE|GPUBufferUsage.COPY_SRC}),this.resultBuffer=this.device.createBuffer({label:`buffer_timestamp_result_${t}`,size:s,usage:GPUBufferUsage.COPY_DST|GPUBufferUsage.MAP_READ})}allocateQueriesForContext(e){if(!this.trackTimestamp||this.isDisposed)return null;if(this.currentQueryIndex+2>this.maxQueries)return v(`WebGPUTimestampQueryPool [${this.type}]: Maximum number of queries exceeded, when using trackTimestamp it is necessary to resolves the queries via renderer.resolveTimestampsAsync( THREE.TimestampQuery.${this.type.toUpperCase()} ).`),null;const t=this.currentQueryIndex;return this.currentQueryIndex+=2,this.queryOffsets.set(e,t),t}async resolveQueriesAsync(){if(!this.trackTimestamp||0===this.currentQueryIndex||this.isDisposed)return this.lastValue;if(this.pendingResolve)return this.pendingResolve;this.pendingResolve=this._resolveQueries();try{return await this.pendingResolve}finally{this.pendingResolve=null}}async _resolveQueries(){if(this.isDisposed)return this.lastValue;try{if("unmapped"!==this.resultBuffer.mapState)return this.lastValue;const e=new Map(this.queryOffsets),t=this.currentQueryIndex,r=8*t;this.currentQueryIndex=0,this.queryOffsets.clear();const s=this.device.createCommandEncoder();s.resolveQuerySet(this.querySet,0,t,this.resolveBuffer,0),s.copyBufferToBuffer(this.resolveBuffer,0,this.resultBuffer,0,r);const i=s.finish();if(this.device.queue.submit([i]),"unmapped"!==this.resultBuffer.mapState)return this.lastValue;if(await this.resultBuffer.mapAsync(GPUMapMode.READ,0,r),this.isDisposed)return"mapped"===this.resultBuffer.mapState&&this.resultBuffer.unmap(),this.lastValue;const n=new BigUint64Array(this.resultBuffer.getMappedRange(0,r)),a={},o=[];for(const[t,r]of e){const e=t.match(/^(.*):f(\d+)$/),s=parseInt(e[2]);!1===o.includes(s)&&o.push(s),void 0===a[s]&&(a[s]=0);const i=n[r],u=n[r+1],l=Number(u-i)/1e6;this.timestamps.set(t,l),a[s]+=l}const u=a[o[o.length-1]];return this.resultBuffer.unmap(),this.lastValue=u,this.frames=o,u}catch(e){return o("Error resolving queries:",e),"mapped"===this.resultBuffer.mapState&&this.resultBuffer.unmap(),this.lastValue}}async dispose(){if(!this.isDisposed){if(this.isDisposed=!0,this.pendingResolve)try{await this.pendingResolve}catch(e){o("Error waiting for pending resolve:",e)}if(this.resultBuffer&&"mapped"===this.resultBuffer.mapState)try{this.resultBuffer.unmap()}catch(e){o("Error unmapping buffer:",e)}this.querySet&&(this.querySet.destroy(),this.querySet=null),this.resolveBuffer&&(this.resolveBuffer.destroy(),this.resolveBuffer=null),this.resultBuffer&&(this.resultBuffer.destroy(),this.resultBuffer=null),this.queryOffsets.clear(),this.pendingResolve=null}}}class hC extends tR{constructor(e={}){super(e),this.isWebGPUBackend=!0,this.parameters.alpha=void 0===e.alpha||e.alpha,this.parameters.compatibilityMode=void 0!==e.compatibilityMode&&e.compatibilityMode,this.parameters.requiredLimits=void 0===e.requiredLimits?{}:e.requiredLimits,this.compatibilityMode=this.parameters.compatibilityMode,this.device=null,this.defaultRenderPassdescriptor=null,this.utils=new sC(this),this.attributeUtils=new oC(this),this.bindingUtils=new lC(this),this.pipelineUtils=new dC(this),this.textureUtils=new Vw(this),this.occludedResolveCache=new Map}async init(e){await super.init(e);const t=this.parameters;let r;if(void 0===t.device){const e={powerPreference:t.powerPreference,featureLevel:t.compatibilityMode?"compatibility":void 0},s="undefined"!=typeof navigator?await navigator.gpu.requestAdapter(e):null;if(null===s)throw new Error("WebGPUBackend: Unable to create WebGPU adapter.");const i=Object.values(Mw),n=[];for(const e of i)s.features.has(e)&&n.push(e);const a={requiredFeatures:n,requiredLimits:t.requiredLimits};r=await s.requestDevice(a)}else r=t.device;r.lost.then(t=>{const r={api:"WebGPU",message:t.message||"Unknown reason",reason:t.reason||null,originalEvent:t};e.onDeviceLost(r)}),this.device=r,this.trackTimestamp=this.trackTimestamp&&this.hasFeature(Mw.TimestampQuery),this.updateSize()}get context(){const e=this.renderer.getCanvasTarget(),t=this.get(e);let r=t.context;if(void 0===r){const s=this.parameters;r=!0===e.isDefaultCanvasTarget&&void 0!==s.context?s.context:e.domElement.getContext("webgpu"),"setAttribute"in e.domElement&&e.domElement.setAttribute("data-engine",`three.js r${tt} webgpu`);const i=s.alpha?"premultiplied":"opaque",n=s.outputType===fe?"extended":"standard";r.configure({device:this.device,format:this.utils.getPreferredCanvasFormat(),usage:GPUTextureUsage.RENDER_ATTACHMENT|GPUTextureUsage.COPY_SRC,alphaMode:i,toneMapping:{mode:n}}),t.context=r}return r}get coordinateSystem(){return h}async getArrayBufferAsync(e){return await this.attributeUtils.getArrayBufferAsync(e)}getContext(){return this.context}_getDefaultRenderPassDescriptor(){const e=this.renderer,t=e.getCanvasTarget(),r=this.get(t),s=e.currentSamples;let i=r.descriptor;if(void 0===i||r.samples!==s){i={colorAttachments:[{view:null}]},!0!==e.depth&&!0!==e.stencil||(i.depthStencilAttachment={view:this.textureUtils.getDepthBuffer(e.depth,e.stencil).createView()});const t=i.colorAttachments[0];s>0?t.view=this.textureUtils.getColorBuffer().createView():t.resolveTarget=void 0,r.descriptor=i,r.samples=s}const n=i.colorAttachments[0];return s>0?n.resolveTarget=this.context.getCurrentTexture().createView():n.view=this.context.getCurrentTexture().createView(),i}_isRenderCameraDepthArray(e){return e.depthTexture&&e.depthTexture.image.depth>1&&e.camera.isArrayCamera}_getRenderPassDescriptor(e,t={}){const r=e.renderTarget,s=this.get(r);let i=s.descriptors;void 0!==i&&s.width===r.width&&s.height===r.height&&s.samples===r.samples||(i={},s.descriptors=i);const n=e.getCacheKey();let a=i[n];if(void 0===a){const t=e.textures,o=[];let u;const l=this._isRenderCameraDepthArray(e);for(let s=0;s1)if(!0===l){const t=e.camera.cameras;for(let e=0;e0&&(t.currentOcclusionQuerySet&&t.currentOcclusionQuerySet.destroy(),t.currentOcclusionQueryBuffer&&t.currentOcclusionQueryBuffer.destroy(),t.currentOcclusionQuerySet=t.occlusionQuerySet,t.currentOcclusionQueryBuffer=t.occlusionQueryBuffer,t.currentOcclusionQueryObjects=t.occlusionQueryObjects,i=r.createQuerySet({type:"occlusion",count:s,label:`occlusionQuerySet_${e.id}`}),t.occlusionQuerySet=i,t.occlusionQueryIndex=0,t.occlusionQueryObjects=new Array(s),t.lastOcclusionObject=null),n=null===e.textures?this._getDefaultRenderPassDescriptor():this._getRenderPassDescriptor(e,{loadOp:IR}),this.initTimestampQuery(St.RENDER,this.getTimestampUID(e),n),n.occlusionQuerySet=i;const a=n.depthStencilAttachment;if(null!==e.textures){const t=n.colorAttachments;for(let r=0;r0&&t.currentPass.executeBundles(t.renderBundles),r>t.occlusionQueryIndex&&t.currentPass.endOcclusionQuery();const s=t.encoder;if(!0===this._isRenderCameraDepthArray(e)){const r=[];for(let e=0;e0){const s=8*r;let i=this.occludedResolveCache.get(s);void 0===i&&(i=this.device.createBuffer({size:s,usage:GPUBufferUsage.QUERY_RESOLVE|GPUBufferUsage.COPY_SRC}),this.occludedResolveCache.set(s,i));const n=this.device.createBuffer({size:s,usage:GPUBufferUsage.COPY_DST|GPUBufferUsage.MAP_READ});t.encoder.resolveQuerySet(t.occlusionQuerySet,0,r,i,0),t.encoder.copyBufferToBuffer(i,0,n,0,s),t.occlusionQueryBuffer=n,this.resolveOccludedAsync(e)}if(this.device.queue.submit([t.encoder.finish()]),null!==e.textures){const t=e.textures;for(let e=0;eo&&(i[0]=Math.min(a,o),i[1]=Math.ceil(a/o)),n.dispatchSize=i}i=n.dispatchSize}a.dispatchWorkgroups(i[0],i[1]||1,i[2]||1)}finishCompute(e){const t=this.get(e);t.passEncoderGPU.end(),this.device.queue.submit([t.cmdEncoderGPU.finish()])}draw(e,t){const{object:r,material:s,context:i,pipeline:n}=e,a=e.getBindings(),o=this.get(i),u=this.get(n),l=u.pipeline;if(!0===u.error)return;const d=e.getIndex(),c=null!==d,h=e.getDrawParameters();if(null===h)return;const p=(t,r)=>{this.pipelineUtils.setPipeline(t,l),r.pipeline=l;const n=r.bindingGroups;for(let e=0,r=a.length;e{if(p(s,i),!0===r.isBatchedMesh){const e=r._multiDrawStarts,i=r._multiDrawCounts,n=r._multiDrawCount,a=r._multiDrawInstances;null!==a&&v("WebGPUBackend: renderMultiDrawInstances has been deprecated and will be removed in r184. Append to renderMultiDraw arguments and use indirection.");for(let o=0;o1?0:o;!0===c?s.drawIndexed(i[o],n,e[o]/d.array.BYTES_PER_ELEMENT,0,u):s.draw(i[o],n,e[o],u),t.update(r,i[o],n)}}else if(!0===c){const{vertexCount:i,instanceCount:n,firstVertex:a}=h,o=e.getIndirect();if(null!==o){const t=this.get(o).buffer,r=e.getIndirectOffset(),i=Array.isArray(r)?r:[r];for(let e=0;e0){const t=this.get(e.camera),s=e.camera.cameras,n=e.getBindingGroup("cameraIndex");if(void 0===t.indexesGPU||t.indexesGPU.length!==s.length){const e=this.get(n),r=[],i=new Uint32Array([0,0,0,0]);for(let t=0,n=s.length;t(d("WebGPURenderer: WebGPU is not available, running under WebGL2 backend."),new _R(e)));super(new t(e),e),this.library=new mC,this.isWebGPURenderer=!0,"undefined"!=typeof __THREE_DEVTOOLS__&&__THREE_DEVTOOLS__.dispatchEvent(new CustomEvent("observe",{detail:this}))}}class yC extends Rs{constructor(){super(),this.isBundleGroup=!0,this.type="BundleGroup",this.static=!0,this.version=0}set needsUpdate(e){!0===e&&this.version++}}class bC{constructor(e,t=Sn(0,0,1,1)){this.renderer=e,this.outputNode=t,this.outputColorTransform=!0,this.needsUpdate=!0;const r=new Xp;r.name="PostProcessing",this._quadMesh=new Wb(r),this._quadMesh.name="Post-Processing",this._context=null}render(){const e=this.renderer;this._update(),null!==this._context.onBeforePostProcessing&&this._context.onBeforePostProcessing();const t=e.toneMapping,r=e.outputColorSpace;e.toneMapping=m,e.outputColorSpace=p.workingColorSpace;const s=e.xr.enabled;e.xr.enabled=!1,this._quadMesh.render(e),e.xr.enabled=s,e.toneMapping=t,e.outputColorSpace=r,null!==this._context.onAfterPostProcessing&&this._context.onAfterPostProcessing()}get context(){return this._context}dispose(){this._quadMesh.material.dispose()}_update(){if(!0===this.needsUpdate){const e=this.renderer,t=e.toneMapping,r=e.outputColorSpace,s={postProcessing:this,onBeforePostProcessing:null,onAfterPostProcessing:null};let i=this.outputNode;!0===this.outputColorTransform?(i=i.context(s),i=yl(i,t,r)):(s.toneMapping=t,s.outputColorSpace=r,i=i.context(s)),this._context=s,this._quadMesh.material.fragmentNode=i,this._quadMesh.material.needsUpdate=!0,this.needsUpdate=!1}}async renderAsync(){v('PostProcessing: "renderAsync()" has been deprecated. Use "render()" and "await renderer.init();" when creating the renderer.'),await this.renderer.init(),this.render()}}class xC extends N{constructor(e=1,t=1){super(),this.image={width:e,height:t},this.magFilter=ne,this.minFilter=ne,this.isStorageTexture=!0,this.mipmapsAutoUpdate=!0}setSize(e,t){this.image.width===e&&this.image.height===t||(this.image.width=e,this.image.height=t,this.dispose())}}class TC extends N{constructor(e=1,t=1,r=1){super(),this.isArrayTexture=!1,this.image={width:e,height:t,depth:r},this.magFilter=ne,this.minFilter=ne,this.wrapR=ye,this.isStorageTexture=!0,this.is3DTexture=!0}setSize(e,t,r){this.image.width===e&&this.image.height===t&&this.image.depth===r||(this.image.width=e,this.image.height=t,this.image.depth=r,this.dispose())}}class _C extends N{constructor(e=1,t=1,r=1){super(),this.isArrayTexture=!0,this.image={width:e,height:t,depth:r},this.magFilter=ne,this.minFilter=ne,this.isStorageTexture=!0}setSize(e,t,r){this.image.width===e&&this.image.height===t&&this.image.depth===r||(this.image.width=e,this.image.height=t,this.image.depth=r,this.dispose())}}class vC extends sx{constructor(e,t){super(e,t,Uint32Array),this.isIndirectStorageBufferAttribute=!0}}class NC extends As{constructor(e){super(e),this.textures={},this.nodes={}}load(e,t,r,s){const i=new Es(this.manager);i.setPath(this.path),i.setRequestHeader(this.requestHeader),i.setWithCredentials(this.withCredentials),i.load(e,r=>{try{t(this.parse(JSON.parse(r)))}catch(t){s?s(t):o(t),this.manager.itemError(e)}},r,s)}parseNodes(e){const t={};if(void 0!==e){for(const r of e){const{uuid:e,type:s}=r;t[e]=this.createNodeFromType(s),t[e].uuid=e}const r={nodes:t,textures:this.textures};for(const s of e){s.meta=r;t[s.uuid].deserialize(s),delete s.meta}}return t}parse(e){const t=this.createNodeFromType(e.type);t.uuid=e.uuid;const r={nodes:this.parseNodes(e.nodes),textures:this.textures};return e.meta=r,t.deserialize(e),delete e.meta,t}setTextures(e){return this.textures=e,this}setNodes(e){return this.nodes=e,this}createNodeFromType(e){return void 0===this.nodes[e]?(o("NodeLoader: Node type not found:",e),hn()):Yi(new this.nodes[e])}}class SC extends ws{constructor(e){super(e),this.nodes={},this.nodeMaterials={}}parse(e){const t=super.parse(e),r=this.nodes,s=e.inputNodes;for(const e in s){const i=s[e];t[e]=r[i]}return t}setNodes(e){return this.nodes=e,this}setNodeMaterials(e){return this.nodeMaterials=e,this}createMaterialFromType(e){const t=this.nodeMaterials[e];return void 0!==t?new t:super.createMaterialFromType(e)}}class RC extends Cs{constructor(e){super(e),this.nodes={},this.nodeMaterials={},this._nodesJSON=null}setNodes(e){return this.nodes=e,this}setNodeMaterials(e){return this.nodeMaterials=e,this}parse(e,t){this._nodesJSON=e.nodes;const r=super.parse(e,t);return this._nodesJSON=null,r}parseNodes(e,t){if(void 0!==e){const r=new NC;return r.setNodes(this.nodes),r.setTextures(t),r.parseNodes(e)}return{}}parseMaterials(e,t){const r={};if(void 0!==e){const s=this.parseNodes(this._nodesJSON,t),i=new SC;i.setTextures(t),i.setNodes(s),i.setNodeMaterials(this.nodeMaterials);for(let t=0,s=e.length;t nodeOb addMethodChaining( 'workingToColorSpace', workingToColorSpace ); addMethodChaining( 'colorSpaceToWorking', colorSpaceToWorking ); -// TODO: Avoid duplicated code and ues only ReferenceBaseNode or ReferenceNode +// TODO: Avoid duplicated code and use only ReferenceBaseNode or ReferenceNode /** * This class is only relevant if the referenced property is array-like. @@ -14630,7 +14655,7 @@ const cubeTexture = ( value = EmptyTexture, uvNode = null, levelNode = null, bia */ const uniformCubeTexture = ( value = EmptyTexture ) => cubeTextureBase( value ); -// TODO: Avoid duplicated code and ues only ReferenceBaseNode or ReferenceNode +// TODO: Avoid duplicated code and use only ReferenceBaseNode or ReferenceNode /** * This class is only relevant if the referenced property is array-like. @@ -17848,7 +17873,20 @@ class SkinningNode extends Node { _frameId.set( skeleton, frame.frameId ); - if ( this.previousBoneMatricesNode !== null ) skeleton.previousBoneMatrices.set( skeleton.boneMatrices ); + if ( this.previousBoneMatricesNode !== null ) { + + if ( skeleton.previousBoneMatrices === null ) { + + // cloned skeletons miss "previousBoneMatrices" in their first updated + + skeleton.previousBoneMatrices = new Float32Array( skeleton.boneMatrices ); + + } + + skeleton.previousBoneMatrices.set( skeleton.boneMatrices ); + + + } skeleton.update(); @@ -23337,7 +23375,7 @@ const DATA = new Uint16Array( [ let lut = null; -const DFGApprox = /*@__PURE__*/ Fn( ( { roughness, dotNV } ) => { +const DFGLUT = /*@__PURE__*/ Fn( ( { roughness, dotNV } ) => { if ( lut === null ) { @@ -23372,8 +23410,8 @@ const BRDF_GGX_Multiscatter = /*@__PURE__*/ Fn( ( { lightDirection, f0, f90, rou const dotNV = normalView.dot( positionViewDirection ).clamp(); // Precomputed DFG values for view and light directions - const dfgV = DFGApprox( { roughness: _roughness, dotNV } ); - const dfgL = DFGApprox( { roughness: _roughness, dotNV: dotNL } ); + const dfgV = DFGLUT( { roughness: _roughness, dotNV } ); + const dfgL = DFGLUT( { roughness: _roughness, dotNV: dotNL } ); // Single-scattering energy for view and light const FssEss_V = f0.mul( dfgV.x ).add( f90.mul( dfgV.y ) ); @@ -23406,7 +23444,7 @@ const EnvironmentBRDF = /*@__PURE__*/ Fn( ( inputs ) => { const { dotNV, specularColor, specularF90, roughness } = inputs; - const fab = DFGApprox( { dotNV, roughness } ); + const fab = DFGLUT( { dotNV, roughness } ); return specularColor.mul( fab.x ).add( specularF90.mul( fab.y ) ); } ); @@ -24288,7 +24326,7 @@ class PhysicalLightingModel extends LightingModel { const dotNV = normalView.dot( positionViewDirection ).clamp(); // @ TODO: Move to core dotNV - const fab = DFGApprox( { roughness, dotNV } ); + const fab = DFGLUT( { roughness, dotNV } ); const Fr = iridescenceF0 ? iridescence.mix( f0, iridescenceF0 ) : f0; @@ -29092,7 +29130,7 @@ class RenderObject { /** * Returns the byte offset into the indirect attribute buffer. * - * @return {number} The byte offset into the indirect attribute buffer. + * @return {number|Array} The byte offset into the indirect attribute buffer. */ getIndirectOffset() { @@ -31324,6 +31362,7 @@ class Bindings extends DataMap { for ( const bindGroup of bindings ) { + this.backend.deleteBindGroupData( bindGroup ); this.delete( bindGroup ); } @@ -31341,6 +31380,7 @@ class Bindings extends DataMap { for ( const bindGroup of bindings ) { + this.backend.deleteBindGroupData( bindGroup ); this.delete( bindGroup ); } @@ -33154,6 +33194,15 @@ class StackNode extends Node { */ this._expressionNode = null; + /** + * The current node being processed. + * + * @private + * @type {Node} + * @default null + */ + this._currentNode = null; + /** * This flag can be used for type testing. * @@ -33187,9 +33236,10 @@ class StackNode extends Node { * Adds a node to this stack. * * @param {Node} node - The node to add. + * @param {number} [index=this.nodes.length] - The index where the node should be added. * @return {StackNode} A reference to this stack node. */ - addToStack( node ) { + addToStack( node, index = this.nodes.length ) { if ( node.isNode !== true ) { @@ -33198,12 +33248,26 @@ class StackNode extends Node { } - this.nodes.push( node ); + this.nodes.splice( index, 0, node ); return this; } + /** + * Adds a node to the stack before the current node. + * + * @param {Node} node - The node to add. + * @return {StackNode} A reference to this stack node. + */ + addToStackBefore( node ) { + + const index = this._currentNode ? this.nodes.indexOf( this._currentNode ) : 0; + + return this.addToStack( node, index ); + + } + /** * Represent an `if` statement in TSL. * @@ -33353,7 +33417,7 @@ class StackNode extends Node { for ( const childNode of this.getChildren() ) { - if ( childNode.isVarNode && childNode.intent === true ) { + if ( childNode.isVarNode && childNode.isIntent( builder ) ) { if ( childNode.isAssign( builder ) !== true ) { @@ -33383,19 +33447,23 @@ class StackNode extends Node { const previousStack = getCurrentStack(); + const buildStage = builder.buildStage; + setCurrentStack( this ); builder.setActiveStack( this ); - const buildStage = builder.buildStage; + // - for ( const node of this.nodes ) { + const buildNode = ( node ) => { + + this._currentNode = node; - if ( node.isVarNode && node.intent === true ) { + if ( node.isVarNode && node.isIntent( builder ) ) { if ( node.isAssign( builder ) !== true ) { - continue; + return; } @@ -33416,7 +33484,7 @@ class StackNode extends Node { if ( node.isVarNode && parents && parents.length === 1 && parents[ 0 ] && parents[ 0 ].isStackNode ) { - continue; // skip var nodes that are only used in .toVarying() + return; // skip var nodes that are only used in .toVarying() } @@ -33424,6 +33492,26 @@ class StackNode extends Node { } + }; + + // + + const nodes = [ ...this.nodes ]; + + for ( const node of nodes ) { + + buildNode( node ); + + } + + this._currentNode = null; + + const newNodes = this.nodes.filter( ( node ) => nodes.indexOf( node ) === -1 ); + + for ( const node of newNodes ) { + + buildNode( node ); + } // @@ -43991,7 +44079,15 @@ class ShadowNode extends ShadowBaseNode { } ).toInspector( `${ inspectName } / Depth`, () => { - return textureLoad( this.shadowMap.depthTexture, uv$1().mul( textureSize( texture( this.shadowMap.depthTexture ) ) ) ).x.oneMinus(); + // TODO: Use linear depth + + if ( this.shadowMap.texture.isCubeTexture ) { + + return cubeTexture( this.shadowMap.texture ).r.oneMinus(); + + } + + return textureLoad( this.shadowMap.depthTexture, uv$1().mul( textureSize( texture( this.shadowMap.depthTexture ) ) ) ).r.oneMinus(); } ); @@ -46864,7 +46960,7 @@ var TSL = /*#__PURE__*/Object.freeze({ Break: Break, Const: Const, Continue: Continue, - DFGApprox: DFGApprox, + DFGLUT: DFGLUT, D_GGX: D_GGX, Discard: Discard, EPSILON: EPSILON, @@ -63742,6 +63838,14 @@ class Backend { } + /** + * Delete GPU data associated with a bind group. + * + * @abstract + * @param {BindGroup} bindGroup - The bind group. + */ + deleteBindGroupData( /*bindGroup*/ ) { } + /** * Deletes an object from the internal data structure. * @@ -71899,7 +72003,7 @@ class WebGPUTextureUtils { */ _getDefaultCubeTextureGPU( format ) { - let defaultCubeTexture = this.defaultTexture[ format ]; + let defaultCubeTexture = this.defaultCubeTexture[ format ]; if ( defaultCubeTexture === undefined ) { @@ -75950,6 +76054,37 @@ class WebGPUAttributeUtils { } +/** +* Class representing a WebGPU bind group layout. +* +*/ +class BindGroupLayout { + + /** + * Constructs a new BindGroupLayout. + * + * @param {GPUBindGroupLayout} layoutGPU - A GPU Bind Group Layout. + */ + constructor( layoutGPU ) { + + /** + * The current GPUBindGroupLayout + * + * @type {GPUBindGroupLayout} + */ + this.layoutGPU = layoutGPU; + + /** + * The number of bind groups that use the current GPUBindGroupLayout + * + * @type {number} + */ + this.usedTimes = 0; + + } + +} + /** * A WebGPU backend utility module for managing bindings. * @@ -75977,11 +76112,11 @@ class WebGPUBindingUtils { this.backend = backend; /** - * A cache for managing bind group layouts. + * A cache that maps combinations of layout entries to existing bind group layouts. * - * @type {WeakMap,GPUBindGroupLayout>} + * @type {Map} */ - this.bindGroupLayoutCache = new WeakMap(); + this.bindGroupLayoutCache = new Map(); } @@ -75996,185 +76131,33 @@ class WebGPUBindingUtils { const backend = this.backend; const device = backend.device; - const entries = []; - - let index = 0; - - for ( const binding of bindGroup.bindings ) { - - const bindingGPU = { - binding: index ++, - visibility: binding.visibility - }; - - if ( binding.isUniformBuffer || binding.isStorageBuffer ) { - - const buffer = {}; // GPUBufferBindingLayout - - if ( binding.isStorageBuffer ) { - - if ( binding.visibility & GPUShaderStage.COMPUTE ) { - - // compute - - if ( binding.access === NodeAccess.READ_WRITE || binding.access === NodeAccess.WRITE_ONLY ) { - - buffer.type = GPUBufferBindingType.Storage; - - } else { - - buffer.type = GPUBufferBindingType.ReadOnlyStorage; - - } - - } else { - - buffer.type = GPUBufferBindingType.ReadOnlyStorage; - - } - - } - - bindingGPU.buffer = buffer; - - } else if ( binding.isSampledTexture && binding.store ) { - - const storageTexture = {}; // GPUStorageTextureBindingLayout - storageTexture.format = this.backend.get( binding.texture ).texture.format; - - const access = binding.access; - - if ( access === NodeAccess.READ_WRITE ) { - - storageTexture.access = GPUStorageTextureAccess.ReadWrite; - - } else if ( access === NodeAccess.WRITE_ONLY ) { - - storageTexture.access = GPUStorageTextureAccess.WriteOnly; - - } else { - - storageTexture.access = GPUStorageTextureAccess.ReadOnly; - - } - - if ( binding.texture.isArrayTexture ) { - - storageTexture.viewDimension = GPUTextureViewDimension.TwoDArray; - - } else if ( binding.texture.is3DTexture ) { - - storageTexture.viewDimension = GPUTextureViewDimension.ThreeD; - - } - - bindingGPU.storageTexture = storageTexture; - - } else if ( binding.isSampledTexture ) { - - const texture = {}; // GPUTextureBindingLayout - - const { primarySamples } = backend.utils.getTextureSampleData( binding.texture ); - - if ( primarySamples > 1 ) { - - texture.multisampled = true; - - if ( ! binding.texture.isDepthTexture ) { - - texture.sampleType = GPUTextureSampleType.UnfilterableFloat; - - } - - } - - if ( binding.texture.isDepthTexture ) { - - if ( backend.compatibilityMode && binding.texture.compareFunction === null ) { - - texture.sampleType = GPUTextureSampleType.UnfilterableFloat; - - } else { - - texture.sampleType = GPUTextureSampleType.Depth; - - } - - } else if ( binding.texture.isDataTexture || binding.texture.isDataArrayTexture || binding.texture.isData3DTexture ) { - - const type = binding.texture.type; - - if ( type === IntType ) { - - texture.sampleType = GPUTextureSampleType.SInt; - - } else if ( type === UnsignedIntType ) { - - texture.sampleType = GPUTextureSampleType.UInt; - - } else if ( type === FloatType ) { - - if ( this.backend.hasFeature( 'float32-filterable' ) ) { - - texture.sampleType = GPUTextureSampleType.Float; - - } else { - - texture.sampleType = GPUTextureSampleType.UnfilterableFloat; - - } - - } - - } - - if ( binding.isSampledCubeTexture ) { - - texture.viewDimension = GPUTextureViewDimension.Cube; - - } else if ( binding.texture.isArrayTexture || binding.texture.isDataArrayTexture || binding.texture.isCompressedArrayTexture ) { - - texture.viewDimension = GPUTextureViewDimension.TwoDArray; - - } else if ( binding.isSampledTexture3D ) { - - texture.viewDimension = GPUTextureViewDimension.ThreeD; - - } - - bindingGPU.texture = texture; - - } else if ( binding.isSampler ) { - - const sampler = {}; // GPUSamplerBindingLayout - - if ( binding.texture.isDepthTexture ) { - - if ( binding.texture.compareFunction !== null ) { - - sampler.type = GPUSamplerBindingType.Comparison; - - } else if ( backend.compatibilityMode ) { + const bindingsData = backend.get( bindGroup ); - sampler.type = GPUSamplerBindingType.NonFiltering; + // When current bind group has already been assigned a layout + if ( bindingsData.bindGroupLayout !== undefined ) { - } + return bindingsData.bindGroupLayout.layoutGPU; - } + } - bindingGPU.sampler = sampler; + const entries = this._createBindingsLayoutEntries( bindGroup ); - } else { + const bindGroupLayoutKey = JSON.stringify( entries ); - error( `WebGPUBindingUtils: Unsupported binding "${ binding }".` ); + let bindGroupLayout = this.bindGroupLayoutCache.get( bindGroupLayoutKey ); - } + if ( bindGroupLayout === undefined ) { - entries.push( bindingGPU ); + bindGroupLayout = new BindGroupLayout( device.createBindGroupLayout( { entries } ) ); + this.bindGroupLayoutCache.set( bindGroupLayoutKey, bindGroupLayout ); } - return device.createBindGroupLayout( { entries } ); + bindingsData.layout = bindGroupLayout; + bindingsData.layout.usedTimes ++; + bindingsData.layoutKey = bindGroupLayoutKey; + + return bindGroupLayout.layoutGPU; } @@ -76188,19 +76171,12 @@ class WebGPUBindingUtils { */ createBindings( bindGroup, bindings, cacheIndex, version = 0 ) { - const { backend, bindGroupLayoutCache } = this; + const { backend } = this; const bindingsData = backend.get( bindGroup ); // setup (static) binding layout and (dynamic) binding group - let bindLayoutGPU = bindGroupLayoutCache.get( bindGroup.bindingsReference ); - - if ( bindLayoutGPU === undefined ) { - - bindLayoutGPU = this.createBindingsLayout( bindGroup ); - bindGroupLayoutCache.set( bindGroup.bindingsReference, bindLayoutGPU ); - - } + const bindLayoutGPU = this.createBindingsLayout( bindGroup ); let bindGroupGPU; @@ -76235,7 +76211,6 @@ class WebGPUBindingUtils { } bindingsData.group = bindGroupGPU; - bindingsData.layout = bindLayoutGPU; } @@ -76297,10 +76272,10 @@ class WebGPUBindingUtils { * Creates a GPU bind group for the camera index. * * @param {Uint32Array} data - The index data. - * @param {GPUBindGroupLayout} layout - The GPU bind group layout. + * @param {GPUBindGroupLayout} layoutGPU - The GPU bind group layout. * @return {GPUBindGroup} The GPU bind group. */ - createBindGroupIndex( data, layout ) { + createBindGroupIndex( data, layoutGPU ) { const backend = this.backend; const device = backend.device; @@ -76320,7 +76295,7 @@ class WebGPUBindingUtils { return device.createBindGroup( { label: 'bindGroupCameraIndex_' + index, - layout, + layout: layoutGPU, entries } ); @@ -76481,6 +76456,242 @@ class WebGPUBindingUtils { } + /** + * Creates a bind group layout entry for the given binding. + * + * @param {Binding} binding - The binding. + * @param {number} index - The index of the bind group layout entry in the bind group layout. + * @return {GPUBindGroupLayoutEntry} The bind group layout entry. + */ + _createBindingLayoutEntry( binding, index ) { + + const backend = this.backend; + + const bindingGPU = { + binding: index, + visibility: binding.visibility + }; + + if ( binding.isUniformBuffer || binding.isStorageBuffer ) { + + const buffer = {}; // GPUBufferBindingLayout + + if ( binding.isStorageBuffer ) { + + if ( binding.visibility & GPUShaderStage.COMPUTE ) { + + // compute + + if ( binding.access === NodeAccess.READ_WRITE || binding.access === NodeAccess.WRITE_ONLY ) { + + buffer.type = GPUBufferBindingType.Storage; + + } else { + + buffer.type = GPUBufferBindingType.ReadOnlyStorage; + + } + + } else { + + buffer.type = GPUBufferBindingType.ReadOnlyStorage; + + } + + } + + bindingGPU.buffer = buffer; + + } else if ( binding.isSampledTexture && binding.store ) { + + const storageTexture = {}; // GPUStorageTextureBindingLayout + storageTexture.format = this.backend.get( binding.texture ).texture.format; + + const access = binding.access; + + if ( access === NodeAccess.READ_WRITE ) { + + storageTexture.access = GPUStorageTextureAccess.ReadWrite; + + } else if ( access === NodeAccess.WRITE_ONLY ) { + + storageTexture.access = GPUStorageTextureAccess.WriteOnly; + + } else { + + storageTexture.access = GPUStorageTextureAccess.ReadOnly; + + } + + if ( binding.texture.isArrayTexture ) { + + storageTexture.viewDimension = GPUTextureViewDimension.TwoDArray; + + } else if ( binding.texture.is3DTexture ) { + + storageTexture.viewDimension = GPUTextureViewDimension.ThreeD; + + } + + bindingGPU.storageTexture = storageTexture; + + } else if ( binding.isSampledTexture ) { + + const texture = {}; // GPUTextureBindingLayout + + const { primarySamples } = backend.utils.getTextureSampleData( binding.texture ); + + if ( primarySamples > 1 ) { + + texture.multisampled = true; + + if ( ! binding.texture.isDepthTexture ) { + + texture.sampleType = GPUTextureSampleType.UnfilterableFloat; + + } + + } + + if ( binding.texture.isDepthTexture ) { + + if ( backend.compatibilityMode && binding.texture.compareFunction === null ) { + + texture.sampleType = GPUTextureSampleType.UnfilterableFloat; + + } else { + + texture.sampleType = GPUTextureSampleType.Depth; + + } + + } else if ( binding.texture.isDataTexture || binding.texture.isDataArrayTexture || binding.texture.isData3DTexture ) { + + const type = binding.texture.type; + + if ( type === IntType ) { + + texture.sampleType = GPUTextureSampleType.SInt; + + } else if ( type === UnsignedIntType ) { + + texture.sampleType = GPUTextureSampleType.UInt; + + } else if ( type === FloatType ) { + + if ( this.backend.hasFeature( 'float32-filterable' ) ) { + + texture.sampleType = GPUTextureSampleType.Float; + + } else { + + texture.sampleType = GPUTextureSampleType.UnfilterableFloat; + + } + + } + + } + + if ( binding.isSampledCubeTexture ) { + + texture.viewDimension = GPUTextureViewDimension.Cube; + + } else if ( binding.texture.isArrayTexture || binding.texture.isDataArrayTexture || binding.texture.isCompressedArrayTexture ) { + + texture.viewDimension = GPUTextureViewDimension.TwoDArray; + + } else if ( binding.isSampledTexture3D ) { + + texture.viewDimension = GPUTextureViewDimension.ThreeD; + + } + + bindingGPU.texture = texture; + + } else if ( binding.isSampler ) { + + const sampler = {}; // GPUSamplerBindingLayout + + if ( binding.texture.isDepthTexture ) { + + if ( binding.texture.compareFunction !== null ) { + + sampler.type = GPUSamplerBindingType.Comparison; + + } else if ( backend.compatibilityMode ) { + + sampler.type = GPUSamplerBindingType.NonFiltering; + + } + + } + + bindingGPU.sampler = sampler; + + } else { + + error( `WebGPUBindingUtils: Unsupported binding "${ binding }".` ); + + } + + return bindingGPU; + + } + + /** + * Creates a GPU bind group layout entries for the given bind group. + * + * @param {BindGroup} bindGroup - The bind group. + * @return {Array} The GPU bind group layout entries. + */ + _createBindingsLayoutEntries( bindGroup ) { + + const entries = []; + let index = 0; + + for ( const binding of bindGroup.bindings ) { + + entries.push( this._createBindingLayoutEntry( binding, index ) ); + index ++; + + } + + return entries; + + } + + /** + * Delete the data associated with a bind group. + * + * @param {BindGroup} bindGroup - The bind group. + */ + deleteBindGroupData( bindGroup ) { + + const { backend } = this; + + const bindingsData = backend.get( bindGroup ); + + // Decrement the layout reference's usedTimes attribute + bindingsData.layout.usedTimes --; + + // Remove reference from map + if ( bindingsData.layout.usedTimes === 0 ) { + + this.bindGroupLayoutCache.delete( bindingsData.layoutKey ); + + } + + bindingsData.layout = null; + + } + + dispose() { + + this.bindGroupLayoutCache.clear(); + + } + } /** @@ -76572,8 +76783,9 @@ class WebGPUPipelineUtils { for ( const bindGroup of renderObject.getBindings() ) { const bindingsData = backend.get( bindGroup ); + const { layoutGPU } = bindingsData.layout; - bindGroupLayouts.push( bindingsData.layout ); + bindGroupLayouts.push( layoutGPU ); } @@ -76807,8 +77019,9 @@ class WebGPUPipelineUtils { for ( const bindingsGroup of bindings ) { const bindingsData = backend.get( bindingsGroup ); + const { layoutGPU } = bindingsData.layout; - bindGroupLayouts.push( bindingsData.layout ); + bindGroupLayouts.push( layoutGPU ); } @@ -79177,8 +79390,13 @@ class WebGPUBackend extends Backend { const buffer = this.get( indirect ).buffer; const indirectOffset = renderObject.getIndirectOffset(); + const indirectOffsets = Array.isArray( indirectOffset ) ? indirectOffset : [ indirectOffset ]; + + for ( let i = 0; i < indirectOffsets.length; i ++ ) { - passEncoderGPU.drawIndexedIndirect( buffer, indirectOffset ); + passEncoderGPU.drawIndexedIndirect( buffer, indirectOffsets[ i ] ); + + } } else { @@ -79198,8 +79416,14 @@ class WebGPUBackend extends Backend { const buffer = this.get( indirect ).buffer; const indirectOffset = renderObject.getIndirectOffset(); + const indirectOffsets = Array.isArray( indirectOffset ) ? indirectOffset : [ indirectOffset ]; + + for ( let i = 0; i < indirectOffsets.length; i ++ ) { + + passEncoderGPU.drawIndirect( buffer, indirectOffsets[ i ] ); + + } - passEncoderGPU.drawIndirect( buffer, indirectOffset ); } else { @@ -79230,7 +79454,9 @@ class WebGPUBackend extends Backend { data[ 0 ] = i; - const bindGroupIndex = this.bindingUtils.createBindGroupIndex( data, bindingsData.layout ); + const { layoutGPU } = bindingsData.layout; + + const bindGroupIndex = this.bindingUtils.createBindGroupIndex( data, layoutGPU ); indexesGPU.push( bindGroupIndex ); @@ -79697,6 +79923,17 @@ class WebGPUBackend extends Backend { } + /** + * Delete data associated with the current bind group. + * + * @param {BindGroup} bindGroup - The bind group. + */ + deleteBindGroupData( bindGroup ) { + + this.bindingUtils.deleteBindGroupData( bindGroup ); + + } + /** * Updates the given bind group definition. * @@ -80052,6 +80289,7 @@ class WebGPUBackend extends Backend { dispose() { this.textureUtils.dispose(); + this.bindingUtils.dispose(); } diff --git a/build/three.webgpu.nodes.min.js b/build/three.webgpu.nodes.min.js index 494a5d1720a01d..02785cb2418f41 100644 --- a/build/three.webgpu.nodes.min.js +++ b/build/three.webgpu.nodes.min.js @@ -3,4 +3,4 @@ * Copyright 2010-2025 Three.js Authors * SPDX-License-Identifier: MIT */ -import{Color as e,Vector2 as t,Vector3 as r,Vector4 as s,Matrix2 as i,Matrix3 as n,Matrix4 as a,error as o,EventDispatcher as u,MathUtils as l,warn as d,WebGLCoordinateSystem as c,WebGPUCoordinateSystem as h,ColorManagement as p,SRGBTransfer as g,NoToneMapping as m,StaticDrawUsage as f,InterleavedBufferAttribute as y,InterleavedBuffer as b,DynamicDrawUsage as x,NoColorSpace as T,log as _,warnOnce as v,Texture as N,UnsignedIntType as S,IntType as R,NearestFilter as A,Sphere as E,BackSide as w,DoubleSide as C,Euler as M,CubeTexture as B,CubeReflectionMapping as L,CubeRefractionMapping as P,TangentSpaceNormalMap as F,NoNormalPacking as D,NormalRGPacking as I,NormalGAPacking as U,ObjectSpaceNormalMap as O,RGFormat as V,RED_GREEN_RGTC2_Format as k,RG11_EAC_Format as G,InstancedInterleavedBuffer as z,InstancedBufferAttribute as $,DataArrayTexture as W,FloatType as H,FramebufferTexture as j,LinearMipmapLinearFilter as q,DepthTexture as X,Material as K,LineBasicMaterial as Y,LineDashedMaterial as Q,NoBlending as Z,MeshNormalMaterial as J,SRGBColorSpace as ee,WebGLCubeRenderTarget as te,BoxGeometry as re,Mesh as se,Scene as ie,LinearFilter as ne,CubeCamera as ae,EquirectangularReflectionMapping as oe,EquirectangularRefractionMapping as ue,AddOperation as le,MixOperation as de,MultiplyOperation as ce,MeshBasicMaterial as he,MeshLambertMaterial as pe,MeshPhongMaterial as ge,DataTexture as me,HalfFloatType as fe,ClampToEdgeWrapping as ye,BufferGeometry as be,OrthographicCamera as xe,PerspectiveCamera as Te,RenderTarget as _e,LinearSRGBColorSpace as ve,RGBAFormat as Ne,CubeUVReflectionMapping as Se,BufferAttribute as Re,MeshStandardMaterial as Ae,MeshPhysicalMaterial as Ee,MeshToonMaterial as we,MeshMatcapMaterial as Ce,SpriteMaterial as Me,PointsMaterial as Be,ShadowMaterial as Le,Uint32BufferAttribute as Pe,Uint16BufferAttribute as Fe,arrayNeedsUint32 as De,Camera as Ie,DepthStencilFormat as Ue,DepthFormat as Oe,UnsignedInt248Type as Ve,UnsignedByteType as ke,Plane as Ge,Object3D as ze,LinearMipMapLinearFilter as $e,Float32BufferAttribute as We,UVMapping as He,VSMShadowMap as je,LessCompare as qe,BasicShadowMap as Xe,CubeDepthTexture as Ke,SphereGeometry as Ye,NormalBlending as Qe,LinearMipmapNearestFilter as Ze,NearestMipmapLinearFilter as Je,Float16BufferAttribute as et,REVISION as tt,ArrayCamera as rt,PlaneGeometry as st,FrontSide as it,CustomBlending as nt,AddEquation as at,ZeroFactor as ot,CylinderGeometry as ut,Quaternion as lt,WebXRController as dt,RAD2DEG as ct,PCFShadowMap as ht,FrustumArray as pt,Frustum as gt,RedIntegerFormat as mt,RedFormat as ft,ShortType as yt,ByteType as bt,UnsignedShortType as xt,RGIntegerFormat as Tt,RGBIntegerFormat as _t,RGBFormat as vt,RGBAIntegerFormat as Nt,TimestampQuery as St,createCanvasElement as Rt,ReverseSubtractEquation as At,SubtractEquation as Et,OneMinusDstAlphaFactor as wt,OneMinusDstColorFactor as Ct,OneMinusSrcAlphaFactor as Mt,OneMinusSrcColorFactor as Bt,DstAlphaFactor as Lt,DstColorFactor as Pt,SrcAlphaSaturateFactor as Ft,SrcAlphaFactor as Dt,SrcColorFactor as It,OneFactor as Ut,CullFaceNone as Ot,CullFaceBack as Vt,CullFaceFront as kt,MultiplyBlending as Gt,SubtractiveBlending as zt,AdditiveBlending as $t,NotEqualDepth as Wt,GreaterDepth as Ht,GreaterEqualDepth as jt,EqualDepth as qt,LessEqualDepth as Xt,LessDepth as Kt,AlwaysDepth as Yt,NeverDepth as Qt,UnsignedShort4444Type as Zt,UnsignedShort5551Type as Jt,UnsignedInt5999Type as er,UnsignedInt101111Type as tr,AlphaFormat as rr,RGB_S3TC_DXT1_Format as sr,RGBA_S3TC_DXT1_Format as ir,RGBA_S3TC_DXT3_Format as nr,RGBA_S3TC_DXT5_Format as ar,RGB_PVRTC_4BPPV1_Format as or,RGB_PVRTC_2BPPV1_Format as ur,RGBA_PVRTC_4BPPV1_Format as lr,RGBA_PVRTC_2BPPV1_Format as dr,RGB_ETC1_Format as cr,RGB_ETC2_Format as hr,RGBA_ETC2_EAC_Format as pr,R11_EAC_Format as gr,SIGNED_R11_EAC_Format as mr,SIGNED_RG11_EAC_Format as fr,RGBA_ASTC_4x4_Format as yr,RGBA_ASTC_5x4_Format as br,RGBA_ASTC_5x5_Format as xr,RGBA_ASTC_6x5_Format as Tr,RGBA_ASTC_6x6_Format as _r,RGBA_ASTC_8x5_Format as vr,RGBA_ASTC_8x6_Format as Nr,RGBA_ASTC_8x8_Format as Sr,RGBA_ASTC_10x5_Format as Rr,RGBA_ASTC_10x6_Format as Ar,RGBA_ASTC_10x8_Format as Er,RGBA_ASTC_10x10_Format as wr,RGBA_ASTC_12x10_Format as Cr,RGBA_ASTC_12x12_Format as Mr,RGBA_BPTC_Format as Br,RED_RGTC1_Format as Lr,SIGNED_RED_RGTC1_Format as Pr,SIGNED_RED_GREEN_RGTC2_Format as Fr,MirroredRepeatWrapping as Dr,RepeatWrapping as Ir,NearestMipmapNearestFilter as Ur,NotEqualCompare as Or,GreaterCompare as Vr,GreaterEqualCompare as kr,EqualCompare as Gr,LessEqualCompare as zr,AlwaysCompare as $r,NeverCompare as Wr,LinearTransfer as Hr,getByteLength as jr,isTypedArray as qr,NotEqualStencilFunc as Xr,GreaterStencilFunc as Kr,GreaterEqualStencilFunc as Yr,EqualStencilFunc as Qr,LessEqualStencilFunc as Zr,LessStencilFunc as Jr,AlwaysStencilFunc as es,NeverStencilFunc as ts,DecrementWrapStencilOp as rs,IncrementWrapStencilOp as ss,DecrementStencilOp as is,IncrementStencilOp as ns,InvertStencilOp as as,ReplaceStencilOp as os,ZeroStencilOp as us,KeepStencilOp as ls,MaxEquation as ds,MinEquation as cs,SpotLight as hs,PointLight as ps,DirectionalLight as gs,RectAreaLight as ms,AmbientLight as fs,HemisphereLight as ys,LightProbe as bs,LinearToneMapping as xs,ReinhardToneMapping as Ts,CineonToneMapping as _s,ACESFilmicToneMapping as vs,AgXToneMapping as Ns,NeutralToneMapping as Ss,Group as Rs,Loader as As,FileLoader as Es,MaterialLoader as ws,ObjectLoader as Cs}from"./three.core.min.js";export{AdditiveAnimationBlendMode,AnimationAction,AnimationClip,AnimationLoader,AnimationMixer,AnimationObjectGroup,AnimationUtils,ArcCurve,ArrowHelper,AttachedBindMode,Audio,AudioAnalyser,AudioContext,AudioListener,AudioLoader,AxesHelper,BasicDepthPacking,BatchedMesh,Bone,BooleanKeyframeTrack,Box2,Box3,Box3Helper,BoxHelper,BufferGeometryLoader,Cache,CameraHelper,CanvasTexture,CapsuleGeometry,CatmullRomCurve3,CircleGeometry,Clock,ColorKeyframeTrack,CompressedArrayTexture,CompressedCubeTexture,CompressedTexture,CompressedTextureLoader,ConeGeometry,ConstantAlphaFactor,ConstantColorFactor,Controls,CubeTextureLoader,CubicBezierCurve,CubicBezierCurve3,CubicInterpolant,CullFaceFrontBack,Curve,CurvePath,CustomToneMapping,Cylindrical,Data3DTexture,DataTextureLoader,DataUtils,DefaultLoadingManager,DetachedBindMode,DirectionalLightHelper,DiscreteInterpolant,DodecahedronGeometry,DynamicCopyUsage,DynamicReadUsage,EdgesGeometry,EllipseCurve,ExternalTexture,ExtrudeGeometry,Fog,FogExp2,GLBufferAttribute,GLSL1,GLSL3,GridHelper,HemisphereLightHelper,IcosahedronGeometry,IdentityDepthPacking,ImageBitmapLoader,ImageLoader,ImageUtils,InstancedBufferGeometry,InstancedMesh,Int16BufferAttribute,Int32BufferAttribute,Int8BufferAttribute,Interpolant,InterpolateDiscrete,InterpolateLinear,InterpolateSmooth,InterpolationSamplingMode,InterpolationSamplingType,KeyframeTrack,LOD,LatheGeometry,Layers,Light,Line,Line3,LineCurve,LineCurve3,LineLoop,LineSegments,LinearInterpolant,LinearMipMapNearestFilter,LoaderUtils,LoadingManager,LoopOnce,LoopPingPong,LoopRepeat,MOUSE,MeshDepthMaterial,MeshDistanceMaterial,NearestMipMapLinearFilter,NearestMipMapNearestFilter,NormalAnimationBlendMode,NumberKeyframeTrack,OctahedronGeometry,OneMinusConstantAlphaFactor,OneMinusConstantColorFactor,PCFSoftShadowMap,Path,PlaneHelper,PointLightHelper,Points,PolarGridHelper,PolyhedronGeometry,PositionalAudio,PropertyBinding,PropertyMixer,QuadraticBezierCurve,QuadraticBezierCurve3,QuaternionKeyframeTrack,QuaternionLinearInterpolant,RGBADepthPacking,RGBDepthPacking,RGB_BPTC_SIGNED_Format,RGB_BPTC_UNSIGNED_Format,RGDepthPacking,RawShaderMaterial,Ray,Raycaster,RenderTarget3D,RingGeometry,ShaderMaterial,Shape,ShapeGeometry,ShapePath,ShapeUtils,Skeleton,SkeletonHelper,SkinnedMesh,Source,Spherical,SphericalHarmonics3,SplineCurve,SpotLightHelper,Sprite,StaticCopyUsage,StaticReadUsage,StereoCamera,StreamCopyUsage,StreamDrawUsage,StreamReadUsage,StringKeyframeTrack,TOUCH,TetrahedronGeometry,TextureLoader,TextureUtils,Timer,TorusGeometry,TorusKnotGeometry,Triangle,TriangleFanDrawMode,TriangleStripDrawMode,TrianglesDrawMode,TubeGeometry,Uint8BufferAttribute,Uint8ClampedBufferAttribute,Uniform,UniformsGroup,VectorKeyframeTrack,VideoFrameTexture,VideoTexture,WebGL3DRenderTarget,WebGLArrayRenderTarget,WebGLRenderTarget,WireframeGeometry,WrapAroundEnding,ZeroCurvatureEnding,ZeroSlopeEnding,getConsoleFunction,setConsoleFunction}from"./three.core.min.js";const Ms=["alphaMap","alphaTest","anisotropy","anisotropyMap","anisotropyRotation","aoMap","aoMapIntensity","attenuationColor","attenuationDistance","bumpMap","clearcoat","clearcoatMap","clearcoatNormalMap","clearcoatNormalScale","clearcoatRoughness","color","dispersion","displacementMap","emissive","emissiveIntensity","emissiveMap","envMap","envMapIntensity","gradientMap","ior","iridescence","iridescenceIOR","iridescenceMap","iridescenceThicknessMap","lightMap","lightMapIntensity","map","matcap","metalness","metalnessMap","normalMap","normalScale","opacity","roughness","roughnessMap","sheen","sheenColor","sheenColorMap","sheenRoughnessMap","shininess","specular","specularColor","specularColorMap","specularIntensity","specularIntensityMap","specularMap","thickness","transmission","transmissionMap"],Bs=new WeakMap;class Ls{constructor(e){this.renderObjects=new WeakMap,this.hasNode=this.containsNode(e),this.hasAnimation=!0===e.object.isSkinnedMesh,this.refreshUniforms=Ms,this.renderId=0}firstInitialization(e){return!1===this.renderObjects.has(e)&&(this.getRenderObjectData(e),!0)}needsVelocity(e){const t=e.getMRT();return null!==t&&t.has("velocity")}getRenderObjectData(e){let t=this.renderObjects.get(e);if(void 0===t){const{geometry:r,material:s,object:i}=e;if(t={material:this.getMaterialData(s),geometry:{id:r.id,attributes:this.getAttributesData(r.attributes),indexVersion:r.index?r.index.version:null,drawRange:{start:r.drawRange.start,count:r.drawRange.count}},worldMatrix:i.matrixWorld.clone()},i.center&&(t.center=i.center.clone()),i.morphTargetInfluences&&(t.morphTargetInfluences=i.morphTargetInfluences.slice()),null!==e.bundle&&(t.version=e.bundle.version),t.material.transmission>0){const{width:r,height:s}=e.context;t.bufferWidth=r,t.bufferHeight=s}t.lights=this.getLightsData(e.lightsNode.getLights()),this.renderObjects.set(e,t)}return t}getAttributesData(e){const t={};for(const r in e){const s=e[r];t[r]={version:s.version}}return t}containsNode(e){const t=e.material;for(const e in t)if(t[e]&&t[e].isNode)return!0;return!!(e.context.modelViewMatrix||e.context.modelNormalViewMatrix||e.context.getAO||e.context.getShadow)}getMaterialData(e){const t={};for(const r of this.refreshUniforms){const s=e[r];null!=s&&("object"==typeof s&&void 0!==s.clone?!0===s.isTexture?t[r]={id:s.id,version:s.version}:t[r]=s.clone():t[r]=s)}return t}equals(e,t){const{object:r,material:s,geometry:i}=e,n=this.getRenderObjectData(e);if(!0!==n.worldMatrix.equals(r.matrixWorld))return n.worldMatrix.copy(r.matrixWorld),!1;const a=n.material;for(const e in a){const t=a[e],r=s[e];if(void 0!==t.equals){if(!1===t.equals(r))return t.copy(r),!1}else if(!0===r.isTexture){if(t.id!==r.id||t.version!==r.version)return t.id=r.id,t.version=r.version,!1}else if(t!==r)return a[e]=r,!1}if(a.transmission>0){const{width:t,height:r}=e.context;if(n.bufferWidth!==t||n.bufferHeight!==r)return n.bufferWidth=t,n.bufferHeight=r,!1}const o=n.geometry,u=i.attributes,l=o.attributes,d=Object.keys(l),c=Object.keys(u);if(o.id!==i.id)return o.id=i.id,!1;if(d.length!==c.length)return n.geometry.attributes=this.getAttributesData(u),!1;for(const e of d){const t=l[e],r=u[e];if(void 0===r)return delete l[e],!1;if(t.version!==r.version)return t.version=r.version,!1}const h=i.index,p=o.indexVersion,g=h?h.version:null;if(p!==g)return o.indexVersion=g,!1;if(o.drawRange.start!==i.drawRange.start||o.drawRange.count!==i.drawRange.count)return o.drawRange.start=i.drawRange.start,o.drawRange.count=i.drawRange.count,!1;if(n.morphTargetInfluences){let e=!1;for(let t=0;t>>16,2246822507),r^=Math.imul(s^s>>>13,3266489909),s=Math.imul(s^s>>>16,2246822507),s^=Math.imul(r^r>>>13,3266489909),4294967296*(2097151&s)+(r>>>0)}const Fs=e=>Ps(e),Ds=e=>Ps(e),Is=(...e)=>Ps(e),Us=new Map([[1,"float"],[2,"vec2"],[3,"vec3"],[4,"vec4"],[9,"mat3"],[16,"mat4"]]),Os=new WeakMap;function Vs(e){return Us.get(e)}function ks(e){if(/[iu]?vec\d/.test(e))return e.startsWith("ivec")?Int32Array:e.startsWith("uvec")?Uint32Array:Float32Array;if(/mat\d/.test(e))return Float32Array;if(/float/.test(e))return Float32Array;if(/uint/.test(e))return Uint32Array;if(/int/.test(e))return Int32Array;throw new Error(`THREE.NodeUtils: Unsupported type: ${e}`)}function Gs(e){return/float|int|uint/.test(e)?1:/vec2/.test(e)?2:/vec3/.test(e)?3:/vec4/.test(e)||/mat2/.test(e)?4:/mat3/.test(e)?9:/mat4/.test(e)?16:void o("TSL: Unsupported type:",e)}function zs(e){return/float|int|uint/.test(e)?1:/vec2/.test(e)?2:/vec3/.test(e)?3:/vec4/.test(e)||/mat2/.test(e)?4:/mat3/.test(e)?12:/mat4/.test(e)?16:void o("TSL: Unsupported type:",e)}function $s(e){return/float|int|uint/.test(e)?4:/vec2/.test(e)?8:/vec3/.test(e)||/vec4/.test(e)?16:/mat2/.test(e)?8:/mat3/.test(e)||/mat4/.test(e)?16:void o("TSL: Unsupported type:",e)}function Ws(e){if(null==e)return null;const t=typeof e;return!0===e.isNode?"node":"number"===t?"float":"boolean"===t?"bool":"string"===t?"string":"function"===t?"shader":!0===e.isVector2?"vec2":!0===e.isVector3?"vec3":!0===e.isVector4?"vec4":!0===e.isMatrix2?"mat2":!0===e.isMatrix3?"mat3":!0===e.isMatrix4?"mat4":!0===e.isColor?"color":e instanceof ArrayBuffer?"ArrayBuffer":null}function Hs(o,...u){const l=o?o.slice(-4):void 0;return 1===u.length&&("vec2"===l?u=[u[0],u[0]]:"vec3"===l?u=[u[0],u[0],u[0]]:"vec4"===l&&(u=[u[0],u[0],u[0],u[0]])),"color"===o?new e(...u):"vec2"===l?new t(...u):"vec3"===l?new r(...u):"vec4"===l?new s(...u):"mat2"===l?new i(...u):"mat3"===l?new n(...u):"mat4"===l?new a(...u):"bool"===o?u[0]||!1:"float"===o||"int"===o||"uint"===o?u[0]||0:"string"===o?u[0]||"":"ArrayBuffer"===o?Xs(u[0]):null}function js(e){let t=Os.get(e);return void 0===t&&(t={},Os.set(e,t)),t}function qs(e){let t="";const r=new Uint8Array(e);for(let e=0;ee.charCodeAt(0)).buffer}var Ks=Object.freeze({__proto__:null,arrayBufferToBase64:qs,base64ToArrayBuffer:Xs,getAlignmentFromType:$s,getDataFromObject:js,getLengthFromType:Gs,getMemoryLengthFromType:zs,getTypeFromLength:Vs,getTypedArrayFromType:ks,getValueFromType:Hs,getValueType:Ws,hash:Is,hashArray:Ds,hashString:Fs});const Ys={VERTEX:"vertex",FRAGMENT:"fragment"},Qs={NONE:"none",FRAME:"frame",RENDER:"render",OBJECT:"object"},Zs={BOOLEAN:"bool",INTEGER:"int",FLOAT:"float",VECTOR2:"vec2",VECTOR3:"vec3",VECTOR4:"vec4",MATRIX2:"mat2",MATRIX3:"mat3",MATRIX4:"mat4"},Js={READ_ONLY:"readOnly",WRITE_ONLY:"writeOnly",READ_WRITE:"readWrite"},ei=["fragment","vertex"],ti=["setup","analyze","generate"],ri=[...ei,"compute"],si=["x","y","z","w"],ii={analyze:"setup",generate:"analyze"};let ni=0;class ai extends u{static get type(){return"Node"}constructor(e=null){super(),this.nodeType=e,this.updateType=Qs.NONE,this.updateBeforeType=Qs.NONE,this.updateAfterType=Qs.NONE,this.uuid=l.generateUUID(),this.version=0,this.name="",this.global=!1,this.parents=!1,this.isNode=!0,this._beforeNodes=null,this._cacheKey=null,this._cacheKeyVersion=0,Object.defineProperty(this,"id",{value:ni++})}set needsUpdate(e){!0===e&&this.version++}get type(){return this.constructor.type}onUpdate(e,t){return this.updateType=t,this.update=e.bind(this),this}onFrameUpdate(e){return this.onUpdate(e,Qs.FRAME)}onRenderUpdate(e){return this.onUpdate(e,Qs.RENDER)}onObjectUpdate(e){return this.onUpdate(e,Qs.OBJECT)}onReference(e){return this.updateReference=e.bind(this),this}updateReference(){return this}isGlobal(){return this.global}*getChildren(){for(const{childNode:e}of this._getChildren())yield e}dispose(){this.dispatchEvent({type:"dispose"})}traverse(e){e(this);for(const t of this.getChildren())t.traverse(e)}_getChildren(e=new Set){const t=[];e.add(this);for(const r of Object.getOwnPropertyNames(this)){const s=this[r];if(!0!==r.startsWith("_")&&!e.has(s))if(!0===Array.isArray(s))for(let e=0;e0&&(e.inputNodes=r)}deserialize(e){if(void 0!==e.inputNodes){const t=e.meta.nodes;for(const r in e.inputNodes)if(Array.isArray(e.inputNodes[r])){const s=[];for(const i of e.inputNodes[r])s.push(t[i]);this[r]=s}else if("object"==typeof e.inputNodes[r]){const s={};for(const i in e.inputNodes[r]){const n=e.inputNodes[r][i];s[i]=t[n]}this[r]=s}else{const s=e.inputNodes[r];this[r]=t[s]}}}toJSON(e){const{uuid:t,type:r}=this,s=void 0===e||"string"==typeof e;s&&(e={textures:{},images:{},nodes:{}});let i=e.nodes[t];function n(e){const t=[];for(const r in e){const s=e[r];delete s.metadata,t.push(s)}return t}if(void 0===i&&(i={uuid:t,type:r,meta:e,metadata:{version:4.7,type:"Node",generator:"Node.toJSON"}},!0!==s&&(e.nodes[i.uuid]=i),this.serialize(i),delete i.meta),s){const t=n(e.textures),r=n(e.images),s=n(e.nodes);t.length>0&&(i.textures=t),r.length>0&&(i.images=r),s.length>0&&(i.nodes=s)}return i}}class oi extends ai{static get type(){return"ArrayElementNode"}constructor(e,t){super(),this.node=e,this.indexNode=t,this.isArrayElementNode=!0}getNodeType(e){return this.node.getElementType(e)}generate(e){const t=this.indexNode.getNodeType(e);return`${this.node.build(e)}[ ${this.indexNode.build(e,!e.isVector(t)&&e.isInteger(t)?t:"uint")} ]`}}class ui extends ai{static get type(){return"ConvertNode"}constructor(e,t){super(),this.node=e,this.convertTo=t}getNodeType(e){const t=this.node.getNodeType(e);let r=null;for(const s of this.convertTo.split("|"))null!==r&&e.getTypeLength(t)!==e.getTypeLength(s)||(r=s);return r}serialize(e){super.serialize(e),e.convertTo=this.convertTo}deserialize(e){super.deserialize(e),this.convertTo=e.convertTo}generate(e,t){const r=this.node,s=this.getNodeType(e),i=r.build(e,s);return e.format(i,s,t)}}class li extends ai{static get type(){return"TempNode"}constructor(e=null){super(e),this.isTempNode=!0}hasDependencies(e){return e.getDataFromNode(this).usageCount>1}build(e,t){if("generate"===e.getBuildStage()){const r=e.getVectorType(this.getNodeType(e,t)),s=e.getDataFromNode(this);if(void 0!==s.propertyName)return e.format(s.propertyName,r,t);if("void"!==r&&"void"!==t&&this.hasDependencies(e)){const i=super.build(e,r),n=e.getVarFromNode(this,null,r),a=e.getPropertyName(n);return e.addLineFlowCode(`${a} = ${i}`,this),s.snippet=i,s.propertyName=a,e.format(s.propertyName,r,t)}}return super.build(e,t)}}class di extends li{static get type(){return"JoinNode"}constructor(e=[],t=null){super(t),this.nodes=e}getNodeType(e){return null!==this.nodeType?e.getVectorType(this.nodeType):e.getTypeFromLength(this.nodes.reduce((t,r)=>t+e.getTypeLength(r.getNodeType(e)),0))}generate(e,t){const r=this.getNodeType(e),s=e.getTypeLength(r),i=this.nodes,n=e.getComponentType(r),a=[];let u=0;for(const t of i){if(u>=s){o(`TSL: Length of parameters exceeds maximum length of function '${r}()' type.`);break}let i,l=t.getNodeType(e),d=e.getTypeLength(l);u+d>s&&(o(`TSL: Length of '${r}()' data exceeds maximum length of output type.`),d=s-u,l=e.getTypeFromLength(d)),u+=d,i=t.build(e,l);if(e.getComponentType(l)!==n){const t=e.getTypeFromLength(d,n);i=e.format(i,l,t)}a.push(i)}const l=`${e.getType(r)}( ${a.join(", ")} )`;return e.format(l,r,t)}}const ci=si.join("");class hi extends ai{static get type(){return"SplitNode"}constructor(e,t="x"){super(),this.node=e,this.components=t,this.isSplitNode=!0}getVectorLength(){let e=this.components.length;for(const t of this.components)e=Math.max(si.indexOf(t)+1,e);return e}getComponentType(e){return e.getComponentType(this.node.getNodeType(e))}getNodeType(e){return e.getTypeFromLength(this.components.length,this.getComponentType(e))}getScope(){return this.node.getScope()}generate(e,t){const r=this.node,s=e.getTypeLength(r.getNodeType(e));let i=null;if(s>1){let n=null;this.getVectorLength()>=s&&(n=e.getTypeFromLength(this.getVectorLength(),this.getComponentType(e)));const a=r.build(e,n);i=this.components.length===s&&this.components===ci.slice(0,this.components.length)?e.format(a,n,t):e.format(`${a}.${this.components}`,this.getNodeType(e),t)}else i=r.build(e,t);return i}serialize(e){super.serialize(e),e.components=this.components}deserialize(e){super.deserialize(e),this.components=e.components}}class pi extends li{static get type(){return"SetNode"}constructor(e,t,r){super(),this.sourceNode=e,this.components=t,this.targetNode=r}getNodeType(e){return this.sourceNode.getNodeType(e)}generate(e){const{sourceNode:t,components:r,targetNode:s}=this,i=this.getNodeType(e),n=e.getComponentType(s.getNodeType(e)),a=e.getTypeFromLength(r.length,n),o=s.build(e,a),u=t.build(e,i),l=e.getTypeLength(i),d=[];for(let e=0;e(e=>e.replace(/r|s/g,"x").replace(/g|t/g,"y").replace(/b|p/g,"z").replace(/a|q/g,"w"))(e).split("").sort().join("");ai.prototype.assign=function(...e){if(!0!==this.isStackNode)return null!==xi?xi.assign(this,...e):o("TSL: No stack defined for assign operation. Make sure the assign is inside a Fn()."),this;{const t=Ti.get("assign");return this.addToStack(t(...e))}},ai.prototype.toVarIntent=function(){return this},ai.prototype.get=function(e){return new bi(this,e)};const Ni={};function Si(e,t,r){Ni[e]=Ni[t]=Ni[r]={get(){this._cache=this._cache||{};let t=this._cache[e];return void 0===t&&(t=new hi(this,e),this._cache[e]=t),t},set(t){this[e].assign(Yi(t))}};const s=e.toUpperCase(),i=t.toUpperCase(),n=r.toUpperCase();ai.prototype["set"+s]=ai.prototype["set"+i]=ai.prototype["set"+n]=function(t){const r=vi(e);return new pi(this,r,Yi(t))},ai.prototype["flip"+s]=ai.prototype["flip"+i]=ai.prototype["flip"+n]=function(){const t=vi(e);return new gi(this,t)}}const Ri=["x","y","z","w"],Ai=["r","g","b","a"],Ei=["s","t","p","q"];for(let e=0;e<4;e++){let t=Ri[e],r=Ai[e],s=Ei[e];Si(t,r,s);for(let i=0;i<4;i++){t=Ri[e]+Ri[i],r=Ai[e]+Ai[i],s=Ei[e]+Ei[i],Si(t,r,s);for(let n=0;n<4;n++){t=Ri[e]+Ri[i]+Ri[n],r=Ai[e]+Ai[i]+Ai[n],s=Ei[e]+Ei[i]+Ei[n],Si(t,r,s);for(let a=0;a<4;a++)t=Ri[e]+Ri[i]+Ri[n]+Ri[a],r=Ai[e]+Ai[i]+Ai[n]+Ai[a],s=Ei[e]+Ei[i]+Ei[n]+Ei[a],Si(t,r,s)}}}for(let e=0;e<32;e++)Ni[e]={get(){this._cache=this._cache||{};let t=this._cache[e];return void 0===t&&(t=new oi(this,new yi(e,"uint")),this._cache[e]=t),t},set(t){this[e].assign(Yi(t))}};Object.defineProperties(ai.prototype,Ni);const wi=new WeakMap,Ci=function(e,t=null){for(const r in e)e[r]=Yi(e[r],t);return e},Mi=function(e,t=null){const r=e.length;for(let s=0;su?(o(`TSL: "${r}" parameter length exceeds limit.`),t.slice(0,u)):t}return null===t?n=(...t)=>i(new e(...Ji(d(t)))):null!==r?(r=Yi(r),n=(...s)=>i(new e(t,...Ji(d(s)),r))):n=(...r)=>i(new e(t,...Ji(d(r)))),n.setParameterLength=(...e)=>(1===e.length?a=u=e[0]:2===e.length&&([a,u]=e),n),n.setName=e=>(l=e,n),n},Li=function(e,...t){return Yi(new e(...Ji(t)))};class Pi extends ai{constructor(e,t){super(),this.shaderNode=e,this.rawInputs=t,this.isShaderCallNodeInternal=!0}getNodeType(e){return this.shaderNode.nodeType||this.getOutputNode(e).getNodeType(e)}getElementType(e){return this.getOutputNode(e).getElementType(e)}getMemberType(e,t){return this.getOutputNode(e).getMemberType(e,t)}call(e){const{shaderNode:t,rawInputs:r}=this,s=e.getNodeProperties(t),i=e.getClosestSubBuild(t.subBuilds)||"",n=i||"default";if(s[n])return s[n];const a=e.subBuildFn,o=e.fnCall;e.subBuildFn=i,e.fnCall=this;let u=null;if(t.layout){let s=wi.get(e.constructor);void 0===s&&(s=new WeakMap,wi.set(e.constructor,s));let i=s.get(t);void 0===i&&(i=Yi(e.buildFunctionNode(t)),s.set(t,i)),e.addInclude(i);const n=r?function(e){let t;Zi(e);t=e[0]&&(e[0].isNode||Object.getPrototypeOf(e[0])!==Object.prototype)?[...e]:e[0];return t}(r):null;u=Yi(i.call(n))}else{const s=new Proxy(e,{get:(e,t,r)=>{let s;return s=Symbol.iterator===t?function*(){yield}:Reflect.get(e,t,r),s}}),i=r?function(e){let t=0;return Zi(e),new Proxy(e,{get:(r,s,i)=>{let n;if("length"===s)return n=e.length,n;if(Symbol.iterator===s)n=function*(){for(const t of e)yield Yi(t)};else{if(e.length>0)if(Object.getPrototypeOf(e[0])===Object.prototype){const r=e[0];n=void 0===r[s]?r[t++]:Reflect.get(r,s,i)}else e[0]instanceof ai&&(n=void 0===e[s]?e[t++]:Reflect.get(e,s,i));else n=Reflect.get(r,s,i);n=Yi(n)}return n}})}(r):null,n=Array.isArray(r)?r.length>0:null!==r,a=t.jsFunc,o=n||a.length>1?a(i,s):a(s);u=Yi(o)}return e.subBuildFn=a,e.fnCall=o,t.once&&(s[n]=u),u}setupOutput(e){return e.addStack(),e.stack.outputNode=this.call(e),e.removeStack()}getOutputNode(e){const t=e.getNodeProperties(this),r=e.getSubBuildOutput(this);return t[r]=t[r]||this.setupOutput(e),t[r].subBuild=e.getClosestSubBuild(this),t[r]}build(e,t=null){let r=null;const s=e.getBuildStage(),i=e.getNodeProperties(this),n=e.getSubBuildOutput(this),a=this.getOutputNode(e),o=e.fnCall;if(e.fnCall=this,"setup"===s){const t=e.getSubBuildProperty("initialized",this);if(!0!==i[t]&&(i[t]=!0,i[n]=this.getOutputNode(e),i[n].build(e),this.shaderNode.subBuilds))for(const t of e.chaining){const r=e.getDataFromNode(t,"any");r.subBuilds=r.subBuilds||new Set;for(const e of this.shaderNode.subBuilds)r.subBuilds.add(e)}r=i[n]}else"analyze"===s?a.build(e,t):"generate"===s&&(r=a.build(e,t)||"");return e.fnCall=o,r}}class Fi extends ai{constructor(e,t){super(t),this.jsFunc=e,this.layout=null,this.global=!0,this.once=!1}setLayout(e){return this.layout=e,this}getLayout(){return this.layout}call(e=null){return new Pi(this,e)}setup(){return this.call()}}const Di=[!1,!0],Ii=[0,1,2,3],Ui=[-1,-2],Oi=[.5,1.5,1/3,1e-6,1e6,Math.PI,2*Math.PI,1/Math.PI,2/Math.PI,1/(2*Math.PI),Math.PI/2],Vi=new Map;for(const e of Di)Vi.set(e,new yi(e));const ki=new Map;for(const e of Ii)ki.set(e,new yi(e,"uint"));const Gi=new Map([...ki].map(e=>new yi(e.value,"int")));for(const e of Ui)Gi.set(e,new yi(e,"int"));const zi=new Map([...Gi].map(e=>new yi(e.value)));for(const e of Oi)zi.set(e,new yi(e));for(const e of Oi)zi.set(-e,new yi(-e));const $i={bool:Vi,uint:ki,ints:Gi,float:zi},Wi=new Map([...Vi,...zi]),Hi=(e,t)=>Wi.has(e)?Wi.get(e):!0===e.isNode?e:new yi(e,t),ji=function(e,t=null){return(...r)=>{for(const t of r)if(void 0===t)return o(`TSL: Invalid parameter for the type "${e}".`),Yi(new yi(0,e));if((0===r.length||!["bool","float","int","uint"].includes(e)&&r.every(e=>{const t=typeof e;return"object"!==t&&"function"!==t}))&&(r=[Hs(e,...r)]),1===r.length&&null!==t&&t.has(r[0]))return Qi(t.get(r[0]));if(1===r.length){const t=Hi(r[0],e);return t.nodeType===e?Qi(t):Qi(new ui(t,e))}const s=r.map(e=>Hi(e));return Qi(new di(s,e))}},qi=e=>"object"==typeof e&&null!==e?e.value:e,Xi=e=>null!=e?e.nodeType||e.convertTo||("string"==typeof e?e:null):null;function Ki(e,t){return new Fi(e,t)}const Yi=(e,t=null)=>function(e,t=null){const r=Ws(e);return"node"===r?e:null===t&&("float"===r||"boolean"===r)||r&&"shader"!==r&&"string"!==r?Yi(Hi(e,t)):"shader"===r?e.isFn?e:an(e):e}(e,t),Qi=(e,t=null)=>Yi(e,t).toVarIntent(),Zi=(e,t=null)=>new Ci(e,t),Ji=(e,t=null)=>new Mi(e,t),en=(e,t=null,r=null,s=null)=>new Bi(e,t,r,s),tn=(e,...t)=>new Li(e,...t),rn=(e,t=null,r=null,s={})=>new Bi(e,t,r,{...s,intent:!0});let sn=0;class nn extends ai{constructor(e,t=null){super();let r=null;null!==t&&("object"==typeof t?r=t.return:("string"==typeof t?r=t:o("TSL: Invalid layout type."),t=null)),this.shaderNode=new Ki(e,r),null!==t&&this.setLayout(t),this.isFn=!0}setLayout(e){const t=this.shaderNode.nodeType;if("object"!=typeof e.inputs){const r={name:"fn"+sn++,type:t,inputs:[]};for(const t in e)"return"!==t&&r.inputs.push({name:t,type:e[t]});e=r}return this.shaderNode.setLayout(e),this}getNodeType(e){return this.shaderNode.getNodeType(e)||"float"}call(...e){const t=this.shaderNode.call(e);return"void"===this.shaderNode.nodeType&&t.toStack(),t.toVarIntent()}once(e=null){return this.shaderNode.once=!0,this.shaderNode.subBuilds=e,this}generate(e){const t=this.getNodeType(e);return o('TSL: "Fn()" was declared but not invoked. Try calling it like "Fn()( ...params )".'),e.generateConst(t)}}function an(e,t=null){const r=new nn(e,t);return new Proxy(()=>{},{apply:(e,t,s)=>r.call(...s),get:(e,t,s)=>Reflect.get(r,t,s),set:(e,t,s,i)=>Reflect.set(r,t,s,i)})}const on=e=>{xi=e},un=()=>xi,ln=(...e)=>xi.If(...e);function dn(e){return xi&&xi.addToStack(e),e}_i("toStack",dn);const cn=new ji("color"),hn=new ji("float",$i.float),pn=new ji("int",$i.ints),gn=new ji("uint",$i.uint),mn=new ji("bool",$i.bool),fn=new ji("vec2"),yn=new ji("ivec2"),bn=new ji("uvec2"),xn=new ji("bvec2"),Tn=new ji("vec3"),_n=new ji("ivec3"),vn=new ji("uvec3"),Nn=new ji("bvec3"),Sn=new ji("vec4"),Rn=new ji("ivec4"),An=new ji("uvec4"),En=new ji("bvec4"),wn=new ji("mat2"),Cn=new ji("mat3"),Mn=new ji("mat4");_i("toColor",cn),_i("toFloat",hn),_i("toInt",pn),_i("toUint",gn),_i("toBool",mn),_i("toVec2",fn),_i("toIVec2",yn),_i("toUVec2",bn),_i("toBVec2",xn),_i("toVec3",Tn),_i("toIVec3",_n),_i("toUVec3",vn),_i("toBVec3",Nn),_i("toVec4",Sn),_i("toIVec4",Rn),_i("toUVec4",An),_i("toBVec4",En),_i("toMat2",wn),_i("toMat3",Cn),_i("toMat4",Mn);const Bn=en(oi).setParameterLength(2),Ln=(e,t)=>Yi(new ui(Yi(e),t));_i("element",Bn),_i("convert",Ln);_i("append",e=>(d("TSL: .append() has been renamed to .toStack()."),dn(e)));class Pn extends ai{static get type(){return"PropertyNode"}constructor(e,t=null,r=!1){super(e),this.name=t,this.varying=r,this.isPropertyNode=!0,this.global=!0}customCacheKey(){return Fs(this.type+":"+(this.name||"")+":"+(this.varying?"1":"0"))}getHash(e){return this.name||super.getHash(e)}generate(e){let t;return!0===this.varying?(t=e.getVaryingFromNode(this,this.name),t.needsInterpolation=!0):t=e.getVarFromNode(this,this.name),e.getPropertyName(t)}}const Fn=(e,t)=>Yi(new Pn(e,t)),Dn=(e,t)=>Yi(new Pn(e,t,!0)),In=tn(Pn,"vec4","DiffuseColor"),Un=tn(Pn,"vec3","DiffuseContribution"),On=tn(Pn,"vec3","EmissiveColor"),Vn=tn(Pn,"float","Roughness"),kn=tn(Pn,"float","Metalness"),Gn=tn(Pn,"float","Clearcoat"),zn=tn(Pn,"float","ClearcoatRoughness"),$n=tn(Pn,"vec3","Sheen"),Wn=tn(Pn,"float","SheenRoughness"),Hn=tn(Pn,"float","Iridescence"),jn=tn(Pn,"float","IridescenceIOR"),qn=tn(Pn,"float","IridescenceThickness"),Xn=tn(Pn,"float","AlphaT"),Kn=tn(Pn,"float","Anisotropy"),Yn=tn(Pn,"vec3","AnisotropyT"),Qn=tn(Pn,"vec3","AnisotropyB"),Zn=tn(Pn,"color","SpecularColor"),Jn=tn(Pn,"color","SpecularColorBlended"),ea=tn(Pn,"float","SpecularF90"),ta=tn(Pn,"float","Shininess"),ra=tn(Pn,"vec4","Output"),sa=tn(Pn,"float","dashSize"),ia=tn(Pn,"float","gapSize"),na=tn(Pn,"float","pointWidth"),aa=tn(Pn,"float","IOR"),oa=tn(Pn,"float","Transmission"),ua=tn(Pn,"float","Thickness"),la=tn(Pn,"float","AttenuationDistance"),da=tn(Pn,"color","AttenuationColor"),ca=tn(Pn,"float","Dispersion");class ha extends ai{static get type(){return"UniformGroupNode"}constructor(e,t=!1,r=1){super("string"),this.name=e,this.shared=t,this.order=r,this.isUniformGroup=!0}serialize(e){super.serialize(e),e.name=this.name,e.version=this.version,e.shared=this.shared}deserialize(e){super.deserialize(e),this.name=e.name,this.version=e.version,this.shared=e.shared}}const pa=e=>new ha(e),ga=(e,t=0)=>new ha(e,!0,t),ma=ga("frame"),fa=ga("render"),ya=pa("object");class ba extends mi{static get type(){return"UniformNode"}constructor(e,t=null){super(e,t),this.isUniformNode=!0,this.name="",this.groupNode=ya}setName(e){return this.name=e,this}label(e){return d('TSL: "label()" has been deprecated. Use "setName()" instead.'),this.setName(e)}setGroup(e){return this.groupNode=e,this}getGroup(){return this.groupNode}getUniformHash(e){return this.getHash(e)}onUpdate(e,t){return e=e.bind(this),super.onUpdate(t=>{const r=e(t,this);void 0!==r&&(this.value=r)},t)}getInputType(e){let t=super.getInputType(e);return"bool"===t&&(t="uint"),t}generate(e,t){const r=this.getNodeType(e),s=this.getUniformHash(e);let i=e.getNodeFromHash(s);void 0===i&&(e.setHashNode(this,s),i=this);const n=i.getInputType(e),a=e.getUniformFromNode(i,n,e.shaderStage,this.name||e.context.nodeName),o=e.getPropertyName(a);void 0!==e.context.nodeName&&delete e.context.nodeName;let u=o;if("bool"===r){const t=e.getDataFromNode(this);let s=t.propertyName;if(void 0===s){const i=e.getVarFromNode(this,null,"bool");s=e.getPropertyName(i),t.propertyName=s,u=e.format(o,n,r),e.addLineFlowCode(`${s} = ${u}`,this)}u=s}return e.format(u,r,t)}}const xa=(e,t)=>{const r=Xi(t||e);if(r===e&&(e=Hs(r)),e&&!0===e.isNode){let t=e.value;e.traverse(e=>{!0===e.isConstNode&&(t=e.value)}),e=t}return Yi(new ba(e,r))};class Ta extends li{static get type(){return"ArrayNode"}constructor(e,t,r=null){super(e),this.count=t,this.values=r,this.isArrayNode=!0}getArrayCount(){return this.count}getNodeType(e){return null===this.nodeType&&(this.nodeType=this.values[0].getNodeType(e)),this.nodeType}getElementType(e){return this.getNodeType(e)}generate(e){const t=this.getNodeType(e);return e.generateArray(t,this.count,this.values)}}const _a=(...e)=>{let t;if(1===e.length){const r=e[0];t=new Ta(null,r.length,r)}else{const r=e[0],s=e[1];t=new Ta(r,s)}return Yi(t)};_i("toArray",(e,t)=>_a(Array(t).fill(e)));class va extends li{static get type(){return"AssignNode"}constructor(e,t){super(),this.targetNode=e,this.sourceNode=t,this.isAssignNode=!0}hasDependencies(){return!1}getNodeType(e,t){return"void"!==t?this.targetNode.getNodeType(e):"void"}needsSplitAssign(e){const{targetNode:t}=this;if(!1===e.isAvailable("swizzleAssign")&&t.isSplitNode&&t.components.length>1){const r=e.getTypeLength(t.node.getNodeType(e));return si.join("").slice(0,r)!==t.components}return!1}setup(e){const{targetNode:t,sourceNode:r}=this,s=t.getScope();e.getNodeProperties(s).assign=!0;const i=e.getNodeProperties(this);i.sourceNode=r,i.targetNode=t.context({assign:!0})}generate(e,t){const{targetNode:r,sourceNode:s}=e.getNodeProperties(this),i=this.needsSplitAssign(e),n=r.build(e),a=r.getNodeType(e),o=s.build(e,a),u=s.getNodeType(e),l=e.getDataFromNode(this);let d;if(!0===l.initialized)"void"!==t&&(d=n);else if(i){const s=e.getVarFromNode(this,null,a),i=e.getPropertyName(s);e.addLineFlowCode(`${i} = ${o}`,this);const u=r.node,l=u.node.context({assign:!0}).build(e);for(let t=0;t{const s=r.type;let i;return i="pointer"===s?"&"+t.build(e):t.build(e,s),i};if(Array.isArray(i)){if(i.length>s.length)o("TSL: The number of provided parameters exceeds the expected number of inputs in 'Fn()'."),i.length=s.length;else if(i.length(t=t.length>1||t[0]&&!0===t[0].isNode?Ji(t):Zi(t[0]),new Sa(Yi(e),t));_i("call",Ra);const Aa={"==":"equal","!=":"notEqual","<":"lessThan",">":"greaterThan","<=":"lessThanEqual",">=":"greaterThanEqual","%":"mod"};class Ea extends li{static get type(){return"OperatorNode"}constructor(e,t,r,...s){if(super(),s.length>0){let i=new Ea(e,t,r);for(let t=0;t>"===r||"<<"===r)return e.getIntegerType(n);if("!"===r||"&&"===r||"||"===r||"^^"===r)return"bool";if("=="===r||"!="===r||"<"===r||">"===r||"<="===r||">="===r){const t=Math.max(e.getTypeLength(n),e.getTypeLength(a));return t>1?`bvec${t}`:"bool"}if(e.isMatrix(n)){if("float"===a)return n;if(e.isVector(a))return e.getVectorFromMatrix(n);if(e.isMatrix(a))return n}else if(e.isMatrix(a)){if("float"===n)return a;if(e.isVector(n))return e.getVectorFromMatrix(a)}return e.getTypeLength(a)>e.getTypeLength(n)?a:n}generate(e,t){const r=this.op,{aNode:s,bNode:i}=this,n=this.getNodeType(e,t);let a=null,o=null;"void"!==n?(a=s.getNodeType(e),o=i?i.getNodeType(e):null,"<"===r||">"===r||"<="===r||">="===r||"=="===r||"!="===r?e.isVector(a)?o=a:e.isVector(o)?a=o:a!==o&&(a=o="float"):">>"===r||"<<"===r?(a=n,o=e.changeComponentType(o,"uint")):"%"===r?(a=n,o=e.isInteger(a)&&e.isInteger(o)?o:a):e.isMatrix(a)?"float"===o?o="float":e.isVector(o)?o=e.getVectorFromMatrix(a):e.isMatrix(o)||(a=o=n):a=e.isMatrix(o)?"float"===a?"float":e.isVector(a)?e.getVectorFromMatrix(o):o=n:o=n):a=o=n;const u=s.build(e,a),l=i?i.build(e,o):null,d=e.getFunctionOperator(r);if("void"!==t){const s=e.renderer.coordinateSystem===c;if("=="===r||"!="===r||"<"===r||">"===r||"<="===r||">="===r)return s&&e.isVector(a)?e.format(`${this.getOperatorMethod(e,t)}( ${u}, ${l} )`,n,t):e.format(`( ${u} ${r} ${l} )`,n,t);if("%"===r)return e.isInteger(o)?e.format(`( ${u} % ${l} )`,n,t):e.format(`${this.getOperatorMethod(e,n)}( ${u}, ${l} )`,n,t);if("!"===r||"~"===r)return e.format(`(${r}${u})`,a,t);if(d)return e.format(`${d}( ${u}, ${l} )`,n,t);if(e.isMatrix(a)&&"float"===o)return e.format(`( ${l} ${r} ${u} )`,n,t);if("float"===a&&e.isMatrix(o))return e.format(`${u} ${r} ${l}`,n,t);{let i=`( ${u} ${r} ${l} )`;return!s&&"bool"===n&&e.isVector(a)&&e.isVector(o)&&(i=`all${i}`),e.format(i,n,t)}}if("void"!==a)return d?e.format(`${d}( ${u}, ${l} )`,n,t):e.isMatrix(a)&&"float"===o?e.format(`${l} ${r} ${u}`,n,t):e.format(`${u} ${r} ${l}`,n,t)}serialize(e){super.serialize(e),e.op=this.op}deserialize(e){super.deserialize(e),this.op=e.op}}const wa=rn(Ea,"+").setParameterLength(2,1/0).setName("add"),Ca=rn(Ea,"-").setParameterLength(2,1/0).setName("sub"),Ma=rn(Ea,"*").setParameterLength(2,1/0).setName("mul"),Ba=rn(Ea,"/").setParameterLength(2,1/0).setName("div"),La=rn(Ea,"%").setParameterLength(2).setName("mod"),Pa=rn(Ea,"==").setParameterLength(2).setName("equal"),Fa=rn(Ea,"!=").setParameterLength(2).setName("notEqual"),Da=rn(Ea,"<").setParameterLength(2).setName("lessThan"),Ia=rn(Ea,">").setParameterLength(2).setName("greaterThan"),Ua=rn(Ea,"<=").setParameterLength(2).setName("lessThanEqual"),Oa=rn(Ea,">=").setParameterLength(2).setName("greaterThanEqual"),Va=rn(Ea,"&&").setParameterLength(2,1/0).setName("and"),ka=rn(Ea,"||").setParameterLength(2,1/0).setName("or"),Ga=rn(Ea,"!").setParameterLength(1).setName("not"),za=rn(Ea,"^^").setParameterLength(2).setName("xor"),$a=rn(Ea,"&").setParameterLength(2).setName("bitAnd"),Wa=rn(Ea,"~").setParameterLength(1).setName("bitNot"),Ha=rn(Ea,"|").setParameterLength(2).setName("bitOr"),ja=rn(Ea,"^").setParameterLength(2).setName("bitXor"),qa=rn(Ea,"<<").setParameterLength(2).setName("shiftLeft"),Xa=rn(Ea,">>").setParameterLength(2).setName("shiftRight"),Ka=an(([e])=>(e.addAssign(1),e)),Ya=an(([e])=>(e.subAssign(1),e)),Qa=an(([e])=>{const t=pn(e).toConst();return e.addAssign(1),t}),Za=an(([e])=>{const t=pn(e).toConst();return e.subAssign(1),t});_i("add",wa),_i("sub",Ca),_i("mul",Ma),_i("div",Ba),_i("mod",La),_i("equal",Pa),_i("notEqual",Fa),_i("lessThan",Da),_i("greaterThan",Ia),_i("lessThanEqual",Ua),_i("greaterThanEqual",Oa),_i("and",Va),_i("or",ka),_i("not",Ga),_i("xor",za),_i("bitAnd",$a),_i("bitNot",Wa),_i("bitOr",Ha),_i("bitXor",ja),_i("shiftLeft",qa),_i("shiftRight",Xa),_i("incrementBefore",Ka),_i("decrementBefore",Ya),_i("increment",Qa),_i("decrement",Za);const Ja=(e,t)=>(d('TSL: "modInt()" is deprecated. Use "mod( int( ... ) )" instead.'),La(pn(e),pn(t)));_i("modInt",Ja);class eo extends li{static get type(){return"MathNode"}constructor(e,t,r=null,s=null){if(super(),(e===eo.MAX||e===eo.MIN)&&arguments.length>3){let i=new eo(e,t,r);for(let t=2;tn&&i>a?t:n>a?r:a>i?s:t}getNodeType(e){const t=this.method;return t===eo.LENGTH||t===eo.DISTANCE||t===eo.DOT?"float":t===eo.CROSS?"vec3":t===eo.ALL||t===eo.ANY?"bool":t===eo.EQUALS?e.changeComponentType(this.aNode.getNodeType(e),"bool"):this.getInputType(e)}setup(e){const{aNode:t,bNode:r,method:s}=this;let i=null;if(s===eo.ONE_MINUS)i=Ca(1,t);else if(s===eo.RECIPROCAL)i=Ba(1,t);else if(s===eo.DIFFERENCE)i=wo(Ca(t,r));else if(s===eo.TRANSFORM_DIRECTION){let s=t,n=r;e.isMatrix(s.getNodeType(e))?n=Sn(Tn(n),0):s=Sn(Tn(s),0);const a=Ma(s,n).xyz;i=To(a)}return null!==i?i:super.setup(e)}generate(e,t){if(e.getNodeProperties(this).outputNode)return super.generate(e,t);let r=this.method;const s=this.getNodeType(e),i=this.getInputType(e),n=this.aNode,a=this.bNode,o=this.cNode,u=e.renderer.coordinateSystem;if(r===eo.NEGATE)return e.format("( - "+n.build(e,i)+" )",s,t);{const l=[];return r===eo.CROSS?l.push(n.build(e,s),a.build(e,s)):u===c&&r===eo.STEP?l.push(n.build(e,1===e.getTypeLength(n.getNodeType(e))?"float":i),a.build(e,i)):u!==c||r!==eo.MIN&&r!==eo.MAX?r===eo.REFRACT?l.push(n.build(e,i),a.build(e,i),o.build(e,"float")):r===eo.MIX?l.push(n.build(e,i),a.build(e,i),o.build(e,1===e.getTypeLength(o.getNodeType(e))?"float":i)):(u===h&&r===eo.ATAN&&null!==a&&(r="atan2"),"fragment"===e.shaderStage||r!==eo.DFDX&&r!==eo.DFDY||(d(`TSL: '${r}' is not supported in the ${e.shaderStage} stage.`),r="/*"+r+"*/"),l.push(n.build(e,i)),null!==a&&l.push(a.build(e,i)),null!==o&&l.push(o.build(e,i))):l.push(n.build(e,i),a.build(e,1===e.getTypeLength(a.getNodeType(e))?"float":i)),e.format(`${e.getMethod(r,s)}( ${l.join(", ")} )`,s,t)}}serialize(e){super.serialize(e),e.method=this.method}deserialize(e){super.deserialize(e),this.method=e.method}}eo.ALL="all",eo.ANY="any",eo.RADIANS="radians",eo.DEGREES="degrees",eo.EXP="exp",eo.EXP2="exp2",eo.LOG="log",eo.LOG2="log2",eo.SQRT="sqrt",eo.INVERSE_SQRT="inversesqrt",eo.FLOOR="floor",eo.CEIL="ceil",eo.NORMALIZE="normalize",eo.FRACT="fract",eo.SIN="sin",eo.COS="cos",eo.TAN="tan",eo.ASIN="asin",eo.ACOS="acos",eo.ATAN="atan",eo.ABS="abs",eo.SIGN="sign",eo.LENGTH="length",eo.NEGATE="negate",eo.ONE_MINUS="oneMinus",eo.DFDX="dFdx",eo.DFDY="dFdy",eo.ROUND="round",eo.RECIPROCAL="reciprocal",eo.TRUNC="trunc",eo.FWIDTH="fwidth",eo.TRANSPOSE="transpose",eo.DETERMINANT="determinant",eo.INVERSE="inverse",eo.EQUALS="equals",eo.MIN="min",eo.MAX="max",eo.STEP="step",eo.REFLECT="reflect",eo.DISTANCE="distance",eo.DIFFERENCE="difference",eo.DOT="dot",eo.CROSS="cross",eo.POW="pow",eo.TRANSFORM_DIRECTION="transformDirection",eo.MIX="mix",eo.CLAMP="clamp",eo.REFRACT="refract",eo.SMOOTHSTEP="smoothstep",eo.FACEFORWARD="faceforward";const to=hn(1e-6),ro=hn(1e6),so=hn(Math.PI),io=hn(2*Math.PI),no=hn(2*Math.PI),ao=hn(.5*Math.PI),oo=rn(eo,eo.ALL).setParameterLength(1),uo=rn(eo,eo.ANY).setParameterLength(1),lo=rn(eo,eo.RADIANS).setParameterLength(1),co=rn(eo,eo.DEGREES).setParameterLength(1),ho=rn(eo,eo.EXP).setParameterLength(1),po=rn(eo,eo.EXP2).setParameterLength(1),go=rn(eo,eo.LOG).setParameterLength(1),mo=rn(eo,eo.LOG2).setParameterLength(1),fo=rn(eo,eo.SQRT).setParameterLength(1),yo=rn(eo,eo.INVERSE_SQRT).setParameterLength(1),bo=rn(eo,eo.FLOOR).setParameterLength(1),xo=rn(eo,eo.CEIL).setParameterLength(1),To=rn(eo,eo.NORMALIZE).setParameterLength(1),_o=rn(eo,eo.FRACT).setParameterLength(1),vo=rn(eo,eo.SIN).setParameterLength(1),No=rn(eo,eo.COS).setParameterLength(1),So=rn(eo,eo.TAN).setParameterLength(1),Ro=rn(eo,eo.ASIN).setParameterLength(1),Ao=rn(eo,eo.ACOS).setParameterLength(1),Eo=rn(eo,eo.ATAN).setParameterLength(1,2),wo=rn(eo,eo.ABS).setParameterLength(1),Co=rn(eo,eo.SIGN).setParameterLength(1),Mo=rn(eo,eo.LENGTH).setParameterLength(1),Bo=rn(eo,eo.NEGATE).setParameterLength(1),Lo=rn(eo,eo.ONE_MINUS).setParameterLength(1),Po=rn(eo,eo.DFDX).setParameterLength(1),Fo=rn(eo,eo.DFDY).setParameterLength(1),Do=rn(eo,eo.ROUND).setParameterLength(1),Io=rn(eo,eo.RECIPROCAL).setParameterLength(1),Uo=rn(eo,eo.TRUNC).setParameterLength(1),Oo=rn(eo,eo.FWIDTH).setParameterLength(1),Vo=rn(eo,eo.TRANSPOSE).setParameterLength(1),ko=rn(eo,eo.DETERMINANT).setParameterLength(1),Go=rn(eo,eo.INVERSE).setParameterLength(1),zo=(e,t)=>(d('TSL: "equals" is deprecated. Use "equal" inside a vector instead, like: "bvec*( equal( ... ) )"'),Pa(e,t)),$o=rn(eo,eo.MIN).setParameterLength(2,1/0),Wo=rn(eo,eo.MAX).setParameterLength(2,1/0),Ho=rn(eo,eo.STEP).setParameterLength(2),jo=rn(eo,eo.REFLECT).setParameterLength(2),qo=rn(eo,eo.DISTANCE).setParameterLength(2),Xo=rn(eo,eo.DIFFERENCE).setParameterLength(2),Ko=rn(eo,eo.DOT).setParameterLength(2),Yo=rn(eo,eo.CROSS).setParameterLength(2),Qo=rn(eo,eo.POW).setParameterLength(2),Zo=e=>Ma(e,e),Jo=e=>Ma(e,e,e),eu=e=>Ma(e,e,e,e),tu=rn(eo,eo.TRANSFORM_DIRECTION).setParameterLength(2),ru=e=>Ma(Co(e),Qo(wo(e),1/3)),su=e=>Ko(e,e),iu=rn(eo,eo.MIX).setParameterLength(3),nu=(e,t=0,r=1)=>Yi(new eo(eo.CLAMP,Yi(e),Yi(t),Yi(r))),au=e=>nu(e),ou=rn(eo,eo.REFRACT).setParameterLength(3),uu=rn(eo,eo.SMOOTHSTEP).setParameterLength(3),lu=rn(eo,eo.FACEFORWARD).setParameterLength(3),du=an(([e])=>{const t=Ko(e.xy,fn(12.9898,78.233)),r=La(t,so);return _o(vo(r).mul(43758.5453))}),cu=(e,t,r)=>iu(t,r,e),hu=(e,t,r)=>uu(t,r,e),pu=(e,t)=>Ho(t,e),gu=(e,t)=>(d('TSL: "atan2" is overloaded. Use "atan" instead.'),Eo(e,t)),mu=lu,fu=yo;_i("all",oo),_i("any",uo),_i("equals",zo),_i("radians",lo),_i("degrees",co),_i("exp",ho),_i("exp2",po),_i("log",go),_i("log2",mo),_i("sqrt",fo),_i("inverseSqrt",yo),_i("floor",bo),_i("ceil",xo),_i("normalize",To),_i("fract",_o),_i("sin",vo),_i("cos",No),_i("tan",So),_i("asin",Ro),_i("acos",Ao),_i("atan",Eo),_i("abs",wo),_i("sign",Co),_i("length",Mo),_i("lengthSq",su),_i("negate",Bo),_i("oneMinus",Lo),_i("dFdx",Po),_i("dFdy",Fo),_i("round",Do),_i("reciprocal",Io),_i("trunc",Uo),_i("fwidth",Oo),_i("atan2",gu),_i("min",$o),_i("max",Wo),_i("step",pu),_i("reflect",jo),_i("distance",qo),_i("dot",Ko),_i("cross",Yo),_i("pow",Qo),_i("pow2",Zo),_i("pow3",Jo),_i("pow4",eu),_i("transformDirection",tu),_i("mix",cu),_i("clamp",nu),_i("refract",ou),_i("smoothstep",hu),_i("faceForward",lu),_i("difference",Xo),_i("saturate",au),_i("cbrt",ru),_i("transpose",Vo),_i("determinant",ko),_i("inverse",Go),_i("rand",du);class yu extends ai{static get type(){return"ConditionalNode"}constructor(e,t,r=null){super(),this.condNode=e,this.ifNode=t,this.elseNode=r}getNodeType(e){const{ifNode:t,elseNode:r}=e.getNodeProperties(this);if(void 0===t)return e.flowBuildStage(this,"setup"),this.getNodeType(e);const s=t.getNodeType(e);if(null!==r){const t=r.getNodeType(e);if(e.getTypeLength(t)>e.getTypeLength(s))return t}return s}setup(e){const t=this.condNode,r=this.ifNode.isolate(),s=this.elseNode?this.elseNode.isolate():null,i=e.context.nodeBlock;e.getDataFromNode(r).parentNodeBlock=i,null!==s&&(e.getDataFromNode(s).parentNodeBlock=i);const n=e.context.uniformFlow,a=e.getNodeProperties(this);a.condNode=t,a.ifNode=n?r:r.context({nodeBlock:r}),a.elseNode=s?n?s:s.context({nodeBlock:s}):null}generate(e,t){const r=this.getNodeType(e),s=e.getDataFromNode(this);if(void 0!==s.nodeProperty)return s.nodeProperty;const{condNode:i,ifNode:n,elseNode:a}=e.getNodeProperties(this),o=e.currentFunctionNode,u="void"!==t,l=u?Fn(r).build(e):"";s.nodeProperty=l;const c=i.build(e,"bool");if(e.context.uniformFlow&&null!==a){const s=n.build(e,r),i=a.build(e,r),o=e.getTernary(c,s,i);return e.format(o,r,t)}e.addFlowCode(`\n${e.tab}if ( ${c} ) {\n\n`).addFlowTab();let h=n.build(e,r);if(h&&(u?h=l+" = "+h+";":(h="return "+h+";",null===o&&(d("TSL: Return statement used in an inline 'Fn()'. Define a layout struct to allow return values."),h="// "+h))),e.removeFlowTab().addFlowCode(e.tab+"\t"+h+"\n\n"+e.tab+"}"),null!==a){e.addFlowCode(" else {\n\n").addFlowTab();let t=a.build(e,r);t&&(u?t=l+" = "+t+";":(t="return "+t+";",null===o&&(d("TSL: Return statement used in an inline 'Fn()'. Define a layout struct to allow return values."),t="// "+t))),e.removeFlowTab().addFlowCode(e.tab+"\t"+t+"\n\n"+e.tab+"}\n\n")}else e.addFlowCode("\n\n");return e.format(l,r,t)}}const bu=en(yu).setParameterLength(2,3);_i("select",bu);class xu extends ai{static get type(){return"ContextNode"}constructor(e=null,t={}){super(),this.isContextNode=!0,this.node=e,this.value=t}getScope(){return this.node.getScope()}getNodeType(e){return this.node.getNodeType(e)}getFlowContextData(){const e=[];return this.traverse(t=>{!0===t.isContextNode&&e.push(t.value)}),Object.assign({},...e)}getMemberType(e,t){return this.node.getMemberType(e,t)}analyze(e){const t=e.addContext(this.value);this.node.build(e),e.setContext(t)}setup(e){const t=e.addContext(this.value);this.node.build(e),e.setContext(t)}generate(e,t){const r=e.addContext(this.value),s=this.node.build(e,t);return e.setContext(r),s}}const Tu=(e=null,t={})=>{let r=e;return null!==r&&!0===r.isNode||(t=r||t,r=null),new xu(r,t)},_u=e=>Tu(e,{uniformFlow:!0}),vu=(e,t)=>Tu(e,{nodeName:t});function Nu(e,t,r=null){return Tu(r,{getShadow:({light:r,shadowColorNode:s})=>t===r?s.mul(e):s})}function Su(e,t=null){return Tu(t,{getAO:(t,{material:r})=>!0===r.transparent?t:null!==t?t.mul(e):e})}function Ru(e,t){return d('TSL: "label()" has been deprecated. Use "setName()" instead.'),vu(e,t)}_i("context",Tu),_i("label",Ru),_i("uniformFlow",_u),_i("setName",vu),_i("builtinShadowContext",(e,t,r)=>Nu(t,r,e)),_i("builtinAOContext",(e,t)=>Su(t,e));class Au extends ai{static get type(){return"VarNode"}constructor(e,t=null,r=!1){super(),this.node=e,this.name=t,this.global=!0,this.isVarNode=!0,this.readOnly=r,this.parents=!0,this.intent=!1}setIntent(e){return this.intent=e,this}getIntent(){return this.intent}getMemberType(e,t){return this.node.getMemberType(e,t)}getElementType(e){return this.node.getElementType(e)}getNodeType(e){return this.node.getNodeType(e)}getArrayCount(e){return this.node.getArrayCount(e)}isAssign(e){let t=e.getNodeProperties(this).assign;if(!0!==t&&this.node.isShaderCallNodeInternal&&null===this.node.shaderNode.getLayout()&&e.fnCall&&e.fnCall.shaderNode){e.getDataFromNode(this.node.shaderNode).hasLoop&&(t=!0)}return t}build(...e){const t=e[0];return!1===this._hasStack(t)&&"setup"===t.buildStage&&(t.context.nodeLoop||t.context.nodeBlock)&&t.getBaseStack().addToStack(this),!0===this.intent&&!0!==this.isAssign(t)?this.node.build(...e):super.build(...e)}generate(e){const{node:t,name:r,readOnly:s}=this,{renderer:i}=e,n=!0===i.backend.isWebGPUBackend;let a=!1,u=!1;s&&(a=e.isDeterministic(t),u=n?s:a);const l=this.getNodeType(e);if("void"==l){!0!==this.intent&&o('TSL: ".toVar()" can not be used with void type.');return t.build(e)}const d=e.getVectorType(l),c=t.build(e,d),h=e.getVarFromNode(this,r,d,void 0,u),p=e.getPropertyName(h);let g=p;if(u)if(n)g=a?`const ${p}`:`let ${p}`;else{const r=t.getArrayCount(e);g=`const ${e.getVar(h.type,p,r)}`}return e.addLineFlowCode(`${g} = ${c}`,this),p}_hasStack(e){return void 0!==e.getDataFromNode(this).stack}}const Eu=en(Au),wu=(e,t=null)=>Eu(e,t).toStack(),Cu=(e,t=null)=>Eu(e,t,!0).toStack(),Mu=e=>Eu(e).setIntent(!0).toStack();_i("toVar",wu),_i("toConst",Cu),_i("toVarIntent",Mu);class Bu extends ai{static get type(){return"SubBuild"}constructor(e,t,r=null){super(r),this.node=e,this.name=t,this.isSubBuildNode=!0}getNodeType(e){if(null!==this.nodeType)return this.nodeType;e.addSubBuild(this.name);const t=this.node.getNodeType(e);return e.removeSubBuild(),t}build(e,...t){e.addSubBuild(this.name);const r=this.node.build(e,...t);return e.removeSubBuild(),r}}const Lu=(e,t,r=null)=>Yi(new Bu(Yi(e),t,r));class Pu extends ai{static get type(){return"VaryingNode"}constructor(e,t=null){super(),this.node=e,this.name=t,this.isVaryingNode=!0,this.interpolationType=null,this.interpolationSampling=null,this.global=!0}setInterpolation(e,t=null){return this.interpolationType=e,this.interpolationSampling=t,this}getHash(e){return this.name||super.getHash(e)}getNodeType(e){return this.node.getNodeType(e)}setupVarying(e){const t=e.getNodeProperties(this);let r=t.varying;if(void 0===r){const s=this.name,i=this.getNodeType(e),n=this.interpolationType,a=this.interpolationSampling;t.varying=r=e.getVaryingFromNode(this,s,i,n,a),t.node=Lu(this.node,"VERTEX")}return r.needsInterpolation||(r.needsInterpolation="fragment"===e.shaderStage),r}setup(e){this.setupVarying(e),e.flowNodeFromShaderStage(Ys.VERTEX,this.node)}analyze(e){this.setupVarying(e),e.flowNodeFromShaderStage(Ys.VERTEX,this.node)}generate(e){const t=e.getSubBuildProperty("property",e.currentStack),r=e.getNodeProperties(this),s=this.setupVarying(e);if(void 0===r[t]){const i=this.getNodeType(e),n=e.getPropertyName(s,Ys.VERTEX);e.flowNodeFromShaderStage(Ys.VERTEX,r.node,i,n),r[t]=n}return e.getPropertyName(s)}}const Fu=en(Pu).setParameterLength(1,2),Du=e=>Fu(e);_i("toVarying",Fu),_i("toVertexStage",Du),_i("varying",(...e)=>(d("TSL: .varying() has been renamed to .toVarying()."),Fu(...e))),_i("vertexStage",(...e)=>(d("TSL: .vertexStage() has been renamed to .toVertexStage()."),Fu(...e)));const Iu=an(([e])=>{const t=e.mul(.9478672986).add(.0521327014).pow(2.4),r=e.mul(.0773993808),s=e.lessThanEqual(.04045);return iu(t,r,s)}).setLayout({name:"sRGBTransferEOTF",type:"vec3",inputs:[{name:"color",type:"vec3"}]}),Uu=an(([e])=>{const t=e.pow(.41666).mul(1.055).sub(.055),r=e.mul(12.92),s=e.lessThanEqual(.0031308);return iu(t,r,s)}).setLayout({name:"sRGBTransferOETF",type:"vec3",inputs:[{name:"color",type:"vec3"}]}),Ou="WorkingColorSpace";class Vu extends li{static get type(){return"ColorSpaceNode"}constructor(e,t,r){super("vec4"),this.colorNode=e,this.source=t,this.target=r}resolveColorSpace(e,t){return t===Ou?p.workingColorSpace:"OutputColorSpace"===t?e.context.outputColorSpace||e.renderer.outputColorSpace:t}setup(e){const{colorNode:t}=this,r=this.resolveColorSpace(e,this.source),s=this.resolveColorSpace(e,this.target);let i=t;return!1!==p.enabled&&r!==s&&r&&s?(p.getTransfer(r)===g&&(i=Sn(Iu(i.rgb),i.a)),p.getPrimaries(r)!==p.getPrimaries(s)&&(i=Sn(Cn(p._getMatrix(new n,r,s)).mul(i.rgb),i.a)),p.getTransfer(s)===g&&(i=Sn(Uu(i.rgb),i.a)),i):i}}const ku=(e,t)=>Yi(new Vu(Yi(e),Ou,t)),Gu=(e,t)=>Yi(new Vu(Yi(e),t,Ou));_i("workingToColorSpace",ku),_i("colorSpaceToWorking",Gu);let zu=class extends oi{static get type(){return"ReferenceElementNode"}constructor(e,t){super(e,t),this.referenceNode=e,this.isReferenceElementNode=!0}getNodeType(){return this.referenceNode.uniformType}generate(e){const t=super.generate(e),r=this.referenceNode.getNodeType(),s=this.getNodeType();return e.format(t,r,s)}};class $u extends ai{static get type(){return"ReferenceBaseNode"}constructor(e,t,r=null,s=null){super(),this.property=e,this.uniformType=t,this.object=r,this.count=s,this.properties=e.split("."),this.reference=r,this.node=null,this.group=null,this.updateType=Qs.OBJECT}setGroup(e){return this.group=e,this}element(e){return Yi(new zu(this,Yi(e)))}setNodeType(e){const t=xa(null,e);null!==this.group&&t.setGroup(this.group),this.node=t}getNodeType(e){return null===this.node&&(this.updateReference(e),this.updateValue()),this.node.getNodeType(e)}getValueFromReference(e=this.reference){const{properties:t}=this;let r=e[t[0]];for(let e=1;eYi(new Wu(e,t,r));class ju extends li{static get type(){return"ToneMappingNode"}constructor(e,t=Xu,r=null){super("vec3"),this._toneMapping=e,this.exposureNode=t,this.colorNode=r}customCacheKey(){return Is(this._toneMapping)}setToneMapping(e){return this._toneMapping=e,this}getToneMapping(){return this._toneMapping}setup(e){const t=this.colorNode||e.context.color,r=this._toneMapping;if(r===m)return t;let s=null;const i=e.renderer.library.getToneMappingFunction(r);return null!==i?s=Sn(i(t.rgb,this.exposureNode),t.a):(o("ToneMappingNode: Unsupported Tone Mapping configuration.",r),s=t),s}}const qu=(e,t,r)=>Yi(new ju(e,Yi(t),Yi(r))),Xu=Hu("toneMappingExposure","float");_i("toneMapping",(e,t,r)=>qu(t,r,e));const Ku=new WeakMap;function Yu(e,t){let r=Ku.get(e);return void 0===r&&(r=new b(e,t),Ku.set(e,r)),r}class Qu extends mi{static get type(){return"BufferAttributeNode"}constructor(e,t=null,r=0,s=0){super(e,t),this.isBufferNode=!0,this.bufferType=t,this.bufferStride=r,this.bufferOffset=s,this.usage=f,this.instanced=!1,this.attribute=null,this.global=!0,e&&!0===e.isBufferAttribute&&e.itemSize<=4&&(this.attribute=e,this.usage=e.usage,this.instanced=e.isInstancedBufferAttribute)}getHash(e){if(0===this.bufferStride&&0===this.bufferOffset){let t=e.globalCache.getData(this.value);return void 0===t&&(t={node:this},e.globalCache.setData(this.value,t)),t.node.uuid}return this.uuid}getNodeType(e){return null===this.bufferType&&(this.bufferType=e.getTypeFromAttribute(this.attribute)),this.bufferType}setup(e){if(null!==this.attribute)return;const t=this.getNodeType(e),r=e.getTypeLength(t),s=this.value,i=this.bufferStride||r,n=this.bufferOffset;let a;a=!0===s.isInterleavedBuffer?s:!0===s.isBufferAttribute?Yu(s.array,i):Yu(s,i);const o=new y(a,r,n);a.setUsage(this.usage),this.attribute=o,this.attribute.isInstancedBufferAttribute=this.instanced}generate(e){const t=this.getNodeType(e),r=e.getBufferAttributeFromNode(this,t),s=e.getPropertyName(r);let i=null;if("vertex"===e.shaderStage||"compute"===e.shaderStage)this.name=s,i=s;else{i=Fu(this).build(e,t)}return i}getInputType(){return"bufferAttribute"}setUsage(e){return this.usage=e,this.attribute&&!0===this.attribute.isBufferAttribute&&(this.attribute.usage=e),this}setInstanced(e){return this.instanced=e,this}}function Zu(e,t=null,r=0,s=0,i=f,n=!1){return"mat3"===t||null===t&&9===e.itemSize?Cn(new Qu(e,"vec3",9,0).setUsage(i).setInstanced(n),new Qu(e,"vec3",9,3).setUsage(i).setInstanced(n),new Qu(e,"vec3",9,6).setUsage(i).setInstanced(n)):"mat4"===t||null===t&&16===e.itemSize?Mn(new Qu(e,"vec4",16,0).setUsage(i).setInstanced(n),new Qu(e,"vec4",16,4).setUsage(i).setInstanced(n),new Qu(e,"vec4",16,8).setUsage(i).setInstanced(n),new Qu(e,"vec4",16,12).setUsage(i).setInstanced(n)):new Qu(e,t,r,s)}const Ju=(e,t=null,r=0,s=0)=>Zu(e,t,r,s),el=(e,t=null,r=0,s=0)=>Zu(e,t,r,s,f,!0),tl=(e,t=null,r=0,s=0)=>Zu(e,t,r,s,x,!0);_i("toAttribute",e=>Ju(e.value));class rl extends ai{static get type(){return"ComputeNode"}constructor(e,t){super("void"),this.isComputeNode=!0,this.computeNode=e,this.workgroupSize=t,this.count=null,this.version=1,this.name="",this.updateBeforeType=Qs.OBJECT,this.onInitFunction=null}setCount(e){return this.count=e,this}getCount(){return this.count}dispose(){this.dispatchEvent({type:"dispose"})}setName(e){return this.name=e,this}label(e){return d('TSL: "label()" has been deprecated. Use "setName()" instead.'),this.setName(e)}onInit(e){return this.onInitFunction=e,this}updateBefore({renderer:e}){e.compute(this)}setup(e){const t=this.computeNode.build(e);if(t){e.getNodeProperties(this).outputComputeNode=t.outputNode,t.outputNode=null}return t}generate(e,t){const{shaderStage:r}=e;if("compute"===r){const t=this.computeNode.build(e,"void");""!==t&&e.addLineFlowCode(t,this)}else{const r=e.getNodeProperties(this).outputComputeNode;if(r)return r.build(e,t)}}}const sl=(e,t=[64])=>{(0===t.length||t.length>3)&&o("TSL: compute() workgroupSize must have 1, 2, or 3 elements");for(let e=0;esl(e,r).setCount(t);_i("compute",il),_i("computeKernel",sl);class nl extends ai{static get type(){return"IsolateNode"}constructor(e,t=!0){super(),this.node=e,this.parent=t,this.isIsolateNode=!0}getNodeType(e){const t=e.getCache(),r=e.getCacheFromNode(this,this.parent);e.setCache(r);const s=this.node.getNodeType(e);return e.setCache(t),s}build(e,...t){const r=e.getCache(),s=e.getCacheFromNode(this,this.parent);e.setCache(s);const i=this.node.build(e,...t);return e.setCache(r),i}setParent(e){return this.parent=e,this}getParent(){return this.parent}}const al=e=>new nl(Yi(e));function ol(e,t=!0){return d('TSL: "cache()" has been deprecated. Use "isolate()" instead.'),al(e).setParent(t)}_i("cache",ol),_i("isolate",al);class ul extends ai{static get type(){return"BypassNode"}constructor(e,t){super(),this.isBypassNode=!0,this.outputNode=e,this.callNode=t}getNodeType(e){return this.outputNode.getNodeType(e)}generate(e){const t=this.callNode.build(e,"void");return""!==t&&e.addLineFlowCode(t,this),this.outputNode.build(e)}}const ll=en(ul).setParameterLength(2);_i("bypass",ll);class dl extends ai{static get type(){return"RemapNode"}constructor(e,t,r,s=hn(0),i=hn(1)){super(),this.node=e,this.inLowNode=t,this.inHighNode=r,this.outLowNode=s,this.outHighNode=i,this.doClamp=!0}setup(){const{node:e,inLowNode:t,inHighNode:r,outLowNode:s,outHighNode:i,doClamp:n}=this;let a=e.sub(t).div(r.sub(t));return!0===n&&(a=a.clamp()),a.mul(i.sub(s)).add(s)}}const cl=en(dl,null,null,{doClamp:!1}).setParameterLength(3,5),hl=en(dl).setParameterLength(3,5);_i("remap",cl),_i("remapClamp",hl);class pl extends ai{static get type(){return"ExpressionNode"}constructor(e="",t="void"){super(t),this.snippet=e}generate(e,t){const r=this.getNodeType(e),s=this.snippet;if("void"!==r)return e.format(s,r,t);e.addLineFlowCode(s,this)}}const gl=en(pl).setParameterLength(1,2),ml=e=>(e?bu(e,gl("discard")):gl("discard")).toStack();_i("discard",ml);class fl extends li{static get type(){return"RenderOutputNode"}constructor(e,t,r){super("vec4"),this.colorNode=e,this._toneMapping=t,this.outputColorSpace=r,this.isRenderOutputNode=!0}setToneMapping(e){return this._toneMapping=e,this}getToneMapping(){return this._toneMapping}setup({context:e}){let t=this.colorNode||e.color;const r=(null!==this._toneMapping?this._toneMapping:e.toneMapping)||m,s=(null!==this.outputColorSpace?this.outputColorSpace:e.outputColorSpace)||T;return r!==m&&(t=t.toneMapping(r)),s!==T&&s!==p.workingColorSpace&&(t=t.workingToColorSpace(s)),t}}const yl=(e,t=null,r=null)=>Yi(new fl(Yi(e),t,r));_i("renderOutput",yl);class bl extends li{static get type(){return"DebugNode"}constructor(e,t=null){super(),this.node=e,this.callback=t}getNodeType(e){return this.node.getNodeType(e)}setup(e){return this.node.build(e)}analyze(e){return this.node.build(e)}generate(e){const t=this.callback,r=this.node.build(e),s="--- TSL debug - "+e.shaderStage+" shader ---",i="-".repeat(s.length);let n="";return n+="// #"+s+"#\n",n+=e.flow.code.replace(/^\t/gm,"")+"\n",n+="/* ... */ "+r+" /* ... */\n",n+="// #"+i+"#\n",null!==t?t(e,n):_(n),r}}const xl=(e,t=null)=>Yi(new bl(Yi(e),t)).toStack();_i("debug",xl);class Tl{constructor(){this._renderer=null,this.currentFrame=null}get nodeFrame(){return this._renderer._nodes.nodeFrame}setRenderer(e){return this._renderer=e,this}getRenderer(){return this._renderer}init(){}begin(){}finish(){}inspect(){}computeAsync(){}beginCompute(){}finishCompute(){}beginRender(){}finishRender(){}copyTextureToTexture(){}copyFramebufferToTexture(){}}class _l extends ai{static get type(){return"InspectorNode"}constructor(e,t="",r=null){super(),this.node=e,this.name=t,this.callback=r,this.updateType=Qs.FRAME,this.isInspectorNode=!0}getName(){return this.name||this.node.name}update(e){e.renderer.inspector.inspect(this)}getNodeType(e){return this.node.getNodeType(e)}setup(e){let t=this.node;return!0===e.context.inspector&&null!==this.callback&&(t=this.callback(t)),!0!==e.renderer.backend.isWebGPUBackend&&e.renderer.inspector.constructor!==Tl&&v('TSL: ".toInspector()" is only available with WebGPU.'),t}}function vl(e,t="",r=null){return(e=Yi(e)).before(new _l(e,t,r))}_i("toInspector",vl);class Nl extends ai{static get type(){return"AttributeNode"}constructor(e,t=null){super(t),this.global=!0,this._attributeName=e}getHash(e){return this.getAttributeName(e)}getNodeType(e){let t=this.nodeType;if(null===t){const r=this.getAttributeName(e);if(e.hasGeometryAttribute(r)){const s=e.geometry.getAttribute(r);t=e.getTypeFromAttribute(s)}else t="float"}return t}setAttributeName(e){return this._attributeName=e,this}getAttributeName(){return this._attributeName}generate(e){const t=this.getAttributeName(e),r=this.getNodeType(e);if(!0===e.hasGeometryAttribute(t)){const s=e.geometry.getAttribute(t),i=e.getTypeFromAttribute(s),n=e.getAttribute(t,i);if("vertex"===e.shaderStage)return e.format(n.name,i,r);return Fu(this).build(e,r)}return d(`AttributeNode: Vertex attribute "${t}" not found on geometry.`),e.generateConst(r)}serialize(e){super.serialize(e),e.global=this.global,e._attributeName=this._attributeName}deserialize(e){super.deserialize(e),this.global=e.global,this._attributeName=e._attributeName}}const Sl=(e,t=null)=>Yi(new Nl(e,t)),Rl=(e=0)=>Sl("uv"+(e>0?e:""),"vec2");class Al extends ai{static get type(){return"TextureSizeNode"}constructor(e,t=null){super("uvec2"),this.isTextureSizeNode=!0,this.textureNode=e,this.levelNode=t}generate(e,t){const r=this.textureNode.build(e,"property"),s=null===this.levelNode?"0":this.levelNode.build(e,"int");return e.format(`${e.getMethod("textureDimensions")}( ${r}, ${s} )`,this.getNodeType(e),t)}}const El=en(Al).setParameterLength(1,2);class wl extends ba{static get type(){return"MaxMipLevelNode"}constructor(e){super(0),this._textureNode=e,this.updateType=Qs.FRAME}get textureNode(){return this._textureNode}get texture(){return this._textureNode.value}update(){const e=this.texture,t=e.images,r=t&&t.length>0?t[0]&&t[0].image||t[0]:e.image;if(r&&void 0!==r.width){const{width:e,height:t}=r;this.value=Math.log2(Math.max(e,t))}}}const Cl=en(wl).setParameterLength(1),Ml=new N;class Bl extends ba{static get type(){return"TextureNode"}constructor(e=Ml,t=null,r=null,s=null){super(e),this.isTextureNode=!0,this.uvNode=t,this.levelNode=r,this.biasNode=s,this.compareNode=null,this.depthNode=null,this.gradNode=null,this.offsetNode=null,this.sampler=!0,this.updateMatrix=!1,this.updateType=Qs.NONE,this.referenceNode=null,this._value=e,this._matrixUniform=null,this._flipYUniform=null,this.setUpdateMatrix(null===t)}set value(e){this.referenceNode?this.referenceNode.value=e:this._value=e}get value(){return this.referenceNode?this.referenceNode.value:this._value}getUniformHash(){return this.value.uuid}getNodeType(){return!0===this.value.isDepthTexture?"float":this.value.type===S?"uvec4":this.value.type===R?"ivec4":"vec4"}getInputType(){return"texture"}getDefaultUV(){return Rl(this.value.channel)}updateReference(){return this.value}getTransformedUV(e){return null===this._matrixUniform&&(this._matrixUniform=xa(this.value.matrix)),this._matrixUniform.mul(Tn(e,1)).xy}setUpdateMatrix(e){return this.updateMatrix=e,this}setupUV(e,t){return e.isFlipY()&&(null===this._flipYUniform&&(this._flipYUniform=xa(!1)),t=t.toVar(),t=this.sampler?this._flipYUniform.select(t.flipY(),t):this._flipYUniform.select(t.setY(pn(El(this,this.levelNode).y).sub(t.y).sub(1)),t)),t}setup(e){const t=e.getNodeProperties(this);t.referenceNode=this.referenceNode;const r=this.value;if(!r||!0!==r.isTexture)throw new Error("THREE.TSL: `texture( value )` function expects a valid instance of THREE.Texture().");const s=an(()=>{let t=this.uvNode;return null!==t&&!0!==e.context.forceUVContext||!e.context.getUV||(t=e.context.getUV(this,e)),t||(t=this.getDefaultUV()),!0===this.updateMatrix&&(t=this.getTransformedUV(t)),t=this.setupUV(e,t),this.updateType=null!==this._matrixUniform||null!==this._flipYUniform?Qs.OBJECT:Qs.NONE,t})();let i=this.levelNode;null===i&&e.context.getTextureLevel&&(i=e.context.getTextureLevel(this)),t.uvNode=s,t.levelNode=i,t.biasNode=this.biasNode,t.compareNode=this.compareNode,t.gradNode=this.gradNode,t.depthNode=this.depthNode,t.offsetNode=this.offsetNode}generateUV(e,t){return t.build(e,!0===this.sampler?"vec2":"ivec2")}generateOffset(e,t){return t.build(e,"ivec2")}generateSnippet(e,t,r,s,i,n,a,o,u){const l=this.value;let d;return d=i?e.generateTextureBias(l,t,r,i,n,u):o?e.generateTextureGrad(l,t,r,o,n,u):a?e.generateTextureCompare(l,t,r,a,n,u):!1===this.sampler?e.generateTextureLoad(l,t,r,s,n,u):s?e.generateTextureLevel(l,t,r,s,n,u):e.generateTexture(l,t,r,n,u),d}generate(e,t){const r=this.value,s=e.getNodeProperties(this),i=super.generate(e,"property");if(/^sampler/.test(t))return i+"_sampler";if(e.isReference(t))return i;{const n=e.getDataFromNode(this);let a=n.propertyName;if(void 0===a){const{uvNode:t,levelNode:r,biasNode:o,compareNode:u,depthNode:l,gradNode:d,offsetNode:c}=s,h=this.generateUV(e,t),p=r?r.build(e,"float"):null,g=o?o.build(e,"float"):null,m=l?l.build(e,"int"):null,f=u?u.build(e,"float"):null,y=d?[d[0].build(e,"vec2"),d[1].build(e,"vec2")]:null,b=c?this.generateOffset(e,c):null,x=e.getVarFromNode(this);a=e.getPropertyName(x);const T=this.generateSnippet(e,i,h,p,g,m,f,y,b);e.addLineFlowCode(`${a} = ${T}`,this),n.snippet=T,n.propertyName=a}let o=a;const u=this.getNodeType(e);return e.needsToWorkingColorSpace(r)&&(o=Gu(gl(o,u),r.colorSpace).setup(e).build(e,u)),e.format(o,u,t)}}setSampler(e){return this.sampler=e,this}getSampler(){return this.sampler}uv(e){return d("TextureNode: .uv() has been renamed. Use .sample() instead."),this.sample(e)}sample(e){const t=this.clone();return t.uvNode=Yi(e),t.referenceNode=this.getBase(),Yi(t)}load(e){return this.sample(e).setSampler(!1)}blur(e){const t=this.clone();t.biasNode=Yi(e).mul(Cl(t)),t.referenceNode=this.getBase();const r=t.value;return!1===t.generateMipmaps&&(r&&!1===r.generateMipmaps||r.minFilter===A||r.magFilter===A)&&(d("TSL: texture().blur() requires mipmaps and sampling. Use .generateMipmaps=true and .minFilter/.magFilter=THREE.LinearFilter in the Texture."),t.biasNode=null),Yi(t)}level(e){const t=this.clone();return t.levelNode=Yi(e),t.referenceNode=this.getBase(),Yi(t)}size(e){return El(this,e)}bias(e){const t=this.clone();return t.biasNode=Yi(e),t.referenceNode=this.getBase(),Yi(t)}getBase(){return this.referenceNode?this.referenceNode.getBase():this}compare(e){const t=this.clone();return t.compareNode=Yi(e),t.referenceNode=this.getBase(),Yi(t)}grad(e,t){const r=this.clone();return r.gradNode=[Yi(e),Yi(t)],r.referenceNode=this.getBase(),Yi(r)}depth(e){const t=this.clone();return t.depthNode=Yi(e),t.referenceNode=this.getBase(),Yi(t)}offset(e){const t=this.clone();return t.offsetNode=Yi(e),t.referenceNode=this.getBase(),Yi(t)}serialize(e){super.serialize(e),e.value=this.value.toJSON(e.meta).uuid,e.sampler=this.sampler,e.updateMatrix=this.updateMatrix,e.updateType=this.updateType}deserialize(e){super.deserialize(e),this.value=e.meta.textures[e.value],this.sampler=e.sampler,this.updateMatrix=e.updateMatrix,this.updateType=e.updateType}update(){const e=this.value,t=this._matrixUniform;null!==t&&(t.value=e.matrix),!0===e.matrixAutoUpdate&&e.updateMatrix();const r=this._flipYUniform;null!==r&&(r.value=e.image instanceof ImageBitmap&&!0===e.flipY||!0===e.isRenderTargetTexture||!0===e.isFramebufferTexture||!0===e.isDepthTexture)}clone(){const e=new this.constructor(this.value,this.uvNode,this.levelNode,this.biasNode);return e.sampler=this.sampler,e.depthNode=this.depthNode,e.compareNode=this.compareNode,e.gradNode=this.gradNode,e.offsetNode=this.offsetNode,e}}const Ll=en(Bl).setParameterLength(1,4).setName("texture"),Pl=(e=Ml,t=null,r=null,s=null)=>{let i;return e&&!0===e.isTextureNode?(i=Yi(e.clone()),i.referenceNode=e.getBase(),null!==t&&(i.uvNode=Yi(t)),null!==r&&(i.levelNode=Yi(r)),null!==s&&(i.biasNode=Yi(s))):i=Ll(e,t,r,s),i},Fl=(...e)=>Pl(...e).setSampler(!1);class Dl extends ba{static get type(){return"BufferNode"}constructor(e,t,r=0){super(e,t),this.isBufferNode=!0,this.bufferType=t,this.bufferCount=r,this.updateRanges=[]}addUpdateRange(e,t){this.updateRanges.push({start:e,count:t})}clearUpdateRanges(){this.updateRanges.length=0}getElementType(e){return this.getNodeType(e)}getInputType(){return"buffer"}}const Il=(e,t,r)=>Yi(new Dl(e,t,r));class Ul extends oi{static get type(){return"UniformArrayElementNode"}constructor(e,t){super(e,t),this.isArrayBufferElementNode=!0}generate(e){const t=super.generate(e),r=this.getNodeType(),s=this.node.getPaddedType();return e.format(t,s,r)}}class Ol extends Dl{static get type(){return"UniformArrayNode"}constructor(e,t=null){super(null),this.array=e,this.elementType=null===t?Ws(e[0]):t,this.paddedType=this.getPaddedType(),this.updateType=Qs.RENDER,this.isArrayBufferNode=!0}getNodeType(){return this.paddedType}getElementType(){return this.elementType}getPaddedType(){const e=this.elementType;let t="vec4";return"mat2"===e?t="mat2":!0===/mat/.test(e)?t="mat4":"i"===e.charAt(0)?t="ivec4":"u"===e.charAt(0)&&(t="uvec4"),t}update(){const{array:e,value:t}=this,r=this.elementType;if("float"===r||"int"===r||"uint"===r)for(let r=0;rYi(new Ol(e,t));const kl=en(class extends ai{constructor(e){super("float"),this.name=e,this.isBuiltinNode=!0}generate(){return this.name}}).setParameterLength(1);let Gl,zl;class $l extends ai{static get type(){return"ScreenNode"}constructor(e){super(),this.scope=e,this._output=null,this.isViewportNode=!0}getNodeType(){return this.scope===$l.DPR?"float":this.scope===$l.VIEWPORT?"vec4":"vec2"}getUpdateType(){let e=Qs.NONE;return this.scope!==$l.SIZE&&this.scope!==$l.VIEWPORT&&this.scope!==$l.DPR||(e=Qs.RENDER),this.updateType=e,e}update({renderer:e}){const t=e.getRenderTarget();this.scope===$l.VIEWPORT?null!==t?zl.copy(t.viewport):(e.getViewport(zl),zl.multiplyScalar(e.getPixelRatio())):this.scope===$l.DPR?this._output.value=e.getPixelRatio():null!==t?(Gl.width=t.width,Gl.height=t.height):e.getDrawingBufferSize(Gl)}setup(){const e=this.scope;let r=null;return r=e===$l.SIZE?xa(Gl||(Gl=new t)):e===$l.VIEWPORT?xa(zl||(zl=new s)):e===$l.DPR?xa(1):fn(ql.div(jl)),this._output=r,r}generate(e){if(this.scope===$l.COORDINATE){let t=e.getFragCoord();if(e.isFlipY()){const r=e.getNodeProperties(jl).outputNode.build(e);t=`${e.getType("vec2")}( ${t}.x, ${r}.y - ${t}.y )`}return t}return super.generate(e)}}$l.COORDINATE="coordinate",$l.VIEWPORT="viewport",$l.SIZE="size",$l.UV="uv",$l.DPR="dpr";const Wl=tn($l,$l.DPR),Hl=tn($l,$l.UV),jl=tn($l,$l.SIZE),ql=tn($l,$l.COORDINATE),Xl=tn($l,$l.VIEWPORT),Kl=Xl.zw,Yl=ql.sub(Xl.xy),Ql=Yl.div(Kl),Zl=an(()=>(d('TSL: "viewportResolution" is deprecated. Use "screenSize" instead.'),jl),"vec2").once()(),Jl=xa(0,"uint").setName("u_cameraIndex").setGroup(ga("cameraIndex")).toVarying("v_cameraIndex"),ed=xa("float").setName("cameraNear").setGroup(fa).onRenderUpdate(({camera:e})=>e.near),td=xa("float").setName("cameraFar").setGroup(fa).onRenderUpdate(({camera:e})=>e.far),rd=an(({camera:e})=>{let t;if(e.isArrayCamera&&e.cameras.length>0){const r=[];for(const t of e.cameras)r.push(t.projectionMatrix);t=Vl(r).setGroup(fa).setName("cameraProjectionMatrices").element(e.isMultiViewCamera?kl("gl_ViewID_OVR"):Jl).toConst("cameraProjectionMatrix")}else t=xa("mat4").setName("cameraProjectionMatrix").setGroup(fa).onRenderUpdate(({camera:e})=>e.projectionMatrix);return t}).once()(),sd=an(({camera:e})=>{let t;if(e.isArrayCamera&&e.cameras.length>0){const r=[];for(const t of e.cameras)r.push(t.projectionMatrixInverse);t=Vl(r).setGroup(fa).setName("cameraProjectionMatricesInverse").element(e.isMultiViewCamera?kl("gl_ViewID_OVR"):Jl).toConst("cameraProjectionMatrixInverse")}else t=xa("mat4").setName("cameraProjectionMatrixInverse").setGroup(fa).onRenderUpdate(({camera:e})=>e.projectionMatrixInverse);return t}).once()(),id=an(({camera:e})=>{let t;if(e.isArrayCamera&&e.cameras.length>0){const r=[];for(const t of e.cameras)r.push(t.matrixWorldInverse);t=Vl(r).setGroup(fa).setName("cameraViewMatrices").element(e.isMultiViewCamera?kl("gl_ViewID_OVR"):Jl).toConst("cameraViewMatrix")}else t=xa("mat4").setName("cameraViewMatrix").setGroup(fa).onRenderUpdate(({camera:e})=>e.matrixWorldInverse);return t}).once()(),nd=an(({camera:e})=>{let t;if(e.isArrayCamera&&e.cameras.length>0){const r=[];for(const t of e.cameras)r.push(t.matrixWorld);t=Vl(r).setGroup(fa).setName("cameraWorldMatrices").element(e.isMultiViewCamera?kl("gl_ViewID_OVR"):Jl).toConst("cameraWorldMatrix")}else t=xa("mat4").setName("cameraWorldMatrix").setGroup(fa).onRenderUpdate(({camera:e})=>e.matrixWorld);return t}).once()(),ad=an(({camera:e})=>{let t;if(e.isArrayCamera&&e.cameras.length>0){const r=[];for(const t of e.cameras)r.push(t.normalMatrix);t=Vl(r).setGroup(fa).setName("cameraNormalMatrices").element(e.isMultiViewCamera?kl("gl_ViewID_OVR"):Jl).toConst("cameraNormalMatrix")}else t=xa("mat3").setName("cameraNormalMatrix").setGroup(fa).onRenderUpdate(({camera:e})=>e.normalMatrix);return t}).once()(),od=an(({camera:e})=>{let t;if(e.isArrayCamera&&e.cameras.length>0){const s=[];for(let t=0,i=e.cameras.length;t{const r=e.cameras,s=t.array;for(let e=0,t=r.length;et.value.setFromMatrixPosition(e.matrixWorld));return t}).once()(),ud=an(({camera:e})=>{let t;if(e.isArrayCamera&&e.cameras.length>0){const r=[];for(const t of e.cameras)r.push(t.viewport);t=Vl(r,"vec4").setGroup(fa).setName("cameraViewports").element(Jl).toConst("cameraViewport")}else t=Sn(0,0,jl.x,jl.y).toConst("cameraViewport");return t}).once()(),ld=new E;class dd extends ai{static get type(){return"Object3DNode"}constructor(e,t=null){super(),this.scope=e,this.object3d=t,this.updateType=Qs.OBJECT,this.uniformNode=new ba(null)}getNodeType(){const e=this.scope;return e===dd.WORLD_MATRIX?"mat4":e===dd.POSITION||e===dd.VIEW_POSITION||e===dd.DIRECTION||e===dd.SCALE?"vec3":e===dd.RADIUS?"float":void 0}update(e){const t=this.object3d,s=this.uniformNode,i=this.scope;if(i===dd.WORLD_MATRIX)s.value=t.matrixWorld;else if(i===dd.POSITION)s.value=s.value||new r,s.value.setFromMatrixPosition(t.matrixWorld);else if(i===dd.SCALE)s.value=s.value||new r,s.value.setFromMatrixScale(t.matrixWorld);else if(i===dd.DIRECTION)s.value=s.value||new r,t.getWorldDirection(s.value);else if(i===dd.VIEW_POSITION){const i=e.camera;s.value=s.value||new r,s.value.setFromMatrixPosition(t.matrixWorld),s.value.applyMatrix4(i.matrixWorldInverse)}else if(i===dd.RADIUS){const r=e.object.geometry;null===r.boundingSphere&&r.computeBoundingSphere(),ld.copy(r.boundingSphere).applyMatrix4(t.matrixWorld),s.value=ld.radius}}generate(e){const t=this.scope;return t===dd.WORLD_MATRIX?this.uniformNode.nodeType="mat4":t===dd.POSITION||t===dd.VIEW_POSITION||t===dd.DIRECTION||t===dd.SCALE?this.uniformNode.nodeType="vec3":t===dd.RADIUS&&(this.uniformNode.nodeType="float"),this.uniformNode.build(e)}serialize(e){super.serialize(e),e.scope=this.scope}deserialize(e){super.deserialize(e),this.scope=e.scope}}dd.WORLD_MATRIX="worldMatrix",dd.POSITION="position",dd.SCALE="scale",dd.VIEW_POSITION="viewPosition",dd.DIRECTION="direction",dd.RADIUS="radius";const cd=en(dd,dd.DIRECTION).setParameterLength(1),hd=en(dd,dd.WORLD_MATRIX).setParameterLength(1),pd=en(dd,dd.POSITION).setParameterLength(1),gd=en(dd,dd.SCALE).setParameterLength(1),md=en(dd,dd.VIEW_POSITION).setParameterLength(1),fd=en(dd,dd.RADIUS).setParameterLength(1);class yd extends dd{static get type(){return"ModelNode"}constructor(e){super(e)}update(e){this.object3d=e.object,super.update(e)}}const bd=tn(yd,yd.DIRECTION),xd=tn(yd,yd.WORLD_MATRIX),Td=tn(yd,yd.POSITION),_d=tn(yd,yd.SCALE),vd=tn(yd,yd.VIEW_POSITION),Nd=tn(yd,yd.RADIUS),Sd=xa(new n).onObjectUpdate(({object:e},t)=>t.value.getNormalMatrix(e.matrixWorld)),Rd=xa(new a).onObjectUpdate(({object:e},t)=>t.value.copy(e.matrixWorld).invert()),Ad=an(e=>e.context.modelViewMatrix||Ed).once()().toVar("modelViewMatrix"),Ed=id.mul(xd),wd=an(e=>(e.context.isHighPrecisionModelViewMatrix=!0,xa("mat4").onObjectUpdate(({object:e,camera:t})=>e.modelViewMatrix.multiplyMatrices(t.matrixWorldInverse,e.matrixWorld)))).once()().toVar("highpModelViewMatrix"),Cd=an(e=>{const t=e.context.isHighPrecisionModelViewMatrix;return xa("mat3").onObjectUpdate(({object:e,camera:r})=>(!0!==t&&e.modelViewMatrix.multiplyMatrices(r.matrixWorldInverse,e.matrixWorld),e.normalMatrix.getNormalMatrix(e.modelViewMatrix)))}).once()().toVar("highpModelNormalViewMatrix"),Md=Sl("position","vec3"),Bd=Md.toVarying("positionLocal"),Ld=Md.toVarying("positionPrevious"),Pd=an(e=>xd.mul(Bd).xyz.toVarying(e.getSubBuildProperty("v_positionWorld")),"vec3").once(["POSITION"])(),Fd=an(()=>Bd.transformDirection(xd).toVarying("v_positionWorldDirection").normalize().toVar("positionWorldDirection"),"vec3").once(["POSITION"])(),Dd=an(e=>e.context.setupPositionView().toVarying("v_positionView"),"vec3").once(["POSITION"])(),Id=an(e=>{let t;return t=e.camera.isOrthographicCamera?Tn(0,0,1):Dd.negate().toVarying("v_positionViewDirection").normalize(),t.toVar("positionViewDirection")},"vec3").once(["POSITION"])();class Ud extends ai{static get type(){return"FrontFacingNode"}constructor(){super("bool"),this.isFrontFacingNode=!0}generate(e){if("fragment"!==e.shaderStage)return"true";const{material:t}=e;return t.side===w?"false":e.getFrontFacing()}}const Od=tn(Ud),Vd=hn(Od).mul(2).sub(1),kd=an(([e],{material:t})=>{const r=t.side;return r===w?e=e.mul(-1):r===C&&(e=e.mul(Vd)),e}),Gd=Sl("normal","vec3"),zd=an(e=>!1===e.geometry.hasAttribute("normal")?(d('TSL: Vertex attribute "normal" not found on geometry.'),Tn(0,1,0)):Gd,"vec3").once()().toVar("normalLocal"),$d=Dd.dFdx().cross(Dd.dFdy()).normalize().toVar("normalFlat"),Wd=an(e=>{let t;return t=!0===e.material.flatShading?$d:Yd(zd).toVarying("v_normalViewGeometry").normalize(),t},"vec3").once()().toVar("normalViewGeometry"),Hd=an(e=>{let t=Wd.transformDirection(id);return!0!==e.material.flatShading&&(t=t.toVarying("v_normalWorldGeometry")),t.normalize().toVar("normalWorldGeometry")},"vec3").once()(),jd=an(({subBuildFn:e,material:t,context:r})=>{let s;return"NORMAL"===e||"VERTEX"===e?(s=Wd,!0!==t.flatShading&&(s=kd(s))):s=r.setupNormal().context({getUV:null}),s},"vec3").once(["NORMAL","VERTEX"])().toVar("normalView"),qd=jd.transformDirection(id).toVar("normalWorld"),Xd=an(({subBuildFn:e,context:t})=>{let r;return r="NORMAL"===e||"VERTEX"===e?jd:t.setupClearcoatNormal().context({getUV:null}),r},"vec3").once(["NORMAL","VERTEX"])().toVar("clearcoatNormalView"),Kd=an(([e,t=xd])=>{const r=Cn(t),s=e.div(Tn(r[0].dot(r[0]),r[1].dot(r[1]),r[2].dot(r[2])));return r.mul(s).xyz}),Yd=an(([e],t)=>{const r=t.context.modelNormalViewMatrix;if(r)return r.transformDirection(e);const s=Sd.mul(e);return id.transformDirection(s)}),Qd=an(()=>(d('TSL: "transformedNormalView" is deprecated. Use "normalView" instead.'),jd)).once(["NORMAL","VERTEX"])(),Zd=an(()=>(d('TSL: "transformedNormalWorld" is deprecated. Use "normalWorld" instead.'),qd)).once(["NORMAL","VERTEX"])(),Jd=an(()=>(d('TSL: "transformedClearcoatNormalView" is deprecated. Use "clearcoatNormalView" instead.'),Xd)).once(["NORMAL","VERTEX"])(),ec=new M,tc=new a,rc=xa(0).onReference(({material:e})=>e).onObjectUpdate(({material:e})=>e.refractionRatio),sc=xa(1).onReference(({material:e})=>e).onObjectUpdate(function({material:e,scene:t}){return e.envMap?e.envMapIntensity:t.environmentIntensity}),ic=xa(new a).onReference(function(e){return e.material}).onObjectUpdate(function({material:e,scene:t}){const r=null!==t.environment&&null===e.envMap?t.environmentRotation:e.envMapRotation;return r?(ec.copy(r),tc.makeRotationFromEuler(ec)):tc.identity(),tc}),nc=Id.negate().reflect(jd),ac=Id.negate().refract(jd,rc),oc=nc.transformDirection(id).toVar("reflectVector"),uc=ac.transformDirection(id).toVar("reflectVector"),lc=new B;class dc extends Bl{static get type(){return"CubeTextureNode"}constructor(e,t=null,r=null,s=null){super(e,t,r,s),this.isCubeTextureNode=!0}getInputType(){return!0===this.value.isDepthTexture?"cubeDepthTexture":"cubeTexture"}getDefaultUV(){const e=this.value;return e.mapping===L?oc:e.mapping===P?uc:(o('CubeTextureNode: Mapping "%s" not supported.',e.mapping),Tn(0,0,0))}setUpdateMatrix(){}setupUV(e,t){const r=this.value;return!0===r.isDepthTexture?e.renderer.coordinateSystem===h?Tn(t.x,t.y.negate(),t.z):t:(e.renderer.coordinateSystem!==h&&r.isRenderTargetTexture||(t=Tn(t.x.negate(),t.yz)),ic.mul(t))}generateUV(e,t){return t.build(e,!0===this.sampler?"vec3":"ivec3")}}const cc=en(dc).setParameterLength(1,4).setName("cubeTexture"),hc=(e=lc,t=null,r=null,s=null)=>{let i;return e&&!0===e.isCubeTextureNode?(i=Yi(e.clone()),i.referenceNode=e,null!==t&&(i.uvNode=Yi(t)),null!==r&&(i.levelNode=Yi(r)),null!==s&&(i.biasNode=Yi(s))):i=cc(e,t,r,s),i};class pc extends oi{static get type(){return"ReferenceElementNode"}constructor(e,t){super(e,t),this.referenceNode=e,this.isReferenceElementNode=!0}getNodeType(){return this.referenceNode.uniformType}generate(e){const t=super.generate(e),r=this.referenceNode.getNodeType(),s=this.getNodeType();return e.format(t,r,s)}}class gc extends ai{static get type(){return"ReferenceNode"}constructor(e,t,r=null,s=null){super(),this.property=e,this.uniformType=t,this.object=r,this.count=s,this.properties=e.split("."),this.reference=r,this.node=null,this.group=null,this.name=null,this.updateType=Qs.OBJECT}element(e){return Yi(new pc(this,Yi(e)))}setGroup(e){return this.group=e,this}setName(e){return this.name=e,this}label(e){return d('TSL: "label()" has been deprecated. Use "setName()" instead.'),this.setName(e)}setNodeType(e){let t=null;t=null!==this.count?Il(null,e,this.count):Array.isArray(this.getValueFromReference())?Vl(null,e):"texture"===e?Pl(null):"cubeTexture"===e?hc(null):xa(null,e),null!==this.group&&t.setGroup(this.group),null!==this.name&&t.setName(this.name),this.node=t}getNodeType(e){return null===this.node&&(this.updateReference(e),this.updateValue()),this.node.getNodeType(e)}getValueFromReference(e=this.reference){const{properties:t}=this;let r=e[t[0]];for(let e=1;eYi(new gc(e,t,r)),fc=(e,t,r,s)=>Yi(new gc(e,t,s,r));class yc extends gc{static get type(){return"MaterialReferenceNode"}constructor(e,t,r=null){super(e,t,r),this.material=r,this.isMaterialReferenceNode=!0}updateReference(e){return this.reference=null!==this.material?this.material:e.material,this.reference}}const bc=(e,t,r=null)=>Yi(new yc(e,t,r)),xc=Rl(),Tc=Dd.dFdx(),_c=Dd.dFdy(),vc=xc.dFdx(),Nc=xc.dFdy(),Sc=jd,Rc=_c.cross(Sc),Ac=Sc.cross(Tc),Ec=Rc.mul(vc.x).add(Ac.mul(Nc.x)),wc=Rc.mul(vc.y).add(Ac.mul(Nc.y)),Cc=Ec.dot(Ec).max(wc.dot(wc)),Mc=Cc.equal(0).select(0,Cc.inverseSqrt()),Bc=Ec.mul(Mc).toVar("tangentViewFrame"),Lc=wc.mul(Mc).toVar("bitangentViewFrame"),Pc=Sl("tangent","vec4"),Fc=Pc.xyz.toVar("tangentLocal"),Dc=an(({subBuildFn:e,geometry:t,material:r})=>{let s;return s="VERTEX"===e||t.hasAttribute("tangent")?Ad.mul(Sn(Fc,0)).xyz.toVarying("v_tangentView").normalize():Bc,!0!==r.flatShading&&(s=kd(s)),s},"vec3").once(["NORMAL","VERTEX"])().toVar("tangentView"),Ic=Dc.transformDirection(id).toVarying("v_tangentWorld").normalize().toVar("tangentWorld"),Uc=an(([e,t],{subBuildFn:r,material:s})=>{let i=e.mul(Pc.w).xyz;return"NORMAL"===r&&!0!==s.flatShading&&(i=i.toVarying(t)),i}).once(["NORMAL"]),Oc=Uc(Gd.cross(Pc),"v_bitangentGeometry").normalize().toVar("bitangentGeometry"),Vc=Uc(zd.cross(Fc),"v_bitangentLocal").normalize().toVar("bitangentLocal"),kc=an(({subBuildFn:e,geometry:t,material:r})=>{let s;return s="VERTEX"===e||t.hasAttribute("tangent")?Uc(jd.cross(Dc),"v_bitangentView").normalize():Lc,!0!==r.flatShading&&(s=kd(s)),s},"vec3").once(["NORMAL","VERTEX"])().toVar("bitangentView"),Gc=Uc(qd.cross(Ic),"v_bitangentWorld").normalize().toVar("bitangentWorld"),zc=Cn(Dc,kc,jd).toVar("TBNViewMatrix"),$c=Id.mul(zc),Wc=an(()=>{let e=Qn.cross(Id);return e=e.cross(Qn).normalize(),e=iu(e,jd,Kn.mul(Vn.oneMinus()).oneMinus().pow2().pow2()).normalize(),e}).once()(),Hc=e=>Yi(e).mul(.5).add(.5),jc=e=>Tn(e,fo(au(hn(1).sub(Ko(e,e)))));class qc extends li{static get type(){return"NormalMapNode"}constructor(e,t=null){super("vec3"),this.node=e,this.scaleNode=t,this.normalMapType=F,this.unpackNormalMode=D}setup({material:e}){const{normalMapType:t,scaleNode:r,unpackNormalMode:s}=this;let i=this.node.mul(2).sub(1);if(t===F?s===I?i=jc(i.xy):s===U?i=jc(i.yw):s!==D&&console.error(`THREE.NodeMaterial: Unexpected unpack normal mode: ${s}`):s!==D&&console.error(`THREE.NodeMaterial: Normal map type '${t}' is not compatible with unpack normal mode '${s}'`),null!==r){let t=r;!0===e.flatShading&&(t=kd(t)),i=Tn(i.xy.mul(t),i.z)}let n=null;return t===O?n=Yd(i):t===F?n=zc.mul(i).normalize():(o(`NodeMaterial: Unsupported normal map type: ${t}`),n=jd),n}}const Xc=en(qc).setParameterLength(1,2),Kc=an(({textureNode:e,bumpScale:t})=>{const r=t=>e.isolate().context({getUV:e=>t(e.uvNode||Rl()),forceUVContext:!0}),s=hn(r(e=>e));return fn(hn(r(e=>e.add(e.dFdx()))).sub(s),hn(r(e=>e.add(e.dFdy()))).sub(s)).mul(t)}),Yc=an(e=>{const{surf_pos:t,surf_norm:r,dHdxy:s}=e,i=t.dFdx().normalize(),n=r,a=t.dFdy().normalize().cross(n),o=n.cross(i),u=i.dot(a).mul(Vd),l=u.sign().mul(s.x.mul(a).add(s.y.mul(o)));return u.abs().mul(r).sub(l).normalize()});class Qc extends li{static get type(){return"BumpMapNode"}constructor(e,t=null){super("vec3"),this.textureNode=e,this.scaleNode=t}setup(){const e=null!==this.scaleNode?this.scaleNode:1,t=Kc({textureNode:this.textureNode,bumpScale:e});return Yc({surf_pos:Dd,surf_norm:jd,dHdxy:t})}}const Zc=en(Qc).setParameterLength(1,2),Jc=new Map;class eh extends ai{static get type(){return"MaterialNode"}constructor(e){super(),this.scope=e}getCache(e,t){let r=Jc.get(e);return void 0===r&&(r=bc(e,t),Jc.set(e,r)),r}getFloat(e){return this.getCache(e,"float")}getColor(e){return this.getCache(e,"color")}getTexture(e){return this.getCache("map"===e?"map":e+"Map","texture")}setup(e){const t=e.context.material,r=this.scope;let s=null;if(r===eh.COLOR){const e=void 0!==t.color?this.getColor(r):Tn();s=t.map&&!0===t.map.isTexture?e.mul(this.getTexture("map")):e}else if(r===eh.OPACITY){const e=this.getFloat(r);s=t.alphaMap&&!0===t.alphaMap.isTexture?e.mul(this.getTexture("alpha")):e}else if(r===eh.SPECULAR_STRENGTH)s=t.specularMap&&!0===t.specularMap.isTexture?this.getTexture("specular").r:hn(1);else if(r===eh.SPECULAR_INTENSITY){const e=this.getFloat(r);s=t.specularIntensityMap&&!0===t.specularIntensityMap.isTexture?e.mul(this.getTexture(r).a):e}else if(r===eh.SPECULAR_COLOR){const e=this.getColor(r);s=t.specularColorMap&&!0===t.specularColorMap.isTexture?e.mul(this.getTexture(r).rgb):e}else if(r===eh.ROUGHNESS){const e=this.getFloat(r);s=t.roughnessMap&&!0===t.roughnessMap.isTexture?e.mul(this.getTexture(r).g):e}else if(r===eh.METALNESS){const e=this.getFloat(r);s=t.metalnessMap&&!0===t.metalnessMap.isTexture?e.mul(this.getTexture(r).b):e}else if(r===eh.EMISSIVE){const e=this.getFloat("emissiveIntensity"),i=this.getColor(r).mul(e);s=t.emissiveMap&&!0===t.emissiveMap.isTexture?i.mul(this.getTexture(r)):i}else if(r===eh.NORMAL)t.normalMap?(s=Xc(this.getTexture("normal"),this.getCache("normalScale","vec2")),s.normalMapType=t.normalMapType,t.normalMap.format!=V&&t.normalMap.format!=k&&t.normalMap.format!=G||(s.unpackNormalMode=I)):s=t.bumpMap?Zc(this.getTexture("bump").r,this.getFloat("bumpScale")):jd;else if(r===eh.CLEARCOAT){const e=this.getFloat(r);s=t.clearcoatMap&&!0===t.clearcoatMap.isTexture?e.mul(this.getTexture(r).r):e}else if(r===eh.CLEARCOAT_ROUGHNESS){const e=this.getFloat(r);s=t.clearcoatRoughnessMap&&!0===t.clearcoatRoughnessMap.isTexture?e.mul(this.getTexture(r).r):e}else if(r===eh.CLEARCOAT_NORMAL)s=t.clearcoatNormalMap?Xc(this.getTexture(r),this.getCache(r+"Scale","vec2")):jd;else if(r===eh.SHEEN){const e=this.getColor("sheenColor").mul(this.getFloat("sheen"));s=t.sheenColorMap&&!0===t.sheenColorMap.isTexture?e.mul(this.getTexture("sheenColor").rgb):e}else if(r===eh.SHEEN_ROUGHNESS){const e=this.getFloat(r);s=t.sheenRoughnessMap&&!0===t.sheenRoughnessMap.isTexture?e.mul(this.getTexture(r).a):e,s=s.clamp(1e-4,1)}else if(r===eh.ANISOTROPY)if(t.anisotropyMap&&!0===t.anisotropyMap.isTexture){const e=this.getTexture(r);s=wn(Oh.x,Oh.y,Oh.y.negate(),Oh.x).mul(e.rg.mul(2).sub(fn(1)).normalize().mul(e.b))}else s=Oh;else if(r===eh.IRIDESCENCE_THICKNESS){const e=mc("1","float",t.iridescenceThicknessRange);if(t.iridescenceThicknessMap){const i=mc("0","float",t.iridescenceThicknessRange);s=e.sub(i).mul(this.getTexture(r).g).add(i)}else s=e}else if(r===eh.TRANSMISSION){const e=this.getFloat(r);s=t.transmissionMap?e.mul(this.getTexture(r).r):e}else if(r===eh.THICKNESS){const e=this.getFloat(r);s=t.thicknessMap?e.mul(this.getTexture(r).g):e}else if(r===eh.IOR)s=this.getFloat(r);else if(r===eh.LIGHT_MAP)s=this.getTexture(r).rgb.mul(this.getFloat("lightMapIntensity"));else if(r===eh.AO)s=this.getTexture(r).r.sub(1).mul(this.getFloat("aoMapIntensity")).add(1);else if(r===eh.LINE_DASH_OFFSET)s=t.dashOffset?this.getFloat(r):hn(0);else{const t=this.getNodeType(e);s=this.getCache(r,t)}return s}}eh.ALPHA_TEST="alphaTest",eh.COLOR="color",eh.OPACITY="opacity",eh.SHININESS="shininess",eh.SPECULAR="specular",eh.SPECULAR_STRENGTH="specularStrength",eh.SPECULAR_INTENSITY="specularIntensity",eh.SPECULAR_COLOR="specularColor",eh.REFLECTIVITY="reflectivity",eh.ROUGHNESS="roughness",eh.METALNESS="metalness",eh.NORMAL="normal",eh.CLEARCOAT="clearcoat",eh.CLEARCOAT_ROUGHNESS="clearcoatRoughness",eh.CLEARCOAT_NORMAL="clearcoatNormal",eh.EMISSIVE="emissive",eh.ROTATION="rotation",eh.SHEEN="sheen",eh.SHEEN_ROUGHNESS="sheenRoughness",eh.ANISOTROPY="anisotropy",eh.IRIDESCENCE="iridescence",eh.IRIDESCENCE_IOR="iridescenceIOR",eh.IRIDESCENCE_THICKNESS="iridescenceThickness",eh.IOR="ior",eh.TRANSMISSION="transmission",eh.THICKNESS="thickness",eh.ATTENUATION_DISTANCE="attenuationDistance",eh.ATTENUATION_COLOR="attenuationColor",eh.LINE_SCALE="scale",eh.LINE_DASH_SIZE="dashSize",eh.LINE_GAP_SIZE="gapSize",eh.LINE_WIDTH="linewidth",eh.LINE_DASH_OFFSET="dashOffset",eh.POINT_SIZE="size",eh.DISPERSION="dispersion",eh.LIGHT_MAP="light",eh.AO="ao";const th=tn(eh,eh.ALPHA_TEST),rh=tn(eh,eh.COLOR),sh=tn(eh,eh.SHININESS),ih=tn(eh,eh.EMISSIVE),nh=tn(eh,eh.OPACITY),ah=tn(eh,eh.SPECULAR),oh=tn(eh,eh.SPECULAR_INTENSITY),uh=tn(eh,eh.SPECULAR_COLOR),lh=tn(eh,eh.SPECULAR_STRENGTH),dh=tn(eh,eh.REFLECTIVITY),ch=tn(eh,eh.ROUGHNESS),hh=tn(eh,eh.METALNESS),ph=tn(eh,eh.NORMAL),gh=tn(eh,eh.CLEARCOAT),mh=tn(eh,eh.CLEARCOAT_ROUGHNESS),fh=tn(eh,eh.CLEARCOAT_NORMAL),yh=tn(eh,eh.ROTATION),bh=tn(eh,eh.SHEEN),xh=tn(eh,eh.SHEEN_ROUGHNESS),Th=tn(eh,eh.ANISOTROPY),_h=tn(eh,eh.IRIDESCENCE),vh=tn(eh,eh.IRIDESCENCE_IOR),Nh=tn(eh,eh.IRIDESCENCE_THICKNESS),Sh=tn(eh,eh.TRANSMISSION),Rh=tn(eh,eh.THICKNESS),Ah=tn(eh,eh.IOR),Eh=tn(eh,eh.ATTENUATION_DISTANCE),wh=tn(eh,eh.ATTENUATION_COLOR),Ch=tn(eh,eh.LINE_SCALE),Mh=tn(eh,eh.LINE_DASH_SIZE),Bh=tn(eh,eh.LINE_GAP_SIZE),Lh=tn(eh,eh.LINE_WIDTH),Ph=tn(eh,eh.LINE_DASH_OFFSET),Fh=tn(eh,eh.POINT_SIZE),Dh=tn(eh,eh.DISPERSION),Ih=tn(eh,eh.LIGHT_MAP),Uh=tn(eh,eh.AO),Oh=xa(new t).onReference(function(e){return e.material}).onRenderUpdate(function({material:e}){this.value.set(e.anisotropy*Math.cos(e.anisotropyRotation),e.anisotropy*Math.sin(e.anisotropyRotation))}),Vh=an(e=>e.context.setupModelViewProjection(),"vec4").once()().toVarying("v_modelViewProjection");class kh extends oi{static get type(){return"StorageArrayElementNode"}constructor(e,t){super(e,t),this.isStorageArrayElementNode=!0}set storageBufferNode(e){this.node=e}get storageBufferNode(){return this.node}getMemberType(e,t){const r=this.storageBufferNode.structTypeNode;return r?r.getMemberType(e,t):"void"}setup(e){return!1===e.isAvailable("storageBuffer")&&!0===this.node.isPBO&&e.setupPBO(this.node),super.setup(e)}generate(e,t){let r;const s=e.context.assign;if(r=!1===e.isAvailable("storageBuffer")?!0!==this.node.isPBO||!0===s||!this.node.value.isInstancedBufferAttribute&&"compute"===e.shaderStage?this.node.build(e):e.generatePBO(this):super.generate(e),!0!==s){const s=this.getNodeType(e);r=e.format(r,s,t)}return r}}const Gh=en(kh).setParameterLength(2);class zh extends Dl{static get type(){return"StorageBufferNode"}constructor(e,t=null,r=0){let s,i=null;t&&t.isStruct?(s="struct",i=t.layout,(e.isStorageBufferAttribute||e.isStorageInstancedBufferAttribute)&&(r=e.count)):null===t&&(e.isStorageBufferAttribute||e.isStorageInstancedBufferAttribute)?(s=Vs(e.itemSize),r=e.count):s=t,super(e,s,r),this.isStorageBufferNode=!0,this.structTypeNode=i,this.access=Js.READ_WRITE,this.isAtomic=!1,this.isPBO=!1,this._attribute=null,this._varying=null,this.global=!0,!0!==e.isStorageBufferAttribute&&!0!==e.isStorageInstancedBufferAttribute&&(e.isInstancedBufferAttribute?e.isStorageInstancedBufferAttribute=!0:e.isStorageBufferAttribute=!0)}getHash(e){if(0===this.bufferCount){let t=e.globalCache.getData(this.value);return void 0===t&&(t={node:this},e.globalCache.setData(this.value,t)),t.node.uuid}return this.uuid}getInputType(){return this.value.isIndirectStorageBufferAttribute?"indirectStorageBuffer":"storageBuffer"}element(e){return Gh(this,e)}setPBO(e){return this.isPBO=e,this}getPBO(){return this.isPBO}setAccess(e){return this.access=e,this}toReadOnly(){return this.setAccess(Js.READ_ONLY)}setAtomic(e){return this.isAtomic=e,this}toAtomic(){return this.setAtomic(!0)}getAttributeData(){return null===this._attribute&&(this._attribute=Ju(this.value),this._varying=Fu(this._attribute)),{attribute:this._attribute,varying:this._varying}}getNodeType(e){if(null!==this.structTypeNode)return this.structTypeNode.getNodeType(e);if(e.isAvailable("storageBuffer")||e.isAvailable("indirectStorageBuffer"))return super.getNodeType(e);const{attribute:t}=this.getAttributeData();return t.getNodeType(e)}getMemberType(e,t){return null!==this.structTypeNode?this.structTypeNode.getMemberType(e,t):"void"}generate(e){if(null!==this.structTypeNode&&this.structTypeNode.build(e),e.isAvailable("storageBuffer")||e.isAvailable("indirectStorageBuffer"))return super.generate(e);const{attribute:t,varying:r}=this.getAttributeData(),s=r.build(e);return e.registerTransform(s,t),s}}const $h=(e,t=null,r=0)=>Yi(new zh(e,t,r));class Wh extends ai{static get type(){return"IndexNode"}constructor(e){super("uint"),this.scope=e,this.isIndexNode=!0}generate(e){const t=this.getNodeType(e),r=this.scope;let s,i;if(r===Wh.VERTEX)s=e.getVertexIndex();else if(r===Wh.INSTANCE)s=e.getInstanceIndex();else if(r===Wh.DRAW)s=e.getDrawIndex();else if(r===Wh.INVOCATION_LOCAL)s=e.getInvocationLocalIndex();else if(r===Wh.INVOCATION_SUBGROUP)s=e.getInvocationSubgroupIndex();else{if(r!==Wh.SUBGROUP)throw new Error("THREE.IndexNode: Unknown scope: "+r);s=e.getSubgroupIndex()}if("vertex"===e.shaderStage||"compute"===e.shaderStage)i=s;else{i=Fu(this).build(e,t)}return i}}Wh.VERTEX="vertex",Wh.INSTANCE="instance",Wh.SUBGROUP="subgroup",Wh.INVOCATION_LOCAL="invocationLocal",Wh.INVOCATION_SUBGROUP="invocationSubgroup",Wh.DRAW="draw";const Hh=tn(Wh,Wh.VERTEX),jh=tn(Wh,Wh.INSTANCE),qh=tn(Wh,Wh.SUBGROUP),Xh=tn(Wh,Wh.INVOCATION_SUBGROUP),Kh=tn(Wh,Wh.INVOCATION_LOCAL),Yh=tn(Wh,Wh.DRAW);class Qh extends ai{static get type(){return"InstanceNode"}constructor(e,t,r=null){super("void"),this.count=e,this.instanceMatrix=t,this.instanceColor=r,this.instanceMatrixNode=null,this.instanceColorNode=null,this.updateType=Qs.FRAME,this.buffer=null,this.bufferColor=null}get isStorageMatrix(){const{instanceMatrix:e}=this;return e&&!0===e.isStorageInstancedBufferAttribute}get isStorageColor(){const{instanceColor:e}=this;return e&&!0===e.isStorageInstancedBufferAttribute}setup(e){const{instanceMatrix:t,instanceColor:r,isStorageMatrix:s,isStorageColor:i}=this,{count:n}=t;let{instanceMatrixNode:a,instanceColorNode:o}=this;if(null===a){if(s)a=$h(t,"mat4",Math.max(n,1)).element(jh);else if(n<=1e3)a=Il(t.array,"mat4",Math.max(n,1)).element(jh);else{const e=new z(t.array,16,1);this.buffer=e;const r=t.usage===x?tl:el,s=[r(e,"vec4",16,0),r(e,"vec4",16,4),r(e,"vec4",16,8),r(e,"vec4",16,12)];a=Mn(...s)}this.instanceMatrixNode=a}if(r&&null===o){if(i)o=$h(r,"vec3",Math.max(r.count,1)).element(jh);else{const e=new $(r.array,3),t=r.usage===x?tl:el;this.bufferColor=e,o=Tn(t(e,"vec3",3,0))}this.instanceColorNode=o}const u=a.mul(Bd).xyz;if(Bd.assign(u),e.hasGeometryAttribute("normal")){const e=Kd(zd,a);zd.assign(e)}null!==this.instanceColorNode&&Dn("vec3","vInstanceColor").assign(this.instanceColorNode)}update(){null!==this.buffer&&!0!==this.isStorageMatrix&&(this.buffer.clearUpdateRanges(),this.buffer.updateRanges.push(...this.instanceMatrix.updateRanges),this.instanceMatrix.usage!==x&&this.instanceMatrix.version!==this.buffer.version&&(this.buffer.version=this.instanceMatrix.version)),this.instanceColor&&null!==this.bufferColor&&!0!==this.isStorageColor&&(this.bufferColor.clearUpdateRanges(),this.bufferColor.updateRanges.push(...this.instanceColor.updateRanges),this.instanceColor.usage!==x&&this.instanceColor.version!==this.bufferColor.version&&(this.bufferColor.version=this.instanceColor.version))}}const Zh=en(Qh).setParameterLength(2,3);class Jh extends Qh{static get type(){return"InstancedMeshNode"}constructor(e){const{count:t,instanceMatrix:r,instanceColor:s}=e;super(t,r,s),this.instancedMesh=e}}const ep=en(Jh).setParameterLength(1);class tp extends ai{static get type(){return"BatchNode"}constructor(e){super("void"),this.batchMesh=e,this.batchingIdNode=null}setup(e){null===this.batchingIdNode&&(null===e.getDrawIndex()?this.batchingIdNode=jh:this.batchingIdNode=Yh);const t=an(([e])=>{const t=pn(El(Fl(this.batchMesh._indirectTexture),0).x).toConst(),r=pn(e).mod(t).toConst(),s=pn(e).div(t).toConst();return Fl(this.batchMesh._indirectTexture,yn(r,s)).x}).setLayout({name:"getIndirectIndex",type:"uint",inputs:[{name:"id",type:"int"}]}),r=t(pn(this.batchingIdNode)),s=this.batchMesh._matricesTexture,i=pn(El(Fl(s),0).x).toConst(),n=hn(r).mul(4).toInt().toConst(),a=n.mod(i).toConst(),o=n.div(i).toConst(),u=Mn(Fl(s,yn(a,o)),Fl(s,yn(a.add(1),o)),Fl(s,yn(a.add(2),o)),Fl(s,yn(a.add(3),o))),l=this.batchMesh._colorsTexture;if(null!==l){const e=an(([e])=>{const t=pn(El(Fl(l),0).x).toConst(),r=e,s=r.mod(t).toConst(),i=r.div(t).toConst();return Fl(l,yn(s,i)).rgb}).setLayout({name:"getBatchingColor",type:"vec3",inputs:[{name:"id",type:"int"}]}),t=e(r);Dn("vec3","vBatchColor").assign(t)}const d=Cn(u);Bd.assign(u.mul(Bd));const c=zd.div(Tn(d[0].dot(d[0]),d[1].dot(d[1]),d[2].dot(d[2]))),h=d.mul(c).xyz;zd.assign(h),e.hasGeometryAttribute("tangent")&&Fc.mulAssign(d)}}const rp=en(tp).setParameterLength(1),sp=new WeakMap;class ip extends ai{static get type(){return"SkinningNode"}constructor(e){super("void"),this.skinnedMesh=e,this.updateType=Qs.OBJECT,this.skinIndexNode=Sl("skinIndex","uvec4"),this.skinWeightNode=Sl("skinWeight","vec4"),this.bindMatrixNode=mc("bindMatrix","mat4"),this.bindMatrixInverseNode=mc("bindMatrixInverse","mat4"),this.boneMatricesNode=fc("skeleton.boneMatrices","mat4",e.skeleton.bones.length),this.positionNode=Bd,this.toPositionNode=Bd,this.previousBoneMatricesNode=null}getSkinnedPosition(e=this.boneMatricesNode,t=this.positionNode){const{skinIndexNode:r,skinWeightNode:s,bindMatrixNode:i,bindMatrixInverseNode:n}=this,a=e.element(r.x),o=e.element(r.y),u=e.element(r.z),l=e.element(r.w),d=i.mul(t),c=wa(a.mul(s.x).mul(d),o.mul(s.y).mul(d),u.mul(s.z).mul(d),l.mul(s.w).mul(d));return n.mul(c).xyz}getSkinnedNormal(e=this.boneMatricesNode,t=zd){const{skinIndexNode:r,skinWeightNode:s,bindMatrixNode:i,bindMatrixInverseNode:n}=this,a=e.element(r.x),o=e.element(r.y),u=e.element(r.z),l=e.element(r.w);let d=wa(s.x.mul(a),s.y.mul(o),s.z.mul(u),s.w.mul(l));return d=n.mul(d).mul(i),d.transformDirection(t).xyz}getPreviousSkinnedPosition(e){const t=e.object;return null===this.previousBoneMatricesNode&&(t.skeleton.previousBoneMatrices=new Float32Array(t.skeleton.boneMatrices),this.previousBoneMatricesNode=fc("skeleton.previousBoneMatrices","mat4",t.skeleton.bones.length)),this.getSkinnedPosition(this.previousBoneMatricesNode,Ld)}needsPreviousBoneMatrices(e){const t=e.renderer.getMRT();return t&&t.has("velocity")||!0===js(e.object).useVelocity}setup(e){this.needsPreviousBoneMatrices(e)&&Ld.assign(this.getPreviousSkinnedPosition(e));const t=this.getSkinnedPosition();if(this.toPositionNode&&this.toPositionNode.assign(t),e.hasGeometryAttribute("normal")){const t=this.getSkinnedNormal();zd.assign(t),e.hasGeometryAttribute("tangent")&&Fc.assign(t)}return t}generate(e,t){if("void"!==t)return super.generate(e,t)}update(e){const t=e.object&&e.object.skeleton?e.object.skeleton:this.skinnedMesh.skeleton;sp.get(t)!==e.frameId&&(sp.set(t,e.frameId),null!==this.previousBoneMatricesNode&&t.previousBoneMatrices.set(t.boneMatrices),t.update())}}const np=e=>Yi(new ip(e));class ap extends ai{static get type(){return"LoopNode"}constructor(e=[]){super("void"),this.params=e}getVarName(e){return String.fromCharCode("i".charCodeAt(0)+e)}getProperties(e){const t=e.getNodeProperties(this);if(void 0!==t.stackNode)return t;const r={};for(let e=0,t=this.params.length-1;eNumber(l)?">=":"<")),a)n=`while ( ${l} )`;else{const r={start:u,end:l},s=r.start,i=r.end;let a;const g=()=>h.includes("<")?"+=":"-=";if(null!=p)switch(typeof p){case"function":a=e.flowStagesNode(t.updateNode,"void").code.replace(/\t|;/g,"");break;case"number":a=d+" "+g()+" "+e.generateConst(c,p);break;case"string":a=d+" "+p;break;default:p.isNode?a=d+" "+g()+" "+p.build(e):(o("TSL: 'Loop( { update: ... } )' is not a function, string or number."),a="break /* invalid update */")}else p="int"===c||"uint"===c?h.includes("<")?"++":"--":g()+" 1.",a=d+" "+p;n=`for ( ${e.getVar(c,d)+" = "+s}; ${d+" "+h+" "+i}; ${a} )`}e.addFlowCode((0===s?"\n":"")+e.tab+n+" {\n\n").addFlowTab()}const i=s.build(e,"void");t.returnsNode.build(e,"void"),e.removeFlowTab().addFlowCode("\n"+e.tab+i);for(let t=0,r=this.params.length-1;tnew ap(Ji(e,"int")).toStack(),up=()=>gl("break").toStack(),lp=new WeakMap,dp=new s,cp=an(({bufferMap:e,influence:t,stride:r,width:s,depth:i,offset:n})=>{const a=pn(Hh).mul(r).add(n),o=a.div(s),u=a.sub(o.mul(s));return Fl(e,yn(u,o)).depth(i).xyz.mul(t)});class hp extends ai{static get type(){return"MorphNode"}constructor(e){super("void"),this.mesh=e,this.morphBaseInfluence=xa(1),this.updateType=Qs.OBJECT}setup(e){const{geometry:r}=e,s=void 0!==r.morphAttributes.position,i=r.hasAttribute("normal")&&void 0!==r.morphAttributes.normal,n=r.morphAttributes.position||r.morphAttributes.normal||r.morphAttributes.color,a=void 0!==n?n.length:0,{texture:o,stride:u,size:l}=function(e){const r=void 0!==e.morphAttributes.position,s=void 0!==e.morphAttributes.normal,i=void 0!==e.morphAttributes.color,n=e.morphAttributes.position||e.morphAttributes.normal||e.morphAttributes.color,a=void 0!==n?n.length:0;let o=lp.get(e);if(void 0===o||o.count!==a){void 0!==o&&o.texture.dispose();const u=e.morphAttributes.position||[],l=e.morphAttributes.normal||[],d=e.morphAttributes.color||[];let c=0;!0===r&&(c=1),!0===s&&(c=2),!0===i&&(c=3);let h=e.attributes.position.count*c,p=1;const g=4096;h>g&&(p=Math.ceil(h/g),h=g);const m=new Float32Array(h*p*4*a),f=new W(m,h,p,a);f.type=H,f.needsUpdate=!0;const y=4*c;for(let x=0;x{const t=hn(0).toVar();this.mesh.count>1&&null!==this.mesh.morphTexture&&void 0!==this.mesh.morphTexture?t.assign(Fl(this.mesh.morphTexture,yn(pn(e).add(1),pn(jh))).r):t.assign(mc("morphTargetInfluences","float").element(e).toVar()),ln(t.notEqual(0),()=>{!0===s&&Bd.addAssign(cp({bufferMap:o,influence:t,stride:u,width:d,depth:e,offset:pn(0)})),!0===i&&zd.addAssign(cp({bufferMap:o,influence:t,stride:u,width:d,depth:e,offset:pn(1)}))})})}update(){const e=this.morphBaseInfluence;this.mesh.geometry.morphTargetsRelative?e.value=1:e.value=1-this.mesh.morphTargetInfluences.reduce((e,t)=>e+t,0)}}const pp=en(hp).setParameterLength(1);class gp extends ai{static get type(){return"LightingNode"}constructor(){super("vec3"),this.isLightingNode=!0}}class mp extends gp{static get type(){return"AONode"}constructor(e=null){super(),this.aoNode=e}setup(e){e.context.ambientOcclusion.mulAssign(this.aoNode)}}class fp extends xu{static get type(){return"LightingContextNode"}constructor(e,t=null,r=null,s=null){super(e),this.lightingModel=t,this.backdropNode=r,this.backdropAlphaNode=s,this._value=null}getContext(){const{backdropNode:e,backdropAlphaNode:t}=this,r={directDiffuse:Tn().toVar("directDiffuse"),directSpecular:Tn().toVar("directSpecular"),indirectDiffuse:Tn().toVar("indirectDiffuse"),indirectSpecular:Tn().toVar("indirectSpecular")};return{radiance:Tn().toVar("radiance"),irradiance:Tn().toVar("irradiance"),iblIrradiance:Tn().toVar("iblIrradiance"),ambientOcclusion:hn(1).toVar("ambientOcclusion"),reflectedLight:r,backdrop:e,backdropAlpha:t}}setup(e){return this.value=this._value||(this._value=this.getContext()),this.value.lightingModel=this.lightingModel||e.context.lightingModel,super.setup(e)}}const yp=en(fp);class bp extends gp{static get type(){return"IrradianceNode"}constructor(e){super(),this.node=e}setup(e){e.context.irradiance.addAssign(this.node)}}const xp=new t;class Tp extends Bl{static get type(){return"ViewportTextureNode"}constructor(e=Hl,t=null,r=null){let s=null;null===r?(s=new j,s.minFilter=q,r=s):s=r,super(r,e,t),this.generateMipmaps=!1,this.defaultFramebuffer=s,this.isOutputTextureNode=!0,this.updateBeforeType=Qs.FRAME,this._cacheTextures=new WeakMap}getTextureForReference(e=null){let t,r;if(this.referenceNode?(t=this.referenceNode.defaultFramebuffer,r=this.referenceNode._cacheTextures):(t=this.defaultFramebuffer,r=this._cacheTextures),null===e)return t;if(!1===r.has(e)){const s=t.clone();r.set(e,s)}return r.get(e)}updateReference(e){const t=e.renderer.getRenderTarget();return this.value=this.getTextureForReference(t),this.value}updateBefore(e){const t=e.renderer,r=t.getRenderTarget();null===r?t.getDrawingBufferSize(xp):xp.set(r.width,r.height);const s=this.getTextureForReference(r);s.image.width===xp.width&&s.image.height===xp.height||(s.image.width=xp.width,s.image.height=xp.height,s.needsUpdate=!0);const i=s.generateMipmaps;s.generateMipmaps=this.generateMipmaps,t.copyFramebufferToTexture(s),s.generateMipmaps=i}clone(){const e=new this.constructor(this.uvNode,this.levelNode,this.value);return e.generateMipmaps=this.generateMipmaps,e}}const _p=en(Tp).setParameterLength(0,3),vp=en(Tp,null,null,{generateMipmaps:!0}).setParameterLength(0,3);let Np=null;class Sp extends Tp{static get type(){return"ViewportDepthTextureNode"}constructor(e=Hl,t=null){null===Np&&(Np=new X),super(e,t,Np)}getTextureForReference(){return Np}}const Rp=en(Sp).setParameterLength(0,2);class Ap extends ai{static get type(){return"ViewportDepthNode"}constructor(e,t=null){super("float"),this.scope=e,this.valueNode=t,this.isViewportDepthNode=!0}generate(e){const{scope:t}=this;return t===Ap.DEPTH_BASE?e.getFragDepth():super.generate(e)}setup({camera:e}){const{scope:t}=this,r=this.valueNode;let s=null;if(t===Ap.DEPTH_BASE)null!==r&&(s=Bp().assign(r));else if(t===Ap.DEPTH)s=e.isPerspectiveCamera?wp(Dd.z,ed,td):Ep(Dd.z,ed,td);else if(t===Ap.LINEAR_DEPTH)if(null!==r)if(e.isPerspectiveCamera){const e=Cp(r,ed,td);s=Ep(e,ed,td)}else s=r;else s=Ep(Dd.z,ed,td);return s}}Ap.DEPTH_BASE="depthBase",Ap.DEPTH="depth",Ap.LINEAR_DEPTH="linearDepth";const Ep=(e,t,r)=>e.add(t).div(t.sub(r)),wp=(e,t,r)=>t.add(e).mul(r).div(r.sub(t).mul(e)),Cp=(e,t,r)=>t.mul(r).div(r.sub(t).mul(e).sub(r)),Mp=(e,t,r)=>{t=t.max(1e-6).toVar();const s=mo(e.negate().div(t)),i=mo(r.div(t));return s.div(i)},Bp=en(Ap,Ap.DEPTH_BASE),Lp=tn(Ap,Ap.DEPTH),Pp=en(Ap,Ap.LINEAR_DEPTH).setParameterLength(0,1),Fp=Pp(Rp());Lp.assign=e=>Bp(e);class Dp extends ai{static get type(){return"ClippingNode"}constructor(e=Dp.DEFAULT){super(),this.scope=e}setup(e){super.setup(e);const t=e.clippingContext,{intersectionPlanes:r,unionPlanes:s}=t;return this.hardwareClipping=e.material.hardwareClipping,this.scope===Dp.ALPHA_TO_COVERAGE?this.setupAlphaToCoverage(r,s):this.scope===Dp.HARDWARE?this.setupHardwareClipping(s,e):this.setupDefault(r,s)}setupAlphaToCoverage(e,t){return an(()=>{const r=hn().toVar("distanceToPlane"),s=hn().toVar("distanceToGradient"),i=hn(1).toVar("clipOpacity"),n=t.length;if(!1===this.hardwareClipping&&n>0){const e=Vl(t).setGroup(fa);op(n,({i:t})=>{const n=e.element(t);r.assign(Dd.dot(n.xyz).negate().add(n.w)),s.assign(r.fwidth().div(2)),i.mulAssign(uu(s.negate(),s,r))})}const a=e.length;if(a>0){const t=Vl(e).setGroup(fa),n=hn(1).toVar("intersectionClipOpacity");op(a,({i:e})=>{const i=t.element(e);r.assign(Dd.dot(i.xyz).negate().add(i.w)),s.assign(r.fwidth().div(2)),n.mulAssign(uu(s.negate(),s,r).oneMinus())}),i.mulAssign(n.oneMinus())}In.a.mulAssign(i),In.a.equal(0).discard()})()}setupDefault(e,t){return an(()=>{const r=t.length;if(!1===this.hardwareClipping&&r>0){const e=Vl(t).setGroup(fa);op(r,({i:t})=>{const r=e.element(t);Dd.dot(r.xyz).greaterThan(r.w).discard()})}const s=e.length;if(s>0){const t=Vl(e).setGroup(fa),r=mn(!0).toVar("clipped");op(s,({i:e})=>{const s=t.element(e);r.assign(Dd.dot(s.xyz).greaterThan(s.w).and(r))}),r.discard()}})()}setupHardwareClipping(e,t){const r=e.length;return t.enableHardwareClipping(r),an(()=>{const s=Vl(e).setGroup(fa),i=kl(t.getClipDistance());op(r,({i:e})=>{const t=s.element(e),r=Dd.dot(t.xyz).sub(t.w).negate();i.element(e).assign(r)})})()}}Dp.ALPHA_TO_COVERAGE="alphaToCoverage",Dp.DEFAULT="default",Dp.HARDWARE="hardware";const Ip=an(([e])=>_o(Ma(1e4,vo(Ma(17,e.x).add(Ma(.1,e.y)))).mul(wa(.1,wo(vo(Ma(13,e.y).add(e.x))))))),Up=an(([e])=>Ip(fn(Ip(e.xy),e.z))),Op=an(([e])=>{const t=Wo(Mo(Po(e.xyz)),Mo(Fo(e.xyz))),r=hn(1).div(hn(.05).mul(t)).toVar("pixScale"),s=fn(po(bo(mo(r))),po(xo(mo(r)))),i=fn(Up(bo(s.x.mul(e.xyz))),Up(bo(s.y.mul(e.xyz)))),n=_o(mo(r)),a=wa(Ma(n.oneMinus(),i.x),Ma(n,i.y)),o=$o(n,n.oneMinus()),u=Tn(a.mul(a).div(Ma(2,o).mul(Ca(1,o))),a.sub(Ma(.5,o)).div(Ca(1,o)),Ca(1,Ca(1,a).mul(Ca(1,a)).div(Ma(2,o).mul(Ca(1,o))))),l=a.lessThan(o.oneMinus()).select(a.lessThan(o).select(u.x,u.y),u.z);return nu(l,1e-6,1)}).setLayout({name:"getAlphaHashThreshold",type:"float",inputs:[{name:"position",type:"vec3"}]});class Vp extends Nl{static get type(){return"VertexColorNode"}constructor(e){super(null,"vec4"),this.isVertexColorNode=!0,this.index=e}getAttributeName(){const e=this.index;return"color"+(e>0?e:"")}generate(e){const t=this.getAttributeName(e);let r;return r=!0===e.hasGeometryAttribute(t)?super.generate(e):e.generateConst(this.nodeType,new s(1,1,1,1)),r}serialize(e){super.serialize(e),e.index=this.index}deserialize(e){super.deserialize(e),this.index=e.index}}const kp=(e=0)=>Yi(new Vp(e)),Gp=an(([e,t])=>$o(1,e.oneMinus().div(t)).oneMinus()).setLayout({name:"blendBurn",type:"vec3",inputs:[{name:"base",type:"vec3"},{name:"blend",type:"vec3"}]}),zp=an(([e,t])=>$o(e.div(t.oneMinus()),1)).setLayout({name:"blendDodge",type:"vec3",inputs:[{name:"base",type:"vec3"},{name:"blend",type:"vec3"}]}),$p=an(([e,t])=>e.oneMinus().mul(t.oneMinus()).oneMinus()).setLayout({name:"blendScreen",type:"vec3",inputs:[{name:"base",type:"vec3"},{name:"blend",type:"vec3"}]}),Wp=an(([e,t])=>iu(e.mul(2).mul(t),e.oneMinus().mul(2).mul(t.oneMinus()).oneMinus(),Ho(.5,e))).setLayout({name:"blendOverlay",type:"vec3",inputs:[{name:"base",type:"vec3"},{name:"blend",type:"vec3"}]}),Hp=an(([e,t])=>{const r=t.a.add(e.a.mul(t.a.oneMinus()));return Sn(t.rgb.mul(t.a).add(e.rgb.mul(e.a).mul(t.a.oneMinus())).div(r),r)}).setLayout({name:"blendColor",type:"vec4",inputs:[{name:"base",type:"vec4"},{name:"blend",type:"vec4"}]}),jp=an(([e])=>Sn(e.rgb.mul(e.a),e.a),{color:"vec4",return:"vec4"}),qp=an(([e])=>(ln(e.a.equal(0),()=>Sn(0)),Sn(e.rgb.div(e.a),e.a)),{color:"vec4",return:"vec4"});class Xp extends K{static get type(){return"NodeMaterial"}get type(){return this.constructor.type}set type(e){}constructor(){super(),this.isNodeMaterial=!0,this.fog=!0,this.lights=!1,this.hardwareClipping=!1,this.lightsNode=null,this.envNode=null,this.aoNode=null,this.colorNode=null,this.normalNode=null,this.opacityNode=null,this.backdropNode=null,this.backdropAlphaNode=null,this.alphaTestNode=null,this.maskNode=null,this.positionNode=null,this.geometryNode=null,this.depthNode=null,this.receivedShadowPositionNode=null,this.castShadowPositionNode=null,this.receivedShadowNode=null,this.castShadowNode=null,this.outputNode=null,this.mrtNode=null,this.fragmentNode=null,this.vertexNode=null,this.contextNode=null,Object.defineProperty(this,"shadowPositionNode",{get:()=>this.receivedShadowPositionNode,set:e=>{d('NodeMaterial: ".shadowPositionNode" was renamed to ".receivedShadowPositionNode".'),this.receivedShadowPositionNode=e}})}_getNodeChildren(){const e=[];for(const t of Object.getOwnPropertyNames(this)){if(!0===t.startsWith("_"))continue;const r=this[t];r&&!0===r.isNode&&e.push({property:t,childNode:r})}return e}customProgramCacheKey(){const e=[];for(const{property:t,childNode:r}of this._getNodeChildren())e.push(Fs(t.slice(0,-4)),r.getCacheKey());return this.type+Ds(e)}build(e){this.setup(e)}setupObserver(e){return new Ls(e)}setup(e){e.context.setupNormal=()=>Lu(this.setupNormal(e),"NORMAL","vec3"),e.context.setupPositionView=()=>this.setupPositionView(e),e.context.setupModelViewProjection=()=>this.setupModelViewProjection(e);const t=e.renderer,r=t.getRenderTarget();!0===t.contextNode.isContextNode?e.context={...e.context,...t.contextNode.getFlowContextData()}:o('NodeMaterial: "renderer.contextNode" must be an instance of `context()`.'),null!==this.contextNode&&(!0===this.contextNode.isContextNode?e.context={...e.context,...this.contextNode.getFlowContextData()}:o('NodeMaterial: "material.contextNode" must be an instance of `context()`.')),e.addStack();const s=Lu(this.setupVertex(e),"VERTEX"),i=this.vertexNode||s;let n;e.stack.outputNode=i,this.setupHardwareClipping(e),null!==this.geometryNode&&(e.stack.outputNode=e.stack.outputNode.bypass(this.geometryNode)),e.addFlow("vertex",e.removeStack()),e.addStack();const a=this.setupClipping(e);if(!0!==this.depthWrite&&!0!==this.depthTest||(null!==r?!0===r.depthBuffer&&this.setupDepth(e):!0===t.depth&&this.setupDepth(e)),null===this.fragmentNode){this.setupDiffuseColor(e),this.setupVariants(e);const s=this.setupLighting(e);null!==a&&e.stack.addToStack(a);const i=Sn(s,In.a).max(0);n=this.setupOutput(e,i),ra.assign(n);const o=null!==this.outputNode;if(o&&(n=this.outputNode),e.context.getOutput&&(n=e.context.getOutput(n,e)),null!==r){const e=t.getMRT(),r=this.mrtNode;null!==e?(o&&ra.assign(n),n=e,null!==r&&(n=e.merge(r))):null!==r&&(n=r)}}else{let t=this.fragmentNode;!0!==t.isOutputStructNode&&(t=Sn(t)),n=this.setupOutput(e,t)}e.stack.outputNode=n,e.addFlow("fragment",e.removeStack()),e.observer=this.setupObserver(e)}setupClipping(e){if(null===e.clippingContext)return null;const{unionPlanes:t,intersectionPlanes:r}=e.clippingContext;let s=null;if(t.length>0||r.length>0){const t=e.renderer.currentSamples;this.alphaToCoverage&&t>1?s=Yi(new Dp(Dp.ALPHA_TO_COVERAGE)):e.stack.addToStack(Yi(new Dp))}return s}setupHardwareClipping(e){if(this.hardwareClipping=!1,null===e.clippingContext)return;const t=e.clippingContext.unionPlanes.length;t>0&&t<=8&&e.isAvailable("clipDistance")&&(e.stack.addToStack(Yi(new Dp(Dp.HARDWARE))),this.hardwareClipping=!0)}setupDepth(e){const{renderer:t,camera:r}=e;let s=this.depthNode;if(null===s){const e=t.getMRT();e&&e.has("depth")?s=e.get("depth"):!0===t.logarithmicDepthBuffer&&(s=r.isPerspectiveCamera?Mp(Dd.z,ed,td):Ep(Dd.z,ed,td))}null!==s&&Lp.assign(s).toStack()}setupPositionView(){return Ad.mul(Bd).xyz}setupModelViewProjection(){return rd.mul(Dd)}setupVertex(e){return e.addStack(),this.setupPosition(e),e.context.vertex=e.removeStack(),Vh}setupPosition(e){const{object:t,geometry:r}=e;if((r.morphAttributes.position||r.morphAttributes.normal||r.morphAttributes.color)&&pp(t).toStack(),!0===t.isSkinnedMesh&&np(t).toStack(),this.displacementMap){const e=bc("displacementMap","texture"),t=bc("displacementScale","float"),r=bc("displacementBias","float");Bd.addAssign(zd.normalize().mul(e.x.mul(t).add(r)))}return t.isBatchedMesh&&rp(t).toStack(),t.isInstancedMesh&&t.instanceMatrix&&!0===t.instanceMatrix.isInstancedBufferAttribute&&ep(t).toStack(),null!==this.positionNode&&Bd.assign(Lu(this.positionNode,"POSITION","vec3")),Bd}setupDiffuseColor(e){const{object:t,geometry:r}=e;null!==this.maskNode&&mn(this.maskNode).not().discard();let s=this.colorNode?Sn(this.colorNode):rh;if(!0===this.vertexColors&&r.hasAttribute("color")&&(s=s.mul(kp())),t.instanceColor){s=Dn("vec3","vInstanceColor").mul(s)}if(t.isBatchedMesh&&t._colorsTexture){s=Dn("vec3","vBatchColor").mul(s)}In.assign(s);const i=this.opacityNode?hn(this.opacityNode):nh;In.a.assign(In.a.mul(i));let n=null;(null!==this.alphaTestNode||this.alphaTest>0)&&(n=null!==this.alphaTestNode?hn(this.alphaTestNode):th,!0===this.alphaToCoverage?(In.a=uu(n,n.add(Oo(In.a)),In.a),In.a.lessThanEqual(0).discard()):In.a.lessThanEqual(n).discard()),!0===this.alphaHash&&In.a.lessThan(Op(Bd)).discard(),e.isOpaque()&&In.a.assign(1)}setupVariants(){}setupOutgoingLight(){return!0===this.lights?Tn(0):In.rgb}setupNormal(){return this.normalNode?Tn(this.normalNode):ph}setupEnvironment(){let e=null;return this.envNode?e=this.envNode:this.envMap&&(e=this.envMap.isCubeTexture?bc("envMap","cubeTexture"):bc("envMap","texture")),e}setupLightMap(e){let t=null;return e.material.lightMap&&(t=new bp(Ih)),t}setupLights(e){const t=[],r=this.setupEnvironment(e);r&&r.isLightingNode&&t.push(r);const s=this.setupLightMap(e);s&&s.isLightingNode&&t.push(s);let i=this.aoNode;null===i&&e.material.aoMap&&(i=Uh),e.context.getAO&&(i=e.context.getAO(i,e)),i&&t.push(new mp(i));let n=this.lightsNode||e.lightsNode;return t.length>0&&(n=e.renderer.lighting.createNode([...n.getLights(),...t])),n}setupLightingModel(){}setupLighting(e){const{material:t}=e,{backdropNode:r,backdropAlphaNode:s,emissiveNode:i}=this,n=!0===this.lights||null!==this.lightsNode?this.setupLights(e):null;let a=this.setupOutgoingLight(e);if(n&&n.getScope().hasLights){const t=this.setupLightingModel(e)||null;a=yp(n,t,r,s)}else null!==r&&(a=Tn(null!==s?iu(a,r,s):r));return(i&&!0===i.isNode||t.emissive&&!0===t.emissive.isColor)&&(On.assign(Tn(i||ih)),a=a.add(On)),a}setupFog(e,t){const r=e.fogNode;return r&&(ra.assign(t),t=Sn(r.toVar())),t}setupPremultipliedAlpha(e,t){return jp(t)}setupOutput(e,t){return!0===this.fog&&(t=this.setupFog(e,t)),!0===this.premultipliedAlpha&&(t=this.setupPremultipliedAlpha(e,t)),t}setDefaultValues(e){for(const t in e){const r=e[t];void 0===this[t]&&(this[t]=r,r&&r.clone&&(this[t]=r.clone()))}const t=Object.getOwnPropertyDescriptors(e.constructor.prototype);for(const e in t)void 0===Object.getOwnPropertyDescriptor(this.constructor.prototype,e)&&void 0!==t[e].get&&Object.defineProperty(this.constructor.prototype,e,t[e])}toJSON(e){const t=void 0===e||"string"==typeof e;t&&(e={textures:{},images:{},nodes:{}});const r=K.prototype.toJSON.call(this,e);r.inputNodes={};for(const{property:t,childNode:s}of this._getNodeChildren())r.inputNodes[t]=s.toJSON(e).uuid;function s(e){const t=[];for(const r in e){const s=e[r];delete s.metadata,t.push(s)}return t}if(t){const t=s(e.textures),i=s(e.images),n=s(e.nodes);t.length>0&&(r.textures=t),i.length>0&&(r.images=i),n.length>0&&(r.nodes=n)}return r}copy(e){return this.lightsNode=e.lightsNode,this.envNode=e.envNode,this.aoNode=e.aoNode,this.colorNode=e.colorNode,this.normalNode=e.normalNode,this.opacityNode=e.opacityNode,this.backdropNode=e.backdropNode,this.backdropAlphaNode=e.backdropAlphaNode,this.alphaTestNode=e.alphaTestNode,this.maskNode=e.maskNode,this.positionNode=e.positionNode,this.geometryNode=e.geometryNode,this.depthNode=e.depthNode,this.receivedShadowPositionNode=e.receivedShadowPositionNode,this.castShadowPositionNode=e.castShadowPositionNode,this.receivedShadowNode=e.receivedShadowNode,this.castShadowNode=e.castShadowNode,this.outputNode=e.outputNode,this.mrtNode=e.mrtNode,this.fragmentNode=e.fragmentNode,this.vertexNode=e.vertexNode,this.contextNode=e.contextNode,super.copy(e)}}const Kp=new Y;class Yp extends Xp{static get type(){return"LineBasicNodeMaterial"}constructor(e){super(),this.isLineBasicNodeMaterial=!0,this.setDefaultValues(Kp),this.setValues(e)}}const Qp=new Q;class Zp extends Xp{static get type(){return"LineDashedNodeMaterial"}constructor(e){super(),this.isLineDashedNodeMaterial=!0,this.setDefaultValues(Qp),this.dashOffset=0,this.offsetNode=null,this.dashScaleNode=null,this.dashSizeNode=null,this.gapSizeNode=null,this.setValues(e)}setupVariants(){const e=this.offsetNode?hn(this.offsetNode):Ph,t=this.dashScaleNode?hn(this.dashScaleNode):Ch,r=this.dashSizeNode?hn(this.dashSizeNode):Mh,s=this.gapSizeNode?hn(this.gapSizeNode):Bh;sa.assign(r),ia.assign(s);const i=Fu(Sl("lineDistance").mul(t));(e?i.add(e):i).mod(sa.add(ia)).greaterThan(sa).discard()}}let Jp=null;class eg extends Tp{static get type(){return"ViewportSharedTextureNode"}constructor(e=Hl,t=null){null===Jp&&(Jp=new j),super(e,t,Jp)}getTextureForReference(){return Jp}updateReference(){return this}}const tg=en(eg).setParameterLength(0,2),rg=new Q;class sg extends Xp{static get type(){return"Line2NodeMaterial"}constructor(e={}){super(),this.isLine2NodeMaterial=!0,this.setDefaultValues(rg),this.useColor=e.vertexColors,this.dashOffset=0,this.lineColorNode=null,this.offsetNode=null,this.dashScaleNode=null,this.dashSizeNode=null,this.gapSizeNode=null,this.blending=Z,this._useDash=e.dashed,this._useAlphaToCoverage=!0,this._useWorldUnits=!1,this.setValues(e)}setup(e){const{renderer:t}=e,r=this._useAlphaToCoverage,s=this.useColor,i=this._useDash,n=this._useWorldUnits,a=an(({start:e,end:t})=>{const r=rd.element(2).element(2),s=rd.element(3).element(2).mul(-.5).div(r).sub(e.z).div(t.z.sub(e.z));return Sn(iu(e.xyz,t.xyz,s),t.w)}).setLayout({name:"trimSegment",type:"vec4",inputs:[{name:"start",type:"vec4"},{name:"end",type:"vec4"}]});this.vertexNode=an(()=>{const e=Sl("instanceStart"),t=Sl("instanceEnd"),r=Sn(Ad.mul(Sn(e,1))).toVar("start"),s=Sn(Ad.mul(Sn(t,1))).toVar("end");if(i){const e=this.dashScaleNode?hn(this.dashScaleNode):Ch,t=this.offsetNode?hn(this.offsetNode):Ph,r=Sl("instanceDistanceStart"),s=Sl("instanceDistanceEnd");let i=Md.y.lessThan(.5).select(e.mul(r),e.mul(s));i=i.add(t),Dn("float","lineDistance").assign(i)}n&&(Dn("vec3","worldStart").assign(r.xyz),Dn("vec3","worldEnd").assign(s.xyz));const o=Xl.z.div(Xl.w),u=rd.element(2).element(3).equal(-1);ln(u,()=>{ln(r.z.lessThan(0).and(s.z.greaterThan(0)),()=>{s.assign(a({start:r,end:s}))}).ElseIf(s.z.lessThan(0).and(r.z.greaterThanEqual(0)),()=>{r.assign(a({start:s,end:r}))})});const l=rd.mul(r),d=rd.mul(s),c=l.xyz.div(l.w),h=d.xyz.div(d.w),p=h.xy.sub(c.xy).toVar();p.x.assign(p.x.mul(o)),p.assign(p.normalize());const g=Sn().toVar();if(n){const e=s.xyz.sub(r.xyz).normalize(),t=iu(r.xyz,s.xyz,.5).normalize(),n=e.cross(t).normalize(),a=e.cross(n),o=Dn("vec4","worldPos");o.assign(Md.y.lessThan(.5).select(r,s));const u=Lh.mul(.5);o.addAssign(Sn(Md.x.lessThan(0).select(n.mul(u),n.mul(u).negate()),0)),i||(o.addAssign(Sn(Md.y.lessThan(.5).select(e.mul(u).negate(),e.mul(u)),0)),o.addAssign(Sn(a.mul(u),0)),ln(Md.y.greaterThan(1).or(Md.y.lessThan(0)),()=>{o.subAssign(Sn(a.mul(2).mul(u),0))})),g.assign(rd.mul(o));const l=Tn().toVar();l.assign(Md.y.lessThan(.5).select(c,h)),g.z.assign(l.z.mul(g.w))}else{const e=fn(p.y,p.x.negate()).toVar("offset");p.x.assign(p.x.div(o)),e.x.assign(e.x.div(o)),e.assign(Md.x.lessThan(0).select(e.negate(),e)),ln(Md.y.lessThan(0),()=>{e.assign(e.sub(p))}).ElseIf(Md.y.greaterThan(1),()=>{e.assign(e.add(p))}),e.assign(e.mul(Lh)),e.assign(e.div(Xl.w.div(Wl))),g.assign(Md.y.lessThan(.5).select(l,d)),e.assign(e.mul(g.w)),g.assign(g.add(Sn(e,0,0)))}return g})();const o=an(({p1:e,p2:t,p3:r,p4:s})=>{const i=e.sub(r),n=s.sub(r),a=t.sub(e),o=i.dot(n),u=n.dot(a),l=i.dot(a),d=n.dot(n),c=a.dot(a).mul(d).sub(u.mul(u)),h=o.mul(u).sub(l.mul(d)).div(c).clamp(),p=o.add(u.mul(h)).div(d).clamp();return fn(h,p)});if(this.colorNode=an(()=>{const e=Rl();if(i){const t=this.dashSizeNode?hn(this.dashSizeNode):Mh,r=this.gapSizeNode?hn(this.gapSizeNode):Bh;sa.assign(t),ia.assign(r);const s=Dn("float","lineDistance");e.y.lessThan(-1).or(e.y.greaterThan(1)).discard(),s.mod(sa.add(ia)).greaterThan(sa).discard()}const a=hn(1).toVar("alpha");if(n){const e=Dn("vec3","worldStart"),s=Dn("vec3","worldEnd"),n=Dn("vec4","worldPos").xyz.normalize().mul(1e5),u=s.sub(e),l=o({p1:e,p2:s,p3:Tn(0,0,0),p4:n}),d=e.add(u.mul(l.x)),c=n.mul(l.y),h=d.sub(c).length().div(Lh);if(!i)if(r&&t.currentSamples>0){const e=h.fwidth();a.assign(uu(e.negate().add(.5),e.add(.5),h).oneMinus())}else h.greaterThan(.5).discard()}else if(r&&t.currentSamples>0){const t=e.x,r=e.y.greaterThan(0).select(e.y.sub(1),e.y.add(1)),s=t.mul(t).add(r.mul(r)),i=hn(s.fwidth()).toVar("dlen");ln(e.y.abs().greaterThan(1),()=>{a.assign(uu(i.oneMinus(),i.add(1),s).oneMinus())})}else ln(e.y.abs().greaterThan(1),()=>{const t=e.x,r=e.y.greaterThan(0).select(e.y.sub(1),e.y.add(1));t.mul(t).add(r.mul(r)).greaterThan(1).discard()});let u;if(this.lineColorNode)u=this.lineColorNode;else if(s){const e=Sl("instanceColorStart"),t=Sl("instanceColorEnd");u=Md.y.lessThan(.5).select(e,t).mul(rh)}else u=rh;return Sn(u,a)})(),this.transparent){const e=this.opacityNode?hn(this.opacityNode):nh;this.outputNode=Sn(this.colorNode.rgb.mul(e).add(tg().rgb.mul(e.oneMinus())),this.colorNode.a)}super.setup(e)}get worldUnits(){return this._useWorldUnits}set worldUnits(e){this._useWorldUnits!==e&&(this._useWorldUnits=e,this.needsUpdate=!0)}get dashed(){return this._useDash}set dashed(e){this._useDash!==e&&(this._useDash=e,this.needsUpdate=!0)}get alphaToCoverage(){return this._useAlphaToCoverage}set alphaToCoverage(e){this._useAlphaToCoverage!==e&&(this._useAlphaToCoverage=e,this.needsUpdate=!0)}}const ig=new J;class ng extends Xp{static get type(){return"MeshNormalNodeMaterial"}constructor(e){super(),this.isMeshNormalNodeMaterial=!0,this.setDefaultValues(ig),this.setValues(e)}setupDiffuseColor(){const e=this.opacityNode?hn(this.opacityNode):nh;In.assign(Gu(Sn(Hc(jd),e),ee))}}const ag=an(([e=Fd])=>{const t=e.z.atan(e.x).mul(1/(2*Math.PI)).add(.5),r=e.y.clamp(-1,1).asin().mul(1/Math.PI).add(.5);return fn(t,r)});class og extends te{constructor(e=1,t={}){super(e,t),this.isCubeRenderTarget=!0}fromEquirectangularTexture(e,t){const r=t.minFilter,s=t.generateMipmaps;t.generateMipmaps=!0,this.texture.type=t.type,this.texture.colorSpace=t.colorSpace,this.texture.generateMipmaps=t.generateMipmaps,this.texture.minFilter=t.minFilter,this.texture.magFilter=t.magFilter;const i=new re(5,5,5),n=ag(Fd),a=new Xp;a.colorNode=Pl(t,n,0),a.side=w,a.blending=Z;const o=new se(i,a),u=new ie;u.add(o),t.minFilter===q&&(t.minFilter=ne);const l=new ae(1,10,this),d=e.getMRT();return e.setMRT(null),l.update(e,u),e.setMRT(d),t.minFilter=r,t.currentGenerateMipmaps=s,o.geometry.dispose(),o.material.dispose(),this}}const ug=new WeakMap;class lg extends li{static get type(){return"CubeMapNode"}constructor(e){super("vec3"),this.envNode=e,this._cubeTexture=null,this._cubeTextureNode=hc(null);const t=new B;t.isRenderTargetTexture=!0,this._defaultTexture=t,this.updateBeforeType=Qs.RENDER}updateBefore(e){const{renderer:t,material:r}=e,s=this.envNode;if(s.isTextureNode||s.isMaterialReferenceNode){const e=s.isTextureNode?s.value:r[s.property];if(e&&e.isTexture){const r=e.mapping;if(r===oe||r===ue){if(ug.has(e)){const t=ug.get(e);cg(t,e.mapping),this._cubeTexture=t}else{const r=e.image;if(function(e){return null!=e&&e.height>0}(r)){const s=new og(r.height);s.fromEquirectangularTexture(t,e),cg(s.texture,e.mapping),this._cubeTexture=s.texture,ug.set(e,s.texture),e.addEventListener("dispose",dg)}else this._cubeTexture=this._defaultTexture}this._cubeTextureNode.value=this._cubeTexture}else this._cubeTextureNode=this.envNode}}}setup(e){return this.updateBefore(e),this._cubeTextureNode}}function dg(e){const t=e.target;t.removeEventListener("dispose",dg);const r=ug.get(t);void 0!==r&&(ug.delete(t),r.dispose())}function cg(e,t){t===oe?e.mapping=L:t===ue&&(e.mapping=P)}const hg=en(lg).setParameterLength(1);class pg extends gp{static get type(){return"BasicEnvironmentNode"}constructor(e=null){super(),this.envNode=e}setup(e){e.context.environment=hg(this.envNode)}}class gg extends gp{static get type(){return"BasicLightMapNode"}constructor(e=null){super(),this.lightMapNode=e}setup(e){const t=hn(1/Math.PI);e.context.irradianceLightMap=this.lightMapNode.mul(t)}}class mg{start(e){e.lightsNode.setupLights(e,e.lightsNode.getLightNodes(e)),this.indirect(e)}finish(){}direct(){}directRectArea(){}indirect(){}ambientOcclusion(){}}class fg extends mg{constructor(){super()}indirect({context:e}){const t=e.ambientOcclusion,r=e.reflectedLight,s=e.irradianceLightMap;r.indirectDiffuse.assign(Sn(0)),s?r.indirectDiffuse.addAssign(s):r.indirectDiffuse.addAssign(Sn(1,1,1,0)),r.indirectDiffuse.mulAssign(t),r.indirectDiffuse.mulAssign(In.rgb)}finish(e){const{material:t,context:r}=e,s=r.outgoingLight,i=e.context.environment;if(i)switch(t.combine){case ce:s.rgb.assign(iu(s.rgb,s.rgb.mul(i.rgb),lh.mul(dh)));break;case de:s.rgb.assign(iu(s.rgb,i.rgb,lh.mul(dh)));break;case le:s.rgb.addAssign(i.rgb.mul(lh.mul(dh)));break;default:d("BasicLightingModel: Unsupported .combine value:",t.combine)}}}const yg=new he;class bg extends Xp{static get type(){return"MeshBasicNodeMaterial"}constructor(e){super(),this.isMeshBasicNodeMaterial=!0,this.lights=!0,this.setDefaultValues(yg),this.setValues(e)}setupNormal(){return kd(Wd)}setupEnvironment(e){const t=super.setupEnvironment(e);return t?new pg(t):null}setupLightMap(e){let t=null;return e.material.lightMap&&(t=new gg(Ih)),t}setupOutgoingLight(){return In.rgb}setupLightingModel(){return new fg}}const xg=an(({f0:e,f90:t,dotVH:r})=>{const s=r.mul(-5.55473).sub(6.98316).mul(r).exp2();return e.mul(s.oneMinus()).add(t.mul(s))}),Tg=an(e=>e.diffuseColor.mul(1/Math.PI)),_g=an(({dotNH:e})=>ta.mul(hn(.5)).add(1).mul(hn(1/Math.PI)).mul(e.pow(ta))),vg=an(({lightDirection:e})=>{const t=e.add(Id).normalize(),r=jd.dot(t).clamp(),s=Id.dot(t).clamp(),i=xg({f0:Zn,f90:1,dotVH:s}),n=hn(.25),a=_g({dotNH:r});return i.mul(n).mul(a)});class Ng extends fg{constructor(e=!0){super(),this.specular=e}direct({lightDirection:e,lightColor:t,reflectedLight:r}){const s=jd.dot(e).clamp().mul(t);r.directDiffuse.addAssign(s.mul(Tg({diffuseColor:In.rgb}))),!0===this.specular&&r.directSpecular.addAssign(s.mul(vg({lightDirection:e})).mul(lh))}indirect(e){const{ambientOcclusion:t,irradiance:r,reflectedLight:s}=e.context;s.indirectDiffuse.addAssign(r.mul(Tg({diffuseColor:In}))),s.indirectDiffuse.mulAssign(t)}}const Sg=new pe;class Rg extends Xp{static get type(){return"MeshLambertNodeMaterial"}constructor(e){super(),this.isMeshLambertNodeMaterial=!0,this.lights=!0,this.setDefaultValues(Sg),this.setValues(e)}setupEnvironment(e){const t=super.setupEnvironment(e);return t?new pg(t):null}setupLightingModel(){return new Ng(!1)}}const Ag=new ge;class Eg extends Xp{static get type(){return"MeshPhongNodeMaterial"}constructor(e){super(),this.isMeshPhongNodeMaterial=!0,this.lights=!0,this.shininessNode=null,this.specularNode=null,this.setDefaultValues(Ag),this.setValues(e)}setupEnvironment(e){const t=super.setupEnvironment(e);return t?new pg(t):null}setupLightingModel(){return new Ng}setupVariants(){const e=(this.shininessNode?hn(this.shininessNode):sh).max(1e-4);ta.assign(e);const t=this.specularNode||ah;Zn.assign(t)}copy(e){return this.shininessNode=e.shininessNode,this.specularNode=e.specularNode,super.copy(e)}}const wg=an(e=>{if(!1===e.geometry.hasAttribute("normal"))return hn(0);const t=Wd.dFdx().abs().max(Wd.dFdy().abs());return t.x.max(t.y).max(t.z)}),Cg=an(e=>{const{roughness:t}=e,r=wg();let s=t.max(.0525);return s=s.add(r),s=s.min(1),s}),Mg=an(({alpha:e,dotNL:t,dotNV:r})=>{const s=e.pow2(),i=t.mul(s.add(s.oneMinus().mul(r.pow2())).sqrt()),n=r.mul(s.add(s.oneMinus().mul(t.pow2())).sqrt());return Ba(.5,i.add(n).max(to))}).setLayout({name:"V_GGX_SmithCorrelated",type:"float",inputs:[{name:"alpha",type:"float"},{name:"dotNL",type:"float"},{name:"dotNV",type:"float"}]}),Bg=an(({alphaT:e,alphaB:t,dotTV:r,dotBV:s,dotTL:i,dotBL:n,dotNV:a,dotNL:o})=>{const u=o.mul(Tn(e.mul(r),t.mul(s),a).length()),l=a.mul(Tn(e.mul(i),t.mul(n),o).length());return Ba(.5,u.add(l))}).setLayout({name:"V_GGX_SmithCorrelated_Anisotropic",type:"float",inputs:[{name:"alphaT",type:"float",qualifier:"in"},{name:"alphaB",type:"float",qualifier:"in"},{name:"dotTV",type:"float",qualifier:"in"},{name:"dotBV",type:"float",qualifier:"in"},{name:"dotTL",type:"float",qualifier:"in"},{name:"dotBL",type:"float",qualifier:"in"},{name:"dotNV",type:"float",qualifier:"in"},{name:"dotNL",type:"float",qualifier:"in"}]}),Lg=an(({alpha:e,dotNH:t})=>{const r=e.pow2(),s=t.pow2().mul(r.oneMinus()).oneMinus();return r.div(s.pow2()).mul(1/Math.PI)}).setLayout({name:"D_GGX",type:"float",inputs:[{name:"alpha",type:"float"},{name:"dotNH",type:"float"}]}),Pg=hn(1/Math.PI),Fg=an(({alphaT:e,alphaB:t,dotNH:r,dotTH:s,dotBH:i})=>{const n=e.mul(t),a=Tn(t.mul(s),e.mul(i),n.mul(r)),o=a.dot(a),u=n.div(o);return Pg.mul(n.mul(u.pow2()))}).setLayout({name:"D_GGX_Anisotropic",type:"float",inputs:[{name:"alphaT",type:"float",qualifier:"in"},{name:"alphaB",type:"float",qualifier:"in"},{name:"dotNH",type:"float",qualifier:"in"},{name:"dotTH",type:"float",qualifier:"in"},{name:"dotBH",type:"float",qualifier:"in"}]}),Dg=an(({lightDirection:e,f0:t,f90:r,roughness:s,f:i,normalView:n=jd,USE_IRIDESCENCE:a,USE_ANISOTROPY:o})=>{const u=s.pow2(),l=e.add(Id).normalize(),d=n.dot(e).clamp(),c=n.dot(Id).clamp(),h=n.dot(l).clamp(),p=Id.dot(l).clamp();let g,m,f=xg({f0:t,f90:r,dotVH:p});if(qi(a)&&(f=Hn.mix(f,i)),qi(o)){const t=Yn.dot(e),r=Yn.dot(Id),s=Yn.dot(l),i=Qn.dot(e),n=Qn.dot(Id),a=Qn.dot(l);g=Bg({alphaT:Xn,alphaB:u,dotTV:r,dotBV:n,dotTL:t,dotBL:i,dotNV:c,dotNL:d}),m=Fg({alphaT:Xn,alphaB:u,dotNH:h,dotTH:s,dotBH:a})}else g=Mg({alpha:u,dotNL:d,dotNV:c}),m=Lg({alpha:u,dotNH:h});return f.mul(g).mul(m)}),Ig=new Uint16Array([12469,15057,12620,14925,13266,14620,13807,14376,14323,13990,14545,13625,14713,13328,14840,12882,14931,12528,14996,12233,15039,11829,15066,11525,15080,11295,15085,10976,15082,10705,15073,10495,13880,14564,13898,14542,13977,14430,14158,14124,14393,13732,14556,13410,14702,12996,14814,12596,14891,12291,14937,11834,14957,11489,14958,11194,14943,10803,14921,10506,14893,10278,14858,9960,14484,14039,14487,14025,14499,13941,14524,13740,14574,13468,14654,13106,14743,12678,14818,12344,14867,11893,14889,11509,14893,11180,14881,10751,14852,10428,14812,10128,14765,9754,14712,9466,14764,13480,14764,13475,14766,13440,14766,13347,14769,13070,14786,12713,14816,12387,14844,11957,14860,11549,14868,11215,14855,10751,14825,10403,14782,10044,14729,9651,14666,9352,14599,9029,14967,12835,14966,12831,14963,12804,14954,12723,14936,12564,14917,12347,14900,11958,14886,11569,14878,11247,14859,10765,14828,10401,14784,10011,14727,9600,14660,9289,14586,8893,14508,8533,15111,12234,15110,12234,15104,12216,15092,12156,15067,12010,15028,11776,14981,11500,14942,11205,14902,10752,14861,10393,14812,9991,14752,9570,14682,9252,14603,8808,14519,8445,14431,8145,15209,11449,15208,11451,15202,11451,15190,11438,15163,11384,15117,11274,15055,10979,14994,10648,14932,10343,14871,9936,14803,9532,14729,9218,14645,8742,14556,8381,14461,8020,14365,7603,15273,10603,15272,10607,15267,10619,15256,10631,15231,10614,15182,10535,15118,10389,15042,10167,14963,9787,14883,9447,14800,9115,14710,8665,14615,8318,14514,7911,14411,7507,14279,7198,15314,9675,15313,9683,15309,9712,15298,9759,15277,9797,15229,9773,15166,9668,15084,9487,14995,9274,14898,8910,14800,8539,14697,8234,14590,7790,14479,7409,14367,7067,14178,6621,15337,8619,15337,8631,15333,8677,15325,8769,15305,8871,15264,8940,15202,8909,15119,8775,15022,8565,14916,8328,14804,8009,14688,7614,14569,7287,14448,6888,14321,6483,14088,6171,15350,7402,15350,7419,15347,7480,15340,7613,15322,7804,15287,7973,15229,8057,15148,8012,15046,7846,14933,7611,14810,7357,14682,7069,14552,6656,14421,6316,14251,5948,14007,5528,15356,5942,15356,5977,15353,6119,15348,6294,15332,6551,15302,6824,15249,7044,15171,7122,15070,7050,14949,6861,14818,6611,14679,6349,14538,6067,14398,5651,14189,5311,13935,4958,15359,4123,15359,4153,15356,4296,15353,4646,15338,5160,15311,5508,15263,5829,15188,6042,15088,6094,14966,6001,14826,5796,14678,5543,14527,5287,14377,4985,14133,4586,13869,4257,15360,1563,15360,1642,15358,2076,15354,2636,15341,3350,15317,4019,15273,4429,15203,4732,15105,4911,14981,4932,14836,4818,14679,4621,14517,4386,14359,4156,14083,3795,13808,3437,15360,122,15360,137,15358,285,15355,636,15344,1274,15322,2177,15281,2765,15215,3223,15120,3451,14995,3569,14846,3567,14681,3466,14511,3305,14344,3121,14037,2800,13753,2467,15360,0,15360,1,15359,21,15355,89,15346,253,15325,479,15287,796,15225,1148,15133,1492,15008,1749,14856,1882,14685,1886,14506,1783,14324,1608,13996,1398,13702,1183]);let Ug=null;const Og=an(({roughness:e,dotNV:t})=>{null===Ug&&(Ug=new me(Ig,16,16,V,fe),Ug.name="DFG_LUT",Ug.minFilter=ne,Ug.magFilter=ne,Ug.wrapS=ye,Ug.wrapT=ye,Ug.generateMipmaps=!1,Ug.needsUpdate=!0);const r=fn(e,t);return Pl(Ug,r).rg}),Vg=an(({lightDirection:e,f0:t,f90:r,roughness:s,f:i,USE_IRIDESCENCE:n,USE_ANISOTROPY:a})=>{const o=Dg({lightDirection:e,f0:t,f90:r,roughness:s,f:i,USE_IRIDESCENCE:n,USE_ANISOTROPY:a}),u=jd.dot(e).clamp(),l=jd.dot(Id).clamp(),d=Og({roughness:s,dotNV:l}),c=Og({roughness:s,dotNV:u}),h=t.mul(d.x).add(r.mul(d.y)),p=t.mul(c.x).add(r.mul(c.y)),g=d.x.add(d.y),m=c.x.add(c.y),f=hn(1).sub(g),y=hn(1).sub(m),b=t.add(t.oneMinus().mul(.047619)),x=h.mul(p).mul(b).div(hn(1).sub(f.mul(y).mul(b).mul(b)).add(to)),T=f.mul(y),_=x.mul(T);return o.add(_)}),kg=an(e=>{const{dotNV:t,specularColor:r,specularF90:s,roughness:i}=e,n=Og({dotNV:t,roughness:i});return r.mul(n.x).add(s.mul(n.y))}),Gg=an(({f:e,f90:t,dotVH:r})=>{const s=r.oneMinus().saturate(),i=s.mul(s),n=s.mul(i,i).clamp(0,.9999);return e.sub(Tn(t).mul(n)).div(n.oneMinus())}).setLayout({name:"Schlick_to_F0",type:"vec3",inputs:[{name:"f",type:"vec3"},{name:"f90",type:"float"},{name:"dotVH",type:"float"}]}),zg=an(({roughness:e,dotNH:t})=>{const r=e.pow2(),s=hn(1).div(r),i=t.pow2().oneMinus().max(.0078125);return hn(2).add(s).mul(i.pow(s.mul(.5))).div(2*Math.PI)}).setLayout({name:"D_Charlie",type:"float",inputs:[{name:"roughness",type:"float"},{name:"dotNH",type:"float"}]}),$g=an(({dotNV:e,dotNL:t})=>hn(1).div(hn(4).mul(t.add(e).sub(t.mul(e))))).setLayout({name:"V_Neubelt",type:"float",inputs:[{name:"dotNV",type:"float"},{name:"dotNL",type:"float"}]}),Wg=an(({lightDirection:e})=>{const t=e.add(Id).normalize(),r=jd.dot(e).clamp(),s=jd.dot(Id).clamp(),i=jd.dot(t).clamp(),n=zg({roughness:Wn,dotNH:i}),a=$g({dotNV:s,dotNL:r});return $n.mul(n).mul(a)}),Hg=an(({N:e,V:t,roughness:r})=>{const s=e.dot(t).saturate(),i=fn(r,s.oneMinus().sqrt());return i.assign(i.mul(.984375).add(.0078125)),i}).setLayout({name:"LTC_Uv",type:"vec2",inputs:[{name:"N",type:"vec3"},{name:"V",type:"vec3"},{name:"roughness",type:"float"}]}),jg=an(({f:e})=>{const t=e.length();return Wo(t.mul(t).add(e.z).div(t.add(1)),0)}).setLayout({name:"LTC_ClippedSphereFormFactor",type:"float",inputs:[{name:"f",type:"vec3"}]}),qg=an(({v1:e,v2:t})=>{const r=e.dot(t),s=r.abs().toVar(),i=s.mul(.0145206).add(.4965155).mul(s).add(.8543985).toVar(),n=s.add(4.1616724).mul(s).add(3.417594).toVar(),a=i.div(n),o=r.greaterThan(0).select(a,Wo(r.mul(r).oneMinus(),1e-7).inverseSqrt().mul(.5).sub(a));return e.cross(t).mul(o)}).setLayout({name:"LTC_EdgeVectorFormFactor",type:"vec3",inputs:[{name:"v1",type:"vec3"},{name:"v2",type:"vec3"}]}),Xg=an(({N:e,V:t,P:r,mInv:s,p0:i,p1:n,p2:a,p3:o})=>{const u=n.sub(i).toVar(),l=o.sub(i).toVar(),d=u.cross(l),c=Tn().toVar();return ln(d.dot(r.sub(i)).greaterThanEqual(0),()=>{const u=t.sub(e.mul(t.dot(e))).normalize(),l=e.cross(u).negate(),d=s.mul(Cn(u,l,e).transpose()).toVar(),h=d.mul(i.sub(r)).normalize().toVar(),p=d.mul(n.sub(r)).normalize().toVar(),g=d.mul(a.sub(r)).normalize().toVar(),m=d.mul(o.sub(r)).normalize().toVar(),f=Tn(0).toVar();f.addAssign(qg({v1:h,v2:p})),f.addAssign(qg({v1:p,v2:g})),f.addAssign(qg({v1:g,v2:m})),f.addAssign(qg({v1:m,v2:h})),c.assign(Tn(jg({f:f})))}),c}).setLayout({name:"LTC_Evaluate",type:"vec3",inputs:[{name:"N",type:"vec3"},{name:"V",type:"vec3"},{name:"P",type:"vec3"},{name:"mInv",type:"mat3"},{name:"p0",type:"vec3"},{name:"p1",type:"vec3"},{name:"p2",type:"vec3"},{name:"p3",type:"vec3"}]}),Kg=an(({P:e,p0:t,p1:r,p2:s,p3:i})=>{const n=r.sub(t).toVar(),a=i.sub(t).toVar(),o=n.cross(a),u=Tn().toVar();return ln(o.dot(e.sub(t)).greaterThanEqual(0),()=>{const n=t.sub(e).normalize().toVar(),a=r.sub(e).normalize().toVar(),o=s.sub(e).normalize().toVar(),l=i.sub(e).normalize().toVar(),d=Tn(0).toVar();d.addAssign(qg({v1:n,v2:a})),d.addAssign(qg({v1:a,v2:o})),d.addAssign(qg({v1:o,v2:l})),d.addAssign(qg({v1:l,v2:n})),u.assign(Tn(jg({f:d.abs()})))}),u}).setLayout({name:"LTC_Evaluate",type:"vec3",inputs:[{name:"P",type:"vec3"},{name:"p0",type:"vec3"},{name:"p1",type:"vec3"},{name:"p2",type:"vec3"},{name:"p3",type:"vec3"}]}),Yg=1/6,Qg=e=>Ma(Yg,Ma(e,Ma(e,e.negate().add(3)).sub(3)).add(1)),Zg=e=>Ma(Yg,Ma(e,Ma(e,Ma(3,e).sub(6))).add(4)),Jg=e=>Ma(Yg,Ma(e,Ma(e,Ma(-3,e).add(3)).add(3)).add(1)),em=e=>Ma(Yg,Qo(e,3)),tm=e=>Qg(e).add(Zg(e)),rm=e=>Jg(e).add(em(e)),sm=e=>wa(-1,Zg(e).div(Qg(e).add(Zg(e)))),im=e=>wa(1,em(e).div(Jg(e).add(em(e)))),nm=(e,t,r)=>{const s=e.uvNode,i=Ma(s,t.zw).add(.5),n=bo(i),a=_o(i),o=tm(a.x),u=rm(a.x),l=sm(a.x),d=im(a.x),c=sm(a.y),h=im(a.y),p=fn(n.x.add(l),n.y.add(c)).sub(.5).mul(t.xy),g=fn(n.x.add(d),n.y.add(c)).sub(.5).mul(t.xy),m=fn(n.x.add(l),n.y.add(h)).sub(.5).mul(t.xy),f=fn(n.x.add(d),n.y.add(h)).sub(.5).mul(t.xy),y=tm(a.y).mul(wa(o.mul(e.sample(p).level(r)),u.mul(e.sample(g).level(r)))),b=rm(a.y).mul(wa(o.mul(e.sample(m).level(r)),u.mul(e.sample(f).level(r))));return y.add(b)},am=an(([e,t])=>{const r=fn(e.size(pn(t))),s=fn(e.size(pn(t.add(1)))),i=Ba(1,r),n=Ba(1,s),a=nm(e,Sn(i,r),bo(t)),o=nm(e,Sn(n,s),xo(t));return _o(t).mix(a,o)}),om=an(([e,t])=>{const r=t.mul(Cl(e));return am(e,r)}),um=an(([e,t,r,s,i])=>{const n=Tn(ou(t.negate(),To(e),Ba(1,s))),a=Tn(Mo(i[0].xyz),Mo(i[1].xyz),Mo(i[2].xyz));return To(n).mul(r.mul(a))}).setLayout({name:"getVolumeTransmissionRay",type:"vec3",inputs:[{name:"n",type:"vec3"},{name:"v",type:"vec3"},{name:"thickness",type:"float"},{name:"ior",type:"float"},{name:"modelMatrix",type:"mat4"}]}),lm=an(([e,t])=>e.mul(nu(t.mul(2).sub(2),0,1))).setLayout({name:"applyIorToRoughness",type:"float",inputs:[{name:"roughness",type:"float"},{name:"ior",type:"float"}]}),dm=vp(),cm=vp(),hm=an(([e,t,r],{material:s})=>{const i=(s.side===w?dm:cm).sample(e),n=mo(jl.x).mul(lm(t,r));return am(i,n)}),pm=an(([e,t,r])=>(ln(r.notEqual(0),()=>{const s=go(t).negate().div(r);return ho(s.negate().mul(e))}),Tn(1))).setLayout({name:"volumeAttenuation",type:"vec3",inputs:[{name:"transmissionDistance",type:"float"},{name:"attenuationColor",type:"vec3"},{name:"attenuationDistance",type:"float"}]}),gm=an(([e,t,r,s,i,n,a,o,u,l,d,c,h,p,g])=>{let m,f;if(g){m=Sn().toVar(),f=Tn().toVar();const i=d.sub(1).mul(g.mul(.025)),n=Tn(d.sub(i),d,d.add(i));op({start:0,end:3},({i:i})=>{const d=n.element(i),g=um(e,t,c,d,o),y=a.add(g),b=l.mul(u.mul(Sn(y,1))),x=fn(b.xy.div(b.w)).toVar();x.addAssign(1),x.divAssign(2),x.assign(fn(x.x,x.y.oneMinus()));const T=hm(x,r,d);m.element(i).assign(T.element(i)),m.a.addAssign(T.a),f.element(i).assign(s.element(i).mul(pm(Mo(g),h,p).element(i)))}),m.a.divAssign(3)}else{const i=um(e,t,c,d,o),n=a.add(i),g=l.mul(u.mul(Sn(n,1))),y=fn(g.xy.div(g.w)).toVar();y.addAssign(1),y.divAssign(2),y.assign(fn(y.x,y.y.oneMinus())),m=hm(y,r,d),f=s.mul(pm(Mo(i),h,p))}const y=f.rgb.mul(m.rgb),b=e.dot(t).clamp(),x=Tn(kg({dotNV:b,specularColor:i,specularF90:n,roughness:r})),T=f.r.add(f.g,f.b).div(3);return Sn(x.oneMinus().mul(y),m.a.oneMinus().mul(T).oneMinus())}),mm=Cn(3.2404542,-.969266,.0556434,-1.5371385,1.8760108,-.2040259,-.4985314,.041556,1.0572252),fm=(e,t)=>e.sub(t).div(e.add(t)).pow2(),ym=an(({outsideIOR:e,eta2:t,cosTheta1:r,thinFilmThickness:s,baseF0:i})=>{const n=iu(e,t,uu(0,.03,s)),a=e.div(n).pow2().mul(r.pow2().oneMinus()).oneMinus();ln(a.lessThan(0),()=>Tn(1));const o=a.sqrt(),u=fm(n,e),l=xg({f0:u,f90:1,dotVH:r}),d=l.oneMinus(),c=n.lessThan(e).select(Math.PI,0),h=hn(Math.PI).sub(c),p=(e=>{const t=e.sqrt();return Tn(1).add(t).div(Tn(1).sub(t))})(i.clamp(0,.9999)),g=fm(p,n.toVec3()),m=xg({f0:g,f90:1,dotVH:o}),f=Tn(p.x.lessThan(n).select(Math.PI,0),p.y.lessThan(n).select(Math.PI,0),p.z.lessThan(n).select(Math.PI,0)),y=n.mul(s,o,2),b=Tn(h).add(f),x=l.mul(m).clamp(1e-5,.9999),T=x.sqrt(),_=d.pow2().mul(m).div(Tn(1).sub(x)),v=l.add(_).toVar(),N=_.sub(d).toVar();return op({start:1,end:2,condition:"<=",name:"m"},({m:e})=>{N.mulAssign(T);const t=((e,t)=>{const r=e.mul(2*Math.PI*1e-9),s=Tn(54856e-17,44201e-17,52481e-17),i=Tn(1681e3,1795300,2208400),n=Tn(43278e5,93046e5,66121e5),a=hn(9747e-17*Math.sqrt(2*Math.PI*45282e5)).mul(r.mul(2239900).add(t.x).cos()).mul(r.pow2().mul(-45282e5).exp());let o=s.mul(n.mul(2*Math.PI).sqrt()).mul(i.mul(r).add(t).cos()).mul(r.pow2().negate().mul(n).exp());return o=Tn(o.x.add(a),o.y,o.z).div(1.0685e-7),mm.mul(o)})(hn(e).mul(y),hn(e).mul(b)).mul(2);v.addAssign(N.mul(t))}),v.max(Tn(0))}).setLayout({name:"evalIridescence",type:"vec3",inputs:[{name:"outsideIOR",type:"float"},{name:"eta2",type:"float"},{name:"cosTheta1",type:"float"},{name:"thinFilmThickness",type:"float"},{name:"baseF0",type:"vec3"}]}),bm=an(({normal:e,viewDir:t,roughness:r})=>{const s=e.dot(t).saturate(),i=r.mul(r),n=r.add(.1).reciprocal(),a=hn(-1.9362).add(r.mul(1.0678)).add(i.mul(.4573)).sub(n.mul(.8469)),o=hn(-.6014).add(r.mul(.5538)).sub(i.mul(.467)).sub(n.mul(.1255));return a.mul(s).add(o).exp().saturate()}),xm=Tn(.04),Tm=hn(1);class _m extends mg{constructor(e=!1,t=!1,r=!1,s=!1,i=!1,n=!1){super(),this.clearcoat=e,this.sheen=t,this.iridescence=r,this.anisotropy=s,this.transmission=i,this.dispersion=n,this.clearcoatRadiance=null,this.clearcoatSpecularDirect=null,this.clearcoatSpecularIndirect=null,this.sheenSpecularDirect=null,this.sheenSpecularIndirect=null,this.iridescenceFresnel=null,this.iridescenceF0=null,this.iridescenceF0Dielectric=null,this.iridescenceF0Metallic=null}start(e){if(!0===this.clearcoat&&(this.clearcoatRadiance=Tn().toVar("clearcoatRadiance"),this.clearcoatSpecularDirect=Tn().toVar("clearcoatSpecularDirect"),this.clearcoatSpecularIndirect=Tn().toVar("clearcoatSpecularIndirect")),!0===this.sheen&&(this.sheenSpecularDirect=Tn().toVar("sheenSpecularDirect"),this.sheenSpecularIndirect=Tn().toVar("sheenSpecularIndirect")),!0===this.iridescence){const e=jd.dot(Id).clamp(),t=ym({outsideIOR:hn(1),eta2:jn,cosTheta1:e,thinFilmThickness:qn,baseF0:Zn}),r=ym({outsideIOR:hn(1),eta2:jn,cosTheta1:e,thinFilmThickness:qn,baseF0:In.rgb});this.iridescenceFresnel=iu(t,r,kn),this.iridescenceF0Dielectric=Gg({f:t,f90:1,dotVH:e}),this.iridescenceF0Metallic=Gg({f:r,f90:1,dotVH:e}),this.iridescenceF0=iu(this.iridescenceF0Dielectric,this.iridescenceF0Metallic,kn)}if(!0===this.transmission){const t=Pd,r=od.sub(Pd).normalize(),s=qd,i=e.context;i.backdrop=gm(s,r,Vn,Un,Jn,ea,t,xd,id,rd,aa,ua,da,la,this.dispersion?ca:null),i.backdropAlpha=oa,In.a.mulAssign(iu(1,i.backdrop.a,oa))}super.start(e)}computeMultiscattering(e,t,r,s,i=null){const n=jd.dot(Id).clamp(),a=Og({roughness:Vn,dotNV:n}),o=i?Hn.mix(s,i):s,u=o.mul(a.x).add(r.mul(a.y)),l=a.x.add(a.y).oneMinus(),d=o.add(o.oneMinus().mul(.047619)),c=u.mul(d).div(l.mul(d).oneMinus());e.addAssign(u),t.addAssign(c.mul(l))}direct({lightDirection:e,lightColor:t,reflectedLight:r}){const s=jd.dot(e).clamp().mul(t).toVar();if(!0===this.sheen){this.sheenSpecularDirect.addAssign(s.mul(Wg({lightDirection:e})));const t=bm({normal:jd,viewDir:Id,roughness:Wn}),r=bm({normal:jd,viewDir:e,roughness:Wn}),i=$n.r.max($n.g).max($n.b).mul(t.max(r)).oneMinus();s.mulAssign(i)}if(!0===this.clearcoat){const r=Xd.dot(e).clamp().mul(t);this.clearcoatSpecularDirect.addAssign(r.mul(Dg({lightDirection:e,f0:xm,f90:Tm,roughness:zn,normalView:Xd})))}r.directDiffuse.addAssign(s.mul(Tg({diffuseColor:Un}))),r.directSpecular.addAssign(s.mul(Vg({lightDirection:e,f0:Jn,f90:1,roughness:Vn,f:this.iridescenceFresnel,USE_IRIDESCENCE:this.iridescence,USE_ANISOTROPY:this.anisotropy})))}directRectArea({lightColor:e,lightPosition:t,halfWidth:r,halfHeight:s,reflectedLight:i,ltc_1:n,ltc_2:a}){const o=t.add(r).sub(s),u=t.sub(r).sub(s),l=t.sub(r).add(s),d=t.add(r).add(s),c=jd,h=Id,p=Dd.toVar(),g=Hg({N:c,V:h,roughness:Vn}),m=n.sample(g).toVar(),f=a.sample(g).toVar(),y=Cn(Tn(m.x,0,m.y),Tn(0,1,0),Tn(m.z,0,m.w)).toVar(),b=Jn.mul(f.x).add(Jn.oneMinus().mul(f.y)).toVar();i.directSpecular.addAssign(e.mul(b).mul(Xg({N:c,V:h,P:p,mInv:y,p0:o,p1:u,p2:l,p3:d}))),i.directDiffuse.addAssign(e.mul(Un).mul(Xg({N:c,V:h,P:p,mInv:Cn(1,0,0,0,1,0,0,0,1),p0:o,p1:u,p2:l,p3:d})))}indirect(e){this.indirectDiffuse(e),this.indirectSpecular(e),this.ambientOcclusion(e)}indirectDiffuse(e){const{irradiance:t,reflectedLight:r}=e.context,s=t.mul(Tg({diffuseColor:Un})).toVar();if(!0===this.sheen){const e=bm({normal:jd,viewDir:Id,roughness:Wn}),t=$n.r.max($n.g).max($n.b).mul(e).oneMinus();s.mulAssign(t)}r.indirectDiffuse.addAssign(s)}indirectSpecular(e){const{radiance:t,iblIrradiance:r,reflectedLight:s}=e.context;if(!0===this.sheen&&this.sheenSpecularIndirect.addAssign(r.mul($n,bm({normal:jd,viewDir:Id,roughness:Wn}))),!0===this.clearcoat){const e=Xd.dot(Id).clamp(),t=kg({dotNV:e,specularColor:xm,specularF90:Tm,roughness:zn});this.clearcoatSpecularIndirect.addAssign(this.clearcoatRadiance.mul(t))}const i=Tn().toVar("singleScatteringDielectric"),n=Tn().toVar("multiScatteringDielectric"),a=Tn().toVar("singleScatteringMetallic"),o=Tn().toVar("multiScatteringMetallic");this.computeMultiscattering(i,n,ea,Zn,this.iridescenceF0Dielectric),this.computeMultiscattering(a,o,ea,In.rgb,this.iridescenceF0Metallic);const u=iu(i,a,kn),l=iu(n,o,kn),d=i.add(n),c=Un.mul(d.oneMinus()),h=r.mul(1/Math.PI),p=t.mul(u).add(l.mul(h)).toVar(),g=c.mul(h).toVar();if(!0===this.sheen){const e=bm({normal:jd,viewDir:Id,roughness:Wn}),t=$n.r.max($n.g).max($n.b).mul(e).oneMinus();p.mulAssign(t),g.mulAssign(t)}s.indirectSpecular.addAssign(p),s.indirectDiffuse.addAssign(g)}ambientOcclusion(e){const{ambientOcclusion:t,reflectedLight:r}=e.context,s=jd.dot(Id).clamp().add(t),i=Vn.mul(-16).oneMinus().negate().exp2(),n=t.sub(s.pow(i).oneMinus()).clamp();!0===this.clearcoat&&this.clearcoatSpecularIndirect.mulAssign(t),!0===this.sheen&&this.sheenSpecularIndirect.mulAssign(t),r.indirectDiffuse.mulAssign(t),r.indirectSpecular.mulAssign(n)}finish({context:e}){const{outgoingLight:t}=e;if(!0===this.clearcoat){const e=Xd.dot(Id).clamp(),r=xg({dotVH:e,f0:xm,f90:Tm}),s=t.mul(Gn.mul(r).oneMinus()).add(this.clearcoatSpecularDirect.add(this.clearcoatSpecularIndirect).mul(Gn));t.assign(s)}if(!0===this.sheen){const e=t.add(this.sheenSpecularDirect,this.sheenSpecularIndirect.mul(1/Math.PI));t.assign(e)}}}const vm=hn(1),Nm=hn(-2),Sm=hn(.8),Rm=hn(-1),Am=hn(.4),Em=hn(2),wm=hn(.305),Cm=hn(3),Mm=hn(.21),Bm=hn(4),Lm=hn(4),Pm=hn(16),Fm=an(([e])=>{const t=Tn(wo(e)).toVar(),r=hn(-1).toVar();return ln(t.x.greaterThan(t.z),()=>{ln(t.x.greaterThan(t.y),()=>{r.assign(bu(e.x.greaterThan(0),0,3))}).Else(()=>{r.assign(bu(e.y.greaterThan(0),1,4))})}).Else(()=>{ln(t.z.greaterThan(t.y),()=>{r.assign(bu(e.z.greaterThan(0),2,5))}).Else(()=>{r.assign(bu(e.y.greaterThan(0),1,4))})}),r}).setLayout({name:"getFace",type:"float",inputs:[{name:"direction",type:"vec3"}]}),Dm=an(([e,t])=>{const r=fn().toVar();return ln(t.equal(0),()=>{r.assign(fn(e.z,e.y).div(wo(e.x)))}).ElseIf(t.equal(1),()=>{r.assign(fn(e.x.negate(),e.z.negate()).div(wo(e.y)))}).ElseIf(t.equal(2),()=>{r.assign(fn(e.x.negate(),e.y).div(wo(e.z)))}).ElseIf(t.equal(3),()=>{r.assign(fn(e.z.negate(),e.y).div(wo(e.x)))}).ElseIf(t.equal(4),()=>{r.assign(fn(e.x.negate(),e.z).div(wo(e.y)))}).Else(()=>{r.assign(fn(e.x,e.y).div(wo(e.z)))}),Ma(.5,r.add(1))}).setLayout({name:"getUV",type:"vec2",inputs:[{name:"direction",type:"vec3"},{name:"face",type:"float"}]}),Im=an(([e])=>{const t=hn(0).toVar();return ln(e.greaterThanEqual(Sm),()=>{t.assign(vm.sub(e).mul(Rm.sub(Nm)).div(vm.sub(Sm)).add(Nm))}).ElseIf(e.greaterThanEqual(Am),()=>{t.assign(Sm.sub(e).mul(Em.sub(Rm)).div(Sm.sub(Am)).add(Rm))}).ElseIf(e.greaterThanEqual(wm),()=>{t.assign(Am.sub(e).mul(Cm.sub(Em)).div(Am.sub(wm)).add(Em))}).ElseIf(e.greaterThanEqual(Mm),()=>{t.assign(wm.sub(e).mul(Bm.sub(Cm)).div(wm.sub(Mm)).add(Cm))}).Else(()=>{t.assign(hn(-2).mul(mo(Ma(1.16,e))))}),t}).setLayout({name:"roughnessToMip",type:"float",inputs:[{name:"roughness",type:"float"}]}),Um=an(([e,t])=>{const r=e.toVar();r.assign(Ma(2,r).sub(1));const s=Tn(r,1).toVar();return ln(t.equal(0),()=>{s.assign(s.zyx)}).ElseIf(t.equal(1),()=>{s.assign(s.xzy),s.xz.mulAssign(-1)}).ElseIf(t.equal(2),()=>{s.x.mulAssign(-1)}).ElseIf(t.equal(3),()=>{s.assign(s.zyx),s.xz.mulAssign(-1)}).ElseIf(t.equal(4),()=>{s.assign(s.xzy),s.xy.mulAssign(-1)}).ElseIf(t.equal(5),()=>{s.z.mulAssign(-1)}),s}).setLayout({name:"getDirection",type:"vec3",inputs:[{name:"uv",type:"vec2"},{name:"face",type:"float"}]}),Om=an(([e,t,r,s,i,n])=>{const a=hn(r),o=Tn(t),u=nu(Im(a),Nm,n),l=_o(u),d=bo(u),c=Tn(Vm(e,o,d,s,i,n)).toVar();return ln(l.notEqual(0),()=>{const t=Tn(Vm(e,o,d.add(1),s,i,n)).toVar();c.assign(iu(c,t,l))}),c}),Vm=an(([e,t,r,s,i,n])=>{const a=hn(r).toVar(),o=Tn(t),u=hn(Fm(o)).toVar(),l=hn(Wo(Lm.sub(a),0)).toVar();a.assign(Wo(a,Lm));const d=hn(po(a)).toVar(),c=fn(Dm(o,u).mul(d.sub(2)).add(1)).toVar();return ln(u.greaterThan(2),()=>{c.y.addAssign(d),u.subAssign(3)}),c.x.addAssign(u.mul(d)),c.x.addAssign(l.mul(Ma(3,Pm))),c.y.addAssign(Ma(4,po(n).sub(d))),c.x.mulAssign(s),c.y.mulAssign(i),e.sample(c).grad(fn(),fn())}),km=an(({envMap:e,mipInt:t,outputDirection:r,theta:s,axis:i,CUBEUV_TEXEL_WIDTH:n,CUBEUV_TEXEL_HEIGHT:a,CUBEUV_MAX_MIP:o})=>{const u=No(s),l=r.mul(u).add(i.cross(r).mul(vo(s))).add(i.mul(i.dot(r).mul(u.oneMinus())));return Vm(e,l,t,n,a,o)}),Gm=an(({n:e,latitudinal:t,poleAxis:r,outputDirection:s,weights:i,samples:n,dTheta:a,mipInt:o,envMap:u,CUBEUV_TEXEL_WIDTH:l,CUBEUV_TEXEL_HEIGHT:d,CUBEUV_MAX_MIP:c})=>{const h=Tn(bu(t,r,Yo(r,s))).toVar();ln(h.equal(Tn(0)),()=>{h.assign(Tn(s.z,0,s.x.negate()))}),h.assign(To(h));const p=Tn().toVar();return p.addAssign(i.element(0).mul(km({theta:0,axis:h,outputDirection:s,mipInt:o,envMap:u,CUBEUV_TEXEL_WIDTH:l,CUBEUV_TEXEL_HEIGHT:d,CUBEUV_MAX_MIP:c}))),op({start:pn(1),end:e},({i:e})=>{ln(e.greaterThanEqual(n),()=>{up()});const t=hn(a.mul(hn(e))).toVar();p.addAssign(i.element(e).mul(km({theta:t.mul(-1),axis:h,outputDirection:s,mipInt:o,envMap:u,CUBEUV_TEXEL_WIDTH:l,CUBEUV_TEXEL_HEIGHT:d,CUBEUV_MAX_MIP:c}))),p.addAssign(i.element(e).mul(km({theta:t,axis:h,outputDirection:s,mipInt:o,envMap:u,CUBEUV_TEXEL_WIDTH:l,CUBEUV_TEXEL_HEIGHT:d,CUBEUV_MAX_MIP:c})))}),Sn(p,1)}),zm=an(([e])=>{const t=gn(e).toVar();return t.assign(t.shiftLeft(gn(16)).bitOr(t.shiftRight(gn(16)))),t.assign(t.bitAnd(gn(1431655765)).shiftLeft(gn(1)).bitOr(t.bitAnd(gn(2863311530)).shiftRight(gn(1)))),t.assign(t.bitAnd(gn(858993459)).shiftLeft(gn(2)).bitOr(t.bitAnd(gn(3435973836)).shiftRight(gn(2)))),t.assign(t.bitAnd(gn(252645135)).shiftLeft(gn(4)).bitOr(t.bitAnd(gn(4042322160)).shiftRight(gn(4)))),t.assign(t.bitAnd(gn(16711935)).shiftLeft(gn(8)).bitOr(t.bitAnd(gn(4278255360)).shiftRight(gn(8)))),hn(t).mul(2.3283064365386963e-10)}),$m=an(([e,t])=>fn(hn(e).div(hn(t)),zm(e))),Wm=an(([e,t,r])=>{const s=Tn(t).toVar(),i=hn(r),n=i.mul(i).toVar(),a=To(Tn(n.mul(s.x),n.mul(s.y),s.z)).toVar(),o=a.x.mul(a.x).add(a.y.mul(a.y)),u=bu(o.greaterThan(0),Tn(a.y.negate(),a.x,0).div(fo(o)),Tn(1,0,0)).toVar(),l=Yo(a,u).toVar(),d=fo(e.x),c=Ma(2,3.14159265359).mul(e.y),h=d.mul(No(c)).toVar(),p=d.mul(vo(c)).toVar(),g=Ma(.5,a.z.add(1));p.assign(g.oneMinus().mul(fo(h.mul(h).oneMinus())).add(g.mul(p)));const m=u.mul(h).add(l.mul(p)).add(a.mul(fo(Wo(0,h.mul(h).add(p.mul(p)).oneMinus()))));return To(Tn(n.mul(m.x),n.mul(m.y),Wo(0,m.z)))}),Hm=an(({roughness:e,mipInt:t,envMap:r,N_immutable:s,GGX_SAMPLES:i,CUBEUV_TEXEL_WIDTH:n,CUBEUV_TEXEL_HEIGHT:a,CUBEUV_MAX_MIP:o})=>{const u=Tn(s).toVar(),l=Tn(0).toVar(),d=hn(0).toVar();return ln(e.lessThan(.001),()=>{l.assign(Vm(r,u,t,n,a,o))}).Else(()=>{const s=bu(wo(u.z).lessThan(.999),Tn(0,0,1),Tn(1,0,0)),c=To(Yo(s,u)).toVar(),h=Yo(u,c).toVar();op({start:gn(0),end:i},({i:s})=>{const p=$m(s,i),g=Wm(p,Tn(0,0,1),e),m=To(c.mul(g.x).add(h.mul(g.y)).add(u.mul(g.z))),f=To(m.mul(Ko(u,m).mul(2)).sub(u)),y=Wo(Ko(u,f),0);ln(y.greaterThan(0),()=>{const e=Vm(r,f,t,n,a,o);l.addAssign(e.mul(y)),d.addAssign(y)})}),ln(d.greaterThan(0),()=>{l.assign(l.div(d))})}),Sn(l,1)}),jm=[.125,.215,.35,.446,.526,.582],qm=20,Xm=new xe(-1,1,1,-1,0,1),Km=new Te(90,1),Ym=new e;let Qm=null,Zm=0,Jm=0;const ef=new r,tf=new WeakMap,rf=[3,1,5,0,4,2],sf=Um(Rl(),Sl("faceIndex")).normalize(),nf=Tn(sf.x,sf.y,sf.z);class af{constructor(e){this._renderer=e,this._pingPongRenderTarget=null,this._lodMax=0,this._cubeSize=0,this._sizeLods=[],this._sigmas=[],this._lodMeshes=[],this._blurMaterial=null,this._ggxMaterial=null,this._cubemapMaterial=null,this._equirectMaterial=null,this._backgroundBox=null}get _hasInitialized(){return this._renderer.hasInitialized()}fromScene(e,t=0,r=.1,s=100,i={}){const{size:n=256,position:a=ef,renderTarget:o=null}=i;if(this._setSize(n),!1===this._hasInitialized){d('PMREMGenerator: ".fromScene()" called before the backend is initialized. Try using "await renderer.init()" instead.');const n=o||this._allocateTarget();return i.renderTarget=n,this.fromSceneAsync(e,t,r,s,i),n}Qm=this._renderer.getRenderTarget(),Zm=this._renderer.getActiveCubeFace(),Jm=this._renderer.getActiveMipmapLevel();const u=o||this._allocateTarget();return u.depthBuffer=!0,this._init(u),this._sceneToCubeUV(e,r,s,u,a),t>0&&this._blur(u,0,0,t),this._applyPMREM(u),this._cleanup(u),u}async fromSceneAsync(e,t=0,r=.1,s=100,i={}){return v('PMREMGenerator: ".fromSceneAsync()" is deprecated. Use "await renderer.init()" instead.'),await this._renderer.init(),this.fromScene(e,t,r,s,i)}fromEquirectangular(e,t=null){if(!1===this._hasInitialized){d('PMREMGenerator: .fromEquirectangular() called before the backend is initialized. Try using "await renderer.init()" instead.'),this._setSizeFromTexture(e);const r=t||this._allocateTarget();return this.fromEquirectangularAsync(e,r),r}return this._fromTexture(e,t)}async fromEquirectangularAsync(e,t=null){return v('PMREMGenerator: ".fromEquirectangularAsync()" is deprecated. Use "await renderer.init()" instead.'),await this._renderer.init(),this._fromTexture(e,t)}fromCubemap(e,t=null){if(!1===this._hasInitialized){d("PMREMGenerator: .fromCubemap() called before the backend is initialized. Try using .fromCubemapAsync() instead."),this._setSizeFromTexture(e);const r=t||this._allocateTarget();return this.fromCubemapAsync(e,t),r}return this._fromTexture(e,t)}async fromCubemapAsync(e,t=null){return v('PMREMGenerator: ".fromCubemapAsync()" is deprecated. Use "await renderer.init()" instead.'),await this._renderer.init(),this._fromTexture(e,t)}async compileCubemapShader(){null===this._cubemapMaterial&&(this._cubemapMaterial=df(),await this._compileMaterial(this._cubemapMaterial))}async compileEquirectangularShader(){null===this._equirectMaterial&&(this._equirectMaterial=cf(),await this._compileMaterial(this._equirectMaterial))}dispose(){this._dispose(),null!==this._cubemapMaterial&&this._cubemapMaterial.dispose(),null!==this._equirectMaterial&&this._equirectMaterial.dispose(),null!==this._backgroundBox&&(this._backgroundBox.geometry.dispose(),this._backgroundBox.material.dispose())}_setSizeFromTexture(e){e.mapping===L||e.mapping===P?this._setSize(0===e.image.length?16:e.image[0].width||e.image[0].image.width):this._setSize(e.image.width/4)}_setSize(e){this._lodMax=Math.floor(Math.log2(e)),this._cubeSize=Math.pow(2,this._lodMax)}_dispose(){null!==this._blurMaterial&&this._blurMaterial.dispose(),null!==this._ggxMaterial&&this._ggxMaterial.dispose(),null!==this._pingPongRenderTarget&&this._pingPongRenderTarget.dispose();for(let e=0;ee-4?o=jm[a-e+4-1]:0===a&&(o=0),r.push(o);const u=1/(n-2),l=-u,d=1+u,c=[l,l,d,l,d,d,l,l,d,d,l,d],h=6,p=6,g=3,m=2,f=1,y=new Float32Array(g*p*h),b=new Float32Array(m*p*h),x=new Float32Array(f*p*h);for(let e=0;e2?0:-1,s=[t,r,0,t+2/3,r,0,t+2/3,r+1,0,t,r,0,t+2/3,r+1,0,t,r+1,0],i=rf[e];y.set(s,g*p*i),b.set(c,m*p*i);const n=[i,i,i,i,i,i];x.set(n,f*p*i)}const T=new be;T.setAttribute("position",new Re(y,g)),T.setAttribute("uv",new Re(b,m)),T.setAttribute("faceIndex",new Re(x,f)),s.push(new se(T,null)),i>4&&i--}return{lodMeshes:s,sizeLods:t,sigmas:r}}(t)),this._blurMaterial=function(e,t,s){const i=Vl(new Array(qm).fill(0)),n=xa(new r(0,1,0)),a=xa(0),o=hn(qm),u=xa(0),l=xa(1),d=Pl(),c=xa(0),h=hn(1/t),p=hn(1/s),g=hn(e),m={n:o,latitudinal:u,weights:i,poleAxis:n,outputDirection:nf,dTheta:a,samples:l,envMap:d,mipInt:c,CUBEUV_TEXEL_WIDTH:h,CUBEUV_TEXEL_HEIGHT:p,CUBEUV_MAX_MIP:g},f=lf("blur");return f.fragmentNode=Gm({...m,latitudinal:u.equal(1)}),tf.set(f,m),f}(t,e.width,e.height),this._ggxMaterial=function(e,t,r){const s=Pl(),i=xa(0),n=xa(0),a=hn(1/t),o=hn(1/r),u=hn(e),l={envMap:s,roughness:i,mipInt:n,CUBEUV_TEXEL_WIDTH:a,CUBEUV_TEXEL_HEIGHT:o,CUBEUV_MAX_MIP:u},d=lf("ggx");return d.fragmentNode=Hm({...l,N_immutable:nf,GGX_SAMPLES:gn(512)}),tf.set(d,l),d}(t,e.width,e.height)}}async _compileMaterial(e){const t=new se(new be,e);await this._renderer.compile(t,Xm)}_sceneToCubeUV(e,t,r,s,i){const n=Km;n.near=t,n.far=r;const a=[1,1,1,1,-1,1],o=[1,-1,1,-1,1,-1],u=this._renderer,l=u.autoClear;u.getClearColor(Ym),u.autoClear=!1,null===this._backgroundBox&&(this._backgroundBox=new se(new re,new he({name:"PMREM.Background",side:w,depthWrite:!1,depthTest:!1})));const d=this._backgroundBox,c=d.material;let h=!1;const p=e.background;p?p.isColor&&(c.color.copy(p),e.background=null,h=!0):(c.color.copy(Ym),h=!0),u.setRenderTarget(s),u.clear(),h&&u.render(d,n);for(let t=0;t<6;t++){const r=t%3;0===r?(n.up.set(0,a[t],0),n.position.set(i.x,i.y,i.z),n.lookAt(i.x+o[t],i.y,i.z)):1===r?(n.up.set(0,0,a[t]),n.position.set(i.x,i.y,i.z),n.lookAt(i.x,i.y+o[t],i.z)):(n.up.set(0,a[t],0),n.position.set(i.x,i.y,i.z),n.lookAt(i.x,i.y,i.z+o[t]));const l=this._cubeSize;uf(s,r*l,t>2?l:0,l,l),u.render(e,n)}u.autoClear=l,e.background=p}_textureToCubeUV(e,t){const r=this._renderer,s=e.mapping===L||e.mapping===P;s?null===this._cubemapMaterial&&(this._cubemapMaterial=df(e)):null===this._equirectMaterial&&(this._equirectMaterial=cf(e));const i=s?this._cubemapMaterial:this._equirectMaterial;i.fragmentNode.value=e;const n=this._lodMeshes[0];n.material=i;const a=this._cubeSize;uf(t,0,0,3*a,2*a),r.setRenderTarget(t),r.render(n,Xm)}_applyPMREM(e){const t=this._renderer,r=t.autoClear;t.autoClear=!1;const s=this._lodMeshes.length;for(let t=1;tc-4?r-c+4:0),g=4*(this._cubeSize-h);e.texture.frame=(e.texture.frame||0)+1,o.envMap.value=e.texture,o.roughness.value=d,o.mipInt.value=c-t,uf(i,p,g,3*h,2*h),s.setRenderTarget(i),s.render(a,Xm),i.texture.frame=(i.texture.frame||0)+1,o.envMap.value=i.texture,o.roughness.value=0,o.mipInt.value=c-r,uf(e,p,g,3*h,2*h),s.setRenderTarget(e),s.render(a,Xm)}_blur(e,t,r,s,i){const n=this._pingPongRenderTarget;this._halfBlur(e,n,t,r,s,"latitudinal",i),this._halfBlur(n,e,r,r,s,"longitudinal",i)}_halfBlur(e,t,r,s,i,n,a){const u=this._renderer,l=this._blurMaterial;"latitudinal"!==n&&"longitudinal"!==n&&o("blur direction must be either latitudinal or longitudinal!");const c=this._lodMeshes[s];c.material=l;const h=tf.get(l),p=this._sizeLods[r]-1,g=isFinite(i)?Math.PI/(2*p):2*Math.PI/39,m=i/g,f=isFinite(i)?1+Math.floor(3*m):qm;f>qm&&d(`sigmaRadians, ${i}, is too large and will clip, as it requested ${f} samples when the maximum is set to 20`);const y=[];let b=0;for(let e=0;ex-4?s-x+4:0),4*(this._cubeSize-T),3*T,2*T),u.setRenderTarget(t),u.render(c,Xm)}}function of(e,t){const r=new _e(e,t,{magFilter:ne,minFilter:ne,generateMipmaps:!1,type:fe,format:Ne,colorSpace:ve});return r.texture.mapping=Se,r.texture.name="PMREM.cubeUv",r.texture.isPMREMTexture=!0,r.scissorTest=!0,r}function uf(e,t,r,s,i){e.viewport.set(t,r,s,i),e.scissor.set(t,r,s,i)}function lf(e){const t=new Xp;return t.depthTest=!1,t.depthWrite=!1,t.blending=Z,t.name=`PMREM_${e}`,t}function df(e){const t=lf("cubemap");return t.fragmentNode=hc(e,nf),t}function cf(e){const t=lf("equirect");return t.fragmentNode=Pl(e,ag(nf),0),t}const hf=new WeakMap;function pf(e,t,r){const s=function(e){let t=hf.get(e);void 0===t&&(t=new WeakMap,hf.set(e,t));return t}(t);let i=s.get(e);if((void 0!==i?i.pmremVersion:-1)!==e.pmremVersion){const t=e.image;if(e.isCubeTexture){if(!function(e){if(null==e)return!1;let t=0;const r=6;for(let s=0;s0}(t))return null;i=r.fromEquirectangular(e,i)}i.pmremVersion=e.pmremVersion,s.set(e,i)}return i.texture}class gf extends li{static get type(){return"PMREMNode"}constructor(e,t=null,r=null){super("vec3"),this._value=e,this._pmrem=null,this.uvNode=t,this.levelNode=r,this._generator=null;const s=new N;s.isRenderTargetTexture=!0,this._texture=Pl(s),this._width=xa(0),this._height=xa(0),this._maxMip=xa(0),this.updateBeforeType=Qs.RENDER}set value(e){this._value=e,this._pmrem=null}get value(){return this._value}updateFromTexture(e){const t=function(e){const t=Math.log2(e)-2,r=1/e;return{texelWidth:1/(3*Math.max(Math.pow(2,t),112)),texelHeight:r,maxMip:t}}(e.image.height);this._texture.value=e,this._width.value=t.texelWidth,this._height.value=t.texelHeight,this._maxMip.value=t.maxMip}updateBefore(e){let t=this._pmrem;const r=t?t.pmremVersion:-1,s=this._value;r!==s.pmremVersion&&(t=!0===s.isPMREMTexture?s:pf(s,e.renderer,this._generator),null!==t&&(this._pmrem=t,this.updateFromTexture(t)))}setup(e){null===this._generator&&(this._generator=new af(e.renderer)),this.updateBefore(e);let t=this.uvNode;null===t&&e.context.getUV&&(t=e.context.getUV(this,e)),t=ic.mul(Tn(t.x,t.y.negate(),t.z));let r=this.levelNode;return null===r&&e.context.getTextureLevel&&(r=e.context.getTextureLevel(this)),Om(this._texture,t,r,this._width,this._height,this._maxMip)}dispose(){super.dispose(),null!==this._generator&&this._generator.dispose()}}const mf=en(gf).setParameterLength(1,3),ff=new WeakMap;class yf extends gp{static get type(){return"EnvironmentNode"}constructor(e=null){super(),this.envNode=e}setup(e){const{material:t}=e;let r=this.envNode;if(r.isTextureNode||r.isMaterialReferenceNode){const e=r.isTextureNode?r.value:t[r.property];let s=ff.get(e);void 0===s&&(s=mf(e),ff.set(e,s)),r=s}const s=!0===t.useAnisotropy||t.anisotropy>0?Wc:jd,i=r.context(bf(Vn,s)).mul(sc),n=r.context(xf(qd)).mul(Math.PI).mul(sc),a=al(i),o=al(n);e.context.radiance.addAssign(a),e.context.iblIrradiance.addAssign(o);const u=e.context.lightingModel.clearcoatRadiance;if(u){const e=r.context(bf(zn,Xd)).mul(sc),t=al(e);u.addAssign(t)}}}const bf=(e,t)=>{let r=null;return{getUV:()=>(null===r&&(r=Id.negate().reflect(t),r=eu(e).mix(r,t).normalize(),r=r.transformDirection(id)),r),getTextureLevel:()=>e}},xf=e=>({getUV:()=>e,getTextureLevel:()=>hn(1)}),Tf=new Ae;class _f extends Xp{static get type(){return"MeshStandardNodeMaterial"}constructor(e){super(),this.isMeshStandardNodeMaterial=!0,this.lights=!0,this.emissiveNode=null,this.metalnessNode=null,this.roughnessNode=null,this.setDefaultValues(Tf),this.setValues(e)}setupEnvironment(e){let t=super.setupEnvironment(e);return null===t&&e.environmentNode&&(t=e.environmentNode),t?new yf(t):null}setupLightingModel(){return new _m}setupSpecular(){const e=iu(Tn(.04),In.rgb,kn);Zn.assign(Tn(.04)),Jn.assign(e),ea.assign(1)}setupVariants(){const e=this.metalnessNode?hn(this.metalnessNode):hh;kn.assign(e);let t=this.roughnessNode?hn(this.roughnessNode):ch;t=Cg({roughness:t}),Vn.assign(t),this.setupSpecular(),Un.assign(In.rgb.mul(e.oneMinus()))}copy(e){return this.emissiveNode=e.emissiveNode,this.metalnessNode=e.metalnessNode,this.roughnessNode=e.roughnessNode,super.copy(e)}}const vf=new Ee;class Nf extends _f{static get type(){return"MeshPhysicalNodeMaterial"}constructor(e){super(),this.isMeshPhysicalNodeMaterial=!0,this.clearcoatNode=null,this.clearcoatRoughnessNode=null,this.clearcoatNormalNode=null,this.sheenNode=null,this.sheenRoughnessNode=null,this.iridescenceNode=null,this.iridescenceIORNode=null,this.iridescenceThicknessNode=null,this.specularIntensityNode=null,this.specularColorNode=null,this.iorNode=null,this.transmissionNode=null,this.thicknessNode=null,this.attenuationDistanceNode=null,this.attenuationColorNode=null,this.dispersionNode=null,this.anisotropyNode=null,this.setDefaultValues(vf),this.setValues(e)}get useClearcoat(){return this.clearcoat>0||null!==this.clearcoatNode}get useIridescence(){return this.iridescence>0||null!==this.iridescenceNode}get useSheen(){return this.sheen>0||null!==this.sheenNode}get useAnisotropy(){return this.anisotropy>0||null!==this.anisotropyNode}get useTransmission(){return this.transmission>0||null!==this.transmissionNode}get useDispersion(){return this.dispersion>0||null!==this.dispersionNode}setupSpecular(){const e=this.iorNode?hn(this.iorNode):Ah;aa.assign(e),Zn.assign($o(Zo(aa.sub(1).div(aa.add(1))).mul(uh),Tn(1)).mul(oh)),Jn.assign(iu(Zn,In.rgb,kn)),ea.assign(iu(oh,1,kn))}setupLightingModel(){return new _m(this.useClearcoat,this.useSheen,this.useIridescence,this.useAnisotropy,this.useTransmission,this.useDispersion)}setupVariants(e){if(super.setupVariants(e),this.useClearcoat){const e=this.clearcoatNode?hn(this.clearcoatNode):gh,t=this.clearcoatRoughnessNode?hn(this.clearcoatRoughnessNode):mh;Gn.assign(e),zn.assign(Cg({roughness:t}))}if(this.useSheen){const e=this.sheenNode?Tn(this.sheenNode):bh,t=this.sheenRoughnessNode?hn(this.sheenRoughnessNode):xh;$n.assign(e),Wn.assign(t)}if(this.useIridescence){const e=this.iridescenceNode?hn(this.iridescenceNode):_h,t=this.iridescenceIORNode?hn(this.iridescenceIORNode):vh,r=this.iridescenceThicknessNode?hn(this.iridescenceThicknessNode):Nh;Hn.assign(e),jn.assign(t),qn.assign(r)}if(this.useAnisotropy){const e=(this.anisotropyNode?fn(this.anisotropyNode):Th).toVar();Kn.assign(e.length()),ln(Kn.equal(0),()=>{e.assign(fn(1,0))}).Else(()=>{e.divAssign(fn(Kn)),Kn.assign(Kn.saturate())}),Xn.assign(Kn.pow2().mix(Vn.pow2(),1)),Yn.assign(zc[0].mul(e.x).add(zc[1].mul(e.y))),Qn.assign(zc[1].mul(e.x).sub(zc[0].mul(e.y)))}if(this.useTransmission){const e=this.transmissionNode?hn(this.transmissionNode):Sh,t=this.thicknessNode?hn(this.thicknessNode):Rh,r=this.attenuationDistanceNode?hn(this.attenuationDistanceNode):Eh,s=this.attenuationColorNode?Tn(this.attenuationColorNode):wh;if(oa.assign(e),ua.assign(t),la.assign(r),da.assign(s),this.useDispersion){const e=this.dispersionNode?hn(this.dispersionNode):Dh;ca.assign(e)}}}setupClearcoatNormal(){return this.clearcoatNormalNode?Tn(this.clearcoatNormalNode):fh}setup(e){e.context.setupClearcoatNormal=()=>Lu(this.setupClearcoatNormal(e),"NORMAL","vec3"),super.setup(e)}copy(e){return this.clearcoatNode=e.clearcoatNode,this.clearcoatRoughnessNode=e.clearcoatRoughnessNode,this.clearcoatNormalNode=e.clearcoatNormalNode,this.sheenNode=e.sheenNode,this.sheenRoughnessNode=e.sheenRoughnessNode,this.iridescenceNode=e.iridescenceNode,this.iridescenceIORNode=e.iridescenceIORNode,this.iridescenceThicknessNode=e.iridescenceThicknessNode,this.specularIntensityNode=e.specularIntensityNode,this.specularColorNode=e.specularColorNode,this.transmissionNode=e.transmissionNode,this.thicknessNode=e.thicknessNode,this.attenuationDistanceNode=e.attenuationDistanceNode,this.attenuationColorNode=e.attenuationColorNode,this.dispersionNode=e.dispersionNode,this.anisotropyNode=e.anisotropyNode,super.copy(e)}}class Sf extends _m{constructor(e=!1,t=!1,r=!1,s=!1,i=!1,n=!1,a=!1){super(e,t,r,s,i,n),this.useSSS=a}direct({lightDirection:e,lightColor:t,reflectedLight:r},s){if(!0===this.useSSS){const i=s.material,{thicknessColorNode:n,thicknessDistortionNode:a,thicknessAmbientNode:o,thicknessAttenuationNode:u,thicknessPowerNode:l,thicknessScaleNode:d}=i,c=e.add(jd.mul(a)).normalize(),h=hn(Id.dot(c.negate()).saturate().pow(l).mul(d)),p=Tn(h.add(o).mul(n));r.directDiffuse.addAssign(p.mul(u.mul(t)))}super.direct({lightDirection:e,lightColor:t,reflectedLight:r},s)}}class Rf extends Nf{static get type(){return"MeshSSSNodeMaterial"}constructor(e){super(e),this.thicknessColorNode=null,this.thicknessDistortionNode=hn(.1),this.thicknessAmbientNode=hn(0),this.thicknessAttenuationNode=hn(.1),this.thicknessPowerNode=hn(2),this.thicknessScaleNode=hn(10)}get useSSS(){return null!==this.thicknessColorNode}setupLightingModel(){return new Sf(this.useClearcoat,this.useSheen,this.useIridescence,this.useAnisotropy,this.useTransmission,this.useDispersion,this.useSSS)}copy(e){return this.thicknessColorNode=e.thicknessColorNode,this.thicknessDistortionNode=e.thicknessDistortionNode,this.thicknessAmbientNode=e.thicknessAmbientNode,this.thicknessAttenuationNode=e.thicknessAttenuationNode,this.thicknessPowerNode=e.thicknessPowerNode,this.thicknessScaleNode=e.thicknessScaleNode,super.copy(e)}}const Af=an(({normal:e,lightDirection:t,builder:r})=>{const s=e.dot(t),i=fn(s.mul(.5).add(.5),0);if(r.material.gradientMap){const e=bc("gradientMap","texture").context({getUV:()=>i});return Tn(e.r)}{const e=i.fwidth().mul(.5);return iu(Tn(.7),Tn(1),uu(hn(.7).sub(e.x),hn(.7).add(e.x),i.x))}});class Ef extends mg{direct({lightDirection:e,lightColor:t,reflectedLight:r},s){const i=Af({normal:Gd,lightDirection:e,builder:s}).mul(t);r.directDiffuse.addAssign(i.mul(Tg({diffuseColor:In.rgb})))}indirect(e){const{ambientOcclusion:t,irradiance:r,reflectedLight:s}=e.context;s.indirectDiffuse.addAssign(r.mul(Tg({diffuseColor:In}))),s.indirectDiffuse.mulAssign(t)}}const wf=new we;class Cf extends Xp{static get type(){return"MeshToonNodeMaterial"}constructor(e){super(),this.isMeshToonNodeMaterial=!0,this.lights=!0,this.setDefaultValues(wf),this.setValues(e)}setupLightingModel(){return new Ef}}const Mf=an(()=>{const e=Tn(Id.z,0,Id.x.negate()).normalize(),t=Id.cross(e);return fn(e.dot(jd),t.dot(jd)).mul(.495).add(.5)}).once(["NORMAL","VERTEX"])().toVar("matcapUV"),Bf=new Ce;class Lf extends Xp{static get type(){return"MeshMatcapNodeMaterial"}constructor(e){super(),this.isMeshMatcapNodeMaterial=!0,this.setDefaultValues(Bf),this.setValues(e)}setupVariants(e){const t=Mf;let r;r=e.material.matcap?bc("matcap","texture").context({getUV:()=>t}):Tn(iu(.2,.8,t.y)),In.rgb.mulAssign(r.rgb)}}class Pf extends li{static get type(){return"RotateNode"}constructor(e,t){super(),this.positionNode=e,this.rotationNode=t}getNodeType(e){return this.positionNode.getNodeType(e)}setup(e){const{rotationNode:t,positionNode:r}=this;if("vec2"===this.getNodeType(e)){const e=t.cos(),s=t.sin();return wn(e,s,s.negate(),e).mul(r)}{const e=t,s=Mn(Sn(1,0,0,0),Sn(0,No(e.x),vo(e.x).negate(),0),Sn(0,vo(e.x),No(e.x),0),Sn(0,0,0,1)),i=Mn(Sn(No(e.y),0,vo(e.y),0),Sn(0,1,0,0),Sn(vo(e.y).negate(),0,No(e.y),0),Sn(0,0,0,1)),n=Mn(Sn(No(e.z),vo(e.z).negate(),0,0),Sn(vo(e.z),No(e.z),0,0),Sn(0,0,1,0),Sn(0,0,0,1));return s.mul(i).mul(n).mul(Sn(r,1)).xyz}}}const Ff=en(Pf).setParameterLength(2),Df=new Me;class If extends Xp{static get type(){return"SpriteNodeMaterial"}constructor(e){super(),this.isSpriteNodeMaterial=!0,this._useSizeAttenuation=!0,this.positionNode=null,this.rotationNode=null,this.scaleNode=null,this.transparent=!0,this.setDefaultValues(Df),this.setValues(e)}setupPositionView(e){const{object:t,camera:r}=e,{positionNode:s,rotationNode:i,scaleNode:n,sizeAttenuation:a}=this,o=Ad.mul(Tn(s||0));let u=fn(xd[0].xyz.length(),xd[1].xyz.length());null!==n&&(u=u.mul(fn(n))),r.isPerspectiveCamera&&!1===a&&(u=u.mul(o.z.negate()));let l=Md.xy;if(t.center&&!0===t.center.isVector2){const e=((e,t,r)=>Yi(new $u(e,t,r)))("center","vec2",t);l=l.sub(e.sub(.5))}l=l.mul(u);const d=hn(i||yh),c=Ff(l,d);return Sn(o.xy.add(c),o.zw)}copy(e){return this.positionNode=e.positionNode,this.rotationNode=e.rotationNode,this.scaleNode=e.scaleNode,super.copy(e)}get sizeAttenuation(){return this._useSizeAttenuation}set sizeAttenuation(e){this._useSizeAttenuation!==e&&(this._useSizeAttenuation=e,this.needsUpdate=!0)}}const Uf=new Be,Of=new t;class Vf extends If{static get type(){return"PointsNodeMaterial"}constructor(e){super(),this.sizeNode=null,this.isPointsNodeMaterial=!0,this.setDefaultValues(Uf),this.setValues(e)}setupPositionView(){const{positionNode:e}=this;return Ad.mul(Tn(e||Bd)).xyz}setupVertexSprite(e){const{material:t,camera:r}=e,{rotationNode:s,scaleNode:i,sizeNode:n,sizeAttenuation:a}=this;let o=super.setupVertex(e);if(!0!==t.isNodeMaterial)return o;let u=null!==n?fn(n):Fh;u=u.mul(Wl),r.isPerspectiveCamera&&!0===a&&(u=u.mul(kf.div(Dd.z.negate()))),i&&i.isNode&&(u=u.mul(fn(i)));let l=Md.xy;if(s&&s.isNode){const e=hn(s);l=Ff(l,e)}return l=l.mul(u),l=l.div(Kl.div(2)),l=l.mul(o.w),o=o.add(Sn(l,0,0)),o}setupVertex(e){return e.object.isPoints?super.setupVertex(e):this.setupVertexSprite(e)}get alphaToCoverage(){return this._useAlphaToCoverage}set alphaToCoverage(e){this._useAlphaToCoverage!==e&&(this._useAlphaToCoverage=e,this.needsUpdate=!0)}}const kf=xa(1).onFrameUpdate(function({renderer:e}){const t=e.getSize(Of);this.value=.5*t.y});class Gf extends mg{constructor(){super(),this.shadowNode=hn(1).toVar("shadowMask")}direct({lightNode:e}){null!==e.shadowNode&&this.shadowNode.mulAssign(e.shadowNode)}finish({context:e}){In.a.mulAssign(this.shadowNode.oneMinus()),e.outgoingLight.rgb.assign(In.rgb)}}const zf=new Le;class $f extends Xp{static get type(){return"ShadowNodeMaterial"}constructor(e){super(),this.isShadowNodeMaterial=!0,this.lights=!0,this.transparent=!0,this.setDefaultValues(zf),this.setValues(e)}setupLightingModel(){return new Gf}}const Wf=Fn("vec3"),Hf=Fn("vec3"),jf=Fn("vec3");class qf extends mg{constructor(){super()}start(e){const{material:t}=e,r=Fn("vec3"),s=Fn("vec3");ln(od.sub(Pd).length().greaterThan(Nd.mul(2)),()=>{r.assign(od),s.assign(Pd)}).Else(()=>{r.assign(Pd),s.assign(od)});const i=s.sub(r),n=xa("int").onRenderUpdate(({material:e})=>e.steps),a=i.length().div(n).toVar(),o=i.normalize().toVar(),u=hn(0).toVar(),l=Tn(1).toVar();t.offsetNode&&u.addAssign(t.offsetNode.mul(a)),op(n,()=>{const s=r.add(o.mul(u)),i=id.mul(Sn(s,1)).xyz;let n;null!==t.depthNode&&(Hf.assign(Pp(wp(i.z,ed,td))),e.context.sceneDepthNode=Pp(t.depthNode).toVar()),e.context.positionWorld=s,e.context.shadowPositionWorld=s,e.context.positionView=i,Wf.assign(0),t.scatteringNode&&(n=t.scatteringNode({positionRay:s})),super.start(e),n&&Wf.mulAssign(n);const d=Wf.mul(.01).negate().mul(a).exp();l.mulAssign(d),u.addAssign(a)}),jf.addAssign(l.saturate().oneMinus())}scatteringLight(e,t){const r=t.context.sceneDepthNode;r?ln(r.greaterThanEqual(Hf),()=>{Wf.addAssign(e)}):Wf.addAssign(e)}direct({lightNode:e,lightColor:t},r){if(void 0===e.light.distance)return;const s=t.xyz.toVar();s.mulAssign(e.shadowNode),this.scatteringLight(s,r)}directRectArea({lightColor:e,lightPosition:t,halfWidth:r,halfHeight:s},i){const n=t.add(r).sub(s),a=t.sub(r).sub(s),o=t.sub(r).add(s),u=t.add(r).add(s),l=i.context.positionView,d=e.xyz.mul(Kg({P:l,p0:n,p1:a,p2:o,p3:u})).pow(1.5);this.scatteringLight(d,i)}finish(e){e.context.outgoingLight.assign(jf)}}class Xf extends Xp{static get type(){return"VolumeNodeMaterial"}constructor(e){super(),this.isVolumeNodeMaterial=!0,this.steps=25,this.offsetNode=null,this.scatteringNode=null,this.lights=!0,this.transparent=!0,this.side=w,this.depthTest=!1,this.depthWrite=!1,this.setValues(e)}setupLightingModel(){return new qf}}class Kf{constructor(e,t,r){this.renderer=e,this.nodes=t,this.info=r,this._context="undefined"!=typeof self?self:null,this._animationLoop=null,this._requestId=null}start(){const e=(t,r)=>{this._requestId=this._context.requestAnimationFrame(e),!0===this.info.autoReset&&this.info.reset(),this.nodes.nodeFrame.update(),this.info.frame=this.nodes.nodeFrame.frameId,this.renderer._inspector.begin(),null!==this._animationLoop&&this._animationLoop(t,r),this.renderer._inspector.finish()};e()}stop(){this._context.cancelAnimationFrame(this._requestId),this._requestId=null}getAnimationLoop(){return this._animationLoop}setAnimationLoop(e){this._animationLoop=e}getContext(){return this._context}setContext(e){this._context=e}dispose(){this.stop()}}class Yf{constructor(){this.weakMap=new WeakMap}get(e){let t=this.weakMap;for(let r=0;r{this.dispose()},this.onGeometryDispose=()=>{this.attributes=null,this.attributesId=null},this.material.addEventListener("dispose",this.onMaterialDispose),this.geometry.addEventListener("dispose",this.onGeometryDispose)}updateClipping(e){this.clippingContext=e}get clippingNeedsUpdate(){return null!==this.clippingContext&&this.clippingContext.cacheKey!==this.clippingContextCacheKey&&(this.clippingContextCacheKey=this.clippingContext.cacheKey,!0)}get hardwareClippingPlanes(){return!0===this.material.hardwareClipping?this.clippingContext.unionClippingCount:0}getNodeBuilderState(){return this._nodeBuilderState||(this._nodeBuilderState=this._nodes.getForRender(this))}getMonitor(){return this._monitor||(this._monitor=this.getNodeBuilderState().observer)}getBindings(){return this._bindings||(this._bindings=this.getNodeBuilderState().createBindings())}getBindingGroup(e){for(const t of this.getBindings())if(t.name===e)return t}getIndex(){return this._geometries.getIndex(this)}getIndirect(){return this._geometries.getIndirect(this)}getIndirectOffset(){return this._geometries.getIndirectOffset(this)}getChainArray(){return[this.object,this.material,this.context,this.lightsNode]}setGeometry(e){this.geometry=e,this.attributes=null,this.attributesId=null}getAttributes(){if(null!==this.attributes)return this.attributes;const e=this.getNodeBuilderState().nodeAttributes,t=this.geometry,r=[],s=new Set,i={};for(const n of e){let e;if(n.node&&n.node.attribute?e=n.node.attribute:(e=t.getAttribute(n.name),i[n.name]=e.version),void 0===e)continue;r.push(e);const a=e.isInterleavedBufferAttribute?e.data:e;s.add(a)}return this.attributes=r,this.attributesId=i,this.vertexBuffers=Array.from(s.values()),r}getVertexBuffers(){return null===this.vertexBuffers&&this.getAttributes(),this.vertexBuffers}getDrawParameters(){const{object:e,material:t,geometry:r,group:s,drawRange:i}=this,n=this.drawParams||(this.drawParams={vertexCount:0,firstVertex:0,instanceCount:0,firstInstance:0}),a=this.getIndex(),o=null!==a;let u=1;if(!0===r.isInstancedBufferGeometry?u=r.instanceCount:void 0!==e.count&&(u=Math.max(0,e.count)),0===u)return null;if(n.instanceCount=u,!0===e.isBatchedMesh)return n;let l=1;!0!==t.wireframe||e.isPoints||e.isLineSegments||e.isLine||e.isLineLoop||(l=2);let d=i.start*l,c=(i.start+i.count)*l;null!==s&&(d=Math.max(d,s.start*l),c=Math.min(c,(s.start+s.count)*l));const h=r.attributes.position;let p=1/0;o?p=a.count:null!=h&&(p=h.count),d=Math.max(d,0),c=Math.min(c,p);const g=c-d;return g<0||g===1/0?null:(n.vertexCount=g,n.firstVertex=d,n)}getGeometryCacheKey(){const{geometry:e}=this;let t="";for(const r of Object.keys(e.attributes).sort()){const s=e.attributes[r];t+=r+",",s.data&&(t+=s.data.stride+","),s.offset&&(t+=s.offset+","),s.itemSize&&(t+=s.itemSize+","),s.normalized&&(t+="n,")}for(const r of Object.keys(e.morphAttributes).sort()){const s=e.morphAttributes[r];t+="morph-"+r+",";for(let e=0,r=s.length;e1||Array.isArray(e.morphTargetInfluences))&&(s+=e.uuid+","),s+=this.context.id+",",s+=e.receiveShadow+",",Fs(s)}get needsGeometryUpdate(){if(this.geometry.id!==this.object.geometry.id)return!0;if(null!==this.attributes){const e=this.attributesId;for(const t in e){const r=this.geometry.getAttribute(t);if(void 0===r||e[t]!==r.id)return!0}}return!1}get needsUpdate(){return this.initialNodesCacheKey!==this.getDynamicCacheKey()||this.clippingNeedsUpdate}getDynamicCacheKey(){let e=0;return!0!==this.material.isShadowPassMaterial&&(e=this._nodes.getCacheKey(this.scene,this.lightsNode)),this.camera.isArrayCamera&&(e=Is(e,this.camera.cameras.length)),this.object.receiveShadow&&(e=Is(e,1)),e=Is(e,this.camera.id,this.renderer.contextNode.id,this.renderer.contextNode.version),e}getCacheKey(){return this.getMaterialCacheKey()+this.getDynamicCacheKey()}dispose(){this.material.removeEventListener("dispose",this.onMaterialDispose),this.geometry.removeEventListener("dispose",this.onGeometryDispose),this.onDispose()}}const Jf=[];class ey{constructor(e,t,r,s,i,n){this.renderer=e,this.nodes=t,this.geometries=r,this.pipelines=s,this.bindings=i,this.info=n,this.chainMaps={}}get(e,t,r,s,i,n,a,o){const u=this.getChainMap(o);Jf[0]=e,Jf[1]=t,Jf[2]=n,Jf[3]=i;let l=u.get(Jf);return void 0===l?(l=this.createRenderObject(this.nodes,this.geometries,this.renderer,e,t,r,s,i,n,a,o),u.set(Jf,l)):(l.updateClipping(a),l.needsGeometryUpdate&&l.setGeometry(e.geometry),(l.version!==t.version||l.needsUpdate)&&(l.initialCacheKey!==l.getCacheKey()?(l.dispose(),l=this.get(e,t,r,s,i,n,a,o)):l.version=t.version)),Jf.length=0,l}getChainMap(e="default"){return this.chainMaps[e]||(this.chainMaps[e]=new Yf)}dispose(){this.chainMaps={}}createRenderObject(e,t,r,s,i,n,a,o,u,l,d){const c=this.getChainMap(d),h=new Zf(e,t,r,s,i,n,a,o,u,l);return h.onDispose=()=>{this.pipelines.delete(h),this.bindings.deleteForRender(h),this.nodes.delete(h),c.delete(h.getChainArray())},h}}class ty{constructor(){this.data=new WeakMap}get(e){let t=this.data.get(e);return void 0===t&&(t={},this.data.set(e,t)),t}delete(e){let t=null;return this.data.has(e)&&(t=this.data.get(e),this.data.delete(e)),t}has(e){return this.data.has(e)}dispose(){this.data=new WeakMap}}const ry=1,sy=2,iy=3,ny=4,ay=16;class oy extends ty{constructor(e){super(),this.backend=e}delete(e){const t=super.delete(e);return null!==t&&this.backend.destroyAttribute(e),t}update(e,t){const r=this.get(e);if(void 0===r.version)t===ry?this.backend.createAttribute(e):t===sy?this.backend.createIndexAttribute(e):t===iy?this.backend.createStorageAttribute(e):t===ny&&this.backend.createIndirectStorageAttribute(e),r.version=this._getBufferAttribute(e).version;else{const t=this._getBufferAttribute(e);(r.version{this.info.memory.geometries--;const s=t.index,i=e.getAttributes();null!==s&&this.attributes.delete(s);for(const e of i)this.attributes.delete(e);const n=this.wireframes.get(t);void 0!==n&&this.attributes.delete(n),t.removeEventListener("dispose",r),this._geometryDisposeListeners.delete(t)};t.addEventListener("dispose",r),this._geometryDisposeListeners.set(t,r)}updateAttributes(e){const t=e.getAttributes();for(const e of t)e.isStorageBufferAttribute||e.isStorageInstancedBufferAttribute?this.updateAttribute(e,iy):this.updateAttribute(e,ry);const r=this.getIndex(e);null!==r&&this.updateAttribute(r,sy);const s=e.geometry.indirect;null!==s&&this.updateAttribute(s,ny)}updateAttribute(e,t){const r=this.info.render.calls;e.isInterleavedBufferAttribute?void 0===this.attributeCall.get(e)?(this.attributes.update(e,t),this.attributeCall.set(e,r)):this.attributeCall.get(e.data)!==r&&(this.attributes.update(e,t),this.attributeCall.set(e.data,r),this.attributeCall.set(e,r)):this.attributeCall.get(e)!==r&&(this.attributes.update(e,t),this.attributeCall.set(e,r))}getIndirect(e){return e.geometry.indirect}getIndirectOffset(e){return e.geometry.indirectOffset}getIndex(e){const{geometry:t,material:r}=e;let s=t.index;if(!0===r.wireframe){const e=this.wireframes;let r=e.get(t);void 0===r?(r=ly(t),e.set(t,r)):r.version!==uy(t)&&(this.attributes.delete(r),r=ly(t),e.set(t,r)),s=r}return s}dispose(){for(const[e,t]of this._geometryDisposeListeners.entries())e.removeEventListener("dispose",t);this._geometryDisposeListeners.clear()}}class cy{constructor(){this.autoReset=!0,this.frame=0,this.calls=0,this.render={calls:0,frameCalls:0,drawCalls:0,triangles:0,points:0,lines:0,timestamp:0},this.compute={calls:0,frameCalls:0,timestamp:0},this.memory={geometries:0,textures:0}}update(e,t,r){this.render.drawCalls++,e.isMesh||e.isSprite?this.render.triangles+=r*(t/3):e.isPoints?this.render.points+=r*t:e.isLineSegments?this.render.lines+=r*(t/2):e.isLine?this.render.lines+=r*(t-1):o("WebGPUInfo: Unknown object type.")}reset(){this.render.drawCalls=0,this.render.frameCalls=0,this.compute.frameCalls=0,this.render.triangles=0,this.render.points=0,this.render.lines=0}dispose(){this.reset(),this.calls=0,this.render.calls=0,this.compute.calls=0,this.render.timestamp=0,this.compute.timestamp=0,this.memory.geometries=0,this.memory.textures=0}}class hy{constructor(e){this.cacheKey=e,this.usedTimes=0}}class py extends hy{constructor(e,t,r){super(e),this.vertexProgram=t,this.fragmentProgram=r}}class gy extends hy{constructor(e,t){super(e),this.computeProgram=t,this.isComputePipeline=!0}}let my=0;class fy{constructor(e,t,r,s=null,i=null){this.id=my++,this.code=e,this.stage=t,this.name=r,this.transforms=s,this.attributes=i,this.usedTimes=0}}class yy extends ty{constructor(e,t){super(),this.backend=e,this.nodes=t,this.bindings=null,this.caches=new Map,this.programs={vertex:new Map,fragment:new Map,compute:new Map}}getForCompute(e,t){const{backend:r}=this,s=this.get(e);if(this._needsComputeUpdate(e)){const i=s.pipeline;i&&(i.usedTimes--,i.computeProgram.usedTimes--);const n=this.nodes.getForCompute(e);let a=this.programs.compute.get(n.computeShader);void 0===a&&(i&&0===i.computeProgram.usedTimes&&this._releaseProgram(i.computeProgram),a=new fy(n.computeShader,"compute",e.name,n.transforms,n.nodeAttributes),this.programs.compute.set(n.computeShader,a),r.createProgram(a));const o=this._getComputeCacheKey(e,a);let u=this.caches.get(o);void 0===u&&(i&&0===i.usedTimes&&this._releasePipeline(i),u=this._getComputePipeline(e,a,o,t)),u.usedTimes++,a.usedTimes++,s.version=e.version,s.pipeline=u}return s.pipeline}getForRender(e,t=null){const{backend:r}=this,s=this.get(e);if(this._needsRenderUpdate(e)){const i=s.pipeline;i&&(i.usedTimes--,i.vertexProgram.usedTimes--,i.fragmentProgram.usedTimes--);const n=e.getNodeBuilderState(),a=e.material?e.material.name:"";let o=this.programs.vertex.get(n.vertexShader);void 0===o&&(i&&0===i.vertexProgram.usedTimes&&this._releaseProgram(i.vertexProgram),o=new fy(n.vertexShader,"vertex",a),this.programs.vertex.set(n.vertexShader,o),r.createProgram(o));let u=this.programs.fragment.get(n.fragmentShader);void 0===u&&(i&&0===i.fragmentProgram.usedTimes&&this._releaseProgram(i.fragmentProgram),u=new fy(n.fragmentShader,"fragment",a),this.programs.fragment.set(n.fragmentShader,u),r.createProgram(u));const l=this._getRenderCacheKey(e,o,u);let d=this.caches.get(l);void 0===d?(i&&0===i.usedTimes&&this._releasePipeline(i),d=this._getRenderPipeline(e,o,u,l,t)):e.pipeline=d,d.usedTimes++,o.usedTimes++,u.usedTimes++,s.pipeline=d}return s.pipeline}delete(e){const t=this.get(e).pipeline;return t&&(t.usedTimes--,0===t.usedTimes&&this._releasePipeline(t),t.isComputePipeline?(t.computeProgram.usedTimes--,0===t.computeProgram.usedTimes&&this._releaseProgram(t.computeProgram)):(t.fragmentProgram.usedTimes--,t.vertexProgram.usedTimes--,0===t.vertexProgram.usedTimes&&this._releaseProgram(t.vertexProgram),0===t.fragmentProgram.usedTimes&&this._releaseProgram(t.fragmentProgram))),super.delete(e)}dispose(){super.dispose(),this.caches=new Map,this.programs={vertex:new Map,fragment:new Map,compute:new Map}}updateForRender(e){this.getForRender(e)}_getComputePipeline(e,t,r,s){r=r||this._getComputeCacheKey(e,t);let i=this.caches.get(r);return void 0===i&&(i=new gy(r,t),this.caches.set(r,i),this.backend.createComputePipeline(i,s)),i}_getRenderPipeline(e,t,r,s,i){s=s||this._getRenderCacheKey(e,t,r);let n=this.caches.get(s);return void 0===n&&(n=new py(s,t,r),this.caches.set(s,n),e.pipeline=n,this.backend.createRenderPipeline(e,i)),n}_getComputeCacheKey(e,t){return e.id+","+t.id}_getRenderCacheKey(e,t,r){return t.id+","+r.id+","+this.backend.getRenderCacheKey(e)}_releasePipeline(e){this.caches.delete(e.cacheKey)}_releaseProgram(e){const t=e.code,r=e.stage;this.programs[r].delete(t)}_needsComputeUpdate(e){const t=this.get(e);return void 0===t.pipeline||t.version!==e.version}_needsRenderUpdate(e){return void 0===this.get(e).pipeline||this.backend.needsRenderUpdate(e)}}class by extends ty{constructor(e,t,r,s,i,n){super(),this.backend=e,this.textures=r,this.pipelines=i,this.attributes=s,this.nodes=t,this.info=n,this.pipelines.bindings=this}getForRender(e){const t=e.getBindings();for(const e of t){const r=this.get(e);void 0===r.bindGroup&&(this._init(e),this.backend.createBindings(e,t,0),r.bindGroup=e)}return t}getForCompute(e){const t=this.nodes.getForCompute(e).bindings;for(const e of t){const r=this.get(e);void 0===r.bindGroup&&(this._init(e),this.backend.createBindings(e,t,0),r.bindGroup=e)}return t}updateForCompute(e){this._updateBindings(this.getForCompute(e))}updateForRender(e){this._updateBindings(this.getForRender(e))}deleteForCompute(e){const t=this.nodes.getForCompute(e).bindings;for(const e of t)this.delete(e)}deleteForRender(e){const t=e.getBindings();for(const e of t)this.delete(e)}_updateBindings(e){for(const t of e)this._update(t,e)}_init(e){for(const t of e.bindings)if(t.isSampledTexture)this.textures.updateTexture(t.texture);else if(t.isSampler)this.textures.updateSampler(t.texture);else if(t.isStorageBuffer){const e=t.attribute,r=e.isIndirectStorageBufferAttribute?ny:iy;this.attributes.update(e,r)}}_update(e,t){const{backend:r}=this;let s=!1,i=!0,n=0,a=0;for(const t of e.bindings){if(!1!==this.nodes.updateGroup(t)){if(t.isStorageBuffer){const e=t.attribute,r=e.isIndirectStorageBufferAttribute?ny:iy;this.attributes.update(e,r)}if(t.isUniformBuffer){t.update()&&r.updateBinding(t)}else if(t.isSampledTexture){const e=t.update(),o=t.texture,u=this.textures.get(o);e&&(this.textures.updateTexture(o),t.generation!==u.generation&&(t.generation=u.generation,s=!0,i=!1));if(void 0!==r.get(o).externalTexture||u.isDefaultTexture?i=!1:(n=10*n+o.id,a+=o.version),!0===o.isStorageTexture&&!0===o.mipmapsAutoUpdate){const e=this.get(o);!0===t.store?e.needsMipmap=!0:this.textures.needsMipmaps(o)&&!0===e.needsMipmap&&(this.backend.generateMipmaps(o),e.needsMipmap=!1)}}else if(t.isSampler){if(t.update()){const e=this.textures.updateSampler(t.texture);t.samplerKey!==e&&(t.samplerKey=e,s=!0,i=!1)}}}}!0===s&&this.backend.updateBindings(e,t,i?n:0,a)}}function xy(e,t){return e.groupOrder!==t.groupOrder?e.groupOrder-t.groupOrder:e.renderOrder!==t.renderOrder?e.renderOrder-t.renderOrder:e.z!==t.z?e.z-t.z:e.id-t.id}function Ty(e,t){return e.groupOrder!==t.groupOrder?e.groupOrder-t.groupOrder:e.renderOrder!==t.renderOrder?e.renderOrder-t.renderOrder:e.z!==t.z?t.z-e.z:e.id-t.id}function _y(e){return(e.transmission>0||e.transmissionNode&&e.transmissionNode.isNode)&&e.side===C&&!1===e.forceSinglePass}class vy{constructor(e,t,r){this.renderItems=[],this.renderItemsIndex=0,this.opaque=[],this.transparentDoublePass=[],this.transparent=[],this.bundles=[],this.lightsNode=e.getNode(t,r),this.lightsArray=[],this.scene=t,this.camera=r,this.occlusionQueryCount=0}begin(){return this.renderItemsIndex=0,this.opaque.length=0,this.transparentDoublePass.length=0,this.transparent.length=0,this.bundles.length=0,this.lightsArray.length=0,this.occlusionQueryCount=0,this}getNextRenderItem(e,t,r,s,i,n,a){let o=this.renderItems[this.renderItemsIndex];return void 0===o?(o={id:e.id,object:e,geometry:t,material:r,groupOrder:s,renderOrder:e.renderOrder,z:i,group:n,clippingContext:a},this.renderItems[this.renderItemsIndex]=o):(o.id=e.id,o.object=e,o.geometry=t,o.material=r,o.groupOrder=s,o.renderOrder=e.renderOrder,o.z=i,o.group=n,o.clippingContext=a),this.renderItemsIndex++,o}push(e,t,r,s,i,n,a){const o=this.getNextRenderItem(e,t,r,s,i,n,a);!0===e.occlusionTest&&this.occlusionQueryCount++,!0===r.transparent||r.transmission>0||r.transmissionNode&&r.transmissionNode.isNode||r.backdropNode&&r.backdropNode.isNode?(_y(r)&&this.transparentDoublePass.push(o),this.transparent.push(o)):this.opaque.push(o)}unshift(e,t,r,s,i,n,a){const o=this.getNextRenderItem(e,t,r,s,i,n,a);!0===r.transparent||r.transmission>0||r.transmissionNode&&r.transmissionNode.isNode||r.backdropNode&&r.backdropNode.isNode?(_y(r)&&this.transparentDoublePass.unshift(o),this.transparent.unshift(o)):this.opaque.unshift(o)}pushBundle(e){this.bundles.push(e)}pushLight(e){this.lightsArray.push(e)}sort(e,t){this.opaque.length>1&&this.opaque.sort(e||xy),this.transparentDoublePass.length>1&&this.transparentDoublePass.sort(t||Ty),this.transparent.length>1&&this.transparent.sort(t||Ty)}finish(){this.lightsNode.setLights(this.lightsArray);for(let e=this.renderItemsIndex,t=this.renderItems.length;e>t,u=a.height>>t;let l=e.depthTexture||i[t];const d=!0===e.depthBuffer||!0===e.stencilBuffer;let c=!1;void 0===l&&d&&(l=new X,l.format=e.stencilBuffer?Ue:Oe,l.type=e.stencilBuffer?Ve:S,l.image.width=o,l.image.height=u,l.image.depth=a.depth,l.renderTarget=e,l.isArrayTexture=!0===e.multiview&&a.depth>1,i[t]=l),r.width===a.width&&a.height===r.height||(c=!0,l&&(l.needsUpdate=!0,l.image.width=o,l.image.height=u,l.image.depth=l.isArrayTexture?l.image.depth:1)),r.width=a.width,r.height=a.height,r.textures=n,r.depthTexture=l||null,r.depth=e.depthBuffer,r.stencil=e.stencilBuffer,r.renderTarget=e,r.sampleCount!==s&&(c=!0,l&&(l.needsUpdate=!0),r.sampleCount=s);const h={sampleCount:s};if(!0!==e.isXRRenderTarget){for(let e=0;e{this._destroyRenderTarget(e)},e.addEventListener("dispose",r.onDispose))}updateTexture(e,t={}){const r=this.get(e);if(!0===r.initialized&&r.version===e.version)return;const s=e.isRenderTargetTexture||e.isDepthTexture||e.isFramebufferTexture,i=this.backend;if(s&&!0===r.initialized&&i.destroyTexture(e),e.isFramebufferTexture){const t=this.renderer.getRenderTarget();e.type=t?t.texture.type:ke}const{width:n,height:a,depth:o}=this.getSize(e);if(t.width=n,t.height=a,t.depth=o,t.needsMipmaps=this.needsMipmaps(e),t.levels=t.needsMipmaps?this.getMipLevels(e,n,a):1,e.isCubeTexture&&e.mipmaps.length>0&&t.levels++,s||!0===e.isStorageTexture||!0===e.isExternalTexture)i.createTexture(e,t),r.generation=e.version;else if(e.version>0){const s=e.image;if(void 0===s)d("Renderer: Texture marked for update but image is undefined.");else if(!1===s.complete)d("Renderer: Texture marked for update but image is incomplete.");else{if(e.images){const r=[];for(const t of e.images)r.push(t);t.images=r}else t.image=s;void 0!==r.isDefaultTexture&&!0!==r.isDefaultTexture||(i.createTexture(e,t),r.isDefaultTexture=!1,r.generation=e.version),!0===e.source.dataReady&&i.updateTexture(e,t);const n=!0===e.isStorageTexture&&!1===e.mipmapsAutoUpdate;t.needsMipmaps&&0===e.mipmaps.length&&!n&&i.generateMipmaps(e),e.onUpdate&&e.onUpdate(e)}}else i.createDefaultTexture(e),r.isDefaultTexture=!0,r.generation=e.version;!0!==r.initialized&&(r.initialized=!0,r.generation=e.version,this.info.memory.textures++,e.isVideoTexture&&p.getTransfer(e.colorSpace)!==g&&d("WebGPURenderer: Video textures must use a color space with a sRGB transfer function, e.g. SRGBColorSpace."),r.onDispose=()=>{this._destroyTexture(e)},e.addEventListener("dispose",r.onDispose)),r.version=e.version}updateSampler(e){return this.backend.updateSampler(e)}getSize(e,t=Ly){let r=e.images?e.images[0]:e.image;return r?(void 0!==r.image&&(r=r.image),"undefined"!=typeof HTMLVideoElement&&r instanceof HTMLVideoElement?(t.width=r.videoWidth||1,t.height=r.videoHeight||1,t.depth=1):"undefined"!=typeof VideoFrame&&r instanceof VideoFrame?(t.width=r.displayWidth||1,t.height=r.displayHeight||1,t.depth=1):(t.width=r.width||1,t.height=r.height||1,t.depth=e.isCubeTexture?6:r.depth||1)):t.width=t.height=t.depth=1,t}getMipLevels(e,t,r){let s;return s=e.mipmaps.length>0?e.mipmaps.length:!0===e.isCompressedTexture?1:Math.floor(Math.log2(Math.max(t,r)))+1,s}needsMipmaps(e){return!0===e.generateMipmaps||e.mipmaps.length>0}_destroyRenderTarget(e){if(!0===this.has(e)){const t=this.get(e),r=t.textures,s=t.depthTexture;e.removeEventListener("dispose",t.onDispose);for(let e=0;e=2)for(let r=0;r"string"==typeof t?{name:e,type:t,atomic:!1}:{name:e,type:t.type,atomic:t.atomic||!1})),this.name=t,this.isStructLayoutNode=!0}getLength(){const e=Float32Array.BYTES_PER_ELEMENT;let t=1,r=0;for(const s of this.membersLayout){const i=s.type,n=zs(i),a=$s(i)/e;t=Math.max(t,a);const o=r%t%a;0!==o&&(r+=a-o),r+=n}return Math.ceil(r/t)*t}getMemberType(e,t){const r=this.membersLayout.find(e=>e.name===t);return r?r.type:"void"}getNodeType(e){return e.getStructTypeFromNode(this,this.membersLayout,this.name).name}setup(e){e.getStructTypeFromNode(this,this.membersLayout,this.name),e.addInclude(this)}generate(e){return this.getNodeType(e)}}class Vy extends ai{static get type(){return"StructNode"}constructor(e,t){super("vec3"),this.structTypeNode=e,this.values=t,this.isStructNode=!0}getNodeType(e){return this.structTypeNode.getNodeType(e)}getMemberType(e,t){return this.structTypeNode.getMemberType(e,t)}generate(e){const t=e.getVarFromNode(this),r=t.type,s=e.getPropertyName(t);return e.addLineFlowCode(`${s} = ${e.generateStruct(r,this.structTypeNode.membersLayout,this.values)}`,this),t.name}}class ky extends ai{static get type(){return"OutputStructNode"}constructor(...e){super(),this.members=e,this.isOutputStructNode=!0}getNodeType(e){const t=e.getNodeProperties(this);if(void 0===t.membersLayout){const r=this.members,s=[];for(let t=0;tnew Hy(e,"uint","float"),Xy={};class Ky extends eo{static get type(){return"BitcountNode"}constructor(e,t){super(e,t),this.isBitcountNode=!0}_resolveElementType(e,t,r){"int"===r?t.assign(jy(e,"uint")):t.assign(e)}_returnDataNode(e){switch(e){case"uint":return gn;case"int":return pn;case"uvec2":return bn;case"uvec3":return vn;case"uvec4":return An;case"ivec2":return yn;case"ivec3":return _n;case"ivec4":return Rn}}_createTrailingZerosBaseLayout(e,t){const r=this._returnDataNode(t);return an(([e])=>{const s=gn(0);this._resolveElementType(e,s,t);const i=hn(s.bitAnd(Bo(s))),n=qy(i).shiftRight(23).sub(127);return r(n)}).setLayout({name:e,type:t,inputs:[{name:"value",type:t}]})}_createLeadingZerosBaseLayout(e,t){const r=this._returnDataNode(t);return an(([e])=>{ln(e.equal(gn(0)),()=>gn(32));const s=gn(0),i=gn(0);return this._resolveElementType(e,s,t),ln(s.shiftRight(16).equal(0),()=>{i.addAssign(16),s.shiftLeftAssign(16)}),ln(s.shiftRight(24).equal(0),()=>{i.addAssign(8),s.shiftLeftAssign(8)}),ln(s.shiftRight(28).equal(0),()=>{i.addAssign(4),s.shiftLeftAssign(4)}),ln(s.shiftRight(30).equal(0),()=>{i.addAssign(2),s.shiftLeftAssign(2)}),ln(s.shiftRight(31).equal(0),()=>{i.addAssign(1)}),r(i)}).setLayout({name:e,type:t,inputs:[{name:"value",type:t}]})}_createOneBitsBaseLayout(e,t){const r=this._returnDataNode(t);return an(([e])=>{const s=gn(0);this._resolveElementType(e,s,t),s.assign(s.sub(s.shiftRight(gn(1)).bitAnd(gn(1431655765)))),s.assign(s.bitAnd(gn(858993459)).add(s.shiftRight(gn(2)).bitAnd(gn(858993459))));const i=s.add(s.shiftRight(gn(4))).bitAnd(gn(252645135)).mul(gn(16843009)).shiftRight(gn(24));return r(i)}).setLayout({name:e,type:t,inputs:[{name:"value",type:t}]})}_createMainLayout(e,t,r,s){const i=this._returnDataNode(t);return an(([e])=>{if(1===r)return i(s(e));{const t=i(0),n=["x","y","z","w"];for(let i=0;id(r))()}}Ky.COUNT_TRAILING_ZEROS="countTrailingZeros",Ky.COUNT_LEADING_ZEROS="countLeadingZeros",Ky.COUNT_ONE_BITS="countOneBits";const Yy=rn(Ky,Ky.COUNT_TRAILING_ZEROS).setParameterLength(1),Qy=rn(Ky,Ky.COUNT_LEADING_ZEROS).setParameterLength(1),Zy=rn(Ky,Ky.COUNT_ONE_BITS).setParameterLength(1),Jy=an(([e])=>{const t=e.toUint().mul(747796405).add(2891336453),r=t.shiftRight(t.shiftRight(28).add(4)).bitXor(t).mul(277803737);return r.shiftRight(22).bitXor(r).toFloat().mul(1/2**32)}),eb=(e,t)=>Qo(Ma(4,e.mul(Ca(1,e))),t);class tb extends li{static get type(){return"PackFloatNode"}constructor(e,t){super(),this.vectorNode=t,this.encoding=e,this.isPackFloatNode=!0}getNodeType(){return"uint"}generate(e){const t=this.vectorNode.getNodeType(e);return`${e.getFloatPackingMethod(this.encoding)}(${this.vectorNode.build(e,t)})`}}const rb=rn(tb,"snorm").setParameterLength(1),sb=rn(tb,"unorm").setParameterLength(1),ib=rn(tb,"float16").setParameterLength(1);class nb extends li{static get type(){return"UnpackFloatNode"}constructor(e,t){super(),this.uintNode=t,this.encoding=e,this.isUnpackFloatNode=!0}getNodeType(){return"vec2"}generate(e){const t=this.uintNode.getNodeType(e);return`${e.getFloatUnpackingMethod(this.encoding)}(${this.uintNode.build(e,t)})`}}const ab=rn(nb,"snorm").setParameterLength(1),ob=rn(nb,"unorm").setParameterLength(1),ub=rn(nb,"float16").setParameterLength(1),lb=an(([e])=>e.fract().sub(.5).abs()).setLayout({name:"tri",type:"float",inputs:[{name:"x",type:"float"}]}),db=an(([e])=>Tn(lb(e.z.add(lb(e.y.mul(1)))),lb(e.z.add(lb(e.x.mul(1)))),lb(e.y.add(lb(e.x.mul(1)))))).setLayout({name:"tri3",type:"vec3",inputs:[{name:"p",type:"vec3"}]}),cb=an(([e,t,r])=>{const s=Tn(e).toVar(),i=hn(1.4).toVar(),n=hn(0).toVar(),a=Tn(s).toVar();return op({start:hn(0),end:hn(3),type:"float",condition:"<="},()=>{const e=Tn(db(a.mul(2))).toVar();s.addAssign(e.add(r.mul(hn(.1).mul(t)))),a.mulAssign(1.8),i.mulAssign(1.5),s.mulAssign(1.2);const o=hn(lb(s.z.add(lb(s.x.add(lb(s.y)))))).toVar();n.addAssign(o.div(i)),a.addAssign(.14)}),n}).setLayout({name:"triNoise3D",type:"float",inputs:[{name:"position",type:"vec3"},{name:"speed",type:"float"},{name:"time",type:"float"}]});class hb extends ai{static get type(){return"FunctionOverloadingNode"}constructor(e=[],...t){super(),this.functionNodes=e,this.parametersNodes=t,this._candidateFn=null,this.global=!0}getNodeType(e){return this.getCandidateFn(e).shaderNode.layout.type}getCandidateFn(e){const t=this.parametersNodes;let r=this._candidateFn;if(null===r){let s=null,i=-1;for(const r of this.functionNodes){const n=r.shaderNode.layout;if(null===n)throw new Error("FunctionOverloadingNode: FunctionNode must be a layout.");const a=n.inputs;if(t.length===a.length){let n=0;for(let r=0;ri&&(s=r,i=n)}}this._candidateFn=r=s}return r}setup(e){return this.getCandidateFn(e)(...this.parametersNodes)}}const pb=en(hb),gb=e=>(...t)=>pb(e,...t),mb=xa(0).setGroup(fa).onRenderUpdate(e=>e.time),fb=xa(0).setGroup(fa).onRenderUpdate(e=>e.deltaTime),yb=xa(0,"uint").setGroup(fa).onRenderUpdate(e=>e.frameId);const bb=an(([e,t,r=fn(.5)])=>Ff(e.sub(r),t).add(r)),xb=an(([e,t,r=fn(.5)])=>{const s=e.sub(r),i=s.dot(s),n=i.mul(i).mul(t);return e.add(s.mul(n))}),Tb=an(({position:e=null,horizontal:t=!0,vertical:r=!1})=>{let s;null!==e?(s=xd.toVar(),s[3][0]=e.x,s[3][1]=e.y,s[3][2]=e.z):s=xd;const i=id.mul(s);return qi(t)&&(i[0][0]=xd[0].length(),i[0][1]=0,i[0][2]=0),qi(r)&&(i[1][0]=0,i[1][1]=xd[1].length(),i[1][2]=0),i[2][0]=0,i[2][1]=0,i[2][2]=1,rd.mul(i).mul(Bd)}),_b=an(([e=null])=>{const t=Pp();return Pp(Rp(e)).sub(t).lessThan(0).select(Hl,e)});class vb extends ai{static get type(){return"SpriteSheetUVNode"}constructor(e,t=Rl(),r=hn(0)){super("vec2"),this.countNode=e,this.uvNode=t,this.frameNode=r}setup(){const{frameNode:e,uvNode:t,countNode:r}=this,{width:s,height:i}=r,n=e.mod(s.mul(i)).floor(),a=n.mod(s),o=i.sub(n.add(1).div(s).ceil()),u=r.reciprocal(),l=fn(a,o);return t.add(l).mul(u)}}const Nb=en(vb).setParameterLength(3),Sb=an(([e,t=null,r=null,s=hn(1),i=Bd,n=zd])=>{let a=n.abs().normalize();a=a.div(a.dot(Tn(1)));const o=i.yz.mul(s),u=i.zx.mul(s),l=i.xy.mul(s),d=e.value,c=null!==t?t.value:d,h=null!==r?r.value:d,p=Pl(d,o).mul(a.x),g=Pl(c,u).mul(a.y),m=Pl(h,l).mul(a.z);return wa(p,g,m)}),Rb=new Ge,Ab=new r,Eb=new r,wb=new r,Cb=new a,Mb=new r(0,0,-1),Bb=new s,Lb=new r,Pb=new r,Fb=new s,Db=new t,Ib=new _e,Ub=Hl.flipX();Ib.depthTexture=new X(1,1);let Ob=!1;class Vb extends Bl{static get type(){return"ReflectorNode"}constructor(e={}){super(e.defaultTexture||Ib.texture,Ub),this._reflectorBaseNode=e.reflector||new kb(this,e),this._depthNode=null,this.setUpdateMatrix(!1)}get reflector(){return this._reflectorBaseNode}get target(){return this._reflectorBaseNode.target}getDepthNode(){if(null===this._depthNode){if(!0!==this._reflectorBaseNode.depth)throw new Error("THREE.ReflectorNode: Depth node can only be requested when the reflector is created with { depth: true }. ");this._depthNode=Yi(new Vb({defaultTexture:Ib.depthTexture,reflector:this._reflectorBaseNode}))}return this._depthNode}setup(e){return e.object.isQuadMesh||this._reflectorBaseNode.build(e),super.setup(e)}clone(){const e=new this.constructor(this.reflectorNode);return e.uvNode=this.uvNode,e.levelNode=this.levelNode,e.biasNode=this.biasNode,e.sampler=this.sampler,e.depthNode=this.depthNode,e.compareNode=this.compareNode,e.gradNode=this.gradNode,e.offsetNode=this.offsetNode,e._reflectorBaseNode=this._reflectorBaseNode,e}dispose(){super.dispose(),this._reflectorBaseNode.dispose()}}class kb extends ai{static get type(){return"ReflectorBaseNode"}constructor(e,t={}){super();const{target:r=new ze,resolutionScale:s=1,generateMipmaps:i=!1,bounces:n=!0,depth:a=!1,samples:o=0}=t;this.textureNode=e,this.target=r,this.resolutionScale=s,void 0!==t.resolution&&(v('ReflectorNode: The "resolution" parameter has been renamed to "resolutionScale".'),this.resolutionScale=t.resolution),this.generateMipmaps=i,this.bounces=n,this.depth=a,this.samples=o,this.updateBeforeType=n?Qs.RENDER:Qs.FRAME,this.virtualCameras=new WeakMap,this.renderTargets=new Map,this.forceUpdate=!1,this.hasOutput=!1}_updateResolution(e,t){const r=this.resolutionScale;t.getDrawingBufferSize(Db),e.setSize(Math.round(Db.width*r),Math.round(Db.height*r))}setup(e){return this._updateResolution(Ib,e.renderer),super.setup(e)}dispose(){super.dispose();for(const e of this.renderTargets.values())e.dispose()}getVirtualCamera(e){let t=this.virtualCameras.get(e);return void 0===t&&(t=e.clone(),this.virtualCameras.set(e,t)),t}getRenderTarget(e){let t=this.renderTargets.get(e);return void 0===t&&(t=new _e(0,0,{type:fe,samples:this.samples}),!0===this.generateMipmaps&&(t.texture.minFilter=$e,t.texture.generateMipmaps=!0),!0===this.depth&&(t.depthTexture=new X),this.renderTargets.set(e,t)),t}updateBefore(e){if(!1===this.bounces&&Ob)return!1;Ob=!0;const{scene:t,camera:r,renderer:s,material:i}=e,{target:n}=this,a=this.getVirtualCamera(r),o=this.getRenderTarget(a);s.getDrawingBufferSize(Db),this._updateResolution(o,s),Eb.setFromMatrixPosition(n.matrixWorld),wb.setFromMatrixPosition(r.matrixWorld),Cb.extractRotation(n.matrixWorld),Ab.set(0,0,1),Ab.applyMatrix4(Cb),Lb.subVectors(Eb,wb);let u=!1;if(!0===Lb.dot(Ab)>0&&!1===this.forceUpdate){if(!1===this.hasOutput)return void(Ob=!1);u=!0}Lb.reflect(Ab).negate(),Lb.add(Eb),Cb.extractRotation(r.matrixWorld),Mb.set(0,0,-1),Mb.applyMatrix4(Cb),Mb.add(wb),Pb.subVectors(Eb,Mb),Pb.reflect(Ab).negate(),Pb.add(Eb),a.coordinateSystem=r.coordinateSystem,a.position.copy(Lb),a.up.set(0,1,0),a.up.applyMatrix4(Cb),a.up.reflect(Ab),a.lookAt(Pb),a.near=r.near,a.far=r.far,a.updateMatrixWorld(),a.projectionMatrix.copy(r.projectionMatrix),Rb.setFromNormalAndCoplanarPoint(Ab,Eb),Rb.applyMatrix4(a.matrixWorldInverse),Bb.set(Rb.normal.x,Rb.normal.y,Rb.normal.z,Rb.constant);const l=a.projectionMatrix;Fb.x=(Math.sign(Bb.x)+l.elements[8])/l.elements[0],Fb.y=(Math.sign(Bb.y)+l.elements[9])/l.elements[5],Fb.z=-1,Fb.w=(1+l.elements[10])/l.elements[14],Bb.multiplyScalar(1/Bb.dot(Fb));l.elements[2]=Bb.x,l.elements[6]=Bb.y,l.elements[10]=s.coordinateSystem===h?Bb.z-0:Bb.z+1-0,l.elements[14]=Bb.w,this.textureNode.value=o.texture,!0===this.depth&&(this.textureNode.getDepthNode().value=o.depthTexture),i.visible=!1;const d=s.getRenderTarget(),c=s.getMRT(),p=s.autoClear;s.setMRT(null),s.setRenderTarget(o),s.autoClear=!0;const g=t.name;t.name=(t.name||"Scene")+" [ Reflector ]",u?(s.clear(),this.hasOutput=!1):(s.render(t,a),this.hasOutput=!0),t.name=g,s.setMRT(c),s.setRenderTarget(d),s.autoClear=p,i.visible=!0,Ob=!1,this.forceUpdate=!1}get resolution(){return v('ReflectorNode: The "resolution" property has been renamed to "resolutionScale".'),this.resolutionScale}set resolution(e){v('ReflectorNode: The "resolution" property has been renamed to "resolutionScale".'),this.resolutionScale=e}}const Gb=new xe(-1,1,1,-1,0,1);class zb extends be{constructor(e=!1){super();const t=!1===e?[0,-1,0,1,2,1]:[0,2,0,0,2,0];this.setAttribute("position",new We([-1,3,0,-1,-1,0,3,-1,0],3)),this.setAttribute("uv",new We(t,2))}}const $b=new zb;class Wb extends se{constructor(e=null){super($b,e),this.camera=Gb,this.isQuadMesh=!0}async renderAsync(e){v('QuadMesh: "renderAsync()" has been deprecated. Use "render()" and "await renderer.init();" when creating the renderer.'),await e.init(),e.render(this,Gb)}render(e){e.render(this,Gb)}}const Hb=new t;class jb extends Bl{static get type(){return"RTTNode"}constructor(e,t=null,r=null,s={type:fe}){const i=new _e(t,r,s);super(i.texture,Rl()),this.isRTTNode=!0,this.node=e,this.width=t,this.height=r,this.pixelRatio=1,this.renderTarget=i,this.textureNeedsUpdate=!0,this.autoUpdate=!0,this._rttNode=null,this._quadMesh=new Wb(new Xp),this.updateBeforeType=Qs.RENDER}get autoResize(){return null===this.width}setup(e){return this._rttNode=this.node.context(e.getSharedContext()),this._quadMesh.material.name="RTT",this._quadMesh.material.needsUpdate=!0,super.setup(e)}setSize(e,t){this.width=e,this.height=t;const r=e*this.pixelRatio,s=t*this.pixelRatio;this.renderTarget.setSize(r,s),this.textureNeedsUpdate=!0}setPixelRatio(e){this.pixelRatio=e,this.setSize(this.width,this.height)}updateBefore({renderer:e}){if(!1===this.textureNeedsUpdate&&!1===this.autoUpdate)return;if(this.textureNeedsUpdate=!1,!0===this.autoResize){const t=e.getPixelRatio(),r=e.getSize(Hb),s=Math.floor(r.width*t),i=Math.floor(r.height*t);s===this.renderTarget.width&&i===this.renderTarget.height||(this.renderTarget.setSize(s,i),this.textureNeedsUpdate=!0)}let t="RTT";this.node.name&&(t=this.node.name+" [ "+t+" ]"),this._quadMesh.material.fragmentNode=this._rttNode,this._quadMesh.name=t;const r=e.getRenderTarget();e.setRenderTarget(this.renderTarget),this._quadMesh.render(e),e.setRenderTarget(r)}clone(){const e=new Bl(this.value,this.uvNode,this.levelNode);return e.sampler=this.sampler,e.referenceNode=this,e}}const qb=(e,...t)=>Yi(new jb(Yi(e),...t)),Xb=an(([e,t,r],s)=>{let i;s.renderer.coordinateSystem===h?(e=fn(e.x,e.y.oneMinus()).mul(2).sub(1),i=Sn(Tn(e,t),1)):i=Sn(Tn(e.x,e.y.oneMinus(),t).mul(2).sub(1),1);const n=Sn(r.mul(i));return n.xyz.div(n.w)}),Kb=an(([e,t])=>{const r=t.mul(Sn(e,1)),s=r.xy.div(r.w).mul(.5).add(.5).toVar();return fn(s.x,s.y.oneMinus())}),Yb=an(([e,t,r])=>{const s=El(Fl(t)),i=yn(e.mul(s)).toVar(),n=Fl(t,i).toVar(),a=Fl(t,i.sub(yn(2,0))).toVar(),o=Fl(t,i.sub(yn(1,0))).toVar(),u=Fl(t,i.add(yn(1,0))).toVar(),l=Fl(t,i.add(yn(2,0))).toVar(),d=Fl(t,i.add(yn(0,2))).toVar(),c=Fl(t,i.add(yn(0,1))).toVar(),h=Fl(t,i.sub(yn(0,1))).toVar(),p=Fl(t,i.sub(yn(0,2))).toVar(),g=wo(Ca(hn(2).mul(o).sub(a),n)).toVar(),m=wo(Ca(hn(2).mul(u).sub(l),n)).toVar(),f=wo(Ca(hn(2).mul(c).sub(d),n)).toVar(),y=wo(Ca(hn(2).mul(h).sub(p),n)).toVar(),b=Xb(e,n,r).toVar(),x=g.lessThan(m).select(b.sub(Xb(e.sub(fn(hn(1).div(s.x),0)),o,r)),b.negate().add(Xb(e.add(fn(hn(1).div(s.x),0)),u,r))),T=f.lessThan(y).select(b.sub(Xb(e.add(fn(0,hn(1).div(s.y))),c,r)),b.negate().add(Xb(e.sub(fn(0,hn(1).div(s.y))),h,r)));return To(Yo(x,T))}),Qb=an(([e])=>_o(hn(52.9829189).mul(_o(Ko(e,fn(.06711056,.00583715)))))).setLayout({name:"interleavedGradientNoise",type:"float",inputs:[{name:"position",type:"vec2"}]}),Zb=an(([e,t,r])=>{const s=hn(2.399963229728653),i=fo(hn(e).add(.5).div(hn(t))),n=hn(e).mul(s).add(r);return fn(No(n),vo(n)).mul(i)}).setLayout({name:"vogelDiskSample",type:"vec2",inputs:[{name:"sampleIndex",type:"int"},{name:"samplesCount",type:"int"},{name:"phi",type:"float"}]});class Jb extends ai{static get type(){return"SampleNode"}constructor(e,t=null){super(),this.callback=e,this.uvNode=t,this.isSampleNode=!0}setup(){return this.sample(Rl())}sample(e){return this.callback(e)}}class ex extends ai{static get type(){return"EventNode"}constructor(e,t){super("void"),this.eventType=e,this.callback=t,e===ex.OBJECT?this.updateType=Qs.OBJECT:e===ex.MATERIAL?this.updateType=Qs.RENDER:e===ex.BEFORE_OBJECT?this.updateBeforeType=Qs.OBJECT:e===ex.BEFORE_MATERIAL&&(this.updateBeforeType=Qs.RENDER)}update(e){this.callback(e)}updateBefore(e){this.callback(e)}}ex.OBJECT="object",ex.MATERIAL="material",ex.BEFORE_OBJECT="beforeObject",ex.BEFORE_MATERIAL="beforeMaterial";const tx=(e,t)=>Yi(new ex(e,t)).toStack();class rx extends ${constructor(e,t,r=Float32Array){super(ArrayBuffer.isView(e)?e:new r(e*t),t),this.isStorageInstancedBufferAttribute=!0}}class sx extends Re{constructor(e,t,r=Float32Array){super(ArrayBuffer.isView(e)?e:new r(e*t),t),this.isStorageBufferAttribute=!0}}class ix extends ai{static get type(){return"PointUVNode"}constructor(){super("vec2"),this.isPointUVNode=!0}generate(){return"vec2( gl_PointCoord.x, 1.0 - gl_PointCoord.y )"}}const nx=tn(ix),ax=new M,ox=new a;class ux extends ai{static get type(){return"SceneNode"}constructor(e=ux.BACKGROUND_BLURRINESS,t=null){super(),this.scope=e,this.scene=t}setup(e){const t=this.scope,r=null!==this.scene?this.scene:e.scene;let s;return t===ux.BACKGROUND_BLURRINESS?s=mc("backgroundBlurriness","float",r):t===ux.BACKGROUND_INTENSITY?s=mc("backgroundIntensity","float",r):t===ux.BACKGROUND_ROTATION?s=xa("mat4").setName("backgroundRotation").setGroup(fa).onRenderUpdate(()=>{const e=r.background;return null!==e&&e.isTexture&&e.mapping!==He?(ax.copy(r.backgroundRotation),ax.x*=-1,ax.y*=-1,ax.z*=-1,ox.makeRotationFromEuler(ax)):ox.identity(),ox}):o("SceneNode: Unknown scope:",t),s}}ux.BACKGROUND_BLURRINESS="backgroundBlurriness",ux.BACKGROUND_INTENSITY="backgroundIntensity",ux.BACKGROUND_ROTATION="backgroundRotation";const lx=tn(ux,ux.BACKGROUND_BLURRINESS),dx=tn(ux,ux.BACKGROUND_INTENSITY),cx=tn(ux,ux.BACKGROUND_ROTATION);class hx extends Bl{static get type(){return"StorageTextureNode"}constructor(e,t,r=null){super(e,t),this.storeNode=r,this.mipLevel=0,this.isStorageTextureNode=!0,this.access=Js.WRITE_ONLY}getInputType(){return"storageTexture"}setup(e){super.setup(e);const t=e.getNodeProperties(this);return t.storeNode=this.storeNode,t}setAccess(e){return this.access=e,this}setMipLevel(e){return this.mipLevel=e,this}generate(e,t){let r;return r=null!==this.storeNode?this.generateStore(e):super.generate(e,t),r}toReadWrite(){return this.setAccess(Js.READ_WRITE)}toReadOnly(){return this.setAccess(Js.READ_ONLY)}toWriteOnly(){return this.setAccess(Js.WRITE_ONLY)}generateStore(e){const t=e.getNodeProperties(this),{uvNode:r,storeNode:s,depthNode:i}=t,n=super.generate(e,"property"),a=r.build(e,!0===this.value.is3DTexture?"uvec3":"uvec2"),o=s.build(e,"vec4"),u=i?i.build(e,"int"):null,l=e.generateTextureStore(e,n,a,u,o);e.addLineFlowCode(l,this)}clone(){const e=super.clone();return e.storeNode=this.storeNode,e.mipLevel=this.mipLevel,e}}const px=en(hx).setParameterLength(1,3),gx=an(({texture:e,uv:t})=>{const r=1e-4,s=Tn().toVar();return ln(t.x.lessThan(r),()=>{s.assign(Tn(1,0,0))}).ElseIf(t.y.lessThan(r),()=>{s.assign(Tn(0,1,0))}).ElseIf(t.z.lessThan(r),()=>{s.assign(Tn(0,0,1))}).ElseIf(t.x.greaterThan(.9999),()=>{s.assign(Tn(-1,0,0))}).ElseIf(t.y.greaterThan(.9999),()=>{s.assign(Tn(0,-1,0))}).ElseIf(t.z.greaterThan(.9999),()=>{s.assign(Tn(0,0,-1))}).Else(()=>{const r=.01,i=e.sample(t.add(Tn(-.01,0,0))).r.sub(e.sample(t.add(Tn(r,0,0))).r),n=e.sample(t.add(Tn(0,-.01,0))).r.sub(e.sample(t.add(Tn(0,r,0))).r),a=e.sample(t.add(Tn(0,0,-.01))).r.sub(e.sample(t.add(Tn(0,0,r))).r);s.assign(Tn(i,n,a))}),s.normalize()});class mx extends Bl{static get type(){return"Texture3DNode"}constructor(e,t=null,r=null){super(e,t,r),this.isTexture3DNode=!0}getInputType(){return"texture3D"}getDefaultUV(){return Tn(.5,.5,.5)}setUpdateMatrix(){}setupUV(e,t){const r=this.value;return!e.isFlipY()||!0!==r.isRenderTargetTexture&&!0!==r.isFramebufferTexture||(t=this.sampler?t.flipY():t.setY(pn(El(this,this.levelNode).y).sub(t.y).sub(1))),t}generateUV(e,t){return t.build(e,!0===this.sampler?"vec3":"ivec3")}generateOffset(e,t){return t.build(e,"ivec3")}normal(e){return gx({texture:this,uv:e})}}const fx=en(mx).setParameterLength(1,3);class yx extends gc{static get type(){return"UserDataNode"}constructor(e,t,r=null){super(e,t,r),this.userData=r}updateReference(e){return this.reference=null!==this.userData?this.userData:e.object.userData,this.reference}}const bx=new WeakMap;class xx extends li{static get type(){return"VelocityNode"}constructor(){super("vec2"),this.projectionMatrix=null,this.updateType=Qs.OBJECT,this.updateAfterType=Qs.OBJECT,this.previousModelWorldMatrix=xa(new a),this.previousProjectionMatrix=xa(new a).setGroup(fa),this.previousCameraViewMatrix=xa(new a)}setProjectionMatrix(e){this.projectionMatrix=e}update({frameId:e,camera:t,object:r}){const s=_x(r);this.previousModelWorldMatrix.value.copy(s);const i=Tx(t);i.frameId!==e&&(i.frameId=e,void 0===i.previousProjectionMatrix?(i.previousProjectionMatrix=new a,i.previousCameraViewMatrix=new a,i.currentProjectionMatrix=new a,i.currentCameraViewMatrix=new a,i.previousProjectionMatrix.copy(this.projectionMatrix||t.projectionMatrix),i.previousCameraViewMatrix.copy(t.matrixWorldInverse)):(i.previousProjectionMatrix.copy(i.currentProjectionMatrix),i.previousCameraViewMatrix.copy(i.currentCameraViewMatrix)),i.currentProjectionMatrix.copy(this.projectionMatrix||t.projectionMatrix),i.currentCameraViewMatrix.copy(t.matrixWorldInverse),this.previousProjectionMatrix.value.copy(i.previousProjectionMatrix),this.previousCameraViewMatrix.value.copy(i.previousCameraViewMatrix))}updateAfter({object:e}){_x(e).copy(e.matrixWorld)}setup(){const e=null===this.projectionMatrix?rd:xa(this.projectionMatrix),t=this.previousCameraViewMatrix.mul(this.previousModelWorldMatrix),r=e.mul(Ad).mul(Bd),s=this.previousProjectionMatrix.mul(t).mul(Ld),i=r.xy.div(r.w),n=s.xy.div(s.w);return Ca(i,n)}}function Tx(e){let t=bx.get(e);return void 0===t&&(t={},bx.set(e,t)),t}function _x(e,t=0){const r=Tx(e);let s=r[t];return void 0===s&&(r[t]=s=new a,r[t].copy(e.matrixWorld)),s}const vx=tn(xx),Nx=an(([e])=>Ex(e.rgb)),Sx=an(([e,t=hn(1)])=>t.mix(Ex(e.rgb),e.rgb)),Rx=an(([e,t=hn(1)])=>{const r=wa(e.r,e.g,e.b).div(3),s=e.r.max(e.g.max(e.b)),i=s.sub(r).mul(t).mul(-3);return iu(e.rgb,s,i)}),Ax=an(([e,t=hn(1)])=>{const r=Tn(.57735,.57735,.57735),s=t.cos();return Tn(e.rgb.mul(s).add(r.cross(e.rgb).mul(t.sin()).add(r.mul(Ko(r,e.rgb).mul(s.oneMinus())))))}),Ex=(e,t=Tn(p.getLuminanceCoefficients(new r)))=>Ko(e,t),wx=an(([e,t=Tn(1),s=Tn(0),i=Tn(1),n=hn(1),a=Tn(p.getLuminanceCoefficients(new r,ve))])=>{const o=e.rgb.dot(Tn(a)),u=Wo(e.rgb.mul(t).add(s),0).toVar(),l=u.pow(i).toVar();return ln(u.r.greaterThan(0),()=>{u.r.assign(l.r)}),ln(u.g.greaterThan(0),()=>{u.g.assign(l.g)}),ln(u.b.greaterThan(0),()=>{u.b.assign(l.b)}),u.assign(o.add(u.sub(o).mul(n))),Sn(u.rgb,e.a)});class Cx extends li{static get type(){return"PosterizeNode"}constructor(e,t){super(),this.sourceNode=e,this.stepsNode=t}setup(){const{sourceNode:e,stepsNode:t}=this;return e.mul(t).floor().div(t)}}const Mx=en(Cx).setParameterLength(2),Bx=new t;class Lx extends Bl{static get type(){return"PassTextureNode"}constructor(e,t){super(t),this.passNode=e,this.setUpdateMatrix(!1)}setup(e){return this.passNode.build(e),super.setup(e)}clone(){return new this.constructor(this.passNode,this.value)}}class Px extends Lx{static get type(){return"PassMultipleTextureNode"}constructor(e,t,r=!1){super(e,null),this.textureName=t,this.previousTexture=r}updateTexture(){this.value=this.previousTexture?this.passNode.getPreviousTexture(this.textureName):this.passNode.getTexture(this.textureName)}setup(e){return this.updateTexture(),super.setup(e)}clone(){const e=new this.constructor(this.passNode,this.textureName,this.previousTexture);return e.uvNode=this.uvNode,e.levelNode=this.levelNode,e.biasNode=this.biasNode,e.sampler=this.sampler,e.depthNode=this.depthNode,e.compareNode=this.compareNode,e.gradNode=this.gradNode,e.offsetNode=this.offsetNode,e}}class Fx extends li{static get type(){return"PassNode"}constructor(e,t,r,s={}){super("vec4"),this.scope=e,this.scene=t,this.camera=r,this.options=s,this._pixelRatio=1,this._width=1,this._height=1;const i=new X;i.isRenderTargetTexture=!0,i.name="depth";const n=new _e(this._width*this._pixelRatio,this._height*this._pixelRatio,{type:fe,...s});n.texture.name="output",n.depthTexture=i,this.renderTarget=n,this.overrideMaterial=null,this.transparent=!0,this.opaque=!0,this.contextNode=null,this._contextNodeCache=null,this._textures={output:n.texture,depth:i},this._textureNodes={},this._linearDepthNodes={},this._viewZNodes={},this._previousTextures={},this._previousTextureNodes={},this._cameraNear=xa(0),this._cameraFar=xa(0),this._mrt=null,this._layers=null,this._resolutionScale=1,this._viewport=null,this._scissor=null,this.isPassNode=!0,this.updateBeforeType=Qs.FRAME,this.global=!0}setResolutionScale(e){return this._resolutionScale=e,this}getResolutionScale(){return this._resolutionScale}setResolution(e){return d("PassNode: .setResolution() is deprecated. Use .setResolutionScale() instead."),this.setResolutionScale(e)}getResolution(){return d("PassNode: .getResolution() is deprecated. Use .getResolutionScale() instead."),this.getResolutionScale()}setLayers(e){return this._layers=e,this}getLayers(){return this._layers}setMRT(e){return this._mrt=e,this}getMRT(){return this._mrt}getTexture(e){let t=this._textures[e];if(void 0===t){t=this.renderTarget.texture.clone(),t.name=e,this._textures[e]=t,this.renderTarget.textures.push(t)}return t}getPreviousTexture(e){let t=this._previousTextures[e];return void 0===t&&(t=this.getTexture(e).clone(),this._previousTextures[e]=t),t}toggleTexture(e){const t=this._previousTextures[e];if(void 0!==t){const r=this._textures[e],s=this.renderTarget.textures.indexOf(r);this.renderTarget.textures[s]=t,this._textures[e]=t,this._previousTextures[e]=r,this._textureNodes[e].updateTexture(),this._previousTextureNodes[e].updateTexture()}}getTextureNode(e="output"){let t=this._textureNodes[e];return void 0===t&&(t=Yi(new Px(this,e)),t.updateTexture(),this._textureNodes[e]=t),t}getPreviousTextureNode(e="output"){let t=this._previousTextureNodes[e];return void 0===t&&(void 0===this._textureNodes[e]&&this.getTextureNode(e),t=Yi(new Px(this,e,!0)),t.updateTexture(),this._previousTextureNodes[e]=t),t}getViewZNode(e="depth"){let t=this._viewZNodes[e];if(void 0===t){const r=this._cameraNear,s=this._cameraFar;this._viewZNodes[e]=t=Cp(this.getTextureNode(e),r,s)}return t}getLinearDepthNode(e="depth"){let t=this._linearDepthNodes[e];if(void 0===t){const r=this._cameraNear,s=this._cameraFar,i=this.getViewZNode(e);this._linearDepthNodes[e]=t=Ep(i,r,s)}return t}async compileAsync(e){const t=e.getRenderTarget(),r=e.getMRT();e.setRenderTarget(this.renderTarget),e.setMRT(this._mrt),await e.compileAsync(this.scene,this.camera),e.setRenderTarget(t),e.setMRT(r)}setup({renderer:e}){return this.renderTarget.samples=void 0===this.options.samples?e.samples:this.options.samples,this.renderTarget.texture.type=e.getColorBufferType(),this.scope===Fx.COLOR?this.getTextureNode():this.getLinearDepthNode()}updateBefore(e){const{renderer:t}=e,{scene:r}=this;let s,i;const n=t.getOutputRenderTarget();n&&!0===n.isXRRenderTarget?(i=1,s=t.xr.getCamera(),t.xr.updateCamera(s),Bx.set(n.width,n.height)):(s=this.camera,i=t.getPixelRatio(),t.getSize(Bx)),this._pixelRatio=i,this.setSize(Bx.width,Bx.height);const a=t.getRenderTarget(),o=t.getMRT(),u=t.autoClear,l=t.transparent,d=t.opaque,c=s.layers.mask,h=t.contextNode,p=r.overrideMaterial;this._cameraNear.value=s.near,this._cameraFar.value=s.far,null!==this._layers&&(s.layers.mask=this._layers.mask);for(const e in this._previousTextures)this.toggleTexture(e);null!==this.overrideMaterial&&(r.overrideMaterial=this.overrideMaterial),t.setRenderTarget(this.renderTarget),t.setMRT(this._mrt),t.autoClear=!0,t.transparent=this.transparent,t.opaque=this.opaque,null!==this.contextNode&&(null!==this._contextNodeCache&&this._contextNodeCache.version===this.version||(this._contextNodeCache={version:this.version,context:Tu({...t.contextNode.getFlowContextData(),...this.contextNode.getFlowContextData()})}),t.contextNode=this._contextNodeCache.context);const g=r.name;r.name=this.name?this.name:r.name,t.render(r,s),r.name=g,r.overrideMaterial=p,t.setRenderTarget(a),t.setMRT(o),t.autoClear=u,t.transparent=l,t.opaque=d,t.contextNode=h,s.layers.mask=c}setSize(e,t){this._width=e,this._height=t;const r=Math.floor(this._width*this._pixelRatio*this._resolutionScale),s=Math.floor(this._height*this._pixelRatio*this._resolutionScale);this.renderTarget.setSize(r,s),null!==this._scissor&&this.renderTarget.scissor.copy(this._scissor),null!==this._viewport&&this.renderTarget.viewport.copy(this._viewport)}setScissor(e,t,r,i){null===e?this._scissor=null:(null===this._scissor&&(this._scissor=new s),e.isVector4?this._scissor.copy(e):this._scissor.set(e,t,r,i),this._scissor.multiplyScalar(this._pixelRatio*this._resolutionScale).floor())}setViewport(e,t,r,i){null===e?this._viewport=null:(null===this._viewport&&(this._viewport=new s),e.isVector4?this._viewport.copy(e):this._viewport.set(e,t,r,i),this._viewport.multiplyScalar(this._pixelRatio*this._resolutionScale).floor())}setPixelRatio(e){this._pixelRatio=e,this.setSize(this._width,this._height)}dispose(){this.renderTarget.dispose()}}Fx.COLOR="color",Fx.DEPTH="depth";class Dx extends Fx{static get type(){return"ToonOutlinePassNode"}constructor(e,t,r,s,i){super(Fx.COLOR,e,t),this.colorNode=r,this.thicknessNode=s,this.alphaNode=i,this._materialCache=new WeakMap,this.name="Outline Pass"}updateBefore(e){const{renderer:t}=e,r=t.getRenderObjectFunction();t.setRenderObjectFunction((e,r,s,i,n,a,o,u)=>{if((n.isMeshToonMaterial||n.isMeshToonNodeMaterial)&&!1===n.wireframe){const l=this._getOutlineMaterial(n);t.renderObject(e,r,s,i,l,a,o,u)}t.renderObject(e,r,s,i,n,a,o,u)}),super.updateBefore(e),t.setRenderObjectFunction(r)}_createMaterial(){const e=new Xp;e.isMeshToonOutlineMaterial=!0,e.name="Toon_Outline",e.side=w;const t=zd.negate(),r=rd.mul(Ad),s=hn(1),i=r.mul(Sn(Bd,1)),n=r.mul(Sn(Bd.add(t),1)),a=To(i.sub(n));return e.vertexNode=i.add(a.mul(this.thicknessNode).mul(i.w).mul(s)),e.colorNode=Sn(this.colorNode,this.alphaNode),e}_getOutlineMaterial(e){let t=this._materialCache.get(e);return void 0===t&&(t=this._createMaterial(),this._materialCache.set(e,t)),t}}const Ix=an(([e,t])=>e.mul(t).clamp()).setLayout({name:"linearToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]}),Ux=an(([e,t])=>(e=e.mul(t)).div(e.add(1)).clamp()).setLayout({name:"reinhardToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]}),Ox=an(([e,t])=>{const r=(e=(e=e.mul(t)).sub(.004).max(0)).mul(e.mul(6.2).add(.5)),s=e.mul(e.mul(6.2).add(1.7)).add(.06);return r.div(s).pow(2.2)}).setLayout({name:"cineonToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]}),Vx=an(([e])=>{const t=e.mul(e.add(.0245786)).sub(90537e-9),r=e.mul(e.add(.432951).mul(.983729)).add(.238081);return t.div(r)}),kx=an(([e,t])=>{const r=Cn(.59719,.35458,.04823,.076,.90834,.01566,.0284,.13383,.83777),s=Cn(1.60475,-.53108,-.07367,-.10208,1.10813,-.00605,-.00327,-.07276,1.07602);return e=e.mul(t).div(.6),e=r.mul(e),e=Vx(e),(e=s.mul(e)).clamp()}).setLayout({name:"acesFilmicToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]}),Gx=Cn(Tn(1.6605,-.1246,-.0182),Tn(-.5876,1.1329,-.1006),Tn(-.0728,-.0083,1.1187)),zx=Cn(Tn(.6274,.0691,.0164),Tn(.3293,.9195,.088),Tn(.0433,.0113,.8956)),$x=an(([e])=>{const t=Tn(e).toVar(),r=Tn(t.mul(t)).toVar(),s=Tn(r.mul(r)).toVar();return hn(15.5).mul(s.mul(r)).sub(Ma(40.14,s.mul(t))).add(Ma(31.96,s).sub(Ma(6.868,r.mul(t))).add(Ma(.4298,r).add(Ma(.1191,t).sub(.00232))))}),Wx=an(([e,t])=>{const r=Tn(e).toVar(),s=Cn(Tn(.856627153315983,.137318972929847,.11189821299995),Tn(.0951212405381588,.761241990602591,.0767994186031903),Tn(.0482516061458583,.101439036467562,.811302368396859)),i=Cn(Tn(1.1271005818144368,-.1413297634984383,-.14132976349843826),Tn(-.11060664309660323,1.157823702216272,-.11060664309660294),Tn(-.016493938717834573,-.016493938717834257,1.2519364065950405)),n=hn(-12.47393),a=hn(4.026069);return r.mulAssign(t),r.assign(zx.mul(r)),r.assign(s.mul(r)),r.assign(Wo(r,1e-10)),r.assign(mo(r)),r.assign(r.sub(n).div(a.sub(n))),r.assign(nu(r,0,1)),r.assign($x(r)),r.assign(i.mul(r)),r.assign(Qo(Wo(Tn(0),r),Tn(2.2))),r.assign(Gx.mul(r)),r.assign(nu(r,0,1)),r}).setLayout({name:"agxToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]}),Hx=an(([e,t])=>{const r=hn(.76),s=hn(.15);e=e.mul(t);const i=$o(e.r,$o(e.g,e.b)),n=bu(i.lessThan(.08),i.sub(Ma(6.25,i.mul(i))),.04);e.subAssign(n);const a=Wo(e.r,Wo(e.g,e.b));ln(a.lessThan(r),()=>e);const o=Ca(1,r),u=Ca(1,o.mul(o).div(a.add(o.sub(r))));e.mulAssign(u.div(a));const l=Ca(1,Ba(1,s.mul(a.sub(u)).add(1)));return iu(e,Tn(u),l)}).setLayout({name:"neutralToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]});class jx extends ai{static get type(){return"CodeNode"}constructor(e="",t=[],r=""){super("code"),this.isCodeNode=!0,this.global=!0,this.code=e,this.includes=t,this.language=r}setIncludes(e){return this.includes=e,this}getIncludes(){return this.includes}generate(e){const t=this.getIncludes(e);for(const r of t)r.build(e);const r=e.getCodeFromNode(this,this.getNodeType(e));return r.code=this.code,r.code}serialize(e){super.serialize(e),e.code=this.code,e.language=this.language}deserialize(e){super.deserialize(e),this.code=e.code,this.language=e.language}}const qx=en(jx).setParameterLength(1,3);class Xx extends jx{static get type(){return"FunctionNode"}constructor(e="",t=[],r=""){super(e,t,r)}getNodeType(e){return this.getNodeFunction(e).type}getMemberType(e,t){const r=this.getNodeType(e);return e.getStructTypeNode(r).getMemberType(e,t)}getInputs(e){return this.getNodeFunction(e).inputs}getNodeFunction(e){const t=e.getDataFromNode(this);let r=t.nodeFunction;return void 0===r&&(r=e.parser.parseFunction(this.code),t.nodeFunction=r),r}generate(e,t){super.generate(e);const r=this.getNodeFunction(e),s=r.name,i=r.type,n=e.getCodeFromNode(this,i);""!==s&&(n.name=s);const a=e.getPropertyName(n),o=this.getNodeFunction(e).getCode(a);return n.code=o+"\n","property"===t?a:e.format(`${a}()`,i,t)}}const Kx=(e,t=[],r="")=>{for(let e=0;es.call(...e);return i.functionNode=s,i};class Yx extends ai{static get type(){return"ScriptableValueNode"}constructor(e=null){super(),this._value=e,this._cache=null,this.inputType=null,this.outputType=null,this.events=new u,this.isScriptableValueNode=!0}get isScriptableOutputNode(){return null!==this.outputType}set value(e){this._value!==e&&(this._cache&&"URL"===this.inputType&&this.value.value instanceof ArrayBuffer&&(URL.revokeObjectURL(this._cache),this._cache=null),this._value=e,this.events.dispatchEvent({type:"change"}),this.refresh())}get value(){return this._value}refresh(){this.events.dispatchEvent({type:"refresh"})}getValue(){const e=this.value;if(e&&null===this._cache&&"URL"===this.inputType&&e.value instanceof ArrayBuffer)this._cache=URL.createObjectURL(new Blob([e.value]));else if(e&&null!==e.value&&void 0!==e.value&&(("URL"===this.inputType||"String"===this.inputType)&&"string"==typeof e.value||"Number"===this.inputType&&"number"==typeof e.value||"Vector2"===this.inputType&&e.value.isVector2||"Vector3"===this.inputType&&e.value.isVector3||"Vector4"===this.inputType&&e.value.isVector4||"Color"===this.inputType&&e.value.isColor||"Matrix3"===this.inputType&&e.value.isMatrix3||"Matrix4"===this.inputType&&e.value.isMatrix4))return e.value;return this._cache||e}getNodeType(e){return this.value&&this.value.isNode?this.value.getNodeType(e):"float"}setup(){return this.value&&this.value.isNode?this.value:hn()}serialize(e){super.serialize(e),null!==this.value?"ArrayBuffer"===this.inputType?e.value=qs(this.value):e.value=this.value?this.value.toJSON(e.meta).uuid:null:e.value=null,e.inputType=this.inputType,e.outputType=this.outputType}deserialize(e){super.deserialize(e);let t=null;null!==e.value&&(t="ArrayBuffer"===e.inputType?Xs(e.value):"Texture"===e.inputType?e.meta.textures[e.value]:e.meta.nodes[e.value]||null),this.value=t,this.inputType=e.inputType,this.outputType=e.outputType}}const Qx=en(Yx).setParameterLength(1);class Zx extends Map{get(e,t=null,...r){if(this.has(e))return super.get(e);if(null!==t){const s=t(...r);return this.set(e,s),s}}}class Jx{constructor(e){this.scriptableNode=e}get parameters(){return this.scriptableNode.parameters}get layout(){return this.scriptableNode.getLayout()}getInputLayout(e){return this.scriptableNode.getInputLayout(e)}get(e){const t=this.parameters[e];return t?t.getValue():null}}const eT=new Zx;class tT extends ai{static get type(){return"ScriptableNode"}constructor(e=null,t={}){super(),this.codeNode=e,this.parameters=t,this._local=new Zx,this._output=Qx(null),this._outputs={},this._source=this.source,this._method=null,this._object=null,this._value=null,this._needsOutputUpdate=!0,this.onRefresh=this.onRefresh.bind(this),this.isScriptableNode=!0}get source(){return this.codeNode?this.codeNode.code:""}setLocal(e,t){return this._local.set(e,t)}getLocal(e){return this._local.get(e)}onRefresh(){this._refresh()}getInputLayout(e){for(const t of this.getLayout())if(t.inputType&&(t.id===e||t.name===e))return t}getOutputLayout(e){for(const t of this.getLayout())if(t.outputType&&(t.id===e||t.name===e))return t}setOutput(e,t){const r=this._outputs;return void 0===r[e]?r[e]=Qx(t):r[e].value=t,this}getOutput(e){return this._outputs[e]}getParameter(e){return this.parameters[e]}setParameter(e,t){const r=this.parameters;return t&&t.isScriptableNode?(this.deleteParameter(e),r[e]=t,r[e].getDefaultOutput().events.addEventListener("refresh",this.onRefresh)):t&&t.isScriptableValueNode?(this.deleteParameter(e),r[e]=t,r[e].events.addEventListener("refresh",this.onRefresh)):void 0===r[e]?(r[e]=Qx(t),r[e].events.addEventListener("refresh",this.onRefresh)):r[e].value=t,this}getValue(){return this.getDefaultOutput().getValue()}deleteParameter(e){let t=this.parameters[e];return t&&(t.isScriptableNode&&(t=t.getDefaultOutput()),t.events.removeEventListener("refresh",this.onRefresh)),this}clearParameters(){for(const e of Object.keys(this.parameters))this.deleteParameter(e);return this.needsUpdate=!0,this}call(e,...t){const r=this.getObject()[e];if("function"==typeof r)return r(...t)}async callAsync(e,...t){const r=this.getObject()[e];if("function"==typeof r)return"AsyncFunction"===r.constructor.name?await r(...t):r(...t)}getNodeType(e){return this.getDefaultOutputNode().getNodeType(e)}refresh(e=null){null!==e?this.getOutput(e).refresh():this._refresh()}getObject(){if(this.needsUpdate&&this.dispose(),null!==this._object)return this._object;const e=new Jx(this),t=eT.get("THREE"),r=eT.get("TSL"),s=this.getMethod(),i=[e,this._local,eT,()=>this.refresh(),(e,t)=>this.setOutput(e,t),t,r];this._object=s(...i);const n=this._object.layout;if(n&&(!1===n.cache&&this._local.clear(),this._output.outputType=n.outputType||null,Array.isArray(n.elements)))for(const e of n.elements){const t=e.id||e.name;e.inputType&&(void 0===this.getParameter(t)&&this.setParameter(t,null),this.getParameter(t).inputType=e.inputType),e.outputType&&(void 0===this.getOutput(t)&&this.setOutput(t,null),this.getOutput(t).outputType=e.outputType)}return this._object}deserialize(e){super.deserialize(e);for(const e in this.parameters){let t=this.parameters[e];t.isScriptableNode&&(t=t.getDefaultOutput()),t.events.addEventListener("refresh",this.onRefresh)}}getLayout(){return this.getObject().layout}getDefaultOutputNode(){const e=this.getDefaultOutput().value;return e&&e.isNode?e:hn()}getDefaultOutput(){return this._exec()._output}getMethod(){if(this.needsUpdate&&this.dispose(),null!==this._method)return this._method;const e=["layout","init","main","dispose"].join(", "),t="\nreturn { ...output, "+e+" };",r="var "+e+"; var output = {};\n"+this.codeNode.code+t;return this._method=new Function(...["parameters","local","global","refresh","setOutput","THREE","TSL"],r),this._method}dispose(){null!==this._method&&(this._object&&"function"==typeof this._object.dispose&&this._object.dispose(),this._method=null,this._object=null,this._source=null,this._value=null,this._needsOutputUpdate=!0,this._output.value=null,this._outputs={})}setup(){return this.getDefaultOutputNode()}getCacheKey(e){const t=[Fs(this.source),this.getDefaultOutputNode().getCacheKey(e)];for(const r in this.parameters)t.push(this.parameters[r].getCacheKey(e));return Ds(t)}set needsUpdate(e){!0===e&&this.dispose()}get needsUpdate(){return this.source!==this._source}_exec(){return null===this.codeNode||(!0===this._needsOutputUpdate&&(this._value=this.call("main"),this._needsOutputUpdate=!1),this._output.value=this._value),this}_refresh(){this.needsUpdate=!0,this._exec(),this._output.refresh()}}const rT=en(tT).setParameterLength(1,2);function sT(e){let t;const r=e.context.getViewZ;return void 0!==r&&(t=r(this)),(t||Dd.z).negate()}const iT=an(([e,t],r)=>{const s=sT(r);return uu(e,t,s)}),nT=an(([e],t)=>{const r=sT(t);return e.mul(e,r,r).negate().exp().oneMinus()}),aT=an(([e,t])=>Sn(t.toFloat().mix(ra.rgb,e.toVec3()),ra.a));let oT=null,uT=null;class lT extends ai{static get type(){return"RangeNode"}constructor(e=hn(),t=hn()){super(),this.minNode=e,this.maxNode=t}getVectorLength(e){const t=this.getConstNode(this.minNode),r=this.getConstNode(this.maxNode),s=e.getTypeLength(Ws(t.value)),i=e.getTypeLength(Ws(r.value));return s>i?s:i}getNodeType(e){return e.object.count>1?e.getTypeFromLength(this.getVectorLength(e)):"float"}getConstNode(e){let t=null;if(e.traverse(e=>{!0===e.isConstNode&&(t=e)}),null===t)throw new Error('THREE.TSL: No "ConstNode" found in node graph.');return t}setup(e){const t=e.object;let r=null;if(t.count>1){const i=this.getConstNode(this.minNode),n=this.getConstNode(this.maxNode),a=i.value,o=n.value,u=e.getTypeLength(Ws(a)),d=e.getTypeLength(Ws(o));oT=oT||new s,uT=uT||new s,oT.setScalar(0),uT.setScalar(0),1===u?oT.setScalar(a):a.isColor?oT.set(a.r,a.g,a.b,1):oT.set(a.x,a.y,a.z||0,a.w||0),1===d?uT.setScalar(o):o.isColor?uT.set(o.r,o.g,o.b,1):uT.set(o.x,o.y,o.z||0,o.w||0);const c=4,h=c*t.count,p=new Float32Array(h);for(let e=0;eYi(new cT(e,t)),pT=hT("numWorkgroups","uvec3"),gT=hT("workgroupId","uvec3"),mT=hT("globalId","uvec3"),fT=hT("localId","uvec3"),yT=hT("subgroupSize","uint");const bT=en(class extends ai{constructor(e){super(),this.scope=e}generate(e){const{scope:t}=this,{renderer:r}=e;!0===r.backend.isWebGLBackend?e.addFlowCode(`\t// ${t}Barrier \n`):e.addLineFlowCode(`${t}Barrier()`,this)}});class xT extends oi{constructor(e,t){super(e,t),this.isWorkgroupInfoElementNode=!0}generate(e,t){let r;const s=e.context.assign;if(r=super.generate(e),!0!==s){const s=this.getNodeType(e);r=e.format(r,s,t)}return r}}class TT extends ai{constructor(e,t,r=0){super(t),this.bufferType=t,this.bufferCount=r,this.isWorkgroupInfoNode=!0,this.elementType=t,this.scope=e,this.name=""}setName(e){return this.name=e,this}label(e){return d('TSL: "label()" has been deprecated. Use "setName()" instead.'),this.setName(e)}setScope(e){return this.scope=e,this}getElementType(){return this.elementType}getInputType(){return`${this.scope}Array`}element(e){return Yi(new xT(this,e))}generate(e){const t=""!==this.name?this.name:`${this.scope}Array_${this.id}`;return e.getScopedArray(t,this.scope.toLowerCase(),this.bufferType,this.bufferCount)}}class _T extends ai{static get type(){return"AtomicFunctionNode"}constructor(e,t,r){super("uint"),this.method=e,this.pointerNode=t,this.valueNode=r,this.parents=!0}getInputType(e){return this.pointerNode.getNodeType(e)}getNodeType(e){return this.getInputType(e)}generate(e){const t=e.getNodeProperties(this),r=t.parents,s=this.method,i=this.getNodeType(e),n=this.getInputType(e),a=this.pointerNode,o=this.valueNode,u=[];u.push(`&${a.build(e,n)}`),null!==o&&u.push(o.build(e,n));const l=`${e.getMethod(s,i)}( ${u.join(", ")} )`;if(!(!!r&&(1===r.length&&!0===r[0].isStackNode)))return void 0===t.constNode&&(t.constNode=gl(l,i).toConst()),t.constNode.build(e);e.addLineFlowCode(l,this)}}_T.ATOMIC_LOAD="atomicLoad",_T.ATOMIC_STORE="atomicStore",_T.ATOMIC_ADD="atomicAdd",_T.ATOMIC_SUB="atomicSub",_T.ATOMIC_MAX="atomicMax",_T.ATOMIC_MIN="atomicMin",_T.ATOMIC_AND="atomicAnd",_T.ATOMIC_OR="atomicOr",_T.ATOMIC_XOR="atomicXor";const vT=en(_T),NT=(e,t,r)=>vT(e,t,r).toStack();class ST extends li{static get type(){return"SubgroupFunctionNode"}constructor(e,t=null,r=null){super(),this.method=e,this.aNode=t,this.bNode=r}getInputType(e){const t=this.aNode?this.aNode.getNodeType(e):null,r=this.bNode?this.bNode.getNodeType(e):null;return(e.isMatrix(t)?0:e.getTypeLength(t))>(e.isMatrix(r)?0:e.getTypeLength(r))?t:r}getNodeType(e){const t=this.method;return t===ST.SUBGROUP_ELECT?"bool":t===ST.SUBGROUP_BALLOT?"uvec4":this.getInputType(e)}generate(e,t){const r=this.method,s=this.getNodeType(e),i=this.getInputType(e),n=this.aNode,a=this.bNode,o=[];if(r===ST.SUBGROUP_BROADCAST||r===ST.SUBGROUP_SHUFFLE||r===ST.QUAD_BROADCAST){const t=a.getNodeType(e);o.push(n.build(e,s),a.build(e,"float"===t?"int":s))}else r===ST.SUBGROUP_SHUFFLE_XOR||r===ST.SUBGROUP_SHUFFLE_DOWN||r===ST.SUBGROUP_SHUFFLE_UP?o.push(n.build(e,s),a.build(e,"uint")):(null!==n&&o.push(n.build(e,i)),null!==a&&o.push(a.build(e,i)));const u=0===o.length?"()":`( ${o.join(", ")} )`;return e.format(`${e.getMethod(r,s)}${u}`,s,t)}serialize(e){super.serialize(e),e.method=this.method}deserialize(e){super.deserialize(e),this.method=e.method}}ST.SUBGROUP_ELECT="subgroupElect",ST.SUBGROUP_BALLOT="subgroupBallot",ST.SUBGROUP_ADD="subgroupAdd",ST.SUBGROUP_INCLUSIVE_ADD="subgroupInclusiveAdd",ST.SUBGROUP_EXCLUSIVE_AND="subgroupExclusiveAdd",ST.SUBGROUP_MUL="subgroupMul",ST.SUBGROUP_INCLUSIVE_MUL="subgroupInclusiveMul",ST.SUBGROUP_EXCLUSIVE_MUL="subgroupExclusiveMul",ST.SUBGROUP_AND="subgroupAnd",ST.SUBGROUP_OR="subgroupOr",ST.SUBGROUP_XOR="subgroupXor",ST.SUBGROUP_MIN="subgroupMin",ST.SUBGROUP_MAX="subgroupMax",ST.SUBGROUP_ALL="subgroupAll",ST.SUBGROUP_ANY="subgroupAny",ST.SUBGROUP_BROADCAST_FIRST="subgroupBroadcastFirst",ST.QUAD_SWAP_X="quadSwapX",ST.QUAD_SWAP_Y="quadSwapY",ST.QUAD_SWAP_DIAGONAL="quadSwapDiagonal",ST.SUBGROUP_BROADCAST="subgroupBroadcast",ST.SUBGROUP_SHUFFLE="subgroupShuffle",ST.SUBGROUP_SHUFFLE_XOR="subgroupShuffleXor",ST.SUBGROUP_SHUFFLE_UP="subgroupShuffleUp",ST.SUBGROUP_SHUFFLE_DOWN="subgroupShuffleDown",ST.QUAD_BROADCAST="quadBroadcast";const RT=rn(ST,ST.SUBGROUP_ELECT).setParameterLength(0),AT=rn(ST,ST.SUBGROUP_BALLOT).setParameterLength(1),ET=rn(ST,ST.SUBGROUP_ADD).setParameterLength(1),wT=rn(ST,ST.SUBGROUP_INCLUSIVE_ADD).setParameterLength(1),CT=rn(ST,ST.SUBGROUP_EXCLUSIVE_AND).setParameterLength(1),MT=rn(ST,ST.SUBGROUP_MUL).setParameterLength(1),BT=rn(ST,ST.SUBGROUP_INCLUSIVE_MUL).setParameterLength(1),LT=rn(ST,ST.SUBGROUP_EXCLUSIVE_MUL).setParameterLength(1),PT=rn(ST,ST.SUBGROUP_AND).setParameterLength(1),FT=rn(ST,ST.SUBGROUP_OR).setParameterLength(1),DT=rn(ST,ST.SUBGROUP_XOR).setParameterLength(1),IT=rn(ST,ST.SUBGROUP_MIN).setParameterLength(1),UT=rn(ST,ST.SUBGROUP_MAX).setParameterLength(1),OT=rn(ST,ST.SUBGROUP_ALL).setParameterLength(0),VT=rn(ST,ST.SUBGROUP_ANY).setParameterLength(0),kT=rn(ST,ST.SUBGROUP_BROADCAST_FIRST).setParameterLength(2),GT=rn(ST,ST.QUAD_SWAP_X).setParameterLength(1),zT=rn(ST,ST.QUAD_SWAP_Y).setParameterLength(1),$T=rn(ST,ST.QUAD_SWAP_DIAGONAL).setParameterLength(1),WT=rn(ST,ST.SUBGROUP_BROADCAST).setParameterLength(2),HT=rn(ST,ST.SUBGROUP_SHUFFLE).setParameterLength(2),jT=rn(ST,ST.SUBGROUP_SHUFFLE_XOR).setParameterLength(2),qT=rn(ST,ST.SUBGROUP_SHUFFLE_UP).setParameterLength(2),XT=rn(ST,ST.SUBGROUP_SHUFFLE_DOWN).setParameterLength(2),KT=rn(ST,ST.QUAD_BROADCAST).setParameterLength(1);let YT;function QT(e){YT=YT||new WeakMap;let t=YT.get(e);return void 0===t&&YT.set(e,t={}),t}function ZT(e){const t=QT(e);return t.shadowMatrix||(t.shadowMatrix=xa("mat4").setGroup(fa).onRenderUpdate(t=>(!0===e.castShadow&&!1!==t.renderer.shadowMap.enabled||(e.shadow.camera.coordinateSystem!==t.camera.coordinateSystem&&(e.shadow.camera.coordinateSystem=t.camera.coordinateSystem,e.shadow.camera.updateProjectionMatrix()),e.shadow.updateMatrices(e)),e.shadow.matrix)))}function JT(e,t=Pd){const r=ZT(e).mul(t);return r.xyz.div(r.w)}function e_(e){const t=QT(e);return t.position||(t.position=xa(new r).setGroup(fa).onRenderUpdate((t,r)=>r.value.setFromMatrixPosition(e.matrixWorld)))}function t_(e){const t=QT(e);return t.targetPosition||(t.targetPosition=xa(new r).setGroup(fa).onRenderUpdate((t,r)=>r.value.setFromMatrixPosition(e.target.matrixWorld)))}function r_(e){const t=QT(e);return t.viewPosition||(t.viewPosition=xa(new r).setGroup(fa).onRenderUpdate(({camera:t},s)=>{s.value=s.value||new r,s.value.setFromMatrixPosition(e.matrixWorld),s.value.applyMatrix4(t.matrixWorldInverse)}))}const s_=e=>id.transformDirection(e_(e).sub(t_(e))),i_=(e,t)=>{for(const r of t)if(r.isAnalyticLightNode&&r.light.id===e)return r;return null},n_=new WeakMap,a_=[];class o_ extends ai{static get type(){return"LightsNode"}constructor(){super("vec3"),this.totalDiffuseNode=Fn("vec3","totalDiffuse"),this.totalSpecularNode=Fn("vec3","totalSpecular"),this.outgoingLightNode=Fn("vec3","outgoingLight"),this._lights=[],this._lightNodes=null,this._lightNodesHash=null,this.global=!0}customCacheKey(){const e=this._lights;for(let t=0;te.sort((e,t)=>e.id-t.id))(this._lights),i=e.renderer.library;for(const e of s)if(e.isNode)t.push(Yi(e));else{let s=null;if(null!==r&&(s=i_(e.id,r)),null===s){const r=i.getLightNodeClass(e.constructor);if(null===r){d(`LightsNode.setupNodeLights: Light node not found for ${e.constructor.name}`);continue}let s=null;n_.has(e)?s=n_.get(e):(s=Yi(new r(e)),n_.set(e,s)),t.push(s)}}this._lightNodes=t}setupDirectLight(e,t,r){const{lightingModel:s,reflectedLight:i}=e.context;s.direct({...r,lightNode:t,reflectedLight:i},e)}setupDirectRectAreaLight(e,t,r){const{lightingModel:s,reflectedLight:i}=e.context;s.directRectArea({...r,lightNode:t,reflectedLight:i},e)}setupLights(e,t){for(const r of t)r.build(e)}getLightNodes(e){return null===this._lightNodes&&this.setupLightsNode(e),this._lightNodes}setup(e){const t=e.lightsNode;e.lightsNode=this;let r=this.outgoingLightNode;const s=e.context,i=s.lightingModel,n=e.getNodeProperties(this);if(i){const{totalDiffuseNode:t,totalSpecularNode:a}=this;s.outgoingLight=r;const o=e.addStack();n.nodes=o.nodes,i.start(e);const{backdrop:u,backdropAlpha:l}=s,{directDiffuse:d,directSpecular:c,indirectDiffuse:h,indirectSpecular:p}=s.reflectedLight;let g=d.add(h);null!==u&&(g=Tn(null!==l?l.mix(g,u):u)),t.assign(g),a.assign(c.add(p)),r.assign(t.add(a)),i.finish(e),r=r.bypass(e.removeStack())}else n.nodes=[];return e.lightsNode=t,r}setLights(e){return this._lights=e,this._lightNodes=null,this._lightNodesHash=null,this}getLights(){return this._lights}get hasLights(){return this._lights.length>0}}class u_ extends ai{static get type(){return"ShadowBaseNode"}constructor(e){super(),this.light=e,this.updateBeforeType=Qs.RENDER,this.isShadowBaseNode=!0}setupShadowPosition({context:e,material:t}){l_.assign(t.receivedShadowPositionNode||e.shadowPositionWorld||Pd)}}const l_=Fn("vec3","shadowPositionWorld");function d_(t,r={}){return r.toneMapping=t.toneMapping,r.toneMappingExposure=t.toneMappingExposure,r.outputColorSpace=t.outputColorSpace,r.renderTarget=t.getRenderTarget(),r.activeCubeFace=t.getActiveCubeFace(),r.activeMipmapLevel=t.getActiveMipmapLevel(),r.renderObjectFunction=t.getRenderObjectFunction(),r.pixelRatio=t.getPixelRatio(),r.mrt=t.getMRT(),r.clearColor=t.getClearColor(r.clearColor||new e),r.clearAlpha=t.getClearAlpha(),r.autoClear=t.autoClear,r.scissorTest=t.getScissorTest(),r}function c_(e,t){return t=d_(e,t),e.setMRT(null),e.setRenderObjectFunction(null),e.setClearColor(0,1),e.autoClear=!0,t}function h_(e,t){e.toneMapping=t.toneMapping,e.toneMappingExposure=t.toneMappingExposure,e.outputColorSpace=t.outputColorSpace,e.setRenderTarget(t.renderTarget,t.activeCubeFace,t.activeMipmapLevel),e.setRenderObjectFunction(t.renderObjectFunction),e.setPixelRatio(t.pixelRatio),e.setMRT(t.mrt),e.setClearColor(t.clearColor,t.clearAlpha),e.autoClear=t.autoClear,e.setScissorTest(t.scissorTest)}function p_(e,t={}){return t.background=e.background,t.backgroundNode=e.backgroundNode,t.overrideMaterial=e.overrideMaterial,t}function g_(e,t){return t=p_(e,t),e.background=null,e.backgroundNode=null,e.overrideMaterial=null,t}function m_(e,t){e.background=t.background,e.backgroundNode=t.backgroundNode,e.overrideMaterial=t.overrideMaterial}function f_(e,t,r){return r=g_(t,r=c_(e,r))}function y_(e,t,r){h_(e,r),m_(t,r)}var b_=Object.freeze({__proto__:null,resetRendererAndSceneState:f_,resetRendererState:c_,resetSceneState:g_,restoreRendererAndSceneState:y_,restoreRendererState:h_,restoreSceneState:m_,saveRendererAndSceneState:function(e,t,r={}){return r=p_(t,r=d_(e,r))},saveRendererState:d_,saveSceneState:p_});const x_=new WeakMap,T_=an(({depthTexture:e,shadowCoord:t,depthLayer:r})=>{let s=Pl(e,t.xy).setName("t_basic");return e.isArrayTexture&&(s=s.depth(r)),s.compare(t.z)}),__=an(({depthTexture:e,shadowCoord:t,shadow:r,depthLayer:s})=>{const i=(t,r)=>{let i=Pl(e,t);return e.isArrayTexture&&(i=i.depth(s)),i.compare(r)},n=mc("mapSize","vec2",r).setGroup(fa),a=mc("radius","float",r).setGroup(fa),o=fn(1).div(n),u=a.mul(o.x),l=Qb(ql.xy).mul(6.28318530718);return wa(i(t.xy.add(Zb(0,5,l).mul(u)),t.z),i(t.xy.add(Zb(1,5,l).mul(u)),t.z),i(t.xy.add(Zb(2,5,l).mul(u)),t.z),i(t.xy.add(Zb(3,5,l).mul(u)),t.z),i(t.xy.add(Zb(4,5,l).mul(u)),t.z)).mul(.2)}),v_=an(({depthTexture:e,shadowCoord:t,shadow:r,depthLayer:s})=>{const i=(t,r)=>{let i=Pl(e,t);return e.isArrayTexture&&(i=i.depth(s)),i.compare(r)},n=mc("mapSize","vec2",r).setGroup(fa),a=fn(1).div(n),o=a.x,u=a.y,l=t.xy,d=_o(l.mul(n).add(.5));return l.subAssign(d.mul(a)),wa(i(l,t.z),i(l.add(fn(o,0)),t.z),i(l.add(fn(0,u)),t.z),i(l.add(a),t.z),iu(i(l.add(fn(o.negate(),0)),t.z),i(l.add(fn(o.mul(2),0)),t.z),d.x),iu(i(l.add(fn(o.negate(),u)),t.z),i(l.add(fn(o.mul(2),u)),t.z),d.x),iu(i(l.add(fn(0,u.negate())),t.z),i(l.add(fn(0,u.mul(2))),t.z),d.y),iu(i(l.add(fn(o,u.negate())),t.z),i(l.add(fn(o,u.mul(2))),t.z),d.y),iu(iu(i(l.add(fn(o.negate(),u.negate())),t.z),i(l.add(fn(o.mul(2),u.negate())),t.z),d.x),iu(i(l.add(fn(o.negate(),u.mul(2))),t.z),i(l.add(fn(o.mul(2),u.mul(2))),t.z),d.x),d.y)).mul(1/9)}),N_=an(({depthTexture:e,shadowCoord:t,depthLayer:r})=>{let s=Pl(e).sample(t.xy);e.isArrayTexture&&(s=s.depth(r)),s=s.rg;const i=s.x,n=Wo(1e-7,s.y.mul(s.y)),a=Ho(t.z,i);ln(a.equal(1),()=>hn(1));const o=t.z.sub(i);let u=n.div(n.add(o.mul(o)));return u=nu(Ca(u,.3).div(.65)),Wo(a,u)}),S_=an(([e,t,r])=>{let s=Pd.sub(e).length();return s=s.sub(t).div(r.sub(t)),s=s.saturate(),s}),R_=e=>{let t=x_.get(e);if(void 0===t){const r=e.isPointLight?(e=>{const t=e.shadow.camera,r=mc("near","float",t).setGroup(fa),s=mc("far","float",t).setGroup(fa),i=pd(e);return S_(i,r,s)})(e):null;t=new Xp,t.colorNode=Sn(0,0,0,1),t.depthNode=r,t.isShadowPassMaterial=!0,t.name="ShadowMaterial",t.fog=!1,x_.set(e,t)}return t},A_=new Yf,E_=[],w_=(e,t,r,s)=>{E_[0]=e,E_[1]=t;let i=A_.get(E_);return void 0!==i&&i.shadowType===r&&i.useVelocity===s||(i=(i,n,a,o,u,l,...d)=>{(!0===i.castShadow||i.receiveShadow&&r===je)&&(s&&(js(i).useVelocity=!0),i.onBeforeShadow(e,i,a,t.camera,o,n.overrideMaterial,l),e.renderObject(i,n,a,o,u,l,...d),i.onAfterShadow(e,i,a,t.camera,o,n.overrideMaterial,l))},i.shadowType=r,i.useVelocity=s,A_.set(E_,i)),E_[0]=null,E_[1]=null,i},C_=an(({samples:e,radius:t,size:r,shadowPass:s,depthLayer:i})=>{const n=hn(0).toVar("meanVertical"),a=hn(0).toVar("squareMeanVertical"),o=e.lessThanEqual(hn(1)).select(hn(0),hn(2).div(e.sub(1))),u=e.lessThanEqual(hn(1)).select(hn(0),hn(-1));op({start:pn(0),end:pn(e),type:"int",condition:"<"},({i:e})=>{const l=u.add(hn(e).mul(o));let d=s.sample(wa(ql.xy,fn(0,l).mul(t)).div(r));s.value.isArrayTexture&&(d=d.depth(i)),d=d.x,n.addAssign(d),a.addAssign(d.mul(d))}),n.divAssign(e),a.divAssign(e);const l=fo(a.sub(n.mul(n)).max(0));return fn(n,l)}),M_=an(({samples:e,radius:t,size:r,shadowPass:s,depthLayer:i})=>{const n=hn(0).toVar("meanHorizontal"),a=hn(0).toVar("squareMeanHorizontal"),o=e.lessThanEqual(hn(1)).select(hn(0),hn(2).div(e.sub(1))),u=e.lessThanEqual(hn(1)).select(hn(0),hn(-1));op({start:pn(0),end:pn(e),type:"int",condition:"<"},({i:e})=>{const l=u.add(hn(e).mul(o));let d=s.sample(wa(ql.xy,fn(l,0).mul(t)).div(r));s.value.isArrayTexture&&(d=d.depth(i)),n.addAssign(d.x),a.addAssign(wa(d.y.mul(d.y),d.x.mul(d.x)))}),n.divAssign(e),a.divAssign(e);const l=fo(a.sub(n.mul(n)).max(0));return fn(n,l)}),B_=[T_,__,v_,N_];let L_;const P_=new Wb;class F_ extends u_{static get type(){return"ShadowNode"}constructor(e,t=null){super(e),this.shadow=t||e.shadow,this.shadowMap=null,this.vsmShadowMapVertical=null,this.vsmShadowMapHorizontal=null,this.vsmMaterialVertical=null,this.vsmMaterialHorizontal=null,this._node=null,this._currentShadowType=null,this._cameraFrameId=new WeakMap,this.isShadowNode=!0,this.depthLayer=0}setupShadowFilter(e,{filterFn:t,depthTexture:r,shadowCoord:s,shadow:i,depthLayer:n}){const a=s.x.greaterThanEqual(0).and(s.x.lessThanEqual(1)).and(s.y.greaterThanEqual(0)).and(s.y.lessThanEqual(1)).and(s.z.lessThanEqual(1)),o=t({depthTexture:r,shadowCoord:s,shadow:i,depthLayer:n});return a.select(o,hn(1))}setupShadowCoord(e,t){const{shadow:r}=this,{renderer:s}=e,i=mc("bias","float",r).setGroup(fa);let n,a=t;if(r.camera.isOrthographicCamera||!0!==s.logarithmicDepthBuffer)a=a.xyz.div(a.w),n=a.z,s.coordinateSystem===h&&(n=n.mul(2).sub(1));else{const e=a.w;a=a.xy.div(e);const t=mc("near","float",r.camera).setGroup(fa),s=mc("far","float",r.camera).setGroup(fa);n=Mp(e.negate(),t,s)}return a=Tn(a.x,a.y.oneMinus(),n.add(i)),a}getShadowFilterFn(e){return B_[e]}setupRenderTarget(e,t){const r=new X(e.mapSize.width,e.mapSize.height);r.name="ShadowDepthTexture",r.compareFunction=qe;const s=t.createRenderTarget(e.mapSize.width,e.mapSize.height);return s.texture.name="ShadowMap",s.texture.type=e.mapType,s.depthTexture=r,{shadowMap:s,depthTexture:r}}setupShadow(e){const{renderer:t,camera:r}=e,{light:s,shadow:i}=this,n=t.shadowMap.type,{depthTexture:a,shadowMap:o}=this.setupRenderTarget(i,e);if(i.camera.coordinateSystem=r.coordinateSystem,i.camera.updateProjectionMatrix(),n===je&&!0!==i.isPointLightShadow){a.compareFunction=null,o.depth>1?(o._vsmShadowMapVertical||(o._vsmShadowMapVertical=e.createRenderTarget(i.mapSize.width,i.mapSize.height,{format:V,type:fe,depth:o.depth,depthBuffer:!1}),o._vsmShadowMapVertical.texture.name="VSMVertical"),this.vsmShadowMapVertical=o._vsmShadowMapVertical,o._vsmShadowMapHorizontal||(o._vsmShadowMapHorizontal=e.createRenderTarget(i.mapSize.width,i.mapSize.height,{format:V,type:fe,depth:o.depth,depthBuffer:!1}),o._vsmShadowMapHorizontal.texture.name="VSMHorizontal"),this.vsmShadowMapHorizontal=o._vsmShadowMapHorizontal):(this.vsmShadowMapVertical=e.createRenderTarget(i.mapSize.width,i.mapSize.height,{format:V,type:fe,depthBuffer:!1}),this.vsmShadowMapHorizontal=e.createRenderTarget(i.mapSize.width,i.mapSize.height,{format:V,type:fe,depthBuffer:!1}));let t=Pl(a);a.isArrayTexture&&(t=t.depth(this.depthLayer));let r=Pl(this.vsmShadowMapVertical.texture);a.isArrayTexture&&(r=r.depth(this.depthLayer));const s=mc("blurSamples","float",i).setGroup(fa),n=mc("radius","float",i).setGroup(fa),u=mc("mapSize","vec2",i).setGroup(fa);let l=this.vsmMaterialVertical||(this.vsmMaterialVertical=new Xp);l.fragmentNode=C_({samples:s,radius:n,size:u,shadowPass:t,depthLayer:this.depthLayer}).context(e.getSharedContext()),l.name="VSMVertical",l=this.vsmMaterialHorizontal||(this.vsmMaterialHorizontal=new Xp),l.fragmentNode=M_({samples:s,radius:n,size:u,shadowPass:r,depthLayer:this.depthLayer}).context(e.getSharedContext()),l.name="VSMHorizontal"}const u=mc("intensity","float",i).setGroup(fa),l=mc("normalBias","float",i).setGroup(fa),d=ZT(s).mul(l_.add(qd.mul(l))),c=this.setupShadowCoord(e,d),h=i.filterNode||this.getShadowFilterFn(t.shadowMap.type)||null;if(null===h)throw new Error("THREE.WebGPURenderer: Shadow map type not supported yet.");const p=n===je&&!0!==i.isPointLightShadow?this.vsmShadowMapHorizontal.texture:a,g=this.setupShadowFilter(e,{filterFn:h,shadowTexture:o.texture,depthTexture:p,shadowCoord:c,shadow:i,depthLayer:this.depthLayer});let m;o.texture.isCubeTexture?m=hc(o.texture,c.xyz):(m=Pl(o.texture,c),a.isArrayTexture&&(m=m.depth(this.depthLayer)));const f=iu(1,g.rgb.mix(m,1),u.mul(m.a)).toVar();this.shadowMap=o,this.shadow.map=o;const y=`${this.light.type} Shadow [ ${this.light.name||"ID: "+this.light.id} ]`;return f.toInspector(`${y} / Color`,()=>this.shadowMap.texture.isCubeTexture?hc(this.shadowMap.texture):Pl(this.shadowMap.texture)).toInspector(`${y} / Depth`,()=>Fl(this.shadowMap.depthTexture,Rl().mul(El(Pl(this.shadowMap.depthTexture)))).x.oneMinus())}setup(e){if(!1!==e.renderer.shadowMap.enabled)return an(()=>{const t=e.renderer.shadowMap.type;this._currentShadowType!==t&&(this._reset(),this._node=null);let r=this._node;return this.setupShadowPosition(e),null===r&&(this._node=r=this.setupShadow(e),this._currentShadowType=t),e.material.shadowNode&&d('NodeMaterial: ".shadowNode" is deprecated. Use ".castShadowNode" instead.'),e.material.receivedShadowNode&&(r=e.material.receivedShadowNode(r)),r})()}renderShadow(e){const{shadow:t,shadowMap:r,light:s}=this,{renderer:i,scene:n}=e;t.updateMatrices(s),r.setSize(t.mapSize.width,t.mapSize.height,r.depth);const a=n.name;n.name=`Shadow Map [ ${s.name||"ID: "+s.id} ]`,i.render(n,t.camera),n.name=a}updateShadow(e){const{shadowMap:t,light:r,shadow:s}=this,{renderer:i,scene:n,camera:a}=e,o=i.shadowMap.type,u=t.depthTexture.version;this._depthVersionCached=u;const l=s.camera.layers.mask;4294967294&s.camera.layers.mask||(s.camera.layers.mask=a.layers.mask);const d=i.getRenderObjectFunction(),c=i.getMRT(),h=!!c&&c.has("velocity");L_=f_(i,n,L_),n.overrideMaterial=R_(r),i.setRenderObjectFunction(w_(i,s,o,h)),i.setClearColor(0,0),i.setRenderTarget(t),this.renderShadow(e),i.setRenderObjectFunction(d),o===je&&!0!==s.isPointLightShadow&&this.vsmPass(i),s.camera.layers.mask=l,y_(i,n,L_)}vsmPass(e){const{shadow:t}=this,r=this.shadowMap.depth;this.vsmShadowMapVertical.setSize(t.mapSize.width,t.mapSize.height,r),this.vsmShadowMapHorizontal.setSize(t.mapSize.width,t.mapSize.height,r),e.setRenderTarget(this.vsmShadowMapVertical),P_.material=this.vsmMaterialVertical,P_.render(e),e.setRenderTarget(this.vsmShadowMapHorizontal),P_.material=this.vsmMaterialHorizontal,P_.render(e)}dispose(){this._reset(),super.dispose()}_reset(){this._currentShadowType=null,this.shadowMap&&(this.shadowMap.dispose(),this.shadowMap=null),null!==this.vsmShadowMapVertical&&(this.vsmShadowMapVertical.dispose(),this.vsmShadowMapVertical=null,this.vsmMaterialVertical.dispose(),this.vsmMaterialVertical=null),null!==this.vsmShadowMapHorizontal&&(this.vsmShadowMapHorizontal.dispose(),this.vsmShadowMapHorizontal=null,this.vsmMaterialHorizontal.dispose(),this.vsmMaterialHorizontal=null)}updateBefore(e){const{shadow:t}=this;let r=t.needsUpdate||t.autoUpdate;r&&(this._cameraFrameId[e.camera]===e.frameId&&(r=!1),this._cameraFrameId[e.camera]=e.frameId),r&&(this.updateShadow(e),this.shadowMap.depthTexture.version===this._depthVersionCached&&(t.needsUpdate=!1))}}const D_=(e,t)=>Yi(new F_(e,t)),I_=new e,U_=new a,O_=new r,V_=new r,k_=[new r(1,0,0),new r(-1,0,0),new r(0,-1,0),new r(0,1,0),new r(0,0,1),new r(0,0,-1)],G_=[new r(0,-1,0),new r(0,-1,0),new r(0,0,-1),new r(0,0,1),new r(0,-1,0),new r(0,-1,0)],z_=[new r(1,0,0),new r(-1,0,0),new r(0,1,0),new r(0,-1,0),new r(0,0,1),new r(0,0,-1)],$_=[new r(0,-1,0),new r(0,-1,0),new r(0,0,1),new r(0,0,-1),new r(0,-1,0),new r(0,-1,0)],W_=an(({depthTexture:e,bd3D:t,dp:r})=>hc(e,t).compare(r)),H_=an(({depthTexture:e,bd3D:t,dp:r,shadow:s})=>{const i=mc("radius","float",s).setGroup(fa),n=mc("mapSize","vec2",s).setGroup(fa),a=i.div(n.x),o=wo(t),u=To(Yo(t,o.x.greaterThan(o.z).select(Tn(0,1,0),Tn(1,0,0)))),l=Yo(t,u),d=Qb(ql.xy).mul(6.28318530718),c=Zb(0,5,d),h=Zb(1,5,d),p=Zb(2,5,d),g=Zb(3,5,d),m=Zb(4,5,d);return hc(e,t.add(u.mul(c.x).add(l.mul(c.y)).mul(a))).compare(r).add(hc(e,t.add(u.mul(h.x).add(l.mul(h.y)).mul(a))).compare(r)).add(hc(e,t.add(u.mul(p.x).add(l.mul(p.y)).mul(a))).compare(r)).add(hc(e,t.add(u.mul(g.x).add(l.mul(g.y)).mul(a))).compare(r)).add(hc(e,t.add(u.mul(m.x).add(l.mul(m.y)).mul(a))).compare(r)).mul(.2)}),j_=an(({filterFn:e,depthTexture:t,shadowCoord:r,shadow:s})=>{const i=r.xyz.toVar(),n=i.length(),a=xa("float").setGroup(fa).onRenderUpdate(()=>s.camera.near),o=xa("float").setGroup(fa).onRenderUpdate(()=>s.camera.far),u=mc("bias","float",s).setGroup(fa),l=hn(1).toVar();return ln(n.sub(o).lessThanEqual(0).and(n.sub(a).greaterThanEqual(0)),()=>{const r=n.sub(a).div(o.sub(a)).toVar();r.addAssign(u);const d=i.normalize();l.assign(e({depthTexture:t,bd3D:d,dp:r,shadow:s}))}),l});class q_ extends F_{static get type(){return"PointShadowNode"}constructor(e,t=null){super(e,t)}getShadowFilterFn(e){return e===Xe?W_:H_}setupShadowCoord(e,t){return t}setupShadowFilter(e,{filterFn:t,depthTexture:r,shadowCoord:s,shadow:i}){return j_({filterFn:t,depthTexture:r,shadowCoord:s,shadow:i})}setupRenderTarget(e,t){const r=new Ke(e.mapSize.width);r.name="PointShadowDepthTexture",r.compareFunction=qe;const s=t.createCubeRenderTarget(e.mapSize.width);return s.texture.name="PointShadowMap",s.depthTexture=r,{shadowMap:s,depthTexture:r}}renderShadow(e){const{shadow:t,shadowMap:r,light:s}=this,{renderer:i,scene:n}=e,a=t.camera,o=t.matrix,u=i.coordinateSystem===h,l=u?k_:z_,d=u?G_:$_;r.setSize(t.mapSize.width,t.mapSize.width);const c=i.autoClear,p=i.getClearColor(I_),g=i.getClearAlpha();i.autoClear=!1,i.setClearColor(t.clearColor,t.clearAlpha);for(let e=0;e<6;e++){i.setRenderTarget(r,e),i.clear();const u=s.distance||a.far;u!==a.far&&(a.far=u,a.updateProjectionMatrix()),O_.setFromMatrixPosition(s.matrixWorld),a.position.copy(O_),V_.copy(a.position),V_.add(l[e]),a.up.copy(d[e]),a.lookAt(V_),a.updateMatrixWorld(),o.makeTranslation(-O_.x,-O_.y,-O_.z),U_.multiplyMatrices(a.projectionMatrix,a.matrixWorldInverse),t._frustum.setFromProjectionMatrix(U_,a.coordinateSystem,a.reversedDepth);const c=n.name;n.name=`Point Light Shadow [ ${s.name||"ID: "+s.id} ] - Face ${e+1}`,i.render(n,a),n.name=c}i.autoClear=c,i.setClearColor(p,g)}}const X_=(e,t)=>Yi(new q_(e,t));class K_ extends gp{static get type(){return"AnalyticLightNode"}constructor(t=null){super(),this.light=t,this.color=new e,this.colorNode=t&&t.colorNode||xa(this.color).setGroup(fa),this.baseColorNode=null,this.shadowNode=null,this.shadowColorNode=null,this.isAnalyticLightNode=!0,this.updateType=Qs.FRAME}getHash(){return this.light.uuid}getLightVector(e){return r_(this.light).sub(e.context.positionView||Dd)}setupDirect(){}setupDirectRectArea(){}setupShadowNode(){return D_(this.light)}setupShadow(e){const{renderer:t}=e;if(!1===t.shadowMap.enabled)return;let r=this.shadowColorNode;if(null===r){const e=this.light.shadow.shadowNode;let t;t=void 0!==e?Yi(e):this.setupShadowNode(),this.shadowNode=t,this.shadowColorNode=r=this.colorNode.mul(t),this.baseColorNode=this.colorNode}e.context.getShadow&&(r=e.context.getShadow(this,e)),this.colorNode=r}setup(e){this.colorNode=this.baseColorNode||this.colorNode,this.light.castShadow?e.object.receiveShadow&&this.setupShadow(e):null!==this.shadowNode&&(this.shadowNode.dispose(),this.shadowNode=null,this.shadowColorNode=null);const t=this.setupDirect(e),r=this.setupDirectRectArea(e);t&&e.lightsNode.setupDirectLight(e,this,t),r&&e.lightsNode.setupDirectRectAreaLight(e,this,r)}update(){const{light:e}=this;this.color.copy(e.color).multiplyScalar(e.intensity)}}const Y_=an(({lightDistance:e,cutoffDistance:t,decayExponent:r})=>{const s=e.pow(r).max(.01).reciprocal();return t.greaterThan(0).select(s.mul(e.div(t).pow4().oneMinus().clamp().pow2()),s)}),Q_=({color:e,lightVector:t,cutoffDistance:r,decayExponent:s})=>{const i=t.normalize(),n=t.length(),a=Y_({lightDistance:n,cutoffDistance:r,decayExponent:s});return{lightDirection:i,lightColor:e.mul(a)}};class Z_ extends K_{static get type(){return"PointLightNode"}constructor(e=null){super(e),this.cutoffDistanceNode=xa(0).setGroup(fa),this.decayExponentNode=xa(2).setGroup(fa)}update(e){const{light:t}=this;super.update(e),this.cutoffDistanceNode.value=t.distance,this.decayExponentNode.value=t.decay}setupShadowNode(){return X_(this.light)}setupDirect(e){return Q_({color:this.colorNode,lightVector:this.getLightVector(e),cutoffDistance:this.cutoffDistanceNode,decayExponent:this.decayExponentNode})}}const J_=an(([e=Rl()])=>{const t=e.mul(2),r=t.x.floor(),s=t.y.floor();return r.add(s).mod(2).sign()}),ev=an(([e=Rl()],{renderer:t,material:r})=>{const s=su(e.mul(2).sub(1));let i;if(r.alphaToCoverage&&t.currentSamples>0){const e=hn(s.fwidth()).toVar();i=uu(e.oneMinus(),e.add(1),s).oneMinus()}else i=bu(s.greaterThan(1),0,1);return i}),tv=an(([e,t,r])=>{const s=hn(r).toVar(),i=hn(t).toVar(),n=mn(e).toVar();return bu(n,i,s)}).setLayout({name:"mx_select",type:"float",inputs:[{name:"b",type:"bool"},{name:"t",type:"float"},{name:"f",type:"float"}]}),rv=an(([e,t])=>{const r=mn(t).toVar(),s=hn(e).toVar();return bu(r,s.negate(),s)}).setLayout({name:"mx_negate_if",type:"float",inputs:[{name:"val",type:"float"},{name:"b",type:"bool"}]}),sv=an(([e])=>{const t=hn(e).toVar();return pn(bo(t))}).setLayout({name:"mx_floor",type:"int",inputs:[{name:"x",type:"float"}]}),iv=an(([e,t])=>{const r=hn(e).toVar();return t.assign(sv(r)),r.sub(hn(t))}),nv=gb([an(([e,t,r,s,i,n])=>{const a=hn(n).toVar(),o=hn(i).toVar(),u=hn(s).toVar(),l=hn(r).toVar(),d=hn(t).toVar(),c=hn(e).toVar(),h=hn(Ca(1,o)).toVar();return Ca(1,a).mul(c.mul(h).add(d.mul(o))).add(a.mul(l.mul(h).add(u.mul(o))))}).setLayout({name:"mx_bilerp_0",type:"float",inputs:[{name:"v0",type:"float"},{name:"v1",type:"float"},{name:"v2",type:"float"},{name:"v3",type:"float"},{name:"s",type:"float"},{name:"t",type:"float"}]}),an(([e,t,r,s,i,n])=>{const a=hn(n).toVar(),o=hn(i).toVar(),u=Tn(s).toVar(),l=Tn(r).toVar(),d=Tn(t).toVar(),c=Tn(e).toVar(),h=hn(Ca(1,o)).toVar();return Ca(1,a).mul(c.mul(h).add(d.mul(o))).add(a.mul(l.mul(h).add(u.mul(o))))}).setLayout({name:"mx_bilerp_1",type:"vec3",inputs:[{name:"v0",type:"vec3"},{name:"v1",type:"vec3"},{name:"v2",type:"vec3"},{name:"v3",type:"vec3"},{name:"s",type:"float"},{name:"t",type:"float"}]})]),av=gb([an(([e,t,r,s,i,n,a,o,u,l,d])=>{const c=hn(d).toVar(),h=hn(l).toVar(),p=hn(u).toVar(),g=hn(o).toVar(),m=hn(a).toVar(),f=hn(n).toVar(),y=hn(i).toVar(),b=hn(s).toVar(),x=hn(r).toVar(),T=hn(t).toVar(),_=hn(e).toVar(),v=hn(Ca(1,p)).toVar(),N=hn(Ca(1,h)).toVar();return hn(Ca(1,c)).toVar().mul(N.mul(_.mul(v).add(T.mul(p))).add(h.mul(x.mul(v).add(b.mul(p))))).add(c.mul(N.mul(y.mul(v).add(f.mul(p))).add(h.mul(m.mul(v).add(g.mul(p))))))}).setLayout({name:"mx_trilerp_0",type:"float",inputs:[{name:"v0",type:"float"},{name:"v1",type:"float"},{name:"v2",type:"float"},{name:"v3",type:"float"},{name:"v4",type:"float"},{name:"v5",type:"float"},{name:"v6",type:"float"},{name:"v7",type:"float"},{name:"s",type:"float"},{name:"t",type:"float"},{name:"r",type:"float"}]}),an(([e,t,r,s,i,n,a,o,u,l,d])=>{const c=hn(d).toVar(),h=hn(l).toVar(),p=hn(u).toVar(),g=Tn(o).toVar(),m=Tn(a).toVar(),f=Tn(n).toVar(),y=Tn(i).toVar(),b=Tn(s).toVar(),x=Tn(r).toVar(),T=Tn(t).toVar(),_=Tn(e).toVar(),v=hn(Ca(1,p)).toVar(),N=hn(Ca(1,h)).toVar();return hn(Ca(1,c)).toVar().mul(N.mul(_.mul(v).add(T.mul(p))).add(h.mul(x.mul(v).add(b.mul(p))))).add(c.mul(N.mul(y.mul(v).add(f.mul(p))).add(h.mul(m.mul(v).add(g.mul(p))))))}).setLayout({name:"mx_trilerp_1",type:"vec3",inputs:[{name:"v0",type:"vec3"},{name:"v1",type:"vec3"},{name:"v2",type:"vec3"},{name:"v3",type:"vec3"},{name:"v4",type:"vec3"},{name:"v5",type:"vec3"},{name:"v6",type:"vec3"},{name:"v7",type:"vec3"},{name:"s",type:"float"},{name:"t",type:"float"},{name:"r",type:"float"}]})]),ov=an(([e,t,r])=>{const s=hn(r).toVar(),i=hn(t).toVar(),n=gn(e).toVar(),a=gn(n.bitAnd(gn(7))).toVar(),o=hn(tv(a.lessThan(gn(4)),i,s)).toVar(),u=hn(Ma(2,tv(a.lessThan(gn(4)),s,i))).toVar();return rv(o,mn(a.bitAnd(gn(1)))).add(rv(u,mn(a.bitAnd(gn(2)))))}).setLayout({name:"mx_gradient_float_0",type:"float",inputs:[{name:"hash",type:"uint"},{name:"x",type:"float"},{name:"y",type:"float"}]}),uv=an(([e,t,r,s])=>{const i=hn(s).toVar(),n=hn(r).toVar(),a=hn(t).toVar(),o=gn(e).toVar(),u=gn(o.bitAnd(gn(15))).toVar(),l=hn(tv(u.lessThan(gn(8)),a,n)).toVar(),d=hn(tv(u.lessThan(gn(4)),n,tv(u.equal(gn(12)).or(u.equal(gn(14))),a,i))).toVar();return rv(l,mn(u.bitAnd(gn(1)))).add(rv(d,mn(u.bitAnd(gn(2)))))}).setLayout({name:"mx_gradient_float_1",type:"float",inputs:[{name:"hash",type:"uint"},{name:"x",type:"float"},{name:"y",type:"float"},{name:"z",type:"float"}]}),lv=gb([ov,uv]),dv=an(([e,t,r])=>{const s=hn(r).toVar(),i=hn(t).toVar(),n=vn(e).toVar();return Tn(lv(n.x,i,s),lv(n.y,i,s),lv(n.z,i,s))}).setLayout({name:"mx_gradient_vec3_0",type:"vec3",inputs:[{name:"hash",type:"uvec3"},{name:"x",type:"float"},{name:"y",type:"float"}]}),cv=an(([e,t,r,s])=>{const i=hn(s).toVar(),n=hn(r).toVar(),a=hn(t).toVar(),o=vn(e).toVar();return Tn(lv(o.x,a,n,i),lv(o.y,a,n,i),lv(o.z,a,n,i))}).setLayout({name:"mx_gradient_vec3_1",type:"vec3",inputs:[{name:"hash",type:"uvec3"},{name:"x",type:"float"},{name:"y",type:"float"},{name:"z",type:"float"}]}),hv=gb([dv,cv]),pv=an(([e])=>{const t=hn(e).toVar();return Ma(.6616,t)}).setLayout({name:"mx_gradient_scale2d_0",type:"float",inputs:[{name:"v",type:"float"}]}),gv=an(([e])=>{const t=hn(e).toVar();return Ma(.982,t)}).setLayout({name:"mx_gradient_scale3d_0",type:"float",inputs:[{name:"v",type:"float"}]}),mv=gb([pv,an(([e])=>{const t=Tn(e).toVar();return Ma(.6616,t)}).setLayout({name:"mx_gradient_scale2d_1",type:"vec3",inputs:[{name:"v",type:"vec3"}]})]),fv=gb([gv,an(([e])=>{const t=Tn(e).toVar();return Ma(.982,t)}).setLayout({name:"mx_gradient_scale3d_1",type:"vec3",inputs:[{name:"v",type:"vec3"}]})]),yv=an(([e,t])=>{const r=pn(t).toVar(),s=gn(e).toVar();return s.shiftLeft(r).bitOr(s.shiftRight(pn(32).sub(r)))}).setLayout({name:"mx_rotl32",type:"uint",inputs:[{name:"x",type:"uint"},{name:"k",type:"int"}]}),bv=an(([e,t,r])=>{e.subAssign(r),e.bitXorAssign(yv(r,pn(4))),r.addAssign(t),t.subAssign(e),t.bitXorAssign(yv(e,pn(6))),e.addAssign(r),r.subAssign(t),r.bitXorAssign(yv(t,pn(8))),t.addAssign(e),e.subAssign(r),e.bitXorAssign(yv(r,pn(16))),r.addAssign(t),t.subAssign(e),t.bitXorAssign(yv(e,pn(19))),e.addAssign(r),r.subAssign(t),r.bitXorAssign(yv(t,pn(4))),t.addAssign(e)}),xv=an(([e,t,r])=>{const s=gn(r).toVar(),i=gn(t).toVar(),n=gn(e).toVar();return s.bitXorAssign(i),s.subAssign(yv(i,pn(14))),n.bitXorAssign(s),n.subAssign(yv(s,pn(11))),i.bitXorAssign(n),i.subAssign(yv(n,pn(25))),s.bitXorAssign(i),s.subAssign(yv(i,pn(16))),n.bitXorAssign(s),n.subAssign(yv(s,pn(4))),i.bitXorAssign(n),i.subAssign(yv(n,pn(14))),s.bitXorAssign(i),s.subAssign(yv(i,pn(24))),s}).setLayout({name:"mx_bjfinal",type:"uint",inputs:[{name:"a",type:"uint"},{name:"b",type:"uint"},{name:"c",type:"uint"}]}),Tv=an(([e])=>{const t=gn(e).toVar();return hn(t).div(hn(gn(pn(4294967295))))}).setLayout({name:"mx_bits_to_01",type:"float",inputs:[{name:"bits",type:"uint"}]}),_v=an(([e])=>{const t=hn(e).toVar();return t.mul(t).mul(t).mul(t.mul(t.mul(6).sub(15)).add(10))}).setLayout({name:"mx_fade",type:"float",inputs:[{name:"t",type:"float"}]}),vv=gb([an(([e])=>{const t=pn(e).toVar(),r=gn(gn(1)).toVar(),s=gn(gn(pn(3735928559)).add(r.shiftLeft(gn(2))).add(gn(13))).toVar();return xv(s.add(gn(t)),s,s)}).setLayout({name:"mx_hash_int_0",type:"uint",inputs:[{name:"x",type:"int"}]}),an(([e,t])=>{const r=pn(t).toVar(),s=pn(e).toVar(),i=gn(gn(2)).toVar(),n=gn().toVar(),a=gn().toVar(),o=gn().toVar();return n.assign(a.assign(o.assign(gn(pn(3735928559)).add(i.shiftLeft(gn(2))).add(gn(13))))),n.addAssign(gn(s)),a.addAssign(gn(r)),xv(n,a,o)}).setLayout({name:"mx_hash_int_1",type:"uint",inputs:[{name:"x",type:"int"},{name:"y",type:"int"}]}),an(([e,t,r])=>{const s=pn(r).toVar(),i=pn(t).toVar(),n=pn(e).toVar(),a=gn(gn(3)).toVar(),o=gn().toVar(),u=gn().toVar(),l=gn().toVar();return o.assign(u.assign(l.assign(gn(pn(3735928559)).add(a.shiftLeft(gn(2))).add(gn(13))))),o.addAssign(gn(n)),u.addAssign(gn(i)),l.addAssign(gn(s)),xv(o,u,l)}).setLayout({name:"mx_hash_int_2",type:"uint",inputs:[{name:"x",type:"int"},{name:"y",type:"int"},{name:"z",type:"int"}]}),an(([e,t,r,s])=>{const i=pn(s).toVar(),n=pn(r).toVar(),a=pn(t).toVar(),o=pn(e).toVar(),u=gn(gn(4)).toVar(),l=gn().toVar(),d=gn().toVar(),c=gn().toVar();return l.assign(d.assign(c.assign(gn(pn(3735928559)).add(u.shiftLeft(gn(2))).add(gn(13))))),l.addAssign(gn(o)),d.addAssign(gn(a)),c.addAssign(gn(n)),bv(l,d,c),l.addAssign(gn(i)),xv(l,d,c)}).setLayout({name:"mx_hash_int_3",type:"uint",inputs:[{name:"x",type:"int"},{name:"y",type:"int"},{name:"z",type:"int"},{name:"xx",type:"int"}]}),an(([e,t,r,s,i])=>{const n=pn(i).toVar(),a=pn(s).toVar(),o=pn(r).toVar(),u=pn(t).toVar(),l=pn(e).toVar(),d=gn(gn(5)).toVar(),c=gn().toVar(),h=gn().toVar(),p=gn().toVar();return c.assign(h.assign(p.assign(gn(pn(3735928559)).add(d.shiftLeft(gn(2))).add(gn(13))))),c.addAssign(gn(l)),h.addAssign(gn(u)),p.addAssign(gn(o)),bv(c,h,p),c.addAssign(gn(a)),h.addAssign(gn(n)),xv(c,h,p)}).setLayout({name:"mx_hash_int_4",type:"uint",inputs:[{name:"x",type:"int"},{name:"y",type:"int"},{name:"z",type:"int"},{name:"xx",type:"int"},{name:"yy",type:"int"}]})]),Nv=gb([an(([e,t])=>{const r=pn(t).toVar(),s=pn(e).toVar(),i=gn(vv(s,r)).toVar(),n=vn().toVar();return n.x.assign(i.bitAnd(pn(255))),n.y.assign(i.shiftRight(pn(8)).bitAnd(pn(255))),n.z.assign(i.shiftRight(pn(16)).bitAnd(pn(255))),n}).setLayout({name:"mx_hash_vec3_0",type:"uvec3",inputs:[{name:"x",type:"int"},{name:"y",type:"int"}]}),an(([e,t,r])=>{const s=pn(r).toVar(),i=pn(t).toVar(),n=pn(e).toVar(),a=gn(vv(n,i,s)).toVar(),o=vn().toVar();return o.x.assign(a.bitAnd(pn(255))),o.y.assign(a.shiftRight(pn(8)).bitAnd(pn(255))),o.z.assign(a.shiftRight(pn(16)).bitAnd(pn(255))),o}).setLayout({name:"mx_hash_vec3_1",type:"uvec3",inputs:[{name:"x",type:"int"},{name:"y",type:"int"},{name:"z",type:"int"}]})]),Sv=gb([an(([e])=>{const t=fn(e).toVar(),r=pn().toVar(),s=pn().toVar(),i=hn(iv(t.x,r)).toVar(),n=hn(iv(t.y,s)).toVar(),a=hn(_v(i)).toVar(),o=hn(_v(n)).toVar(),u=hn(nv(lv(vv(r,s),i,n),lv(vv(r.add(pn(1)),s),i.sub(1),n),lv(vv(r,s.add(pn(1))),i,n.sub(1)),lv(vv(r.add(pn(1)),s.add(pn(1))),i.sub(1),n.sub(1)),a,o)).toVar();return mv(u)}).setLayout({name:"mx_perlin_noise_float_0",type:"float",inputs:[{name:"p",type:"vec2"}]}),an(([e])=>{const t=Tn(e).toVar(),r=pn().toVar(),s=pn().toVar(),i=pn().toVar(),n=hn(iv(t.x,r)).toVar(),a=hn(iv(t.y,s)).toVar(),o=hn(iv(t.z,i)).toVar(),u=hn(_v(n)).toVar(),l=hn(_v(a)).toVar(),d=hn(_v(o)).toVar(),c=hn(av(lv(vv(r,s,i),n,a,o),lv(vv(r.add(pn(1)),s,i),n.sub(1),a,o),lv(vv(r,s.add(pn(1)),i),n,a.sub(1),o),lv(vv(r.add(pn(1)),s.add(pn(1)),i),n.sub(1),a.sub(1),o),lv(vv(r,s,i.add(pn(1))),n,a,o.sub(1)),lv(vv(r.add(pn(1)),s,i.add(pn(1))),n.sub(1),a,o.sub(1)),lv(vv(r,s.add(pn(1)),i.add(pn(1))),n,a.sub(1),o.sub(1)),lv(vv(r.add(pn(1)),s.add(pn(1)),i.add(pn(1))),n.sub(1),a.sub(1),o.sub(1)),u,l,d)).toVar();return fv(c)}).setLayout({name:"mx_perlin_noise_float_1",type:"float",inputs:[{name:"p",type:"vec3"}]})]),Rv=gb([an(([e])=>{const t=fn(e).toVar(),r=pn().toVar(),s=pn().toVar(),i=hn(iv(t.x,r)).toVar(),n=hn(iv(t.y,s)).toVar(),a=hn(_v(i)).toVar(),o=hn(_v(n)).toVar(),u=Tn(nv(hv(Nv(r,s),i,n),hv(Nv(r.add(pn(1)),s),i.sub(1),n),hv(Nv(r,s.add(pn(1))),i,n.sub(1)),hv(Nv(r.add(pn(1)),s.add(pn(1))),i.sub(1),n.sub(1)),a,o)).toVar();return mv(u)}).setLayout({name:"mx_perlin_noise_vec3_0",type:"vec3",inputs:[{name:"p",type:"vec2"}]}),an(([e])=>{const t=Tn(e).toVar(),r=pn().toVar(),s=pn().toVar(),i=pn().toVar(),n=hn(iv(t.x,r)).toVar(),a=hn(iv(t.y,s)).toVar(),o=hn(iv(t.z,i)).toVar(),u=hn(_v(n)).toVar(),l=hn(_v(a)).toVar(),d=hn(_v(o)).toVar(),c=Tn(av(hv(Nv(r,s,i),n,a,o),hv(Nv(r.add(pn(1)),s,i),n.sub(1),a,o),hv(Nv(r,s.add(pn(1)),i),n,a.sub(1),o),hv(Nv(r.add(pn(1)),s.add(pn(1)),i),n.sub(1),a.sub(1),o),hv(Nv(r,s,i.add(pn(1))),n,a,o.sub(1)),hv(Nv(r.add(pn(1)),s,i.add(pn(1))),n.sub(1),a,o.sub(1)),hv(Nv(r,s.add(pn(1)),i.add(pn(1))),n,a.sub(1),o.sub(1)),hv(Nv(r.add(pn(1)),s.add(pn(1)),i.add(pn(1))),n.sub(1),a.sub(1),o.sub(1)),u,l,d)).toVar();return fv(c)}).setLayout({name:"mx_perlin_noise_vec3_1",type:"vec3",inputs:[{name:"p",type:"vec3"}]})]),Av=gb([an(([e])=>{const t=hn(e).toVar(),r=pn(sv(t)).toVar();return Tv(vv(r))}).setLayout({name:"mx_cell_noise_float_0",type:"float",inputs:[{name:"p",type:"float"}]}),an(([e])=>{const t=fn(e).toVar(),r=pn(sv(t.x)).toVar(),s=pn(sv(t.y)).toVar();return Tv(vv(r,s))}).setLayout({name:"mx_cell_noise_float_1",type:"float",inputs:[{name:"p",type:"vec2"}]}),an(([e])=>{const t=Tn(e).toVar(),r=pn(sv(t.x)).toVar(),s=pn(sv(t.y)).toVar(),i=pn(sv(t.z)).toVar();return Tv(vv(r,s,i))}).setLayout({name:"mx_cell_noise_float_2",type:"float",inputs:[{name:"p",type:"vec3"}]}),an(([e])=>{const t=Sn(e).toVar(),r=pn(sv(t.x)).toVar(),s=pn(sv(t.y)).toVar(),i=pn(sv(t.z)).toVar(),n=pn(sv(t.w)).toVar();return Tv(vv(r,s,i,n))}).setLayout({name:"mx_cell_noise_float_3",type:"float",inputs:[{name:"p",type:"vec4"}]})]),Ev=gb([an(([e])=>{const t=hn(e).toVar(),r=pn(sv(t)).toVar();return Tn(Tv(vv(r,pn(0))),Tv(vv(r,pn(1))),Tv(vv(r,pn(2))))}).setLayout({name:"mx_cell_noise_vec3_0",type:"vec3",inputs:[{name:"p",type:"float"}]}),an(([e])=>{const t=fn(e).toVar(),r=pn(sv(t.x)).toVar(),s=pn(sv(t.y)).toVar();return Tn(Tv(vv(r,s,pn(0))),Tv(vv(r,s,pn(1))),Tv(vv(r,s,pn(2))))}).setLayout({name:"mx_cell_noise_vec3_1",type:"vec3",inputs:[{name:"p",type:"vec2"}]}),an(([e])=>{const t=Tn(e).toVar(),r=pn(sv(t.x)).toVar(),s=pn(sv(t.y)).toVar(),i=pn(sv(t.z)).toVar();return Tn(Tv(vv(r,s,i,pn(0))),Tv(vv(r,s,i,pn(1))),Tv(vv(r,s,i,pn(2))))}).setLayout({name:"mx_cell_noise_vec3_2",type:"vec3",inputs:[{name:"p",type:"vec3"}]}),an(([e])=>{const t=Sn(e).toVar(),r=pn(sv(t.x)).toVar(),s=pn(sv(t.y)).toVar(),i=pn(sv(t.z)).toVar(),n=pn(sv(t.w)).toVar();return Tn(Tv(vv(r,s,i,n,pn(0))),Tv(vv(r,s,i,n,pn(1))),Tv(vv(r,s,i,n,pn(2))))}).setLayout({name:"mx_cell_noise_vec3_3",type:"vec3",inputs:[{name:"p",type:"vec4"}]})]),wv=an(([e,t,r,s])=>{const i=hn(s).toVar(),n=hn(r).toVar(),a=pn(t).toVar(),o=Tn(e).toVar(),u=hn(0).toVar(),l=hn(1).toVar();return op(a,()=>{u.addAssign(l.mul(Sv(o))),l.mulAssign(i),o.mulAssign(n)}),u}).setLayout({name:"mx_fractal_noise_float",type:"float",inputs:[{name:"p",type:"vec3"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),Cv=an(([e,t,r,s])=>{const i=hn(s).toVar(),n=hn(r).toVar(),a=pn(t).toVar(),o=Tn(e).toVar(),u=Tn(0).toVar(),l=hn(1).toVar();return op(a,()=>{u.addAssign(l.mul(Rv(o))),l.mulAssign(i),o.mulAssign(n)}),u}).setLayout({name:"mx_fractal_noise_vec3",type:"vec3",inputs:[{name:"p",type:"vec3"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),Mv=an(([e,t,r,s])=>{const i=hn(s).toVar(),n=hn(r).toVar(),a=pn(t).toVar(),o=Tn(e).toVar();return fn(wv(o,a,n,i),wv(o.add(Tn(pn(19),pn(193),pn(17))),a,n,i))}).setLayout({name:"mx_fractal_noise_vec2",type:"vec2",inputs:[{name:"p",type:"vec3"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),Bv=an(([e,t,r,s])=>{const i=hn(s).toVar(),n=hn(r).toVar(),a=pn(t).toVar(),o=Tn(e).toVar(),u=Tn(Cv(o,a,n,i)).toVar(),l=hn(wv(o.add(Tn(pn(19),pn(193),pn(17))),a,n,i)).toVar();return Sn(u,l)}).setLayout({name:"mx_fractal_noise_vec4",type:"vec4",inputs:[{name:"p",type:"vec3"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),Lv=gb([an(([e,t,r,s,i,n,a])=>{const o=pn(a).toVar(),u=hn(n).toVar(),l=pn(i).toVar(),d=pn(s).toVar(),c=pn(r).toVar(),h=pn(t).toVar(),p=fn(e).toVar(),g=Tn(Ev(fn(h.add(d),c.add(l)))).toVar(),m=fn(g.x,g.y).toVar();m.subAssign(.5),m.mulAssign(u),m.addAssign(.5);const f=fn(fn(hn(h),hn(c)).add(m)).toVar(),y=fn(f.sub(p)).toVar();return ln(o.equal(pn(2)),()=>wo(y.x).add(wo(y.y))),ln(o.equal(pn(3)),()=>Wo(wo(y.x),wo(y.y))),Ko(y,y)}).setLayout({name:"mx_worley_distance_0",type:"float",inputs:[{name:"p",type:"vec2"},{name:"x",type:"int"},{name:"y",type:"int"},{name:"xoff",type:"int"},{name:"yoff",type:"int"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),an(([e,t,r,s,i,n,a,o,u])=>{const l=pn(u).toVar(),d=hn(o).toVar(),c=pn(a).toVar(),h=pn(n).toVar(),p=pn(i).toVar(),g=pn(s).toVar(),m=pn(r).toVar(),f=pn(t).toVar(),y=Tn(e).toVar(),b=Tn(Ev(Tn(f.add(p),m.add(h),g.add(c)))).toVar();b.subAssign(.5),b.mulAssign(d),b.addAssign(.5);const x=Tn(Tn(hn(f),hn(m),hn(g)).add(b)).toVar(),T=Tn(x.sub(y)).toVar();return ln(l.equal(pn(2)),()=>wo(T.x).add(wo(T.y)).add(wo(T.z))),ln(l.equal(pn(3)),()=>Wo(wo(T.x),wo(T.y),wo(T.z))),Ko(T,T)}).setLayout({name:"mx_worley_distance_1",type:"float",inputs:[{name:"p",type:"vec3"},{name:"x",type:"int"},{name:"y",type:"int"},{name:"z",type:"int"},{name:"xoff",type:"int"},{name:"yoff",type:"int"},{name:"zoff",type:"int"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]})]),Pv=an(([e,t,r])=>{const s=pn(r).toVar(),i=hn(t).toVar(),n=fn(e).toVar(),a=pn().toVar(),o=pn().toVar(),u=fn(iv(n.x,a),iv(n.y,o)).toVar(),l=hn(1e6).toVar();return op({start:-1,end:pn(1),name:"x",condition:"<="},({x:e})=>{op({start:-1,end:pn(1),name:"y",condition:"<="},({y:t})=>{const r=hn(Lv(u,e,t,a,o,i,s)).toVar();l.assign($o(l,r))})}),ln(s.equal(pn(0)),()=>{l.assign(fo(l))}),l}).setLayout({name:"mx_worley_noise_float_0",type:"float",inputs:[{name:"p",type:"vec2"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),Fv=an(([e,t,r])=>{const s=pn(r).toVar(),i=hn(t).toVar(),n=fn(e).toVar(),a=pn().toVar(),o=pn().toVar(),u=fn(iv(n.x,a),iv(n.y,o)).toVar(),l=fn(1e6,1e6).toVar();return op({start:-1,end:pn(1),name:"x",condition:"<="},({x:e})=>{op({start:-1,end:pn(1),name:"y",condition:"<="},({y:t})=>{const r=hn(Lv(u,e,t,a,o,i,s)).toVar();ln(r.lessThan(l.x),()=>{l.y.assign(l.x),l.x.assign(r)}).ElseIf(r.lessThan(l.y),()=>{l.y.assign(r)})})}),ln(s.equal(pn(0)),()=>{l.assign(fo(l))}),l}).setLayout({name:"mx_worley_noise_vec2_0",type:"vec2",inputs:[{name:"p",type:"vec2"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),Dv=an(([e,t,r])=>{const s=pn(r).toVar(),i=hn(t).toVar(),n=fn(e).toVar(),a=pn().toVar(),o=pn().toVar(),u=fn(iv(n.x,a),iv(n.y,o)).toVar(),l=Tn(1e6,1e6,1e6).toVar();return op({start:-1,end:pn(1),name:"x",condition:"<="},({x:e})=>{op({start:-1,end:pn(1),name:"y",condition:"<="},({y:t})=>{const r=hn(Lv(u,e,t,a,o,i,s)).toVar();ln(r.lessThan(l.x),()=>{l.z.assign(l.y),l.y.assign(l.x),l.x.assign(r)}).ElseIf(r.lessThan(l.y),()=>{l.z.assign(l.y),l.y.assign(r)}).ElseIf(r.lessThan(l.z),()=>{l.z.assign(r)})})}),ln(s.equal(pn(0)),()=>{l.assign(fo(l))}),l}).setLayout({name:"mx_worley_noise_vec3_0",type:"vec3",inputs:[{name:"p",type:"vec2"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),Iv=gb([Pv,an(([e,t,r])=>{const s=pn(r).toVar(),i=hn(t).toVar(),n=Tn(e).toVar(),a=pn().toVar(),o=pn().toVar(),u=pn().toVar(),l=Tn(iv(n.x,a),iv(n.y,o),iv(n.z,u)).toVar(),d=hn(1e6).toVar();return op({start:-1,end:pn(1),name:"x",condition:"<="},({x:e})=>{op({start:-1,end:pn(1),name:"y",condition:"<="},({y:t})=>{op({start:-1,end:pn(1),name:"z",condition:"<="},({z:r})=>{const n=hn(Lv(l,e,t,r,a,o,u,i,s)).toVar();d.assign($o(d,n))})})}),ln(s.equal(pn(0)),()=>{d.assign(fo(d))}),d}).setLayout({name:"mx_worley_noise_float_1",type:"float",inputs:[{name:"p",type:"vec3"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]})]),Uv=gb([Fv,an(([e,t,r])=>{const s=pn(r).toVar(),i=hn(t).toVar(),n=Tn(e).toVar(),a=pn().toVar(),o=pn().toVar(),u=pn().toVar(),l=Tn(iv(n.x,a),iv(n.y,o),iv(n.z,u)).toVar(),d=fn(1e6,1e6).toVar();return op({start:-1,end:pn(1),name:"x",condition:"<="},({x:e})=>{op({start:-1,end:pn(1),name:"y",condition:"<="},({y:t})=>{op({start:-1,end:pn(1),name:"z",condition:"<="},({z:r})=>{const n=hn(Lv(l,e,t,r,a,o,u,i,s)).toVar();ln(n.lessThan(d.x),()=>{d.y.assign(d.x),d.x.assign(n)}).ElseIf(n.lessThan(d.y),()=>{d.y.assign(n)})})})}),ln(s.equal(pn(0)),()=>{d.assign(fo(d))}),d}).setLayout({name:"mx_worley_noise_vec2_1",type:"vec2",inputs:[{name:"p",type:"vec3"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]})]),Ov=gb([Dv,an(([e,t,r])=>{const s=pn(r).toVar(),i=hn(t).toVar(),n=Tn(e).toVar(),a=pn().toVar(),o=pn().toVar(),u=pn().toVar(),l=Tn(iv(n.x,a),iv(n.y,o),iv(n.z,u)).toVar(),d=Tn(1e6,1e6,1e6).toVar();return op({start:-1,end:pn(1),name:"x",condition:"<="},({x:e})=>{op({start:-1,end:pn(1),name:"y",condition:"<="},({y:t})=>{op({start:-1,end:pn(1),name:"z",condition:"<="},({z:r})=>{const n=hn(Lv(l,e,t,r,a,o,u,i,s)).toVar();ln(n.lessThan(d.x),()=>{d.z.assign(d.y),d.y.assign(d.x),d.x.assign(n)}).ElseIf(n.lessThan(d.y),()=>{d.z.assign(d.y),d.y.assign(n)}).ElseIf(n.lessThan(d.z),()=>{d.z.assign(n)})})})}),ln(s.equal(pn(0)),()=>{d.assign(fo(d))}),d}).setLayout({name:"mx_worley_noise_vec3_1",type:"vec3",inputs:[{name:"p",type:"vec3"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]})]),Vv=an(([e,t,r,s,i,n,a,o,u,l,d])=>{const c=pn(e).toVar(),h=fn(t).toVar(),p=fn(r).toVar(),g=fn(s).toVar(),m=hn(i).toVar(),f=hn(n).toVar(),y=hn(a).toVar(),b=mn(o).toVar(),x=pn(u).toVar(),T=hn(l).toVar(),_=hn(d).toVar(),v=h.mul(p).add(g),N=hn(0).toVar();return ln(c.equal(pn(0)),()=>{N.assign(Rv(v))}),ln(c.equal(pn(1)),()=>{N.assign(Ev(v))}),ln(c.equal(pn(2)),()=>{N.assign(Ov(v,m,pn(0)))}),ln(c.equal(pn(3)),()=>{N.assign(Cv(Tn(v,0),x,T,_))}),N.assign(N.mul(y.sub(f)).add(f)),ln(b,()=>{N.assign(nu(N,f,y))}),N}).setLayout({name:"mx_unifiednoise2d",type:"float",inputs:[{name:"noiseType",type:"int"},{name:"texcoord",type:"vec2"},{name:"freq",type:"vec2"},{name:"offset",type:"vec2"},{name:"jitter",type:"float"},{name:"outmin",type:"float"},{name:"outmax",type:"float"},{name:"clampoutput",type:"bool"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),kv=an(([e,t,r,s,i,n,a,o,u,l,d])=>{const c=pn(e).toVar(),h=Tn(t).toVar(),p=Tn(r).toVar(),g=Tn(s).toVar(),m=hn(i).toVar(),f=hn(n).toVar(),y=hn(a).toVar(),b=mn(o).toVar(),x=pn(u).toVar(),T=hn(l).toVar(),_=hn(d).toVar(),v=h.mul(p).add(g),N=hn(0).toVar();return ln(c.equal(pn(0)),()=>{N.assign(Rv(v))}),ln(c.equal(pn(1)),()=>{N.assign(Ev(v))}),ln(c.equal(pn(2)),()=>{N.assign(Ov(v,m,pn(0)))}),ln(c.equal(pn(3)),()=>{N.assign(Cv(v,x,T,_))}),N.assign(N.mul(y.sub(f)).add(f)),ln(b,()=>{N.assign(nu(N,f,y))}),N}).setLayout({name:"mx_unifiednoise3d",type:"float",inputs:[{name:"noiseType",type:"int"},{name:"position",type:"vec3"},{name:"freq",type:"vec3"},{name:"offset",type:"vec3"},{name:"jitter",type:"float"},{name:"outmin",type:"float"},{name:"outmax",type:"float"},{name:"clampoutput",type:"bool"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),Gv=an(([e])=>{const t=e.y,r=e.z,s=Tn().toVar();return ln(t.lessThan(1e-4),()=>{s.assign(Tn(r,r,r))}).Else(()=>{let i=e.x;i=i.sub(bo(i)).mul(6).toVar();const n=pn(Uo(i)),a=i.sub(hn(n)),o=r.mul(t.oneMinus()),u=r.mul(t.mul(a).oneMinus()),l=r.mul(t.mul(a.oneMinus()).oneMinus());ln(n.equal(pn(0)),()=>{s.assign(Tn(r,l,o))}).ElseIf(n.equal(pn(1)),()=>{s.assign(Tn(u,r,o))}).ElseIf(n.equal(pn(2)),()=>{s.assign(Tn(o,r,l))}).ElseIf(n.equal(pn(3)),()=>{s.assign(Tn(o,u,r))}).ElseIf(n.equal(pn(4)),()=>{s.assign(Tn(l,o,r))}).Else(()=>{s.assign(Tn(r,o,u))})}),s}).setLayout({name:"mx_hsvtorgb",type:"vec3",inputs:[{name:"hsv",type:"vec3"}]}),zv=an(([e])=>{const t=Tn(e).toVar(),r=hn(t.x).toVar(),s=hn(t.y).toVar(),i=hn(t.z).toVar(),n=hn($o(r,$o(s,i))).toVar(),a=hn(Wo(r,Wo(s,i))).toVar(),o=hn(a.sub(n)).toVar(),u=hn().toVar(),l=hn().toVar(),d=hn().toVar();return d.assign(a),ln(a.greaterThan(0),()=>{l.assign(o.div(a))}).Else(()=>{l.assign(0)}),ln(l.lessThanEqual(0),()=>{u.assign(0)}).Else(()=>{ln(r.greaterThanEqual(a),()=>{u.assign(s.sub(i).div(o))}).ElseIf(s.greaterThanEqual(a),()=>{u.assign(wa(2,i.sub(r).div(o)))}).Else(()=>{u.assign(wa(4,r.sub(s).div(o)))}),u.mulAssign(1/6),ln(u.lessThan(0),()=>{u.addAssign(1)})}),Tn(u,l,d)}).setLayout({name:"mx_rgbtohsv",type:"vec3",inputs:[{name:"c",type:"vec3"}]}),$v=an(([e])=>{const t=Tn(e).toVar(),r=Nn(Ia(t,Tn(.04045))).toVar(),s=Tn(t.div(12.92)).toVar(),i=Tn(Qo(Wo(t.add(Tn(.055)),Tn(0)).div(1.055),Tn(2.4))).toVar();return iu(s,i,r)}).setLayout({name:"mx_srgb_texture_to_lin_rec709",type:"vec3",inputs:[{name:"color",type:"vec3"}]}),Wv=(e,t)=>{e=hn(e),t=hn(t);const r=fn(t.dFdx(),t.dFdy()).length().mul(.7071067811865476);return uu(e.sub(r),e.add(r),t)},Hv=(e,t,r,s)=>iu(e,t,r[s].clamp()),jv=(e,t,r,s,i)=>iu(e,t,Wv(r,s[i])),qv=an(([e,t,r])=>{const s=To(e).toVar(),i=Ca(hn(.5).mul(t.sub(r)),Pd).div(s).toVar(),n=Ca(hn(-.5).mul(t.sub(r)),Pd).div(s).toVar(),a=Tn().toVar();a.x=s.x.greaterThan(hn(0)).select(i.x,n.x),a.y=s.y.greaterThan(hn(0)).select(i.y,n.y),a.z=s.z.greaterThan(hn(0)).select(i.z,n.z);const o=$o(a.x,a.y,a.z).toVar();return Pd.add(s.mul(o)).toVar().sub(r)}),Xv=an(([e,t])=>{const r=e.x,s=e.y,i=e.z;let n=t.element(0).mul(.886227);return n=n.add(t.element(1).mul(1.023328).mul(s)),n=n.add(t.element(2).mul(1.023328).mul(i)),n=n.add(t.element(3).mul(1.023328).mul(r)),n=n.add(t.element(4).mul(.858086).mul(r).mul(s)),n=n.add(t.element(5).mul(.858086).mul(s).mul(i)),n=n.add(t.element(6).mul(i.mul(i).mul(.743125).sub(.247708))),n=n.add(t.element(7).mul(.858086).mul(r).mul(i)),n=n.add(t.element(8).mul(.429043).mul(Ma(r,r).sub(Ma(s,s)))),n});var Kv=Object.freeze({__proto__:null,BRDF_GGX:Dg,BRDF_Lambert:Tg,BasicPointShadowFilter:W_,BasicShadowFilter:T_,Break:up,Const:Cu,Continue:()=>gl("continue").toStack(),DFGApprox:Og,D_GGX:Lg,Discard:ml,EPSILON:to,F_Schlick:xg,Fn:an,HALF_PI:ao,INFINITY:ro,If:ln,Loop:op,NodeAccess:Js,NodeShaderStage:Ys,NodeType:Zs,NodeUpdateType:Qs,OnBeforeMaterialUpdate:e=>tx(ex.BEFORE_MATERIAL,e),OnBeforeObjectUpdate:e=>tx(ex.BEFORE_OBJECT,e),OnMaterialUpdate:e=>tx(ex.MATERIAL,e),OnObjectUpdate:e=>tx(ex.OBJECT,e),PCFShadowFilter:__,PCFSoftShadowFilter:v_,PI:so,PI2:io,PointShadowFilter:H_,Return:()=>gl("return").toStack(),Schlick_to_F0:Gg,ScriptableNodeResources:eT,ShaderNode:Ki,Stack:dn,Switch:(...e)=>xi.Switch(...e),TBNViewMatrix:zc,TWO_PI:no,VSMShadowFilter:N_,V_GGX_SmithCorrelated:Mg,Var:wu,VarIntent:Mu,abs:wo,acesFilmicToneMapping:kx,acos:Ao,add:wa,addMethodChaining:_i,addNodeElement:function(e){d("TSL: AddNodeElement has been removed in favor of tree-shaking. Trying add",e)},agxToneMapping:Wx,all:oo,alphaT:Xn,and:Va,anisotropy:Kn,anisotropyB:Qn,anisotropyT:Yn,any:uo,append:e=>(d("TSL: append() has been renamed to Stack()."),dn(e)),array:_a,arrayBuffer:e=>Yi(new yi(e,"ArrayBuffer")),asin:Ro,assign:Na,atan:Eo,atan2:gu,atomicAdd:(e,t)=>NT(_T.ATOMIC_ADD,e,t),atomicAnd:(e,t)=>NT(_T.ATOMIC_AND,e,t),atomicFunc:NT,atomicLoad:e=>NT(_T.ATOMIC_LOAD,e,null),atomicMax:(e,t)=>NT(_T.ATOMIC_MAX,e,t),atomicMin:(e,t)=>NT(_T.ATOMIC_MIN,e,t),atomicOr:(e,t)=>NT(_T.ATOMIC_OR,e,t),atomicStore:(e,t)=>NT(_T.ATOMIC_STORE,e,t),atomicSub:(e,t)=>NT(_T.ATOMIC_SUB,e,t),atomicXor:(e,t)=>NT(_T.ATOMIC_XOR,e,t),attenuationColor:da,attenuationDistance:la,attribute:Sl,attributeArray:(e,t="float")=>{let r,s;!0===t.isStruct?(r=t.layout.getLength(),s=ks("float")):(r=Gs(t),s=ks(t));const i=new sx(e,r,s);return $h(i,t,e)},backgroundBlurriness:lx,backgroundIntensity:dx,backgroundRotation:cx,batch:rp,bentNormalView:Wc,billboarding:Tb,bitAnd:$a,bitNot:Wa,bitOr:Ha,bitXor:ja,bitangentGeometry:Oc,bitangentLocal:Vc,bitangentView:kc,bitangentWorld:Gc,bitcast:jy,blendBurn:Gp,blendColor:Hp,blendDodge:zp,blendOverlay:Wp,blendScreen:$p,blur:Gm,bool:mn,buffer:Il,bufferAttribute:Ju,builtin:kl,builtinAOContext:Su,builtinShadowContext:Nu,bumpMap:Zc,burn:(...e)=>(d('TSL: "burn" has been renamed. Use "blendBurn" instead.'),Gp(e)),bvec2:xn,bvec3:Nn,bvec4:En,bypass:ll,cache:ol,call:Ra,cameraFar:td,cameraIndex:Jl,cameraNear:ed,cameraNormalMatrix:ad,cameraPosition:od,cameraProjectionMatrix:rd,cameraProjectionMatrixInverse:sd,cameraViewMatrix:id,cameraViewport:ud,cameraWorldMatrix:nd,cbrt:ru,cdl:wx,ceil:xo,checker:J_,cineonToneMapping:Ox,clamp:nu,clearcoat:Gn,clearcoatNormalView:Xd,clearcoatRoughness:zn,code:qx,color:cn,colorSpaceToWorking:Gu,colorToDirection:e=>Yi(e).mul(2).sub(1),compute:il,computeKernel:sl,computeSkinning:(e,t=null)=>{const r=new ip(e);return r.positionNode=$h(new $(e.geometry.getAttribute("position").array,3),"vec3").setPBO(!0).toReadOnly().element(jh).toVar(),r.skinIndexNode=$h(new $(new Uint32Array(e.geometry.getAttribute("skinIndex").array),4),"uvec4").setPBO(!0).toReadOnly().element(jh).toVar(),r.skinWeightNode=$h(new $(e.geometry.getAttribute("skinWeight").array,4),"vec4").setPBO(!0).toReadOnly().element(jh).toVar(),r.bindMatrixNode=xa(e.bindMatrix,"mat4"),r.bindMatrixInverseNode=xa(e.bindMatrixInverse,"mat4"),r.boneMatricesNode=Il(e.skeleton.boneMatrices,"mat4",e.skeleton.bones.length),r.toPositionNode=t,Yi(r)},context:Tu,convert:Ln,convertColorSpace:(e,t,r)=>Yi(new Vu(Yi(e),t,r)),convertToTexture:(e,...t)=>e.isSampleNode||e.isTextureNode?e:e.isPassNode?e.getTextureNode():qb(e,...t),cos:No,countLeadingZeros:Qy,countOneBits:Zy,countTrailingZeros:Yy,cross:Yo,cubeTexture:hc,cubeTextureBase:cc,dFdx:Po,dFdy:Fo,dashSize:sa,debug:xl,decrement:Za,decrementBefore:Ya,defaultBuildStages:ti,defaultShaderStages:ei,defined:qi,degrees:co,deltaTime:fb,densityFog:function(e,t){return d('TSL: "densityFog( color, density )" is deprecated. Use "fog( color, densityFogFactor( density ) )" instead.'),aT(e,nT(t))},densityFogFactor:nT,depth:Lp,depthPass:(e,t,r)=>Yi(new Fx(Fx.DEPTH,e,t,r)),determinant:ko,difference:Xo,diffuseColor:In,diffuseContribution:Un,directPointLight:Q_,directionToColor:Hc,directionToFaceDirection:kd,dispersion:ca,distance:qo,div:Ba,dodge:(...e)=>(d('TSL: "dodge" has been renamed. Use "blendDodge" instead.'),zp(e)),dot:Ko,drawIndex:Yh,dynamicBufferAttribute:(e,t=null,r=0,s=0)=>Zu(e,t,r,s,x),element:Bn,emissive:On,equal:Pa,equals:zo,equirectUV:ag,exp:ho,exp2:po,expression:gl,faceDirection:Vd,faceForward:lu,faceforward:mu,float:hn,floatBitsToInt:e=>new Hy(e,"int","float"),floatBitsToUint:qy,floor:bo,fog:aT,fract:_o,frameGroup:ma,frameId:yb,frontFacing:Od,fwidth:Oo,gain:(e,t)=>e.lessThan(.5)?eb(e.mul(2),t).div(2):Ca(1,eb(Ma(Ca(1,e),2),t).div(2)),gapSize:ia,getConstNodeType:Xi,getCurrentStack:un,getDirection:Um,getDistanceAttenuation:Y_,getGeometryRoughness:wg,getNormalFromDepth:Yb,getParallaxCorrectNormal:qv,getRoughness:Cg,getScreenPosition:Kb,getShIrradianceAt:Xv,getShadowMaterial:R_,getShadowRenderObjectFunction:w_,getTextureIndex:zy,getViewPosition:Xb,ggxConvolution:Hm,globalId:mT,glsl:(e,t)=>qx(e,t,"glsl"),glslFn:(e,t)=>Kx(e,t,"glsl"),grayscale:Nx,greaterThan:Ia,greaterThanEqual:Oa,hash:Jy,highpModelNormalViewMatrix:Cd,highpModelViewMatrix:wd,hue:Ax,increment:Qa,incrementBefore:Ka,inspector:vl,instance:Zh,instanceIndex:jh,instancedArray:(e,t="float")=>{let r,s;!0===t.isStruct?(r=t.layout.getLength(),s=ks("float")):(r=Gs(t),s=ks(t));const i=new rx(e,r,s);return $h(i,t,e)},instancedBufferAttribute:el,instancedDynamicBufferAttribute:tl,instancedMesh:ep,int:pn,intBitsToFloat:e=>new Hy(e,"float","int"),interleavedGradientNoise:Qb,inverse:Go,inverseSqrt:yo,inversesqrt:fu,invocationLocalIndex:Kh,invocationSubgroupIndex:Xh,ior:aa,iridescence:Hn,iridescenceIOR:jn,iridescenceThickness:qn,isolate:al,ivec2:yn,ivec3:_n,ivec4:Rn,js:(e,t)=>qx(e,t,"js"),label:Ru,length:Mo,lengthSq:su,lessThan:Da,lessThanEqual:Ua,lightPosition:e_,lightProjectionUV:JT,lightShadowMatrix:ZT,lightTargetDirection:s_,lightTargetPosition:t_,lightViewPosition:r_,lightingContext:yp,lights:(e=[])=>Yi(new o_).setLights(e),linearDepth:Pp,linearToneMapping:Ix,localId:fT,log:go,log2:mo,logarithmicDepthToViewZ:(e,t,r)=>{const s=e.mul(go(r.div(t)));return hn(Math.E).pow(s).mul(t).negate()},luminance:Ex,mat2:wn,mat3:Cn,mat4:Mn,matcapUV:Mf,materialAO:Uh,materialAlphaTest:th,materialAnisotropy:Th,materialAnisotropyVector:Oh,materialAttenuationColor:wh,materialAttenuationDistance:Eh,materialClearcoat:gh,materialClearcoatNormal:fh,materialClearcoatRoughness:mh,materialColor:rh,materialDispersion:Dh,materialEmissive:ih,materialEnvIntensity:sc,materialEnvRotation:ic,materialIOR:Ah,materialIridescence:_h,materialIridescenceIOR:vh,materialIridescenceThickness:Nh,materialLightMap:Ih,materialLineDashOffset:Ph,materialLineDashSize:Mh,materialLineGapSize:Bh,materialLineScale:Ch,materialLineWidth:Lh,materialMetalness:hh,materialNormal:ph,materialOpacity:nh,materialPointSize:Fh,materialReference:bc,materialReflectivity:dh,materialRefractionRatio:rc,materialRotation:yh,materialRoughness:ch,materialSheen:bh,materialSheenRoughness:xh,materialShininess:sh,materialSpecular:ah,materialSpecularColor:uh,materialSpecularIntensity:oh,materialSpecularStrength:lh,materialThickness:Rh,materialTransmission:Sh,max:Wo,maxMipLevel:Cl,mediumpModelViewMatrix:Ed,metalness:kn,min:$o,mix:iu,mixElement:cu,mod:La,modInt:Ja,modelDirection:bd,modelNormalMatrix:Sd,modelPosition:Td,modelRadius:Nd,modelScale:_d,modelViewMatrix:Ad,modelViewPosition:vd,modelViewProjection:Vh,modelWorldMatrix:xd,modelWorldMatrixInverse:Rd,morphReference:pp,mrt:Wy,mul:Ma,mx_aastep:Wv,mx_add:(e,t=hn(0))=>wa(e,t),mx_atan2:(e=hn(0),t=hn(1))=>Eo(e,t),mx_cell_noise_float:(e=Rl())=>Av(e.convert("vec2|vec3")),mx_contrast:(e,t=1,r=.5)=>hn(e).sub(r).mul(t).add(r),mx_divide:(e,t=hn(1))=>Ba(e,t),mx_fractal_noise_float:(e=Rl(),t=3,r=2,s=.5,i=1)=>wv(e,pn(t),r,s).mul(i),mx_fractal_noise_vec2:(e=Rl(),t=3,r=2,s=.5,i=1)=>Mv(e,pn(t),r,s).mul(i),mx_fractal_noise_vec3:(e=Rl(),t=3,r=2,s=.5,i=1)=>Cv(e,pn(t),r,s).mul(i),mx_fractal_noise_vec4:(e=Rl(),t=3,r=2,s=.5,i=1)=>Bv(e,pn(t),r,s).mul(i),mx_frame:()=>yb,mx_heighttonormal:(e,t)=>(e=Tn(e),t=hn(t),Zc(e,t)),mx_hsvtorgb:Gv,mx_ifequal:(e,t,r,s)=>e.equal(t).mix(r,s),mx_ifgreater:(e,t,r,s)=>e.greaterThan(t).mix(r,s),mx_ifgreatereq:(e,t,r,s)=>e.greaterThanEqual(t).mix(r,s),mx_invert:(e,t=hn(1))=>Ca(t,e),mx_modulo:(e,t=hn(1))=>La(e,t),mx_multiply:(e,t=hn(1))=>Ma(e,t),mx_noise_float:(e=Rl(),t=1,r=0)=>Sv(e.convert("vec2|vec3")).mul(t).add(r),mx_noise_vec3:(e=Rl(),t=1,r=0)=>Rv(e.convert("vec2|vec3")).mul(t).add(r),mx_noise_vec4:(e=Rl(),t=1,r=0)=>{e=e.convert("vec2|vec3");return Sn(Rv(e),Sv(e.add(fn(19,73)))).mul(t).add(r)},mx_place2d:(e,t=fn(.5,.5),r=fn(1,1),s=hn(0),i=fn(0,0))=>{let n=e;if(t&&(n=n.sub(t)),r&&(n=n.mul(r)),s){const e=s.mul(Math.PI/180),t=e.cos(),r=e.sin();n=fn(n.x.mul(t).sub(n.y.mul(r)),n.x.mul(r).add(n.y.mul(t)))}return t&&(n=n.add(t)),i&&(n=n.add(i)),n},mx_power:(e,t=hn(1))=>Qo(e,t),mx_ramp4:(e,t,r,s,i=Rl())=>{const n=i.x.clamp(),a=i.y.clamp(),o=iu(e,t,n),u=iu(r,s,n);return iu(o,u,a)},mx_ramplr:(e,t,r=Rl())=>Hv(e,t,r,"x"),mx_ramptb:(e,t,r=Rl())=>Hv(e,t,r,"y"),mx_rgbtohsv:zv,mx_rotate2d:(e,t)=>{e=fn(e);const r=(t=hn(t)).mul(Math.PI/180);return Ff(e,r)},mx_rotate3d:(e,t,r)=>{e=Tn(e),t=hn(t),r=Tn(r);const s=t.mul(Math.PI/180),i=r.normalize(),n=s.cos(),a=s.sin(),o=hn(1).sub(n);return e.mul(n).add(i.cross(e).mul(a)).add(i.mul(i.dot(e)).mul(o))},mx_safepower:(e,t=1)=>(e=hn(e)).abs().pow(t).mul(e.sign()),mx_separate:(e,t=null)=>{if("string"==typeof t){const r={x:0,r:0,y:1,g:1,z:2,b:2,w:3,a:3},s=t.replace(/^out/,"").toLowerCase();if(void 0!==r[s])return e.element(r[s])}if("number"==typeof t)return e.element(t);if("string"==typeof t&&1===t.length){const r={x:0,r:0,y:1,g:1,z:2,b:2,w:3,a:3};if(void 0!==r[t])return e.element(r[t])}return e},mx_splitlr:(e,t,r,s=Rl())=>jv(e,t,r,s,"x"),mx_splittb:(e,t,r,s=Rl())=>jv(e,t,r,s,"y"),mx_srgb_texture_to_lin_rec709:$v,mx_subtract:(e,t=hn(0))=>Ca(e,t),mx_timer:()=>mb,mx_transform_uv:(e=1,t=0,r=Rl())=>r.mul(e).add(t),mx_unifiednoise2d:(e,t=Rl(),r=fn(1,1),s=fn(0,0),i=1,n=0,a=1,o=!1,u=1,l=2,d=.5)=>Vv(e,t.convert("vec2|vec3"),r,s,i,n,a,o,u,l,d),mx_unifiednoise3d:(e,t=Rl(),r=fn(1,1),s=fn(0,0),i=1,n=0,a=1,o=!1,u=1,l=2,d=.5)=>kv(e,t.convert("vec2|vec3"),r,s,i,n,a,o,u,l,d),mx_worley_noise_float:(e=Rl(),t=1)=>Iv(e.convert("vec2|vec3"),t,pn(1)),mx_worley_noise_vec2:(e=Rl(),t=1)=>Uv(e.convert("vec2|vec3"),t,pn(1)),mx_worley_noise_vec3:(e=Rl(),t=1)=>Ov(e.convert("vec2|vec3"),t,pn(1)),negate:Bo,neutralToneMapping:Hx,nodeArray:Ji,nodeImmutable:tn,nodeObject:Yi,nodeObjectIntent:Qi,nodeObjects:Zi,nodeProxy:en,nodeProxyIntent:rn,normalFlat:$d,normalGeometry:Gd,normalLocal:zd,normalMap:Xc,normalView:jd,normalViewGeometry:Wd,normalWorld:qd,normalWorldGeometry:Hd,normalize:To,not:Ga,notEqual:Fa,numWorkgroups:pT,objectDirection:cd,objectGroup:ya,objectPosition:pd,objectRadius:fd,objectScale:gd,objectViewPosition:md,objectWorldMatrix:hd,oneMinus:Lo,or:ka,orthographicDepthToViewZ:(e,t,r)=>t.sub(r).mul(e).sub(t),oscSawtooth:(e=mb)=>e.fract(),oscSine:(e=mb)=>e.add(.75).mul(2*Math.PI).sin().mul(.5).add(.5),oscSquare:(e=mb)=>e.fract().round(),oscTriangle:(e=mb)=>e.add(.5).fract().mul(2).sub(1).abs(),output:ra,outputStruct:Gy,overlay:(...e)=>(d('TSL: "overlay" has been renamed. Use "blendOverlay" instead.'),Wp(e)),overloadingFn:gb,packHalf2x16:ib,packSnorm2x16:rb,packUnorm2x16:sb,parabola:eb,parallaxDirection:$c,parallaxUV:(e,t)=>e.sub($c.mul(t)),parameter:(e,t)=>Yi(new Dy(e,t)),pass:(e,t,r)=>Yi(new Fx(Fx.COLOR,e,t,r)),passTexture:(e,t)=>Yi(new Lx(e,t)),pcurve:(e,t,r)=>Qo(Ba(Qo(e,t),wa(Qo(e,t),Qo(Ca(1,e),r))),1/t),perspectiveDepthToViewZ:Cp,pmremTexture:mf,pointShadow:X_,pointUV:nx,pointWidth:na,positionGeometry:Md,positionLocal:Bd,positionPrevious:Ld,positionView:Dd,positionViewDirection:Id,positionWorld:Pd,positionWorldDirection:Fd,posterize:Mx,pow:Qo,pow2:Zo,pow3:Jo,pow4:eu,premultiplyAlpha:jp,property:Fn,quadBroadcast:KT,quadSwapDiagonal:$T,quadSwapX:GT,quadSwapY:zT,radians:lo,rand:du,range:dT,rangeFog:function(e,t,r){return d('TSL: "rangeFog( color, near, far )" is deprecated. Use "fog( color, rangeFogFactor( near, far ) )" instead.'),aT(e,iT(t,r))},rangeFogFactor:iT,reciprocal:Io,reference:mc,referenceBuffer:fc,reflect:jo,reflectVector:oc,reflectView:nc,reflector:e=>Yi(new Vb(e)),refract:ou,refractVector:uc,refractView:ac,reinhardToneMapping:Ux,remap:cl,remapClamp:hl,renderGroup:fa,renderOutput:yl,rendererReference:Hu,replaceDefaultUV:function(e,t=null){return Tu(t,{getUV:e})},rotate:Ff,rotateUV:bb,roughness:Vn,round:Do,rtt:qb,sRGBTransferEOTF:Iu,sRGBTransferOETF:Uu,sample:(e,t=null)=>Yi(new Jb(e,Yi(t))),sampler:e=>(!0===e.isNode?e:Pl(e)).convert("sampler"),samplerComparison:e=>(!0===e.isNode?e:Pl(e)).convert("samplerComparison"),saturate:au,saturation:Sx,screen:(...e)=>(d('TSL: "screen" has been renamed. Use "blendScreen" instead.'),$p(e)),screenCoordinate:ql,screenDPR:Wl,screenSize:jl,screenUV:Hl,scriptable:rT,scriptableValue:Qx,select:bu,setCurrentStack:on,setName:vu,shaderStages:ri,shadow:D_,shadowPositionWorld:l_,shapeCircle:ev,sharedUniformGroup:ga,sheen:$n,sheenRoughness:Wn,shiftLeft:qa,shiftRight:Xa,shininess:ta,sign:Co,sin:vo,sinc:(e,t)=>vo(so.mul(t.mul(e).sub(1))).div(so.mul(t.mul(e).sub(1))),skinning:np,smoothstep:uu,smoothstepElement:hu,specularColor:Zn,specularColorBlended:Jn,specularF90:ea,spherizeUV:xb,split:(e,t)=>Yi(new hi(Yi(e),t)),spritesheetUV:Nb,sqrt:fo,stack:Uy,step:Ho,stepElement:pu,storage:$h,storageBarrier:()=>bT("storage").toStack(),storageObject:(e,t,r)=>(d('TSL: "storageObject()" is deprecated. Use "storage().setPBO( true )" instead.'),$h(e,t,r).setPBO(!0)),storageTexture:px,string:(e="")=>Yi(new yi(e,"string")),struct:(e,t=null)=>{const r=new Oy(e,t),s=(...t)=>{let s=null;if(t.length>0)if(t[0].isNode){s={};const r=Object.keys(e);for(let e=0;efx(e,t).level(r),texture3DLoad:(...e)=>fx(...e).setSampler(!1),textureBarrier:()=>bT("texture").toStack(),textureBicubic:om,textureBicubicLevel:am,textureCubeUV:Om,textureLevel:(e,t,r)=>Pl(e,t).level(r),textureLoad:Fl,textureSize:El,textureStore:(e,t,r)=>{const s=px(e,t,r);return null!==r&&s.toStack(),s},thickness:ua,time:mb,toneMapping:qu,toneMappingExposure:Xu,toonOutlinePass:(t,r,s=new e(0,0,0),i=.003,n=1)=>Yi(new Dx(t,r,Yi(s),Yi(i),Yi(n))),transformDirection:tu,transformNormal:Kd,transformNormalToView:Yd,transformedClearcoatNormalView:Jd,transformedNormalView:Qd,transformedNormalWorld:Zd,transmission:oa,transpose:Vo,triNoise3D:cb,triplanarTexture:(...e)=>Sb(...e),triplanarTextures:Sb,trunc:Uo,uint:gn,uintBitsToFloat:e=>new Hy(e,"float","uint"),uniform:xa,uniformArray:Vl,uniformCubeTexture:(e=lc)=>cc(e),uniformFlow:_u,uniformGroup:pa,uniformTexture:(e=Ml)=>Pl(e),unpackHalf2x16:ub,unpackNormal:jc,unpackSnorm2x16:ab,unpackUnorm2x16:ob,unpremultiplyAlpha:qp,userData:(e,t,r)=>Yi(new yx(e,t,r)),uv:Rl,uvec2:bn,uvec3:vn,uvec4:An,varying:Fu,varyingProperty:Dn,vec2:fn,vec3:Tn,vec4:Sn,vectorComponents:si,velocity:vx,vertexColor:kp,vertexIndex:Hh,vertexStage:Du,vibrance:Rx,viewZToLogarithmicDepth:Mp,viewZToOrthographicDepth:Ep,viewZToPerspectiveDepth:wp,viewport:Xl,viewportCoordinate:Yl,viewportDepthTexture:Rp,viewportLinearDepth:Fp,viewportMipTexture:vp,viewportResolution:Zl,viewportSafeUV:_b,viewportSharedTexture:tg,viewportSize:Kl,viewportTexture:_p,viewportUV:Ql,vogelDiskSample:Zb,wgsl:(e,t)=>qx(e,t,"wgsl"),wgslFn:(e,t)=>Kx(e,t,"wgsl"),workgroupArray:(e,t)=>Yi(new TT("Workgroup",e,t)),workgroupBarrier:()=>bT("workgroup").toStack(),workgroupId:gT,workingToColorSpace:ku,xor:za});const Yv=new Fy;class Qv extends ty{constructor(e,t){super(),this.renderer=e,this.nodes=t}update(e,t,r){const s=this.renderer,i=this.nodes.getBackgroundNode(e)||e.background;let n=!1;if(null===i)s._clearColor.getRGB(Yv),Yv.a=s._clearColor.a;else if(!0===i.isColor)i.getRGB(Yv),Yv.a=1,n=!0;else if(!0===i.isNode){const u=this.get(e),l=i;Yv.copy(s._clearColor);let d=u.backgroundMesh;if(void 0===d){const h=Sn(l).mul(dx).context({getUV:()=>cx.mul(Hd),getTextureLevel:()=>lx}),p=rd.element(3).element(3).equal(1),g=Ba(1,rd.element(1).element(1)).mul(3),m=p.select(Bd.mul(g),Bd);let f=rd.mul(Ad.mul(Sn(m,1)));f=f.setZ(f.w);const y=new Xp;function b(){i.removeEventListener("dispose",b),d.material.dispose(),d.geometry.dispose()}y.name="Background.material",y.side=w,y.depthTest=!1,y.depthWrite=!1,y.allowOverride=!1,y.fog=!1,y.lights=!1,y.vertexNode=f,y.colorNode=h,u.backgroundMeshNode=h,u.backgroundMesh=d=new se(new Ye(1,32,32),y),d.frustumCulled=!1,d.name="Background.mesh",d.onBeforeRender=function(e,t,r){this.matrixWorld.copyPosition(r.matrixWorld)},i.addEventListener("dispose",b)}const c=l.getCacheKey();u.backgroundCacheKey!==c&&(u.backgroundMeshNode.node=Sn(l).mul(dx),u.backgroundMeshNode.needsUpdate=!0,d.material.needsUpdate=!0,u.backgroundCacheKey=c),t.unshift(d,d.geometry,d.material,0,0,null,null)}else o("Renderer: Unsupported background configuration.",i);const a=s.xr.getEnvironmentBlendMode();if("additive"===a?Yv.set(0,0,0,1):"alpha-blend"===a&&Yv.set(0,0,0,0),!0===s.autoClear||!0===n){const x=r.clearColorValue;x.r=Yv.r,x.g=Yv.g,x.b=Yv.b,x.a=Yv.a,!0!==s.backend.isWebGLBackend&&!0!==s.alpha||(x.r*=x.a,x.g*=x.a,x.b*=x.a),r.depthClearValue=s._clearDepth,r.stencilClearValue=s._clearStencil,r.clearColor=!0===s.autoClearColor,r.clearDepth=!0===s.autoClearDepth,r.clearStencil=!0===s.autoClearStencil}else r.clearColor=!1,r.clearDepth=!1,r.clearStencil=!1}}let Zv=0;class Jv{constructor(e="",t=[],r=0,s=[]){this.name=e,this.bindings=t,this.index=r,this.bindingsReference=s,this.id=Zv++}}class eN{constructor(e,t,r,s,i,n,a,o,u,l=[]){this.vertexShader=e,this.fragmentShader=t,this.computeShader=r,this.transforms=l,this.nodeAttributes=s,this.bindings=i,this.updateNodes=n,this.updateBeforeNodes=a,this.updateAfterNodes=o,this.observer=u,this.usedTimes=0}createBindings(){const e=[];for(const t of this.bindings){if(!0!==t.bindings[0].groupNode.shared){const r=new Jv(t.name,[],t.index,t.bindingsReference);e.push(r);for(const e of t.bindings)r.bindings.push(e.clone())}else e.push(t)}return e}}class tN{constructor(e,t,r=null){this.isNodeAttribute=!0,this.name=e,this.type=t,this.node=r}}class rN{constructor(e,t,r){this.isNodeUniform=!0,this.name=e,this.type=t,this.node=r}get value(){return this.node.value}set value(e){this.node.value=e}get id(){return this.node.id}get groupNode(){return this.node.groupNode}}class sN{constructor(e,t,r=!1,s=null){this.isNodeVar=!0,this.name=e,this.type=t,this.readOnly=r,this.count=s}}class iN extends sN{constructor(e,t,r=null,s=null){super(e,t),this.needsInterpolation=!1,this.isNodeVarying=!0,this.interpolationType=r,this.interpolationSampling=s}}class nN{constructor(e,t,r=""){this.name=e,this.type=t,this.code=r,Object.defineProperty(this,"isNodeCode",{value:!0})}}let aN=0;class oN{constructor(e=null){this.id=aN++,this.nodesData=new WeakMap,this.parent=e}getData(e){let t=this.nodesData.get(e);return void 0===t&&null!==this.parent&&(t=this.parent.getData(e)),t}setData(e,t){this.nodesData.set(e,t)}}class uN{constructor(e,t){this.name=e,this.members=t,this.output=!1}}class lN{constructor(e,t){this.name=e,this.value=t,this.boundary=0,this.itemSize=0,this.offset=0}setValue(e){this.value=e}getValue(){return this.value}}class dN extends lN{constructor(e,t=0){super(e,t),this.isNumberUniform=!0,this.boundary=4,this.itemSize=1}}class cN extends lN{constructor(e,r=new t){super(e,r),this.isVector2Uniform=!0,this.boundary=8,this.itemSize=2}}class hN extends lN{constructor(e,t=new r){super(e,t),this.isVector3Uniform=!0,this.boundary=16,this.itemSize=3}}class pN extends lN{constructor(e,t=new s){super(e,t),this.isVector4Uniform=!0,this.boundary=16,this.itemSize=4}}class gN extends lN{constructor(t,r=new e){super(t,r),this.isColorUniform=!0,this.boundary=16,this.itemSize=3}}class mN extends lN{constructor(e,t=new i){super(e,t),this.isMatrix2Uniform=!0,this.boundary=8,this.itemSize=4}}class fN extends lN{constructor(e,t=new n){super(e,t),this.isMatrix3Uniform=!0,this.boundary=48,this.itemSize=12}}class yN extends lN{constructor(e,t=new a){super(e,t),this.isMatrix4Uniform=!0,this.boundary=64,this.itemSize=16}}class bN extends dN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class xN extends cN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class TN extends hN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class _N extends pN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class vN extends gN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class NN extends mN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class SN extends fN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class RN extends yN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}let AN=0;const EN=new WeakMap,wN=new WeakMap,CN=new Map([[Int8Array,"int"],[Int16Array,"int"],[Int32Array,"int"],[Uint8Array,"uint"],[Uint16Array,"uint"],[Uint32Array,"uint"],[Float32Array,"float"]]),MN=e=>/e/g.test(e)?String(e).replace(/\+/g,""):(e=Number(e))+(e%1?"":".0");class BN{constructor(e,t,r){this.object=e,this.material=e&&e.material||null,this.geometry=e&&e.geometry||null,this.renderer=t,this.parser=r,this.scene=null,this.camera=null,this.nodes=[],this.sequentialNodes=[],this.updateNodes=[],this.updateBeforeNodes=[],this.updateAfterNodes=[],this.hashNodes={},this.observer=null,this.lightsNode=null,this.environmentNode=null,this.fogNode=null,this.clippingContext=null,this.vertexShader=null,this.fragmentShader=null,this.computeShader=null,this.flowNodes={vertex:[],fragment:[],compute:[]},this.flowCode={vertex:"",fragment:"",compute:""},this.uniforms={vertex:[],fragment:[],compute:[],index:0},this.structs={vertex:[],fragment:[],compute:[],index:0},this.types={vertex:[],fragment:[],compute:[],index:0},this.bindings={vertex:{},fragment:{},compute:{}},this.bindingsIndexes={},this.bindGroups=null,this.attributes=[],this.bufferAttributes=[],this.varyings=[],this.codes={},this.vars={},this.declarations={},this.flow={code:""},this.chaining=[],this.stack=Uy(),this.stacks=[],this.tab="\t",this.currentFunctionNode=null,this.context={material:this.material},this.cache=new oN,this.globalCache=this.cache,this.flowsData=new WeakMap,this.shaderStage=null,this.buildStage=null,this.subBuildLayers=[],this.activeStacks=[],this.subBuildFn=null,this.fnCall=null,Object.defineProperty(this,"id",{value:AN++})}isOpaque(){const e=this.material;return!1===e.transparent&&e.blending===Qe&&!1===e.alphaToCoverage}getBindGroupsCache(){let e=wN.get(this.renderer);return void 0===e&&(e=new Yf,wN.set(this.renderer,e)),e}createRenderTarget(e,t,r){return new _e(e,t,r)}createCubeRenderTarget(e,t){return new og(e,t)}includes(e){return this.nodes.includes(e)}getOutputStructName(){}_getBindGroup(e,t){const r=this.getBindGroupsCache(),s=[];let i,n=!0;for(const e of t)s.push(e),n=n&&!0!==e.groupNode.shared;return n?(i=r.get(s),void 0===i&&(i=new Jv(e,s,this.bindingsIndexes[e].group,s),r.set(s,i))):i=new Jv(e,s,this.bindingsIndexes[e].group,s),i}getBindGroupArray(e,t){const r=this.bindings[t];let s=r[e];return void 0===s&&(void 0===this.bindingsIndexes[e]&&(this.bindingsIndexes[e]={binding:0,group:Object.keys(this.bindingsIndexes).length}),r[e]=s=[]),s}getBindings(){let e=this.bindGroups;if(null===e){const t={},r=this.bindings;for(const e of ri)for(const s in r[e]){const i=r[e][s];(t[s]||(t[s]=[])).push(...i)}e=[];for(const r in t){const s=t[r],i=this._getBindGroup(r,s);e.push(i)}this.bindGroups=e}return e}sortBindingGroups(){const e=this.getBindings();e.sort((e,t)=>e.bindings[0].groupNode.order-t.bindings[0].groupNode.order);for(let t=0;t=0?`${Math.round(n)}u`:"0u";if("bool"===i)return n?"true":"false";if("color"===i)return`${this.getType("vec3")}( ${MN(n.r)}, ${MN(n.g)}, ${MN(n.b)} )`;const a=this.getTypeLength(i),o=this.getComponentType(i),u=e=>this.generateConst(o,e);if(2===a)return`${this.getType(i)}( ${u(n.x)}, ${u(n.y)} )`;if(3===a)return`${this.getType(i)}( ${u(n.x)}, ${u(n.y)}, ${u(n.z)} )`;if(4===a&&"mat2"!==i)return`${this.getType(i)}( ${u(n.x)}, ${u(n.y)}, ${u(n.z)}, ${u(n.w)} )`;if(a>=4&&n&&(n.isMatrix2||n.isMatrix3||n.isMatrix4))return`${this.getType(i)}( ${n.elements.map(u).join(", ")} )`;if(a>4)return`${this.getType(i)}()`;throw new Error(`NodeBuilder: Type '${i}' not found in generate constant attempt.`)}getType(e){return"color"===e?"vec3":e}hasGeometryAttribute(e){return this.geometry&&void 0!==this.geometry.getAttribute(e)}getAttribute(e,t){const r=this.attributes;for(const t of r)if(t.name===e)return t;const s=new tN(e,t);return this.registerDeclaration(s),r.push(s),s}getPropertyName(e){return e.name}isVector(e){return/vec\d/.test(e)}isMatrix(e){return/mat\d/.test(e)}isReference(e){return"void"===e||"property"===e||"sampler"===e||"samplerComparison"===e||"texture"===e||"cubeTexture"===e||"storageTexture"===e||"depthTexture"===e||"texture3D"===e}needsToWorkingColorSpace(){return!1}getComponentTypeFromTexture(e){const t=e.type;if(e.isDataTexture){if(t===R)return"int";if(t===S)return"uint"}return"float"}getElementType(e){return"mat2"===e?"vec2":"mat3"===e?"vec3":"mat4"===e?"vec4":this.getComponentType(e)}getComponentType(e){if("float"===(e=this.getVectorType(e))||"bool"===e||"int"===e||"uint"===e)return e;const t=/(b|i|u|)(vec|mat)([2-4])/.exec(e);return null===t?null:"b"===t[1]?"bool":"i"===t[1]?"int":"u"===t[1]?"uint":"float"}getVectorType(e){return"color"===e?"vec3":"texture"===e||"cubeTexture"===e||"storageTexture"===e||"texture3D"===e?"vec4":e}getTypeFromLength(e,t="float"){if(1===e)return t;let r=Vs(e);const s="float"===t?"":t[0];return!0===/mat2/.test(t)&&(r=r.replace("vec","mat")),s+r}getTypeFromArray(e){return CN.get(e.constructor)}isInteger(e){return/int|uint|(i|u)vec/.test(e)}getTypeFromAttribute(e){let t=e;e.isInterleavedBufferAttribute&&(t=e.data);const r=t.array,s=e.itemSize,i=e.normalized;let n;return e instanceof et||!0===i||(n=this.getTypeFromArray(r)),this.getTypeFromLength(s,n)}getTypeLength(e){const t=this.getVectorType(e),r=/vec([2-4])/.exec(t);return null!==r?Number(r[1]):"float"===t||"bool"===t||"int"===t||"uint"===t?1:!0===/mat2/.test(e)?4:!0===/mat3/.test(e)?9:!0===/mat4/.test(e)?16:0}getVectorFromMatrix(e){return e.replace("mat","vec")}changeComponentType(e,t){return this.getTypeFromLength(this.getTypeLength(e),t)}getIntegerType(e){const t=this.getComponentType(e);return"int"===t||"uint"===t?e:this.changeComponentType(e,"int")}setActiveStack(e){this.activeStacks.push(e)}removeActiveStack(e){if(this.activeStacks[this.activeStacks.length-1]!==e)throw new Error("NodeBuilder: Invalid active stack removal.");this.activeStacks.pop()}getActiveStack(){return this.activeStacks[this.activeStacks.length-1]}getBaseStack(){return this.activeStacks[0]}addStack(){this.stack=Uy(this.stack);const e=un();return this.stacks.push(e),on(this.stack),this.stack}removeStack(){const e=this.stack;for(const t of e.nodes){this.getDataFromNode(t).stack=e}return this.stack=e.parent,on(this.stacks.pop()),e}getDataFromNode(e,t=this.shaderStage,r=null){let s=(r=null===r?e.isGlobal(this)?this.globalCache:this.cache:r).getData(e);void 0===s&&(s={},r.setData(e,s)),void 0===s[t]&&(s[t]={});let i=s[t];const n=s.any?s.any.subBuilds:null,a=this.getClosestSubBuild(n);return a&&(void 0===i.subBuildsCache&&(i.subBuildsCache={}),i=i.subBuildsCache[a]||(i.subBuildsCache[a]={}),i.subBuilds=n),i}getNodeProperties(e,t="any"){const r=this.getDataFromNode(e,t);return r.properties||(r.properties={outputNode:null})}getBufferAttributeFromNode(e,t){const r=this.getDataFromNode(e,"vertex");let s=r.bufferAttribute;if(void 0===s){const i=this.uniforms.index++;s=new tN("nodeAttribute"+i,t,e),this.bufferAttributes.push(s),r.bufferAttribute=s}return s}getStructTypeNode(e,t=this.shaderStage){return this.types[t][e]||null}getStructTypeFromNode(e,t,r=null,s=this.shaderStage){const i=this.getDataFromNode(e,s,this.globalCache);let n=i.structType;if(void 0===n){const a=this.structs.index++;null===r&&(r="StructType"+a),n=new uN(r,t),this.structs[s].push(n),this.types[s][r]=e,i.structType=n}return n}getOutputStructTypeFromNode(e,t){const r=this.getStructTypeFromNode(e,t,"OutputType","fragment");return r.output=!0,r}getUniformFromNode(e,t,r=this.shaderStage,s=null){const i=this.getDataFromNode(e,r,this.globalCache);let n=i.uniform;if(void 0===n){const a=this.uniforms.index++;n=new rN(s||"nodeUniform"+a,t,e),this.uniforms[r].push(n),this.registerDeclaration(n),i.uniform=n}return n}getVarFromNode(e,t=null,r=e.getNodeType(this),s=this.shaderStage,i=!1){const n=this.getDataFromNode(e,s),a=this.getSubBuildProperty("variable",n.subBuilds);let o=n[a];if(void 0===o){const u=i?"_const":"_var",l=this.vars[s]||(this.vars[s]=[]),d=this.vars[u]||(this.vars[u]=0);null===t&&(t=(i?"nodeConst":"nodeVar")+d,this.vars[u]++),"variable"!==a&&(t=this.getSubBuildProperty(t,n.subBuilds));const c=e.getArrayCount(this);o=new sN(t,r,i,c),i||l.push(o),this.registerDeclaration(o),n[a]=o}return o}isDeterministic(e){if(e.isMathNode)return this.isDeterministic(e.aNode)&&(!e.bNode||this.isDeterministic(e.bNode))&&(!e.cNode||this.isDeterministic(e.cNode));if(e.isOperatorNode)return this.isDeterministic(e.aNode)&&(!e.bNode||this.isDeterministic(e.bNode));if(e.isArrayNode){if(null!==e.values)for(const t of e.values)if(!this.isDeterministic(t))return!1;return!0}return!!e.isConstNode}getVaryingFromNode(e,t=null,r=e.getNodeType(this),s=null,i=null){const n=this.getDataFromNode(e,"any"),a=this.getSubBuildProperty("varying",n.subBuilds);let o=n[a];if(void 0===o){const e=this.varyings,u=e.length;null===t&&(t="nodeVarying"+u),"varying"!==a&&(t=this.getSubBuildProperty(t,n.subBuilds)),o=new iN(t,r,s,i),e.push(o),this.registerDeclaration(o),n[a]=o}return o}registerDeclaration(e){const t=this.shaderStage,r=this.declarations[t]||(this.declarations[t]={}),s=this.getPropertyName(e);let i=1,n=s;for(;void 0!==r[n];)n=s+"_"+i++;i>1&&(e.name=n,d(`TSL: Declaration name '${s}' of '${e.type}' already in use. Renamed to '${n}'.`)),r[n]=e}getCodeFromNode(e,t,r=this.shaderStage){const s=this.getDataFromNode(e);let i=s.code;if(void 0===i){const e=this.codes[r]||(this.codes[r]=[]),n=e.length;i=new nN("nodeCode"+n,t),e.push(i),s.code=i}return i}addFlowCodeHierarchy(e,t){const{flowCodes:r,flowCodeBlock:s}=this.getDataFromNode(e);let i=!0,n=t;for(;n;){if(!0===s.get(n)){i=!1;break}n=this.getDataFromNode(n).parentNodeBlock}if(i)for(const e of r)this.addLineFlowCode(e)}addLineFlowCodeBlock(e,t,r){const s=this.getDataFromNode(e),i=s.flowCodes||(s.flowCodes=[]),n=s.flowCodeBlock||(s.flowCodeBlock=new WeakMap);i.push(t),n.set(r,!0)}addLineFlowCode(e,t=null){return""===e||(null!==t&&this.context.nodeBlock&&this.addLineFlowCodeBlock(t,e,this.context.nodeBlock),e=this.tab+e,/;\s*$/.test(e)||(e+=";\n"),this.flow.code+=e),this}addFlowCode(e){return this.flow.code+=e,this}addFlowTab(){return this.tab+="\t",this}removeFlowTab(){return this.tab=this.tab.slice(0,-1),this}getFlowData(e){return this.flowsData.get(e)}flowNode(e){const t=e.getNodeType(this),r=this.flowChildNode(e,t);return this.flowsData.set(e,r),r}addInclude(e){null!==this.currentFunctionNode&&this.currentFunctionNode.includes.push(e)}buildFunctionNode(e){const t=new Xx,r=this.currentFunctionNode;return this.currentFunctionNode=t,t.code=this.buildFunctionCode(e),this.currentFunctionNode=r,t}flowShaderNode(e){const t=e.layout,r={[Symbol.iterator](){let e=0;const t=Object.values(this);return{next:()=>({value:t[e],done:e++>=t.length})}}};for(const e of t.inputs)r[e.name]=new Dy(e.type,e.name);e.layout=null;const s=e.call(r),i=this.flowStagesNode(s,t.type);return e.layout=t,i}flowBuildStage(e,t,r=null){const s=this.getBuildStage();this.setBuildStage(t);const i=e.build(this,r);return this.setBuildStage(s),i}flowStagesNode(e,t=null){const r=this.flow,s=this.vars,i=this.declarations,n=this.cache,a=this.buildStage,o=this.stack,u={code:""};this.flow=u,this.vars={},this.declarations={},this.cache=new oN,this.stack=Uy();for(const r of ti)this.setBuildStage(r),u.result=e.build(this,t);return u.vars=this.getVars(this.shaderStage),this.flow=r,this.vars=s,this.declarations=i,this.cache=n,this.stack=o,this.setBuildStage(a),u}getFunctionOperator(){return null}buildFunctionCode(){d("Abstract function.")}flowChildNode(e,t=null){const r=this.flow,s={code:""};return this.flow=s,s.result=e.build(this,t),this.flow=r,s}flowNodeFromShaderStage(e,t,r=null,s=null){const i=this.tab,n=this.cache,a=this.shaderStage,o=this.context;this.setShaderStage(e);const u={...this.context};delete u.nodeBlock,this.cache=this.globalCache,this.tab="\t",this.context=u;let l=null;if("generate"===this.buildStage){const i=this.flowChildNode(t,r);null!==s&&(i.code+=`${this.tab+s} = ${i.result};\n`),this.flowCode[e]=this.flowCode[e]+i.code,l=i}else l=t.build(this);return this.setShaderStage(a),this.cache=n,this.tab=i,this.context=o,l}getAttributesArray(){return this.attributes.concat(this.bufferAttributes)}getAttributes(){d("Abstract function.")}getVaryings(){d("Abstract function.")}getVar(e,t,r=null){return`${null!==r?this.generateArrayDeclaration(e,r):this.getType(e)} ${t}`}getVars(e){let t="";const r=this.vars[e];if(void 0!==r)for(const e of r)t+=`${this.getVar(e.type,e.name)}; `;return t}getUniforms(){d("Abstract function.")}getCodes(e){const t=this.codes[e];let r="";if(void 0!==t)for(const e of t)r+=e.code+"\n";return r}getHash(){return this.vertexShader+this.fragmentShader+this.computeShader}setShaderStage(e){this.shaderStage=e}getShaderStage(){return this.shaderStage}setBuildStage(e){this.buildStage=e}getBuildStage(){return this.buildStage}buildCode(){d("Abstract function.")}get subBuild(){return this.subBuildLayers[this.subBuildLayers.length-1]||null}addSubBuild(e){this.subBuildLayers.push(e)}removeSubBuild(){return this.subBuildLayers.pop()}getClosestSubBuild(e){let t;if(t=e&&e.isNode?e.isShaderCallNodeInternal?e.shaderNode.subBuilds:e.isStackNode?[e.subBuild]:this.getDataFromNode(e,"any").subBuilds:e instanceof Set?[...e]:e,!t)return null;const r=this.subBuildLayers;for(let e=t.length-1;e>=0;e--){const s=t[e];if(r.includes(s))return s}return null}getSubBuildOutput(e){return this.getSubBuildProperty("outputNode",e)}getSubBuildProperty(e="",t=null){let r,s;return r=null!==t?this.getClosestSubBuild(t):this.subBuildFn,s=r?e?r+"_"+e:r:e,s}build(){const{object:e,material:t,renderer:r}=this;if(null!==t){let e=r.library.fromMaterial(t);null===e&&(o(`NodeMaterial: Material "${t.type}" is not compatible.`),e=new Xp),e.build(this)}else this.addFlow("compute",e);for(const e of ti){this.setBuildStage(e),this.context.vertex&&this.context.vertex.isNode&&this.flowNodeFromShaderStage("vertex",this.context.vertex);for(const t of ri){this.setShaderStage(t);const r=this.flowNodes[t];for(const t of r)"generate"===e?this.flowNode(t):t.build(this)}}return this.setBuildStage(null),this.setShaderStage(null),this.buildCode(),this.buildUpdateNodes(),this}getSharedDataFromNode(e){let t=EN.get(e);return void 0===t&&(t={}),t}getNodeUniform(e,t){const r=this.getSharedDataFromNode(e);let s=r.cache;if(void 0===s){if("float"===t||"int"===t||"uint"===t)s=new bN(e);else if("vec2"===t||"ivec2"===t||"uvec2"===t)s=new xN(e);else if("vec3"===t||"ivec3"===t||"uvec3"===t)s=new TN(e);else if("vec4"===t||"ivec4"===t||"uvec4"===t)s=new _N(e);else if("color"===t)s=new vN(e);else if("mat2"===t)s=new NN(e);else if("mat3"===t)s=new SN(e);else{if("mat4"!==t)throw new Error(`Uniform "${t}" not implemented.`);s=new RN(e)}r.cache=s}return s}format(e,t,r){if((t=this.getVectorType(t))===(r=this.getVectorType(r))||null===r||this.isReference(r))return e;const s=this.getTypeLength(t),i=this.getTypeLength(r);return 16===s&&9===i?`${this.getType(r)}( ${e}[ 0 ].xyz, ${e}[ 1 ].xyz, ${e}[ 2 ].xyz )`:9===s&&4===i?`${this.getType(r)}( ${e}[ 0 ].xy, ${e}[ 1 ].xy )`:s>4||i>4||0===i?e:s===i?`${this.getType(r)}( ${e} )`:s>i?(e="bool"===r?`all( ${e} )`:`${e}.${"xyz".slice(0,i)}`,this.format(e,this.getTypeFromLength(i,this.getComponentType(t)),r)):4===i&&s>1?`${this.getType(r)}( ${this.format(e,t,"vec3")}, 1.0 )`:2===s?`${this.getType(r)}( ${this.format(e,t,"vec2")}, 0.0 )`:(1===s&&i>1&&t!==this.getComponentType(r)&&(e=`${this.getType(this.getComponentType(r))}( ${e} )`),`${this.getType(r)}( ${e} )`)}getSignature(){return`// Three.js r${tt} - Node System\n`}}class LN{constructor(){this.time=0,this.deltaTime=0,this.frameId=0,this.renderId=0,this.updateMap=new WeakMap,this.updateBeforeMap=new WeakMap,this.updateAfterMap=new WeakMap,this.renderer=null,this.material=null,this.camera=null,this.object=null,this.scene=null}_getMaps(e,t){let r=e.get(t);return void 0===r&&(r={renderId:0,frameId:0},e.set(t,r)),r}updateBeforeNode(e){const t=e.getUpdateBeforeType(),r=e.updateReference(this);if(t===Qs.FRAME){const t=this._getMaps(this.updateBeforeMap,r);if(t.frameId!==this.frameId){const r=t.frameId;t.frameId=this.frameId,!1===e.updateBefore(this)&&(t.frameId=r)}}else if(t===Qs.RENDER){const t=this._getMaps(this.updateBeforeMap,r);if(t.renderId!==this.renderId){const r=t.renderId;t.renderId=this.renderId,!1===e.updateBefore(this)&&(t.renderId=r)}}else t===Qs.OBJECT&&e.updateBefore(this)}updateAfterNode(e){const t=e.getUpdateAfterType(),r=e.updateReference(this);if(t===Qs.FRAME){const t=this._getMaps(this.updateAfterMap,r);t.frameId!==this.frameId&&!1!==e.updateAfter(this)&&(t.frameId=this.frameId)}else if(t===Qs.RENDER){const t=this._getMaps(this.updateAfterMap,r);t.renderId!==this.renderId&&!1!==e.updateAfter(this)&&(t.renderId=this.renderId)}else t===Qs.OBJECT&&e.updateAfter(this)}updateNode(e){const t=e.getUpdateType(),r=e.updateReference(this);if(t===Qs.FRAME){const t=this._getMaps(this.updateMap,r);t.frameId!==this.frameId&&!1!==e.update(this)&&(t.frameId=this.frameId)}else if(t===Qs.RENDER){const t=this._getMaps(this.updateMap,r);t.renderId!==this.renderId&&!1!==e.update(this)&&(t.renderId=this.renderId)}else t===Qs.OBJECT&&e.update(this)}update(){this.frameId++,void 0===this.lastTime&&(this.lastTime=performance.now()),this.deltaTime=(performance.now()-this.lastTime)/1e3,this.lastTime=performance.now(),this.time+=this.deltaTime}}class PN{constructor(e,t,r=null,s="",i=!1){this.type=e,this.name=t,this.count=r,this.qualifier=s,this.isConst=i}}PN.isNodeFunctionInput=!0;class FN extends K_{static get type(){return"DirectionalLightNode"}constructor(e=null){super(e)}setupDirect(){const e=this.colorNode;return{lightDirection:s_(this.light),lightColor:e}}}const DN=new a,IN=new a;let UN=null;class ON extends K_{static get type(){return"RectAreaLightNode"}constructor(e=null){super(e),this.halfHeight=xa(new r).setGroup(fa),this.halfWidth=xa(new r).setGroup(fa),this.updateType=Qs.RENDER}update(e){super.update(e);const{light:t}=this,r=e.camera.matrixWorldInverse;IN.identity(),DN.copy(t.matrixWorld),DN.premultiply(r),IN.extractRotation(DN),this.halfWidth.value.set(.5*t.width,0,0),this.halfHeight.value.set(0,.5*t.height,0),this.halfWidth.value.applyMatrix4(IN),this.halfHeight.value.applyMatrix4(IN)}setupDirectRectArea(e){let t,r;e.isAvailable("float32Filterable")?(t=Pl(UN.LTC_FLOAT_1),r=Pl(UN.LTC_FLOAT_2)):(t=Pl(UN.LTC_HALF_1),r=Pl(UN.LTC_HALF_2));const{colorNode:s,light:i}=this;return{lightColor:s,lightPosition:r_(i),halfWidth:this.halfWidth,halfHeight:this.halfHeight,ltc_1:t,ltc_2:r}}static setLTC(e){UN=e}}class VN extends K_{static get type(){return"SpotLightNode"}constructor(e=null){super(e),this.coneCosNode=xa(0).setGroup(fa),this.penumbraCosNode=xa(0).setGroup(fa),this.cutoffDistanceNode=xa(0).setGroup(fa),this.decayExponentNode=xa(0).setGroup(fa),this.colorNode=xa(this.color).setGroup(fa)}update(e){super.update(e);const{light:t}=this;this.coneCosNode.value=Math.cos(t.angle),this.penumbraCosNode.value=Math.cos(t.angle*(1-t.penumbra)),this.cutoffDistanceNode.value=t.distance,this.decayExponentNode.value=t.decay}getSpotAttenuation(e,t){const{coneCosNode:r,penumbraCosNode:s}=this;return uu(r,s,t)}getLightCoord(e){const t=e.getNodeProperties(this);let r=t.projectionUV;return void 0===r&&(r=JT(this.light,e.context.positionWorld),t.projectionUV=r),r}setupDirect(e){const{colorNode:t,cutoffDistanceNode:r,decayExponentNode:s,light:i}=this,n=this.getLightVector(e),a=n.normalize(),o=a.dot(s_(i)),u=this.getSpotAttenuation(e,o),l=n.length(),d=Y_({lightDistance:l,cutoffDistance:r,decayExponent:s});let c,h,p=t.mul(u).mul(d);if(i.colorNode?(h=this.getLightCoord(e),c=i.colorNode(h)):i.map&&(h=this.getLightCoord(e),c=Pl(i.map,h.xy).onRenderUpdate(()=>i.map)),c){p=h.mul(2).sub(1).abs().lessThan(1).all().select(p.mul(c),p)}return{lightColor:p,lightDirection:a}}}class kN extends VN{static get type(){return"IESSpotLightNode"}getSpotAttenuation(e,t){const r=this.light.iesMap;let s=null;if(r&&!0===r.isTexture){const e=t.acos().mul(1/Math.PI);s=Pl(r,fn(e,0),0).r}else s=super.getSpotAttenuation(t);return s}}const GN=an(([e,t])=>{const r=e.abs().sub(t);return Mo(Wo(r,0)).add($o(Wo(r.x,r.y),0))});class zN extends VN{static get type(){return"ProjectorLightNode"}update(e){super.update(e);const t=this.light;if(this.penumbraCosNode.value=Math.min(Math.cos(t.angle*(1-t.penumbra)),.99999),null===t.aspect){let e=1;null!==t.map&&(e=t.map.width/t.map.height),t.shadow.aspect=e}else t.shadow.aspect=t.aspect}getSpotAttenuation(e){const t=hn(0),r=this.penumbraCosNode,s=ZT(this.light).mul(e.context.positionWorld||Pd);return ln(s.w.greaterThan(0),()=>{const e=s.xyz.div(s.w),i=GN(e.xy.sub(fn(.5)),fn(.5)),n=Ba(-1,Ca(1,Ao(r)).sub(1));t.assign(au(i.mul(-2).mul(n)))}),t}}class $N extends K_{static get type(){return"AmbientLightNode"}constructor(e=null){super(e)}setup({context:e}){e.irradiance.addAssign(this.colorNode)}}class WN extends K_{static get type(){return"HemisphereLightNode"}constructor(t=null){super(t),this.lightPositionNode=e_(t),this.lightDirectionNode=this.lightPositionNode.normalize(),this.groundColorNode=xa(new e).setGroup(fa)}update(e){const{light:t}=this;super.update(e),this.lightPositionNode.object3d=t,this.groundColorNode.value.copy(t.groundColor).multiplyScalar(t.intensity)}setup(e){const{colorNode:t,groundColorNode:r,lightDirectionNode:s}=this,i=qd.dot(s).mul(.5).add(.5),n=iu(r,t,i);e.context.irradiance.addAssign(n)}}class HN extends K_{static get type(){return"LightProbeNode"}constructor(e=null){super(e);const t=[];for(let e=0;e<9;e++)t.push(new r);this.lightProbe=Vl(t)}update(e){const{light:t}=this;super.update(e);for(let e=0;e<9;e++)this.lightProbe.array[e].copy(t.sh.coefficients[e]).multiplyScalar(t.intensity)}setup(e){const t=Xv(qd,this.lightProbe);e.context.irradiance.addAssign(t)}}class jN{parseFunction(){d("Abstract function.")}}class qN{constructor(e,t,r="",s=""){this.type=e,this.inputs=t,this.name=r,this.precision=s}getCode(){d("Abstract function.")}}qN.isNodeFunction=!0;const XN=/^\s*(highp|mediump|lowp)?\s*([a-z_0-9]+)\s*([a-z_0-9]+)?\s*\(([\s\S]*?)\)/i,KN=/[a-z_0-9]+/gi,YN="#pragma main";class QN extends qN{constructor(e){const{type:t,inputs:r,name:s,precision:i,inputsCode:n,blockCode:a,headerCode:o}=(e=>{const t=(e=e.trim()).indexOf(YN),r=-1!==t?e.slice(t+12):e,s=r.match(XN);if(null!==s&&5===s.length){const i=s[4],n=[];let a=null;for(;null!==(a=KN.exec(i));)n.push(a);const o=[];let u=0;for(;u{const r=this.backend.createNodeBuilder(e.object,this.renderer);return r.scene=e.scene,r.material=t,r.camera=e.camera,r.context.material=t,r.lightsNode=e.lightsNode,r.environmentNode=this.getEnvironmentNode(e.scene),r.fogNode=this.getFogNode(e.scene),r.clippingContext=e.clippingContext,this.renderer.getOutputRenderTarget()&&this.renderer.getOutputRenderTarget().multiview&&r.enableMultiview(),r};let n=t(e.material);try{n.build()}catch(e){n=t(new Xp),n.build(),o("TSL: "+e)}r=this._createNodeBuilderState(n),s.set(i,r)}r.usedTimes++,t.nodeBuilderState=r}return r}delete(e){if(e.isRenderObject){const t=this.get(e).nodeBuilderState;t.usedTimes--,0===t.usedTimes&&this.nodeBuilderCache.delete(this.getForRenderCacheKey(e))}return super.delete(e)}getForCompute(e){const t=this.get(e);let r=t.nodeBuilderState;if(void 0===r){const s=this.backend.createNodeBuilder(e,this.renderer);s.build(),r=this._createNodeBuilderState(s),t.nodeBuilderState=r}return r}_createNodeBuilderState(e){return new eN(e.vertexShader,e.fragmentShader,e.computeShader,e.getAttributesArray(),e.getBindings(),e.updateNodes,e.updateBeforeNodes,e.updateAfterNodes,e.observer,e.transforms)}getEnvironmentNode(e){this.updateEnvironment(e);let t=null;if(e.environmentNode&&e.environmentNode.isNode)t=e.environmentNode;else{const r=this.get(e);r.environmentNode&&(t=r.environmentNode)}return t}getBackgroundNode(e){this.updateBackground(e);let t=null;if(e.backgroundNode&&e.backgroundNode.isNode)t=e.backgroundNode;else{const r=this.get(e);r.backgroundNode&&(t=r.backgroundNode)}return t}getFogNode(e){return this.updateFog(e),e.fogNode||this.get(e).fogNode||null}getCacheKey(e,t){eS[0]=e,eS[1]=t;const r=this.renderer.info.calls,s=this.callHashCache.get(eS)||{};if(s.callId!==r){const i=this.getEnvironmentNode(e),n=this.getFogNode(e);t&&tS.push(t.getCacheKey(!0)),i&&tS.push(i.getCacheKey()),n&&tS.push(n.getCacheKey()),tS.push(this.renderer.getOutputRenderTarget()&&this.renderer.getOutputRenderTarget().multiview?1:0),tS.push(this.renderer.shadowMap.enabled?1:0),tS.push(this.renderer.shadowMap.type),s.callId=r,s.cacheKey=Ds(tS),this.callHashCache.set(eS,s),tS.length=0}return eS.length=0,s.cacheKey}get isToneMappingState(){return!this.renderer.getRenderTarget()}updateBackground(e){const t=this.get(e),r=e.background;if(r){const s=0===e.backgroundBlurriness&&t.backgroundBlurriness>0||e.backgroundBlurriness>0&&0===t.backgroundBlurriness;if(t.background!==r||s){const i=this.getCacheNode("background",r,()=>{if(!0===r.isCubeTexture||r.mapping===oe||r.mapping===ue||r.mapping===Se){if(e.backgroundBlurriness>0||r.mapping===Se)return mf(r);{let e;return e=!0===r.isCubeTexture?hc(r):Pl(r),hg(e)}}if(!0===r.isTexture)return Pl(r,Hl.flipY()).setUpdateMatrix(!0);!0!==r.isColor&&o("WebGPUNodes: Unsupported background configuration.",r)},s);t.backgroundNode=i,t.background=r,t.backgroundBlurriness=e.backgroundBlurriness}}else t.backgroundNode&&(delete t.backgroundNode,delete t.background)}getCacheNode(e,t,r,s=!1){const i=this.cacheLib[e]||(this.cacheLib[e]=new WeakMap);let n=i.get(t);return(void 0===n||s)&&(n=r(),i.set(t,n)),n}updateFog(e){const t=this.get(e),r=e.fog;if(r){if(t.fog!==r){const e=this.getCacheNode("fog",r,()=>{if(r.isFogExp2){const e=mc("color","color",r).setGroup(fa),t=mc("density","float",r).setGroup(fa);return aT(e,nT(t))}if(r.isFog){const e=mc("color","color",r).setGroup(fa),t=mc("near","float",r).setGroup(fa),s=mc("far","float",r).setGroup(fa);return aT(e,iT(t,s))}o("Renderer: Unsupported fog configuration.",r)});t.fogNode=e,t.fog=r}}else delete t.fogNode,delete t.fog}updateEnvironment(e){const t=this.get(e),r=e.environment;if(r){if(t.environment!==r){const e=this.getCacheNode("environment",r,()=>!0===r.isCubeTexture?hc(r):!0===r.isTexture?Pl(r):void o("Nodes: Unsupported environment configuration.",r));t.environmentNode=e,t.environment=r}}else t.environmentNode&&(delete t.environmentNode,delete t.environment)}getNodeFrame(e=this.renderer,t=null,r=null,s=null,i=null){const n=this.nodeFrame;return n.renderer=e,n.scene=t,n.object=r,n.camera=s,n.material=i,n}getNodeFrameForRender(e){return this.getNodeFrame(e.renderer,e.scene,e.object,e.camera,e.material)}getOutputCacheKey(){const e=this.renderer;return e.toneMapping+","+e.currentColorSpace+","+e.xr.isPresenting}hasOutputChange(e){return JN.get(e)!==this.getOutputCacheKey()}getOutputNode(e){const t=this.renderer,r=this.getOutputCacheKey(),s=e.isArrayTexture?fx(e,Tn(Hl,kl("gl_ViewID_OVR"))).renderOutput(t.toneMapping,t.currentColorSpace):Pl(e,Hl).renderOutput(t.toneMapping,t.currentColorSpace);return JN.set(e,r),s}updateBefore(e){const t=e.getNodeBuilderState();for(const r of t.updateBeforeNodes)this.getNodeFrameForRender(e).updateBeforeNode(r)}updateAfter(e){const t=e.getNodeBuilderState();for(const r of t.updateAfterNodes)this.getNodeFrameForRender(e).updateAfterNode(r)}updateForCompute(e){const t=this.getNodeFrame(),r=this.getForCompute(e);for(const e of r.updateNodes)t.updateNode(e)}updateForRender(e){const t=this.getNodeFrameForRender(e),r=e.getNodeBuilderState();for(const e of r.updateNodes)t.updateNode(e)}needsRefresh(e){const t=this.getNodeFrameForRender(e);return e.getMonitor().needsRefresh(e,t)}dispose(){super.dispose(),this.nodeFrame=new LN,this.nodeBuilderCache=new Map,this.cacheLib={}}}const sS=new Ge;class iS{constructor(e=null){this.version=0,this.clipIntersection=null,this.cacheKey="",this.shadowPass=!1,this.viewNormalMatrix=new n,this.clippingGroupContexts=new WeakMap,this.intersectionPlanes=[],this.unionPlanes=[],this.parentVersion=null,null!==e&&(this.viewNormalMatrix=e.viewNormalMatrix,this.clippingGroupContexts=e.clippingGroupContexts,this.shadowPass=e.shadowPass,this.viewMatrix=e.viewMatrix)}projectPlanes(e,t,r){const s=e.length;for(let i=0;i0,alpha:!0,depth:t.depth,stencil:t.stencil,framebufferScaleFactor:this.getFramebufferScaleFactor()},i=new XRWebGLLayer(e,s,r);this._glBaseLayer=i,e.updateRenderState({baseLayer:i}),t.setPixelRatio(1),t._setXRLayerSize(i.framebufferWidth,i.framebufferHeight),this._xrRenderTarget=new hS(i.framebufferWidth,i.framebufferHeight,{format:Ne,type:ke,colorSpace:t.outputColorSpace,stencilBuffer:t.stencil,resolveDepthBuffer:!1===i.ignoreDepthValues,resolveStencilBuffer:!1===i.ignoreDepthValues}),this._xrRenderTarget._isOpaqueFramebuffer=!0,this._referenceSpace=await e.requestReferenceSpace(this.getReferenceSpaceType())}this.setFoveation(this.getFoveation()),t._animation.setAnimationLoop(this._onAnimationFrame),t._animation.setContext(e),t._animation.start(),this.isPresenting=!0,this.dispatchEvent({type:"sessionstart"})}}updateCamera(e){const t=this._session;if(null===t)return;const r=e.near,s=e.far,i=this._cameraXR,n=this._cameraL,a=this._cameraR;i.near=a.near=n.near=r,i.far=a.far=n.far=s,i.isMultiViewCamera=this._useMultiview,this._currentDepthNear===i.near&&this._currentDepthFar===i.far||(t.updateRenderState({depthNear:i.near,depthFar:i.far}),this._currentDepthNear=i.near,this._currentDepthFar=i.far),i.layers.mask=6|e.layers.mask,n.layers.mask=3&i.layers.mask,a.layers.mask=5&i.layers.mask;const o=e.parent,u=i.cameras;fS(i,o);for(let e=0;e=0&&(r[n]=null,t[n].disconnect(i))}for(let s=0;s=r.length){r.push(i),n=e;break}if(null===r[e]){r[e]=i,n=e;break}}if(-1===n)break}const a=t[n];a&&a.connect(i)}}function TS(e){return"quad"===e.type?this._glBinding.createQuadLayer({transform:new XRRigidTransform(e.translation,e.quaternion),width:e.width/2,height:e.height/2,space:this._referenceSpace,viewPixelWidth:e.pixelwidth,viewPixelHeight:e.pixelheight,clearOnAccess:!1}):this._glBinding.createCylinderLayer({transform:new XRRigidTransform(e.translation,e.quaternion),radius:e.radius,centralAngle:e.centralAngle,aspectRatio:e.aspectRatio,space:this._referenceSpace,viewPixelWidth:e.pixelwidth,viewPixelHeight:e.pixelheight,clearOnAccess:!1})}function _S(e,t){if(void 0===t)return;const r=this._cameraXR,i=this._renderer,n=i.backend,a=this._glBaseLayer,o=this.getReferenceSpace(),u=t.getViewerPose(o);if(this._xrFrame=t,null!==u){const e=u.views;null!==this._glBaseLayer&&n.setXRTarget(a.framebuffer);let t=!1;e.length!==r.cameras.length&&(r.cameras.length=0,t=!0);for(let i=0;i{await this.compileAsync(e,t);const s=this._renderLists.get(e,t),i=this._renderContexts.get(e,t,this._renderTarget,this._mrt),n=e.overrideMaterial||r.material,a=this._objects.get(r,n,e,t,s.lightsNode,i,i.clippingContext),{fragmentShader:o,vertexShader:u}=a.getNodeBuilderState();return{fragmentShader:o,vertexShader:u}}}}async init(){return null!==this._initPromise||(this._initPromise=new Promise(async(e,t)=>{let r=this.backend;try{await r.init(this)}catch(e){if(null===this._getFallback)return void t(e);try{this.backend=r=this._getFallback(e),await r.init(this)}catch(e){return void t(e)}}this._nodes=new rS(this,r),this._animation=new Kf(this,this._nodes,this.info),this._attributes=new oy(r),this._background=new Qv(this,this._nodes),this._geometries=new dy(this._attributes,this.info),this._textures=new Py(this,r,this.info),this._pipelines=new yy(r,this._nodes),this._bindings=new by(r,this._nodes,this._textures,this._attributes,this._pipelines,this.info),this._objects=new ey(this,this._nodes,this._geometries,this._pipelines,this._bindings,this.info),this._renderLists=new Sy(this.lighting),this._bundles=new oS,this._renderContexts=new By,this._animation.start(),this._initialized=!0,this._inspector.init(),e(this)})),this._initPromise}get domElement(){return this._canvasTarget.domElement}get coordinateSystem(){return this.backend.coordinateSystem}async compileAsync(e,t,r=null){if(!0===this._isDeviceLost)return;!1===this._initialized&&await this.init();const s=this._nodes.nodeFrame,i=s.renderId,n=this._currentRenderContext,a=this._currentRenderObjectFunction,o=this._compilationPromises,u=!0===e.isScene?e:NS;null===r&&(r=e);const l=this._renderTarget,d=this._renderContexts.get(r,t,l,this._mrt),c=this._activeMipmapLevel,h=[];this._currentRenderContext=d,this._currentRenderObjectFunction=this.renderObject,this._handleObjectFunction=this._createObjectPipeline,this._compilationPromises=h,s.renderId++,s.update(),d.depth=this.depth,d.stencil=this.stencil,d.clippingContext||(d.clippingContext=new iS),d.clippingContext.updateGlobal(u,t),u.onBeforeRender(this,e,t,l);const p=this._renderLists.get(e,t);if(p.begin(),this._projectObject(e,t,0,p,d.clippingContext),r!==e&&r.traverseVisible(function(e){e.isLight&&e.layers.test(t.layers)&&p.pushLight(e)}),p.finish(),null!==l){this._textures.updateRenderTarget(l,c);const e=this._textures.get(l);d.textures=e.textures,d.depthTexture=e.depthTexture}else d.textures=null,d.depthTexture=null;this._background.update(u,p,d);const g=p.opaque,m=p.transparent,f=p.transparentDoublePass,y=p.lightsNode;!0===this.opaque&&g.length>0&&this._renderObjects(g,t,u,y),!0===this.transparent&&m.length>0&&this._renderTransparents(m,f,t,u,y),s.renderId=i,this._currentRenderContext=n,this._currentRenderObjectFunction=a,this._compilationPromises=o,this._handleObjectFunction=this._renderObjectDirect,await Promise.all(h)}async renderAsync(e,t){v('Renderer: "renderAsync()" has been deprecated. Use "render()" and "await renderer.init();" when creating the renderer.'),await this.init(),this.render(e,t)}async waitForGPU(){o("Renderer: waitForGPU() has been removed. Read https://github.com/mrdoob/three.js/issues/32012 for more information.")}set inspector(e){null!==this._inspector&&this._inspector.setRenderer(null),this._inspector=e,this._inspector.setRenderer(this)}get inspector(){return this._inspector}set highPrecision(e){const t=this.contextNode.value;!0===e?(t.modelViewMatrix=wd,t.modelNormalViewMatrix=Cd):this.highPrecision&&(delete t.modelViewMatrix,delete t.modelNormalViewMatrix)}get highPrecision(){const e=this.contextNode.value;return e.modelViewMatrix===wd&&e.modelNormalViewMatrix===Cd}setMRT(e){return this._mrt=e,this}getMRT(){return this._mrt}getColorBufferType(){return this._colorBufferType}_onDeviceLost(e){let t=`THREE.WebGPURenderer: ${e.api} Device Lost:\n\nMessage: ${e.message}`;e.reason&&(t+=`\nReason: ${e.reason}`),o(t),this._isDeviceLost=!0}_renderBundle(e,t,r){const{bundleGroup:s,camera:i,renderList:n}=e,a=this._currentRenderContext,o=this._bundles.get(s,i),u=this.backend.get(o);void 0===u.renderContexts&&(u.renderContexts=new Set);const l=s.version!==u.version,d=!1===u.renderContexts.has(a)||l;if(u.renderContexts.add(a),d){this.backend.beginBundle(a),(void 0===u.renderObjects||l)&&(u.renderObjects=[]),this._currentRenderBundle=o;const{transparentDoublePass:e,transparent:d,opaque:c}=n;!0===this.opaque&&c.length>0&&this._renderObjects(c,i,t,r),!0===this.transparent&&d.length>0&&this._renderTransparents(d,e,i,t,r),this._currentRenderBundle=null,this.backend.finishBundle(a,o),u.version=s.version}else{const{renderObjects:e}=u;for(let t=0,r=e.length;t>=c,p.viewportValue.height>>=c,p.viewportValue.minDepth=T,p.viewportValue.maxDepth=_,p.viewport=!1===p.viewportValue.equals(RS),p.scissorValue.copy(b).multiplyScalar(x).floor(),p.scissor=f._scissorTest&&!1===p.scissorValue.equals(RS),p.scissorValue.width>>=c,p.scissorValue.height>>=c,p.clippingContext||(p.clippingContext=new iS),p.clippingContext.updateGlobal(u,t),u.onBeforeRender(this,e,t,h);const v=t.isArrayCamera?ES:AS;t.isArrayCamera||(wS.multiplyMatrices(t.projectionMatrix,t.matrixWorldInverse),v.setFromProjectionMatrix(wS,t.coordinateSystem,t.reversedDepth));const N=this._renderLists.get(e,t);if(N.begin(),this._projectObject(e,t,0,N,p.clippingContext),N.finish(),!0===this.sortObjects&&N.sort(this._opaqueSort,this._transparentSort),null!==h){this._textures.updateRenderTarget(h,c);const e=this._textures.get(h);p.textures=e.textures,p.depthTexture=e.depthTexture,p.width=e.width,p.height=e.height,p.renderTarget=h,p.depth=h.depthBuffer,p.stencil=h.stencilBuffer}else p.textures=null,p.depthTexture=null,p.width=SS.width,p.height=SS.height,p.depth=this.depth,p.stencil=this.stencil;p.width>>=c,p.height>>=c,p.activeCubeFace=d,p.activeMipmapLevel=c,p.occlusionQueryCount=N.occlusionQueryCount,p.scissorValue.max(CS.set(0,0,0,0)),p.scissorValue.x+p.scissorValue.width>p.width&&(p.scissorValue.width=Math.max(p.width-p.scissorValue.x,0)),p.scissorValue.y+p.scissorValue.height>p.height&&(p.scissorValue.height=Math.max(p.height-p.scissorValue.y,0)),this._background.update(u,N,p),p.camera=t,this.backend.beginRender(p);const{bundles:S,lightsNode:R,transparentDoublePass:A,transparent:E,opaque:w}=N;return S.length>0&&this._renderBundles(S,u,R),!0===this.opaque&&w.length>0&&this._renderObjects(w,t,u,R),!0===this.transparent&&E.length>0&&this._renderTransparents(E,A,t,u,R),this.backend.finishRender(p),i.renderId=n,this._currentRenderContext=a,this._currentRenderObjectFunction=o,null!==s&&(this.setRenderTarget(l,d,c),this._renderOutput(h)),u.onAfterRender(this,e,t,h),this.inspector.finishRender(this.backend.getTimestampUID(p)),p}_setXRLayerSize(e,t){this._canvasTarget._width=e,this._canvasTarget._height=t,this.setViewport(0,0,e,t)}_renderOutput(e){const t=this._quad;this._nodes.hasOutputChange(e.texture)&&(t.material.fragmentNode=this._nodes.getOutputNode(e.texture),t.material.needsUpdate=!0);const r=this.autoClear,s=this.xr.enabled;this.autoClear=!1,this.xr.enabled=!1,this._renderScene(t,t.camera,!1),this.autoClear=r,this.xr.enabled=s}getMaxAnisotropy(){return this.backend.getMaxAnisotropy()}getActiveCubeFace(){return this._activeCubeFace}getActiveMipmapLevel(){return this._activeMipmapLevel}async setAnimationLoop(e){!1===this._initialized&&await this.init(),this._animation.setAnimationLoop(e)}getAnimationLoop(){return this._animation.getAnimationLoop()}async getArrayBufferAsync(e){return await this.backend.getArrayBufferAsync(e)}getContext(){return this.backend.getContext()}getPixelRatio(){return this._canvasTarget.getPixelRatio()}getDrawingBufferSize(e){return this._canvasTarget.getDrawingBufferSize(e)}getSize(e){return this._canvasTarget.getSize(e)}setPixelRatio(e=1){this._canvasTarget.setPixelRatio(e)}setDrawingBufferSize(e,t,r){this.xr&&this.xr.isPresenting||this._canvasTarget.setDrawingBufferSize(e,t,r)}setSize(e,t,r=!0){this.xr&&this.xr.isPresenting||this._canvasTarget.setSize(e,t,r)}setOpaqueSort(e){this._opaqueSort=e}setTransparentSort(e){this._transparentSort=e}getScissor(e){return this._canvasTarget.getScissor(e)}setScissor(e,t,r,s){this._canvasTarget.setScissor(e,t,r,s)}getScissorTest(){return this._canvasTarget.getScissorTest()}setScissorTest(e){this._canvasTarget.setScissorTest(e),this.backend.setScissorTest(e)}getViewport(e){return this._canvasTarget.getViewport(e)}setViewport(e,t,r,s,i=0,n=1){this._canvasTarget.setViewport(e,t,r,s,i,n)}getClearColor(e){return e.copy(this._clearColor)}setClearColor(e,t=1){this._clearColor.set(e),this._clearColor.a=t}getClearAlpha(){return this._clearColor.a}setClearAlpha(e){this._clearColor.a=e}getClearDepth(){return this._clearDepth}setClearDepth(e){this._clearDepth=e}getClearStencil(){return this._clearStencil}setClearStencil(e){this._clearStencil=e}isOccluded(e){const t=this._currentRenderContext;return t&&this.backend.isOccluded(t,e)}clear(e=!0,t=!0,r=!0){if(!1===this._initialized)throw new Error('Renderer: .clear() called before the backend is initialized. Use "await renderer.init();" before before using this method.');const s=this._renderTarget||this._getFrameBufferTarget();let i=null;if(null!==s){this._textures.updateRenderTarget(s);const e=this._textures.get(s);i=this._renderContexts.getForClear(s),i.textures=e.textures,i.depthTexture=e.depthTexture,i.width=e.width,i.height=e.height,i.renderTarget=s,i.depth=s.depthBuffer,i.stencil=s.stencilBuffer,i.clearColorValue=this.backend.getClearColor(),i.activeCubeFace=this.getActiveCubeFace(),i.activeMipmapLevel=this.getActiveMipmapLevel()}this.backend.clear(e,t,r,i),null!==s&&null===this._renderTarget&&this._renderOutput(s)}clearColor(){this.clear(!0,!1,!1)}clearDepth(){this.clear(!1,!0,!1)}clearStencil(){this.clear(!1,!1,!0)}async clearAsync(e=!0,t=!0,r=!0){v('Renderer: "clearAsync()" has been deprecated. Use "clear()" and "await renderer.init();" when creating the renderer.'),await this.init(),this.clear(e,t,r)}async clearColorAsync(){v('Renderer: "clearColorAsync()" has been deprecated. Use "clearColor()" and "await renderer.init();" when creating the renderer.'),this.clear(!0,!1,!1)}async clearDepthAsync(){v('Renderer: "clearDepthAsync()" has been deprecated. Use "clearDepth()" and "await renderer.init();" when creating the renderer.'),this.clear(!1,!0,!1)}async clearStencilAsync(){v('Renderer: "clearStencilAsync()" has been deprecated. Use "clearStencil()" and "await renderer.init();" when creating the renderer.'),this.clear(!1,!1,!0)}get needsFrameBufferTarget(){const e=this.currentToneMapping!==m,t=this.currentColorSpace!==p.workingColorSpace;return e||t}get samples(){return this._samples}get currentSamples(){let e=this._samples;return null!==this._renderTarget?e=this._renderTarget.samples:this.needsFrameBufferTarget&&(e=0),e}get currentToneMapping(){return this.isOutputTarget?this.toneMapping:m}get currentColorSpace(){return this.isOutputTarget?this.outputColorSpace:p.workingColorSpace}get isOutputTarget(){return this._renderTarget===this._outputRenderTarget||null===this._renderTarget}dispose(){!0===this._initialized&&(this.info.dispose(),this.backend.dispose(),this._animation.dispose(),this._objects.dispose(),this._geometries.dispose(),this._pipelines.dispose(),this._nodes.dispose(),this._bindings.dispose(),this._renderLists.dispose(),this._renderContexts.dispose(),this._textures.dispose(),null!==this._frameBufferTarget&&this._frameBufferTarget.dispose(),Object.values(this.backend.timestampQueryPool).forEach(e=>{null!==e&&e.dispose()})),this.setRenderTarget(null),this.setAnimationLoop(null)}setRenderTarget(e,t=0,r=0){this._renderTarget=e,this._activeCubeFace=t,this._activeMipmapLevel=r}getRenderTarget(){return this._renderTarget}setOutputRenderTarget(e){this._outputRenderTarget=e}getOutputRenderTarget(){return this._outputRenderTarget}setCanvasTarget(e){this._canvasTarget.removeEventListener("resize",this._onCanvasTargetResize),this._canvasTarget=e,this._canvasTarget.addEventListener("resize",this._onCanvasTargetResize)}getCanvasTarget(){return this._canvasTarget}_resetXRState(){this.backend.setXRTarget(null),this.setOutputRenderTarget(null),this.setRenderTarget(null),this._frameBufferTarget.dispose(),this._frameBufferTarget=null}setRenderObjectFunction(e){this._renderObjectFunction=e}getRenderObjectFunction(){return this._renderObjectFunction}compute(e,t=null){if(!0===this._isDeviceLost)return;if(!1===this._initialized)return d("Renderer: .compute() called before the backend is initialized. Try using .computeAsync() instead."),this.computeAsync(e,t);const r=this._nodes.nodeFrame,s=r.renderId;this.info.calls++,this.info.compute.calls++,this.info.compute.frameCalls++,r.renderId=this.info.calls,this.backend.updateTimeStampUID(e),this.inspector.beginCompute(this.backend.getTimestampUID(e),e);const i=this.backend,n=this._pipelines,a=this._bindings,o=this._nodes,u=Array.isArray(e)?e:[e];if(void 0===u[0]||!0!==u[0].isComputeNode)throw new Error("THREE.Renderer: .compute() expects a ComputeNode.");i.beginCompute(e);for(const r of u){if(!1===n.has(r)){const e=()=>{r.removeEventListener("dispose",e),n.delete(r),a.deleteForCompute(r),o.delete(r)};r.addEventListener("dispose",e);const t=r.onInitFunction;null!==t&&t.call(r,{renderer:this})}o.updateForCompute(r),a.updateForCompute(r);const s=a.getForCompute(r),u=n.getForCompute(r,s);i.compute(e,r,s,u,t)}i.finishCompute(e),r.renderId=s,this.inspector.finishCompute(this.backend.getTimestampUID(e))}async computeAsync(e,t=null){!1===this._initialized&&await this.init(),this.compute(e,t)}async hasFeatureAsync(e){return v('Renderer: "hasFeatureAsync()" has been deprecated. Use "hasFeature()" and "await renderer.init();" when creating the renderer.'),await this.init(),this.hasFeature(e)}async resolveTimestampsAsync(e="render"){return!1===this._initialized&&await this.init(),this.backend.resolveTimestampsAsync(e)}hasFeature(e){if(!1===this._initialized)throw new Error('Renderer: .hasFeature() called before the backend is initialized. Use "await renderer.init();" before before using this method.');return this.backend.hasFeature(e)}hasInitialized(){return this._initialized}async initTextureAsync(e){v('Renderer: "initTextureAsync()" has been deprecated. Use "initTexture()" and "await renderer.init();" when creating the renderer.'),await this.init(),this.initTexture(e)}initTexture(e){if(!1===this._initialized)throw new Error('Renderer: .initTexture() called before the backend is initialized. Use "await renderer.init();" before before using this method.');this._textures.updateTexture(e)}copyFramebufferToTexture(e,t=null){if(null!==t)if(t.isVector2)t=CS.set(t.x,t.y,e.image.width,e.image.height).floor();else{if(!t.isVector4)return void o("Renderer.copyFramebufferToTexture: Invalid rectangle.");t=CS.copy(t).floor()}else t=CS.set(0,0,e.image.width,e.image.height);let r,s=this._currentRenderContext;null!==s?r=s.renderTarget:(r=this._renderTarget||this._getFrameBufferTarget(),null!==r&&(this._textures.updateRenderTarget(r),s=this._textures.get(r))),this._textures.updateTexture(e,{renderTarget:r}),this.backend.copyFramebufferToTexture(e,s,t),this._inspector.copyFramebufferToTexture(e)}copyTextureToTexture(e,t,r=null,s=null,i=0,n=0){this._textures.updateTexture(e),this._textures.updateTexture(t),this.backend.copyTextureToTexture(e,t,r,s,i,n),this._inspector.copyTextureToTexture(e,t)}async readRenderTargetPixelsAsync(e,t,r,s,i,n=0,a=0){return this.backend.copyTextureToBuffer(e.textures[n],t,r,s,i,a)}_projectObject(e,t,r,s,i){if(!1===e.visible)return;if(e.layers.test(t.layers))if(e.isGroup)r=e.renderOrder,e.isClippingGroup&&e.enabled&&(i=i.getGroupContext(e));else if(e.isLOD)!0===e.autoUpdate&&e.update(t);else if(e.isLight)s.pushLight(e);else if(e.isSprite){const n=t.isArrayCamera?ES:AS;if(!e.frustumCulled||n.intersectsSprite(e,t)){!0===this.sortObjects&&CS.setFromMatrixPosition(e.matrixWorld).applyMatrix4(wS);const{geometry:t,material:n}=e;n.visible&&s.push(e,t,n,r,CS.z,null,i)}}else if(e.isLineLoop)o("Renderer: Objects of type THREE.LineLoop are not supported. Please use THREE.Line or THREE.LineSegments.");else if(e.isMesh||e.isLine||e.isPoints){const n=t.isArrayCamera?ES:AS;if(!e.frustumCulled||n.intersectsObject(e,t)){const{geometry:t,material:n}=e;if(!0===this.sortObjects&&(null===t.boundingSphere&&t.computeBoundingSphere(),CS.copy(t.boundingSphere.center).applyMatrix4(e.matrixWorld).applyMatrix4(wS)),Array.isArray(n)){const a=t.groups;for(let o=0,u=a.length;o0){for(const{material:e}of t)e.side=w;this._renderObjects(t,r,s,i,"backSide");for(const{material:e}of t)e.side=it;this._renderObjects(e,r,s,i);for(const{material:e}of t)e.side=C}else this._renderObjects(e,r,s,i)}_renderObjects(e,t,r,s,i=null){for(let n=0,a=e.length;n0||i.transmissionNode&&i.transmissionNode.isNode||i.backdropNode&&i.backdropNode.isNode,e.isShadowPassMaterial){const{colorNode:t,depthNode:r,positionNode:s}=this._getShadowNodes(i);e.side=null===i.shadowSide?i.side:i.shadowSide,null!==t&&(e.colorNode=t),null!==r&&(e.depthNode=r),null!==s&&(e.positionNode=s)}i=e}!0===i.transparent&&i.side===C&&!1===i.forceSinglePass?(i.side=w,this._handleObjectFunction(e,i,t,r,a,n,o,"backSide"),i.side=it,this._handleObjectFunction(e,i,t,r,a,n,o,u),i.side=C):this._handleObjectFunction(e,i,t,r,a,n,o,u),p&&(t.overrideMaterial.colorNode=l,t.overrideMaterial.depthNode=d,t.overrideMaterial.positionNode=c,t.overrideMaterial.side=h),e.onAfterRender(this,t,r,s,i,n)}_renderObjectDirect(e,t,r,s,i,n,a,o){const u=this._objects.get(e,t,r,s,i,this._currentRenderContext,a,o);u.drawRange=e.geometry.drawRange,u.group=n;const l=this._nodes.needsRefresh(u);if(l&&(this._nodes.updateBefore(u),this._geometries.updateForRender(u),this._nodes.updateForRender(u),this._bindings.updateForRender(u)),this._pipelines.updateForRender(u),null!==this._currentRenderBundle){this.backend.get(this._currentRenderBundle).renderObjects.push(u),u.bundle=this._currentRenderBundle.bundleGroup}this.backend.draw(u,this.info),l&&this._nodes.updateAfter(u)}_createObjectPipeline(e,t,r,s,i,n,a,o){const u=this._objects.get(e,t,r,s,i,this._currentRenderContext,a,o);u.drawRange=e.geometry.drawRange,u.group=n,this._nodes.updateBefore(u),this._geometries.updateForRender(u),this._nodes.updateForRender(u),this._bindings.updateForRender(u),this._pipelines.getForRender(u,this._compilationPromises),this._nodes.updateAfter(u)}_onCanvasTargetResize(){this._initialized&&this.backend.updateSize()}get compile(){return this.compileAsync}}class BS{constructor(e=""){this.name=e,this.visibility=0}setVisibility(e){this.visibility|=e}getVisibility(){return this.visibility}clone(){return Object.assign(new this.constructor,this)}}class LS extends BS{constructor(e,t=null){super(e),this.isBuffer=!0,this.bytesPerElement=Float32Array.BYTES_PER_ELEMENT,this._buffer=t,this._updateRanges=[]}get updateRanges(){return this._updateRanges}addUpdateRange(e,t){this.updateRanges.push({start:e,count:t})}clearUpdateRanges(){this.updateRanges.length=0}get byteLength(){return(e=this._buffer.byteLength)+(ay-e%ay)%ay;var e}get buffer(){return this._buffer}update(){return!0}}class PS extends LS{constructor(e,t=null){super(e,t),this.isUniformBuffer=!0}}let FS=0;class DS extends PS{constructor(e,t){super("UniformBuffer_"+FS++,e?e.value:null),this.nodeUniform=e,this.groupNode=t,this.isNodeUniformBuffer=!0}set updateRanges(e){this.nodeUniform.updateRanges=e}get updateRanges(){return this.nodeUniform.updateRanges}addUpdateRange(e,t){this.nodeUniform.addUpdateRange(e,t)}clearUpdateRanges(){this.nodeUniform.clearUpdateRanges()}get buffer(){return this.nodeUniform.value}}class IS extends PS{constructor(e){super(e),this.isUniformsGroup=!0,this._values=null,this.uniforms=[]}addUniform(e){return this.uniforms.push(e),this}removeUniform(e){const t=this.uniforms.indexOf(e);return-1!==t&&this.uniforms.splice(t,1),this}get values(){return null===this._values&&(this._values=Array.from(this.buffer)),this._values}get buffer(){let e=this._buffer;if(null===e){const t=this.byteLength;e=new Float32Array(new ArrayBuffer(t)),this._buffer=e}return e}get byteLength(){const e=this.bytesPerElement;let t=0;for(let r=0,s=this.uniforms.length;r{this.generation=null,this.version=0},this.texture=t,this.version=t?t.version:0,this.generation=null,this.samplerKey="",this.isSampler=!0}set texture(e){this._texture!==e&&(this._texture&&this._texture.removeEventListener("dispose",this._onTextureDispose),this._texture=e,this.generation=null,this.version=0,this._texture&&this._texture.addEventListener("dispose",this._onTextureDispose))}get texture(){return this._texture}update(){const{texture:e,version:t}=this;return t!==e.version&&(this.version=e.version,!0)}clone(){const e=super.clone();return e._texture=null,e._onTextureDispose=()=>{e.generation=null,e.version=0},e.texture=this.texture,e}}let kS=0;class GS extends VS{constructor(e,t){super(e,t),this.id=kS++,this.store=!1,this.mipLevel=0,this.isSampledTexture=!0}}class zS extends GS{constructor(e,t,r,s=null){super(e,t?t.value:null),this.textureNode=t,this.groupNode=r,this.access=s}update(){const{textureNode:e}=this;return this.texture!==e.value?(this.texture=e.value,!0):super.update()}}class $S extends zS{constructor(e,t,r,s=null){super(e,t,r,s),this.isSampledCubeTexture=!0}}class WS extends zS{constructor(e,t,r,s=null){super(e,t,r,s),this.isSampledTexture3D=!0}}const HS={bitcast_int_uint:new jx("uint tsl_bitcast_int_to_uint ( int x ) { return floatBitsToUint( intBitsToFloat ( x ) ); }"),bitcast_uint_int:new jx("uint tsl_bitcast_uint_to_int ( uint x ) { return floatBitsToInt( uintBitsToFloat ( x ) ); }")},jS={textureDimensions:"textureSize",equals:"equal",bitcast_float_int:"floatBitsToInt",bitcast_int_float:"intBitsToFloat",bitcast_uint_float:"uintBitsToFloat",bitcast_float_uint:"floatBitsToUint",bitcast_uint_int:"tsl_bitcast_uint_to_int",bitcast_int_uint:"tsl_bitcast_int_to_uint",floatpack_snorm_2x16:"packSnorm2x16",floatpack_unorm_2x16:"packUnorm2x16",floatpack_float16_2x16:"packHalf2x16",floatunpack_snorm_2x16:"unpackSnorm2x16",floatunpack_unorm_2x16:"unpackUnorm2x16",floatunpack_float16_2x16:"unpackHalf2x16"},qS={low:"lowp",medium:"mediump",high:"highp"},XS={swizzleAssign:!0,storageBuffer:!1},KS={perspective:"smooth",linear:"noperspective"},YS={centroid:"centroid"},QS="\nprecision highp float;\nprecision highp int;\nprecision highp sampler2D;\nprecision highp sampler3D;\nprecision highp samplerCube;\nprecision highp sampler2DArray;\n\nprecision highp usampler2D;\nprecision highp usampler3D;\nprecision highp usamplerCube;\nprecision highp usampler2DArray;\n\nprecision highp isampler2D;\nprecision highp isampler3D;\nprecision highp isamplerCube;\nprecision highp isampler2DArray;\n\nprecision lowp sampler2DShadow;\nprecision lowp sampler2DArrayShadow;\nprecision lowp samplerCubeShadow;\n";class ZS extends BN{constructor(e,t){super(e,t,new ZN),this.uniformGroups={},this.transforms=[],this.extensions={},this.builtins={vertex:[],fragment:[],compute:[]}}needsToWorkingColorSpace(e){return!0===e.isVideoTexture&&e.colorSpace!==T}_include(e){const t=HS[e];return t.build(this),this.addInclude(t),t}getMethod(e){return void 0!==HS[e]&&this._include(e),jS[e]||e}getBitcastMethod(e,t){return this.getMethod(`bitcast_${t}_${e}`)}getFloatPackingMethod(e){return this.getMethod(`floatpack_${e}_2x16`)}getFloatUnpackingMethod(e){return this.getMethod(`floatunpack_${e}_2x16`)}getTernary(e,t,r){return`${e} ? ${t} : ${r}`}getOutputStructName(){return""}buildFunctionCode(e){const t=e.layout,r=this.flowShaderNode(e),s=[];for(const e of t.inputs)s.push(this.getType(e.type)+" "+e.name);return`${this.getType(t.type)} ${t.name}( ${s.join(", ")} ) {\n\n\t${r.vars}\n\n${r.code}\n\treturn ${r.result};\n\n}`}setupPBO(e){const t=e.value;if(void 0===t.pbo){const e=t.array,r=t.count*t.itemSize,{itemSize:s}=t,i=t.array.constructor.name.toLowerCase().includes("int");let n=i?mt:ft;2===s?n=i?Tt:V:3===s?n=i?_t:vt:4===s&&(n=i?Nt:Ne);const a={Float32Array:H,Uint8Array:ke,Uint16Array:xt,Uint32Array:S,Int8Array:bt,Int16Array:yt,Int32Array:R,Uint8ClampedArray:ke},o=Math.pow(2,Math.ceil(Math.log2(Math.sqrt(r/s))));let u=Math.ceil(r/s/o);o*u*s0?s:"";t=`${e.name} {\n\t${r} ${i.name}[${n}];\n};\n`}else{t=`${this.getVectorType(i.type)} ${this.getPropertyName(i,e)};`,n=!0}const a=i.node.precision;if(null!==a&&(t=qS[a]+" "+t),n){t="\t"+t;const e=i.groupNode.name;(s[e]||(s[e]=[])).push(t)}else t="uniform "+t,r.push(t)}let i="";for(const t in s){const r=s[t];i+=this._getGLSLUniformStruct(e+"_"+t,r.join("\n"))+"\n"}return i+=r.join("\n"),i}getTypeFromAttribute(e){let t=super.getTypeFromAttribute(e);if(/^[iu]/.test(t)&&e.gpuType!==R){let r=e;e.isInterleavedBufferAttribute&&(r=e.data);const s=r.array;!1==(s instanceof Uint32Array||s instanceof Int32Array)&&(t=t.slice(1))}return t}getAttributes(e){let t="";if("vertex"===e||"compute"===e){const e=this.getAttributesArray();let r=0;for(const s of e)t+=`layout( location = ${r++} ) in ${s.type} ${s.name};\n`}return t}getStructMembers(e){const t=[];for(const r of e.members)t.push(`\t${r.type} ${r.name};`);return t.join("\n")}getStructs(e){const t=[],r=this.structs[e],s=[];for(const e of r)if(e.output)for(const t of e.members)s.push(`layout( location = ${t.index} ) out ${t.type} ${t.name};`);else{let r="struct "+e.name+" {\n";r+=this.getStructMembers(e),r+="\n};\n",t.push(r)}return 0===s.length&&s.push("layout( location = 0 ) out vec4 fragColor;"),"\n"+s.join("\n")+"\n\n"+t.join("\n")}getVaryings(e){let t="";const r=this.varyings;if("vertex"===e||"compute"===e)for(const s of r){"compute"===e&&(s.needsInterpolation=!0);const r=this.getType(s.type);if(s.needsInterpolation)if(s.interpolationType){t+=`${KS[s.interpolationType]||s.interpolationType} ${YS[s.interpolationSampling]||""} out ${r} ${s.name};\n`}else{t+=`${r.includes("int")||r.includes("uv")||r.includes("iv")?"flat ":""}out ${r} ${s.name};\n`}else t+=`${r} ${s.name};\n`}else if("fragment"===e)for(const e of r)if(e.needsInterpolation){const r=this.getType(e.type);if(e.interpolationType){t+=`${KS[e.interpolationType]||e.interpolationType} ${YS[e.interpolationSampling]||""} in ${r} ${e.name};\n`}else{t+=`${r.includes("int")||r.includes("uv")||r.includes("iv")?"flat ":""}in ${r} ${e.name};\n`}}for(const r of this.builtins[e])t+=`${r};\n`;return t}getVertexIndex(){return"uint( gl_VertexID )"}getInstanceIndex(){return"uint( gl_InstanceID )"}getInvocationLocalIndex(){return`uint( gl_InstanceID ) % ${this.object.workgroupSize.reduce((e,t)=>e*t,1)}u`}getSubgroupSize(){o("GLSLNodeBuilder: WebGLBackend does not support the subgroupSize node")}getInvocationSubgroupIndex(){o("GLSLNodeBuilder: WebGLBackend does not support the invocationSubgroupIndex node")}getSubgroupIndex(){o("GLSLNodeBuilder: WebGLBackend does not support the subgroupIndex node")}getDrawIndex(){return this.renderer.backend.extensions.has("WEBGL_multi_draw")?"uint( gl_DrawID )":null}getFrontFacing(){return"gl_FrontFacing"}getFragCoord(){return"gl_FragCoord.xy"}getFragDepth(){return"gl_FragDepth"}enableExtension(e,t,r=this.shaderStage){const s=this.extensions[r]||(this.extensions[r]=new Map);!1===s.has(e)&&s.set(e,{name:e,behavior:t})}getExtensions(e){const t=[];if("vertex"===e){const t=this.renderer.backend.extensions;this.object.isBatchedMesh&&t.has("WEBGL_multi_draw")&&this.enableExtension("GL_ANGLE_multi_draw","require",e)}const r=this.extensions[e];if(void 0!==r)for(const{name:e,behavior:s}of r.values())t.push(`#extension ${e} : ${s}`);return t.join("\n")}getClipDistance(){return"gl_ClipDistance"}isAvailable(e){let t=XS[e];if(void 0===t){let r;switch(t=!1,e){case"float32Filterable":r="OES_texture_float_linear";break;case"clipDistance":r="WEBGL_clip_cull_distance"}if(void 0!==r){const e=this.renderer.backend.extensions;e.has(r)&&(e.get(r),t=!0)}XS[e]=t}return t}isFlipY(){return!0}enableHardwareClipping(e){this.enableExtension("GL_ANGLE_clip_cull_distance","require"),this.builtins.vertex.push(`out float gl_ClipDistance[ ${e} ]`)}enableMultiview(){this.enableExtension("GL_OVR_multiview2","require","fragment"),this.enableExtension("GL_OVR_multiview2","require","vertex"),this.builtins.vertex.push("layout(num_views = 2) in")}registerTransform(e,t){this.transforms.push({varyingName:e,attributeNode:t})}getTransforms(){const e=this.transforms;let t="";for(let r=0;r0&&(r+="\n"),r+=`\t// flow -> ${n}\n\t`),r+=`${s.code}\n\t`,e===i&&"compute"!==t&&(r+="// result\n\t","vertex"===t?(r+="gl_Position = ",r+=`${s.result};`):"fragment"===t&&(e.outputNode.isOutputStructNode||(r+="fragColor = ",r+=`${s.result};`)))}const n=e[t];n.extensions=this.getExtensions(t),n.uniforms=this.getUniforms(t),n.attributes=this.getAttributes(t),n.varyings=this.getVaryings(t),n.vars=this.getVars(t),n.structs=this.getStructs(t),n.codes=this.getCodes(t),n.transforms=this.getTransforms(t),n.flow=r}null!==this.material?(this.vertexShader=this._getGLSLVertexCode(e.vertex),this.fragmentShader=this._getGLSLFragmentCode(e.fragment)):this.computeShader=this._getGLSLVertexCode(e.compute)}getUniformFromNode(e,t,r,s=null){const i=super.getUniformFromNode(e,t,r,s),n=this.getDataFromNode(e,r,this.globalCache);let a=n.uniformGPU;if(void 0===a){const s=e.groupNode,o=s.name,u=this.getBindGroupArray(o,r);if("texture"===t)a=new zS(i.name,i.node,s),u.push(a);else if("cubeTexture"===t||"cubeDepthTexture"===t)a=new $S(i.name,i.node,s),u.push(a);else if("texture3D"===t)a=new WS(i.name,i.node,s),u.push(a);else if("buffer"===t){i.name=`buffer${e.id}`;const t=this.getSharedDataFromNode(e);let r=t.buffer;void 0===r&&(e.name=`NodeBuffer_${e.id}`,r=new DS(e,s),r.name=e.name,t.buffer=r),u.push(r),a=r}else{const e=this.uniformGroups[r]||(this.uniformGroups[r]={});let n=e[o];void 0===n&&(n=new OS(r+"_"+o,s),e[o]=n,u.push(n)),a=this.getNodeUniform(i,t),n.addUniform(a)}n.uniformGPU=a}return i}}let JS=null,eR=null;class tR{constructor(e={}){this.parameters=Object.assign({},e),this.data=new WeakMap,this.renderer=null,this.domElement=null,this.timestampQueryPool={[St.RENDER]:null,[St.COMPUTE]:null},this.trackTimestamp=!0===e.trackTimestamp}async init(e){this.renderer=e}get coordinateSystem(){}beginRender(){}finishRender(){}beginCompute(){}finishCompute(){}draw(){}compute(){}createProgram(){}destroyProgram(){}createBindings(){}updateBindings(){}updateBinding(){}createRenderPipeline(){}createComputePipeline(){}needsRenderUpdate(){}getRenderCacheKey(){}createNodeBuilder(){}updateSampler(){}createDefaultTexture(){}createTexture(){}updateTexture(){}generateMipmaps(){}destroyTexture(){}async copyTextureToBuffer(){}copyTextureToTexture(){}copyFramebufferToTexture(){}createAttribute(){}createIndexAttribute(){}createStorageAttribute(){}updateAttribute(){}destroyAttribute(){}getContext(){}updateSize(){}updateViewport(){}updateTimeStampUID(e){const t=this.get(e),r=this.renderer.info.frame;let s;s=!0===e.isComputeNode?"c:"+this.renderer.info.compute.frameCalls:"r:"+this.renderer.info.render.frameCalls,t.timestampUID=s+":"+e.id+":f"+r}getTimestampUID(e){return this.get(e).timestampUID}getTimestampFrames(e){const t=this.timestampQueryPool[e];return t?t.getTimestampFrames():[]}_getQueryPool(e){const t=e.startsWith("c:")?St.COMPUTE:St.RENDER;return this.timestampQueryPool[t]}getTimestamp(e){return this._getQueryPool(e).getTimestamp(e)}hasTimestamp(e){return this._getQueryPool(e).hasTimestamp(e)}isOccluded(){}async resolveTimestampsAsync(e="render"){if(!this.trackTimestamp)return void v("WebGPURenderer: Timestamp tracking is disabled.");const t=this.timestampQueryPool[e];if(!t)return;const r=await t.resolveQueriesAsync();return this.renderer.info[e].timestamp=r,r}async getArrayBufferAsync(){}async hasFeatureAsync(){}hasFeature(){}getMaxAnisotropy(){}getDrawingBufferSize(){return JS=JS||new t,this.renderer.getDrawingBufferSize(JS)}setScissorTest(){}getClearColor(){const e=this.renderer;return eR=eR||new Fy,e.getClearColor(eR),eR.getRGB(eR),eR}getDomElement(){let e=this.domElement;return null===e&&(e=void 0!==this.parameters.canvas?this.parameters.canvas:Rt(),"setAttribute"in e&&e.setAttribute("data-engine",`three.js r${tt} webgpu`),this.domElement=e),e}set(e,t){this.data.set(e,t)}get(e){let t=this.data.get(e);return void 0===t&&(t={},this.data.set(e,t)),t}has(e){return this.data.has(e)}delete(e){this.data.delete(e)}dispose(){}}let rR,sR,iR=0;class nR{constructor(e,t){this.buffers=[e.bufferGPU,t],this.type=e.type,this.bufferType=e.bufferType,this.pbo=e.pbo,this.byteLength=e.byteLength,this.bytesPerElement=e.BYTES_PER_ELEMENT,this.version=e.version,this.isInteger=e.isInteger,this.activeBufferIndex=0,this.baseId=e.id}get id(){return`${this.baseId}|${this.activeBufferIndex}`}get bufferGPU(){return this.buffers[this.activeBufferIndex]}get transformBuffer(){return this.buffers[1^this.activeBufferIndex]}switchBuffers(){this.activeBufferIndex^=1}}class aR{constructor(e){this.backend=e}createAttribute(e,t){const r=this.backend,{gl:s}=r,i=e.array,n=e.usage||s.STATIC_DRAW,a=e.isInterleavedBufferAttribute?e.data:e,o=r.get(a);let u,l=o.bufferGPU;if(void 0===l&&(l=this._createBuffer(s,t,i,n),o.bufferGPU=l,o.bufferType=t,o.version=a.version),i instanceof Float32Array)u=s.FLOAT;else if("undefined"!=typeof Float16Array&&i instanceof Float16Array)u=s.HALF_FLOAT;else if(i instanceof Uint16Array)u=e.isFloat16BufferAttribute?s.HALF_FLOAT:s.UNSIGNED_SHORT;else if(i instanceof Int16Array)u=s.SHORT;else if(i instanceof Uint32Array)u=s.UNSIGNED_INT;else if(i instanceof Int32Array)u=s.INT;else if(i instanceof Int8Array)u=s.BYTE;else if(i instanceof Uint8Array)u=s.UNSIGNED_BYTE;else{if(!(i instanceof Uint8ClampedArray))throw new Error("THREE.WebGLBackend: Unsupported buffer data format: "+i);u=s.UNSIGNED_BYTE}let d={bufferGPU:l,bufferType:t,type:u,byteLength:i.byteLength,bytesPerElement:i.BYTES_PER_ELEMENT,version:e.version,pbo:e.pbo,isInteger:u===s.INT||u===s.UNSIGNED_INT||e.gpuType===R,id:iR++};if(e.isStorageBufferAttribute||e.isStorageInstancedBufferAttribute){const e=this._createBuffer(s,t,i,n);d=new nR(d,e)}r.set(e,d)}updateAttribute(e){const t=this.backend,{gl:r}=t,s=e.array,i=e.isInterleavedBufferAttribute?e.data:e,n=t.get(i),a=n.bufferType,o=e.isInterleavedBufferAttribute?e.data.updateRanges:e.updateRanges;if(r.bindBuffer(a,n.bufferGPU),0===o.length)r.bufferSubData(a,0,s);else{for(let e=0,t=o.length;e0?this.enable(s.SAMPLE_ALPHA_TO_COVERAGE):this.disable(s.SAMPLE_ALPHA_TO_COVERAGE),r>0&&this.currentClippingPlanes!==r){const e=12288;for(let t=0;t<8;t++)t{!function i(){const n=e.clientWaitSync(t,e.SYNC_FLUSH_COMMANDS_BIT,0);if(n===e.WAIT_FAILED)return e.deleteSync(t),void s();n!==e.TIMEOUT_EXPIRED?(e.deleteSync(t),r()):requestAnimationFrame(i)}()})}}let lR,dR,cR,hR=!1;class pR{constructor(e){this.backend=e,this.gl=e.gl,this.extensions=e.extensions,this.defaultTextures={},this._srcFramebuffer=null,this._dstFramebuffer=null,!1===hR&&(this._init(),hR=!0)}_init(){const e=this.gl;lR={[Ir]:e.REPEAT,[ye]:e.CLAMP_TO_EDGE,[Dr]:e.MIRRORED_REPEAT},dR={[A]:e.NEAREST,[Ur]:e.NEAREST_MIPMAP_NEAREST,[Je]:e.NEAREST_MIPMAP_LINEAR,[ne]:e.LINEAR,[Ze]:e.LINEAR_MIPMAP_NEAREST,[q]:e.LINEAR_MIPMAP_LINEAR},cR={[Wr]:e.NEVER,[$r]:e.ALWAYS,[qe]:e.LESS,[zr]:e.LEQUAL,[Gr]:e.EQUAL,[kr]:e.GEQUAL,[Vr]:e.GREATER,[Or]:e.NOTEQUAL}}getGLTextureType(e){const{gl:t}=this;let r;return r=!0===e.isCubeTexture?t.TEXTURE_CUBE_MAP:!0===e.isArrayTexture||!0===e.isDataArrayTexture||!0===e.isCompressedArrayTexture?t.TEXTURE_2D_ARRAY:!0===e.isData3DTexture?t.TEXTURE_3D:t.TEXTURE_2D,r}getInternalFormat(e,t,r,s,i=!1){const{gl:n,extensions:a}=this;if(null!==e){if(void 0!==n[e])return n[e];d("WebGLBackend: Attempt to use non-existing WebGL internal format '"+e+"'")}let o=t;if(t===n.RED&&(r===n.FLOAT&&(o=n.R32F),r===n.HALF_FLOAT&&(o=n.R16F),r===n.UNSIGNED_BYTE&&(o=n.R8),r===n.UNSIGNED_SHORT&&(o=n.R16),r===n.UNSIGNED_INT&&(o=n.R32UI),r===n.BYTE&&(o=n.R8I),r===n.SHORT&&(o=n.R16I),r===n.INT&&(o=n.R32I)),t===n.RED_INTEGER&&(r===n.UNSIGNED_BYTE&&(o=n.R8UI),r===n.UNSIGNED_SHORT&&(o=n.R16UI),r===n.UNSIGNED_INT&&(o=n.R32UI),r===n.BYTE&&(o=n.R8I),r===n.SHORT&&(o=n.R16I),r===n.INT&&(o=n.R32I)),t===n.RG&&(r===n.FLOAT&&(o=n.RG32F),r===n.HALF_FLOAT&&(o=n.RG16F),r===n.UNSIGNED_BYTE&&(o=n.RG8),r===n.UNSIGNED_SHORT&&(o=n.RG16),r===n.UNSIGNED_INT&&(o=n.RG32UI),r===n.BYTE&&(o=n.RG8I),r===n.SHORT&&(o=n.RG16I),r===n.INT&&(o=n.RG32I)),t===n.RG_INTEGER&&(r===n.UNSIGNED_BYTE&&(o=n.RG8UI),r===n.UNSIGNED_SHORT&&(o=n.RG16UI),r===n.UNSIGNED_INT&&(o=n.RG32UI),r===n.BYTE&&(o=n.RG8I),r===n.SHORT&&(o=n.RG16I),r===n.INT&&(o=n.RG32I)),t===n.RGB){const e=i?Hr:p.getTransfer(s);r===n.FLOAT&&(o=n.RGB32F),r===n.HALF_FLOAT&&(o=n.RGB16F),r===n.UNSIGNED_BYTE&&(o=n.RGB8),r===n.UNSIGNED_SHORT&&(o=n.RGB16),r===n.UNSIGNED_INT&&(o=n.RGB32UI),r===n.BYTE&&(o=n.RGB8I),r===n.SHORT&&(o=n.RGB16I),r===n.INT&&(o=n.RGB32I),r===n.UNSIGNED_BYTE&&(o=e===g?n.SRGB8:n.RGB8),r===n.UNSIGNED_SHORT_5_6_5&&(o=n.RGB565),r===n.UNSIGNED_SHORT_5_5_5_1&&(o=n.RGB5_A1),r===n.UNSIGNED_SHORT_4_4_4_4&&(o=n.RGB4),r===n.UNSIGNED_INT_5_9_9_9_REV&&(o=n.RGB9_E5),r===n.UNSIGNED_INT_10F_11F_11F_REV&&(o=n.R11F_G11F_B10F)}if(t===n.RGB_INTEGER&&(r===n.UNSIGNED_BYTE&&(o=n.RGB8UI),r===n.UNSIGNED_SHORT&&(o=n.RGB16UI),r===n.UNSIGNED_INT&&(o=n.RGB32UI),r===n.BYTE&&(o=n.RGB8I),r===n.SHORT&&(o=n.RGB16I),r===n.INT&&(o=n.RGB32I)),t===n.RGBA){const e=i?Hr:p.getTransfer(s);r===n.FLOAT&&(o=n.RGBA32F),r===n.HALF_FLOAT&&(o=n.RGBA16F),r===n.UNSIGNED_BYTE&&(o=n.RGBA8),r===n.UNSIGNED_SHORT&&(o=n.RGBA16),r===n.UNSIGNED_INT&&(o=n.RGBA32UI),r===n.BYTE&&(o=n.RGBA8I),r===n.SHORT&&(o=n.RGBA16I),r===n.INT&&(o=n.RGBA32I),r===n.UNSIGNED_BYTE&&(o=e===g?n.SRGB8_ALPHA8:n.RGBA8),r===n.UNSIGNED_SHORT_4_4_4_4&&(o=n.RGBA4),r===n.UNSIGNED_SHORT_5_5_5_1&&(o=n.RGB5_A1)}return t===n.RGBA_INTEGER&&(r===n.UNSIGNED_BYTE&&(o=n.RGBA8UI),r===n.UNSIGNED_SHORT&&(o=n.RGBA16UI),r===n.UNSIGNED_INT&&(o=n.RGBA32UI),r===n.BYTE&&(o=n.RGBA8I),r===n.SHORT&&(o=n.RGBA16I),r===n.INT&&(o=n.RGBA32I)),t===n.DEPTH_COMPONENT&&(r===n.UNSIGNED_SHORT&&(o=n.DEPTH_COMPONENT16),r===n.UNSIGNED_INT&&(o=n.DEPTH_COMPONENT24),r===n.FLOAT&&(o=n.DEPTH_COMPONENT32F)),t===n.DEPTH_STENCIL&&r===n.UNSIGNED_INT_24_8&&(o=n.DEPTH24_STENCIL8),o!==n.R16F&&o!==n.R32F&&o!==n.RG16F&&o!==n.RG32F&&o!==n.RGBA16F&&o!==n.RGBA32F||a.get("EXT_color_buffer_float"),o}setTextureParameters(e,t){const{gl:r,extensions:s,backend:i}=this,n=p.getPrimaries(p.workingColorSpace),a=t.colorSpace===T?null:p.getPrimaries(t.colorSpace),o=t.colorSpace===T||n===a?r.NONE:r.BROWSER_DEFAULT_WEBGL;r.pixelStorei(r.UNPACK_FLIP_Y_WEBGL,t.flipY),r.pixelStorei(r.UNPACK_PREMULTIPLY_ALPHA_WEBGL,t.premultiplyAlpha),r.pixelStorei(r.UNPACK_ALIGNMENT,t.unpackAlignment),r.pixelStorei(r.UNPACK_COLORSPACE_CONVERSION_WEBGL,o),r.texParameteri(e,r.TEXTURE_WRAP_S,lR[t.wrapS]),r.texParameteri(e,r.TEXTURE_WRAP_T,lR[t.wrapT]),e!==r.TEXTURE_3D&&e!==r.TEXTURE_2D_ARRAY||t.isArrayTexture||r.texParameteri(e,r.TEXTURE_WRAP_R,lR[t.wrapR]),r.texParameteri(e,r.TEXTURE_MAG_FILTER,dR[t.magFilter]);const u=void 0!==t.mipmaps&&t.mipmaps.length>0,l=t.minFilter===ne&&u?q:t.minFilter;if(r.texParameteri(e,r.TEXTURE_MIN_FILTER,dR[l]),t.compareFunction&&(r.texParameteri(e,r.TEXTURE_COMPARE_MODE,r.COMPARE_REF_TO_TEXTURE),r.texParameteri(e,r.TEXTURE_COMPARE_FUNC,cR[t.compareFunction])),!0===s.has("EXT_texture_filter_anisotropic")){if(t.magFilter===A)return;if(t.minFilter!==Je&&t.minFilter!==q)return;if(t.type===H&&!1===s.has("OES_texture_float_linear"))return;if(t.anisotropy>1){const n=s.get("EXT_texture_filter_anisotropic");r.texParameterf(e,n.TEXTURE_MAX_ANISOTROPY_EXT,Math.min(t.anisotropy,i.getMaxAnisotropy()))}}}createDefaultTexture(e){const{gl:t,backend:r,defaultTextures:s}=this,i=this.getGLTextureType(e);let n=s[i];void 0===n&&(n=t.createTexture(),r.state.bindTexture(i,n),t.texParameteri(i,t.TEXTURE_MIN_FILTER,t.NEAREST),t.texParameteri(i,t.TEXTURE_MAG_FILTER,t.NEAREST),s[i]=n),r.set(e,{textureGPU:n,glTextureType:i})}createTexture(e,t){const{gl:r,backend:s}=this,{levels:i,width:n,height:a,depth:o}=t,u=s.utils.convert(e.format,e.colorSpace),l=s.utils.convert(e.type),d=this.getInternalFormat(e.internalFormat,u,l,e.colorSpace,e.isVideoTexture),c=r.createTexture(),h=this.getGLTextureType(e);s.state.bindTexture(h,c),this.setTextureParameters(h,e),e.isArrayTexture||e.isDataArrayTexture||e.isCompressedArrayTexture?r.texStorage3D(r.TEXTURE_2D_ARRAY,i,d,n,a,o):e.isData3DTexture?r.texStorage3D(r.TEXTURE_3D,i,d,n,a,o):e.isVideoTexture||r.texStorage2D(h,i,d,n,a),s.set(e,{textureGPU:c,glTextureType:h,glFormat:u,glType:l,glInternalFormat:d})}copyBufferToTexture(e,t){const{gl:r,backend:s}=this,{textureGPU:i,glTextureType:n,glFormat:a,glType:o}=s.get(t),{width:u,height:l}=t.source.data;r.bindBuffer(r.PIXEL_UNPACK_BUFFER,e),s.state.bindTexture(n,i),r.pixelStorei(r.UNPACK_FLIP_Y_WEBGL,!1),r.pixelStorei(r.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!1),r.texSubImage2D(n,0,0,0,u,l,a,o,0),r.bindBuffer(r.PIXEL_UNPACK_BUFFER,null),s.state.unbindTexture()}updateTexture(e,t){const{gl:r}=this,{width:s,height:i}=t,{textureGPU:n,glTextureType:a,glFormat:o,glType:u,glInternalFormat:l}=this.backend.get(e);if(!e.isRenderTargetTexture&&void 0!==n)if(this.backend.state.bindTexture(a,n),this.setTextureParameters(a,e),e.isCompressedTexture){const s=e.mipmaps,i=t.image;for(let t=0;t0){const t=jr(s.width,s.height,e.format,e.type);for(const i of e.layerUpdates){const e=s.data.subarray(i*t/s.data.BYTES_PER_ELEMENT,(i+1)*t/s.data.BYTES_PER_ELEMENT);r.texSubImage3D(r.TEXTURE_2D_ARRAY,0,0,0,i,s.width,s.height,1,o,u,e)}e.clearLayerUpdates()}else r.texSubImage3D(r.TEXTURE_2D_ARRAY,0,0,0,0,s.width,s.height,s.depth,o,u,s.data)}else if(e.isData3DTexture){const e=t.image;r.texSubImage3D(r.TEXTURE_3D,0,0,0,0,e.width,e.height,e.depth,o,u,e.data)}else if(e.isVideoTexture)e.update(),r.texImage2D(a,0,l,o,u,t.image);else{const n=e.mipmaps;if(n.length>0)for(let e=0,t=n.length;e0,c=t.renderTarget?t.renderTarget.height:this.backend.getDrawingBufferSize().y;if(d){const r=0!==a||0!==o;let d,h;if(!0===e.isDepthTexture?(d=s.DEPTH_BUFFER_BIT,h=s.DEPTH_ATTACHMENT,t.stencil&&(d|=s.STENCIL_BUFFER_BIT)):(d=s.COLOR_BUFFER_BIT,h=s.COLOR_ATTACHMENT0),r){const e=this.backend.get(t.renderTarget),r=e.framebuffers[t.getCacheKey()],h=e.msaaFrameBuffer;i.bindFramebuffer(s.DRAW_FRAMEBUFFER,r),i.bindFramebuffer(s.READ_FRAMEBUFFER,h);const p=c-o-l;s.blitFramebuffer(a,p,a+u,p+l,a,p,a+u,p+l,d,s.NEAREST),i.bindFramebuffer(s.READ_FRAMEBUFFER,r),i.bindTexture(s.TEXTURE_2D,n),s.copyTexSubImage2D(s.TEXTURE_2D,0,0,0,a,p,u,l),i.unbindTexture()}else{const e=s.createFramebuffer();i.bindFramebuffer(s.DRAW_FRAMEBUFFER,e),s.framebufferTexture2D(s.DRAW_FRAMEBUFFER,h,s.TEXTURE_2D,n,0),s.blitFramebuffer(0,0,u,l,0,0,u,l,d,s.NEAREST),s.deleteFramebuffer(e)}}else i.bindTexture(s.TEXTURE_2D,n),s.copyTexSubImage2D(s.TEXTURE_2D,0,0,0,a,c-l-o,u,l),i.unbindTexture();e.generateMipmaps&&this.generateMipmaps(e),this.backend._setFramebuffer(t)}setupRenderBufferStorage(e,t,r,s=!1){const{gl:i}=this,n=t.renderTarget,{depthTexture:a,depthBuffer:o,stencilBuffer:u,width:l,height:d}=n;if(i.bindRenderbuffer(i.RENDERBUFFER,e),o&&!u){let t=i.DEPTH_COMPONENT24;if(!0===s){this.extensions.get("WEBGL_multisampled_render_to_texture").renderbufferStorageMultisampleEXT(i.RENDERBUFFER,n.samples,t,l,d)}else r>0?(a&&a.isDepthTexture&&a.type===i.FLOAT&&(t=i.DEPTH_COMPONENT32F),i.renderbufferStorageMultisample(i.RENDERBUFFER,r,t,l,d)):i.renderbufferStorage(i.RENDERBUFFER,t,l,d);i.framebufferRenderbuffer(i.FRAMEBUFFER,i.DEPTH_ATTACHMENT,i.RENDERBUFFER,e)}else o&&u&&(r>0?i.renderbufferStorageMultisample(i.RENDERBUFFER,r,i.DEPTH24_STENCIL8,l,d):i.renderbufferStorage(i.RENDERBUFFER,i.DEPTH_STENCIL,l,d),i.framebufferRenderbuffer(i.FRAMEBUFFER,i.DEPTH_STENCIL_ATTACHMENT,i.RENDERBUFFER,e));i.bindRenderbuffer(i.RENDERBUFFER,null)}async copyTextureToBuffer(e,t,r,s,i,n){const{backend:a,gl:o}=this,{textureGPU:u,glFormat:l,glType:d}=this.backend.get(e),c=o.createFramebuffer();o.bindFramebuffer(o.READ_FRAMEBUFFER,c);const h=e.isCubeTexture?o.TEXTURE_CUBE_MAP_POSITIVE_X+n:o.TEXTURE_2D;o.framebufferTexture2D(o.READ_FRAMEBUFFER,o.COLOR_ATTACHMENT0,h,u,0);const p=this._getTypedArrayType(d),g=s*i*this._getBytesPerTexel(d,l),m=o.createBuffer();o.bindBuffer(o.PIXEL_PACK_BUFFER,m),o.bufferData(o.PIXEL_PACK_BUFFER,g,o.STREAM_READ),o.readPixels(t,r,s,i,l,d,0),o.bindBuffer(o.PIXEL_PACK_BUFFER,null),await a.utils._clientWaitAsync();const f=new p(g/p.BYTES_PER_ELEMENT);return o.bindBuffer(o.PIXEL_PACK_BUFFER,m),o.getBufferSubData(o.PIXEL_PACK_BUFFER,0,f),o.bindBuffer(o.PIXEL_PACK_BUFFER,null),o.deleteFramebuffer(c),f}_getTypedArrayType(e){const{gl:t}=this;if(e===t.UNSIGNED_BYTE)return Uint8Array;if(e===t.UNSIGNED_SHORT_4_4_4_4)return Uint16Array;if(e===t.UNSIGNED_SHORT_5_5_5_1)return Uint16Array;if(e===t.UNSIGNED_SHORT_5_6_5)return Uint16Array;if(e===t.UNSIGNED_SHORT)return Uint16Array;if(e===t.UNSIGNED_INT)return Uint32Array;if(e===t.HALF_FLOAT)return Uint16Array;if(e===t.FLOAT)return Float32Array;throw new Error(`Unsupported WebGL type: ${e}`)}_getBytesPerTexel(e,t){const{gl:r}=this;let s=0;return e===r.UNSIGNED_BYTE&&(s=1),e!==r.UNSIGNED_SHORT_4_4_4_4&&e!==r.UNSIGNED_SHORT_5_5_5_1&&e!==r.UNSIGNED_SHORT_5_6_5&&e!==r.UNSIGNED_SHORT&&e!==r.HALF_FLOAT||(s=2),e!==r.UNSIGNED_INT&&e!==r.FLOAT||(s=4),t===r.RGBA?4*s:t===r.RGB?3*s:t===r.ALPHA?s:void 0}dispose(){const{gl:e}=this;null!==this._srcFramebuffer&&e.deleteFramebuffer(this._srcFramebuffer),null!==this._dstFramebuffer&&e.deleteFramebuffer(this._dstFramebuffer)}}function gR(e){return e.isDataTexture?e.image.data:"undefined"!=typeof HTMLImageElement&&e instanceof HTMLImageElement||"undefined"!=typeof HTMLCanvasElement&&e instanceof HTMLCanvasElement||"undefined"!=typeof ImageBitmap&&e instanceof ImageBitmap||"undefined"!=typeof OffscreenCanvas&&e instanceof OffscreenCanvas?e:e.data}class mR{constructor(e){this.backend=e,this.gl=this.backend.gl,this.availableExtensions=this.gl.getSupportedExtensions(),this.extensions={}}get(e){let t=this.extensions[e];return void 0===t&&(t=this.gl.getExtension(e),this.extensions[e]=t),t}has(e){return this.availableExtensions.includes(e)}}class fR{constructor(e){this.backend=e,this.maxAnisotropy=null}getMaxAnisotropy(){if(null!==this.maxAnisotropy)return this.maxAnisotropy;const e=this.backend.gl,t=this.backend.extensions;if(!0===t.has("EXT_texture_filter_anisotropic")){const r=t.get("EXT_texture_filter_anisotropic");this.maxAnisotropy=e.getParameter(r.MAX_TEXTURE_MAX_ANISOTROPY_EXT)}else this.maxAnisotropy=0;return this.maxAnisotropy}}const yR={WEBGL_multi_draw:"WEBGL_multi_draw",WEBGL_compressed_texture_astc:"texture-compression-astc",WEBGL_compressed_texture_etc:"texture-compression-etc2",WEBGL_compressed_texture_etc1:"texture-compression-etc1",WEBGL_compressed_texture_pvrtc:"texture-compression-pvrtc",WEBGL_compressed_texture_s3tc:"texture-compression-s3tc",EXT_texture_compression_bptc:"texture-compression-bc",EXT_disjoint_timer_query_webgl2:"timestamp-query",OVR_multiview2:"OVR_multiview2"};class bR{constructor(e){this.gl=e.gl,this.extensions=e.extensions,this.info=e.renderer.info,this.mode=null,this.index=0,this.type=null,this.object=null}render(e,t){const{gl:r,mode:s,object:i,type:n,info:a,index:o}=this;0!==o?r.drawElements(s,t,n,e):r.drawArrays(s,e,t),a.update(i,t,1)}renderInstances(e,t,r){const{gl:s,mode:i,type:n,index:a,object:o,info:u}=this;0!==r&&(0!==a?s.drawElementsInstanced(i,t,n,e,r):s.drawArraysInstanced(i,e,t,r),u.update(o,t,r))}renderMultiDraw(e,t,r){const{extensions:s,mode:i,object:n,info:a}=this;if(0===r)return;const o=s.get("WEBGL_multi_draw");if(null===o)for(let s=0;sthis.maxQueries)return v(`WebGPUTimestampQueryPool [${this.type}]: Maximum number of queries exceeded, when using trackTimestamp it is necessary to resolves the queries via renderer.resolveTimestampsAsync( THREE.TimestampQuery.${this.type.toUpperCase()} ).`),null;const t=this.currentQueryIndex;return this.currentQueryIndex+=2,this.queryStates.set(t,"inactive"),this.queryOffsets.set(e,t),t}beginQuery(e){if(!this.trackTimestamp||this.isDisposed)return;const t=this.queryOffsets.get(e);if(null==t)return;if(null!==this.activeQuery)return;const r=this.queries[t];if(r)try{"inactive"===this.queryStates.get(t)&&(this.gl.beginQuery(this.ext.TIME_ELAPSED_EXT,r),this.activeQuery=t,this.queryStates.set(t,"started"))}catch(e){o("Error in beginQuery:",e),this.activeQuery=null,this.queryStates.set(t,"inactive")}}endQuery(e){if(!this.trackTimestamp||this.isDisposed)return;const t=this.queryOffsets.get(e);if(null!=t&&this.activeQuery===t)try{this.gl.endQuery(this.ext.TIME_ELAPSED_EXT),this.queryStates.set(t,"ended"),this.activeQuery=null}catch(e){o("Error in endQuery:",e),this.queryStates.set(t,"inactive"),this.activeQuery=null}}async resolveQueriesAsync(){if(!this.trackTimestamp||this.pendingResolve)return this.lastValue;this.pendingResolve=!0;try{const e=new Map;for(const[t,r]of this.queryOffsets){if("ended"===this.queryStates.get(r)){const s=this.queries[r];e.set(t,this.resolveQuery(s))}}if(0===e.size)return this.lastValue;const t={},r=[];for(const[s,i]of e){const e=s.match(/^(.*):f(\d+)$/),n=parseInt(e[2]);!1===r.includes(n)&&r.push(n),void 0===t[n]&&(t[n]=0);const a=await i;this.timestamps.set(s,a),t[n]+=a}const s=t[r[r.length-1]];return this.lastValue=s,this.frames=r,this.currentQueryIndex=0,this.queryOffsets.clear(),this.queryStates.clear(),this.activeQuery=null,s}catch(e){return o("Error resolving queries:",e),this.lastValue}finally{this.pendingResolve=!1}}async resolveQuery(e){return new Promise(t=>{if(this.isDisposed)return void t(this.lastValue);let r,s=!1;const i=e=>{s||(s=!0,r&&(clearTimeout(r),r=null),t(e))},n=()=>{if(this.isDisposed)i(this.lastValue);else try{if(this.gl.getParameter(this.ext.GPU_DISJOINT_EXT))return void i(this.lastValue);if(!this.gl.getQueryParameter(e,this.gl.QUERY_RESULT_AVAILABLE))return void(r=setTimeout(n,1));const s=this.gl.getQueryParameter(e,this.gl.QUERY_RESULT);t(Number(s)/1e6)}catch(e){o("Error checking query:",e),t(this.lastValue)}};n()})}dispose(){if(!this.isDisposed&&(this.isDisposed=!0,this.trackTimestamp)){for(const e of this.queries)this.gl.deleteQuery(e);this.queries=[],this.queryStates.clear(),this.queryOffsets.clear(),this.lastValue=0,this.activeQuery=null}}}class _R extends tR{constructor(e={}){super(e),this.isWebGLBackend=!0,this.attributeUtils=null,this.extensions=null,this.capabilities=null,this.textureUtils=null,this.bufferRenderer=null,this.gl=null,this.state=null,this.utils=null,this.vaoCache={},this.transformFeedbackCache={},this.discard=!1,this.disjoint=null,this.parallel=null,this._currentContext=null,this._knownBindings=new WeakSet,this._supportsInvalidateFramebuffer="undefined"!=typeof navigator&&/OculusBrowser/g.test(navigator.userAgent),this._xrFramebuffer=null}init(e){super.init(e);const t=this.parameters,r={antialias:e.currentSamples>0,alpha:!0,depth:e.depth,stencil:e.stencil},s=void 0!==t.context?t.context:e.domElement.getContext("webgl2",r);function i(t){t.preventDefault();const r={api:"WebGL",message:t.statusMessage||"Unknown reason",reason:null,originalEvent:t};e.onDeviceLost(r)}this._onContextLost=i,e.domElement.addEventListener("webglcontextlost",i,!1),this.gl=s,this.extensions=new mR(this),this.capabilities=new fR(this),this.attributeUtils=new aR(this),this.textureUtils=new pR(this),this.bufferRenderer=new bR(this),this.state=new oR(this),this.utils=new uR(this),this.extensions.get("EXT_color_buffer_float"),this.extensions.get("WEBGL_clip_cull_distance"),this.extensions.get("OES_texture_float_linear"),this.extensions.get("EXT_color_buffer_half_float"),this.extensions.get("WEBGL_multisampled_render_to_texture"),this.extensions.get("WEBGL_render_shared_exponent"),this.extensions.get("WEBGL_multi_draw"),this.extensions.get("OVR_multiview2"),this.disjoint=this.extensions.get("EXT_disjoint_timer_query_webgl2"),this.parallel=this.extensions.get("KHR_parallel_shader_compile"),this.drawBuffersIndexedExt=this.extensions.get("OES_draw_buffers_indexed")}get coordinateSystem(){return c}async getArrayBufferAsync(e){return await this.attributeUtils.getArrayBufferAsync(e)}async makeXRCompatible(){!0!==this.gl.getContextAttributes().xrCompatible&&await this.gl.makeXRCompatible()}setXRTarget(e){this._xrFramebuffer=e}setXRRenderTargetTextures(e,t,r=null){const s=this.gl;if(this.set(e.texture,{textureGPU:t,glInternalFormat:s.RGBA8}),null!==r){const t=e.stencilBuffer?s.DEPTH24_STENCIL8:s.DEPTH_COMPONENT24;this.set(e.depthTexture,{textureGPU:r,glInternalFormat:t}),!0===this.extensions.has("WEBGL_multisampled_render_to_texture")&&!0===e._autoAllocateDepthBuffer&&!1===e.multiview&&d("WebGLBackend: Render-to-texture extension was disabled because an external texture was provided"),e._autoAllocateDepthBuffer=!1}}initTimestampQuery(e,t){if(!this.disjoint||!this.trackTimestamp)return;this.timestampQueryPool[e]||(this.timestampQueryPool[e]=new TR(this.gl,e,2048));const r=this.timestampQueryPool[e];null!==r.allocateQueriesForContext(t)&&r.beginQuery(t)}prepareTimestampBuffer(e,t){if(!this.disjoint||!this.trackTimestamp)return;this.timestampQueryPool[e].endQuery(t)}getContext(){return this.gl}beginRender(e){const{state:t}=this,r=this.get(e);if(e.viewport)this.updateViewport(e);else{const{width:e,height:r}=this.getDrawingBufferSize();t.viewport(0,0,e,r)}if(e.scissor){const{x:r,y:s,width:i,height:n}=e.scissorValue;t.scissor(r,e.height-n-s,i,n)}this.initTimestampQuery(St.RENDER,this.getTimestampUID(e)),r.previousContext=this._currentContext,this._currentContext=e,this._setFramebuffer(e),this.clear(e.clearColor,e.clearDepth,e.clearStencil,e,!1);const s=e.occlusionQueryCount;s>0&&(r.currentOcclusionQueries=r.occlusionQueries,r.currentOcclusionQueryObjects=r.occlusionQueryObjects,r.lastOcclusionObject=null,r.occlusionQueries=new Array(s),r.occlusionQueryObjects=new Array(s),r.occlusionQueryIndex=0)}finishRender(e){const{gl:t,state:r}=this,s=this.get(e),i=s.previousContext;r.resetVertexState();const n=e.occlusionQueryCount;n>0&&(n>s.occlusionQueryIndex&&t.endQuery(t.ANY_SAMPLES_PASSED),this.resolveOccludedAsync(e));const a=e.textures;if(null!==a)for(let e=0;e{let a=0;for(let t=0;t1&&u.setMRTBlending(i.textures),u.useProgram(a);const h=e.getAttributes(),p=this.get(h);let g=p.vaoGPU;if(void 0===g){const e=this._getVaoKey(h);g=this.vaoCache[e],void 0===g&&(g=this._createVao(h),this.vaoCache[e]=g,p.vaoGPU=g)}const m=e.getIndex(),f=null!==m?this.get(m).bufferGPU:null;u.setVertexState(g,f);const y=l.lastOcclusionObject;if(y!==t&&void 0!==y){if(null!==y&&!0===y.occlusionTest&&(o.endQuery(o.ANY_SAMPLES_PASSED),l.occlusionQueryIndex++),!0===t.occlusionTest){const e=o.createQuery();o.beginQuery(o.ANY_SAMPLES_PASSED,e),l.occlusionQueries[l.occlusionQueryIndex]=e,l.occlusionQueryObjects[l.occlusionQueryIndex]=t}l.lastOcclusionObject=t}const b=this.bufferRenderer;t.isPoints?b.mode=o.POINTS:t.isLineSegments?b.mode=o.LINES:t.isLine?b.mode=o.LINE_STRIP:t.isLineLoop?b.mode=o.LINE_LOOP:!0===s.wireframe?(u.setLineWidth(s.wireframeLinewidth*this.renderer.getPixelRatio()),b.mode=o.LINES):b.mode=o.TRIANGLES;const{vertexCount:x,instanceCount:T}=d;let{firstVertex:_}=d;if(b.object=t,null!==m){_*=m.array.BYTES_PER_ELEMENT;const e=this.get(m);b.index=m.count,b.type=e.type}else b.index=0;const N=()=>{t.isBatchedMesh?null!==t._multiDrawInstances?(v("WebGLBackend: renderMultiDrawInstances has been deprecated and will be removed in r184. Append to renderMultiDraw arguments and use indirection."),b.renderMultiDrawInstances(t._multiDrawStarts,t._multiDrawCounts,t._multiDrawCount,t._multiDrawInstances)):this.hasFeature("WEBGL_multi_draw")?b.renderMultiDraw(t._multiDrawStarts,t._multiDrawCounts,t._multiDrawCount):v("WebGLBackend: WEBGL_multi_draw not supported."):T>1?b.renderInstances(_,x,T):b.render(_,x)};if(!0===e.camera.isArrayCamera&&e.camera.cameras.length>0&&!1===e.camera.isMultiViewCamera){const r=this.get(e.camera),s=e.camera.cameras,i=e.getBindingGroup("cameraIndex").bindings[0];if(void 0===r.indexesGPU||r.indexesGPU.length!==s.length){const e=new Uint32Array([0,0,0,0]),t=[];for(let r=0,i=s.length;r{const i=this.parallel,n=()=>{r.getProgramParameter(a,i.COMPLETION_STATUS_KHR)?(this._completeCompile(e,s),t()):requestAnimationFrame(n)};n()});return void t.push(i)}this._completeCompile(e,s)}_handleSource(e,t){const r=e.split("\n"),s=[],i=Math.max(t-6,0),n=Math.min(t+6,r.length);for(let e=i;e":" "} ${i}: ${r[e]}`)}return s.join("\n")}_getShaderErrors(e,t,r){const s=e.getShaderParameter(t,e.COMPILE_STATUS),i=(e.getShaderInfoLog(t)||"").trim();if(s&&""===i)return"";const n=/ERROR: 0:(\d+)/.exec(i);if(n){const s=parseInt(n[1]);return r.toUpperCase()+"\n\n"+i+"\n\n"+this._handleSource(e.getShaderSource(t),s)}return i}_logProgramError(e,t,r){if(this.renderer.debug.checkShaderErrors){const s=this.gl,i=(s.getProgramInfoLog(e)||"").trim();if(!1===s.getProgramParameter(e,s.LINK_STATUS))if("function"==typeof this.renderer.debug.onShaderError)this.renderer.debug.onShaderError(s,e,r,t);else{const n=this._getShaderErrors(s,r,"vertex"),a=this._getShaderErrors(s,t,"fragment");o("THREE.WebGLProgram: Shader Error "+s.getError()+" - VALIDATE_STATUS "+s.getProgramParameter(e,s.VALIDATE_STATUS)+"\n\nProgram Info Log: "+i+"\n"+n+"\n"+a)}else""!==i&&d("WebGLProgram: Program Info Log:",i)}}_completeCompile(e,t){const{state:r,gl:s}=this,i=this.get(t),{programGPU:n,fragmentShader:a,vertexShader:o}=i;!1===s.getProgramParameter(n,s.LINK_STATUS)&&this._logProgramError(n,a,o),r.useProgram(n);const u=e.getBindings();this._setupBindings(u,n),this.set(t,{programGPU:n})}createComputePipeline(e,t){const{state:r,gl:s}=this,i={stage:"fragment",code:"#version 300 es\nprecision highp float;\nvoid main() {}"};this.createProgram(i);const{computeProgram:n}=e,a=s.createProgram(),o=this.get(i).shaderGPU,u=this.get(n).shaderGPU,l=n.transforms,d=[],c=[];for(let e=0;eyR[t]===e),r=this.extensions;for(let e=0;e1,h=!0===i.isXRRenderTarget,p=!0===h&&!0===i._hasExternalTextures;let g=n.msaaFrameBuffer,m=n.depthRenderbuffer;const f=this.extensions.get("WEBGL_multisampled_render_to_texture"),y=this.extensions.get("OVR_multiview2"),b=this._useMultisampledExtension(i),x=Ey(e);let T;if(l?(n.cubeFramebuffers||(n.cubeFramebuffers={}),T=n.cubeFramebuffers[x]):h&&!1===p?T=this._xrFramebuffer:(n.framebuffers||(n.framebuffers={}),T=n.framebuffers[x]),void 0===T){T=t.createFramebuffer(),r.bindFramebuffer(t.FRAMEBUFFER,T);const s=e.textures,o=[];if(l){n.cubeFramebuffers[x]=T;const{textureGPU:e}=this.get(s[0]),r=this.renderer._activeCubeFace,i=this.renderer._activeMipmapLevel;t.framebufferTexture2D(t.FRAMEBUFFER,t.COLOR_ATTACHMENT0,t.TEXTURE_CUBE_MAP_POSITIVE_X+r,e,i)}else{n.framebuffers[x]=T;for(let r=0;r0&&!1===b&&!i.multiview){if(void 0===g){const s=[];g=t.createFramebuffer(),r.bindFramebuffer(t.FRAMEBUFFER,g);const i=[],l=e.textures;for(let r=0;r0&&!1===this._useMultisampledExtension(s)){const n=i.framebuffers[e.getCacheKey()];let a=t.COLOR_BUFFER_BIT;s.resolveDepthBuffer&&(s.depthBuffer&&(a|=t.DEPTH_BUFFER_BIT),s.stencilBuffer&&s.resolveStencilBuffer&&(a|=t.STENCIL_BUFFER_BIT));const o=i.msaaFrameBuffer,u=i.msaaRenderbuffers,l=e.textures,d=l.length>1;if(r.bindFramebuffer(t.READ_FRAMEBUFFER,o),r.bindFramebuffer(t.DRAW_FRAMEBUFFER,n),d)for(let e=0;e0&&!0===this.extensions.has("WEBGL_multisampled_render_to_texture")&&!1!==e._autoAllocateDepthBuffer}dispose(){null!==this.textureUtils&&this.textureUtils.dispose();const e=this.extensions.get("WEBGL_lose_context");e&&e.loseContext(),this.renderer.domElement.removeEventListener("webglcontextlost",this._onContextLost)}}const vR="point-list",NR="line-list",SR="line-strip",RR="triangle-list",AR="triangle-strip",ER="undefined"!=typeof self?self.GPUShaderStage:{VERTEX:1,FRAGMENT:2,COMPUTE:4},wR="never",CR="less",MR="equal",BR="less-equal",LR="greater",PR="not-equal",FR="greater-equal",DR="always",IR="store",UR="load",OR="clear",VR="ccw",kR="cw",GR="none",zR="back",$R="uint16",WR="uint32",HR="r8unorm",jR="r8snorm",qR="r8uint",XR="r8sint",KR="r16uint",YR="r16sint",QR="r16float",ZR="rg8unorm",JR="rg8snorm",eA="rg8uint",tA="rg8sint",rA="r32uint",sA="r32sint",iA="r32float",nA="rg16uint",aA="rg16sint",oA="rg16float",uA="rgba8unorm",lA="rgba8unorm-srgb",dA="rgba8snorm",cA="rgba8uint",hA="rgba8sint",pA="bgra8unorm",gA="bgra8unorm-srgb",mA="rgb9e5ufloat",fA="rgb10a2unorm",yA="rg11b10ufloat",bA="rg32uint",xA="rg32sint",TA="rg32float",_A="rgba16uint",vA="rgba16sint",NA="rgba16float",SA="rgba32uint",RA="rgba32sint",AA="rgba32float",EA="depth16unorm",wA="depth24plus",CA="depth24plus-stencil8",MA="depth32float",BA="depth32float-stencil8",LA="bc1-rgba-unorm",PA="bc1-rgba-unorm-srgb",FA="bc2-rgba-unorm",DA="bc2-rgba-unorm-srgb",IA="bc3-rgba-unorm",UA="bc3-rgba-unorm-srgb",OA="bc4-r-unorm",VA="bc4-r-snorm",kA="bc5-rg-unorm",GA="bc5-rg-snorm",zA="bc6h-rgb-ufloat",$A="bc6h-rgb-float",WA="bc7-rgba-unorm",HA="bc7-rgba-unorm-srgb",jA="etc2-rgb8unorm",qA="etc2-rgb8unorm-srgb",XA="etc2-rgb8a1unorm",KA="etc2-rgb8a1unorm-srgb",YA="etc2-rgba8unorm",QA="etc2-rgba8unorm-srgb",ZA="eac-r11unorm",JA="eac-r11snorm",eE="eac-rg11unorm",tE="eac-rg11snorm",rE="astc-4x4-unorm",sE="astc-4x4-unorm-srgb",iE="astc-5x4-unorm",nE="astc-5x4-unorm-srgb",aE="astc-5x5-unorm",oE="astc-5x5-unorm-srgb",uE="astc-6x5-unorm",lE="astc-6x5-unorm-srgb",dE="astc-6x6-unorm",cE="astc-6x6-unorm-srgb",hE="astc-8x5-unorm",pE="astc-8x5-unorm-srgb",gE="astc-8x6-unorm",mE="astc-8x6-unorm-srgb",fE="astc-8x8-unorm",yE="astc-8x8-unorm-srgb",bE="astc-10x5-unorm",xE="astc-10x5-unorm-srgb",TE="astc-10x6-unorm",_E="astc-10x6-unorm-srgb",vE="astc-10x8-unorm",NE="astc-10x8-unorm-srgb",SE="astc-10x10-unorm",RE="astc-10x10-unorm-srgb",AE="astc-12x10-unorm",EE="astc-12x10-unorm-srgb",wE="astc-12x12-unorm",CE="astc-12x12-unorm-srgb",ME="clamp-to-edge",BE="repeat",LE="mirror-repeat",PE="linear",FE="nearest",DE="zero",IE="one",UE="src",OE="one-minus-src",VE="src-alpha",kE="one-minus-src-alpha",GE="dst",zE="one-minus-dst",$E="dst-alpha",WE="one-minus-dst-alpha",HE="src-alpha-saturated",jE="constant",qE="one-minus-constant",XE="add",KE="subtract",YE="reverse-subtract",QE="min",ZE="max",JE=0,ew=15,tw="keep",rw="zero",sw="replace",iw="invert",nw="increment-clamp",aw="decrement-clamp",ow="increment-wrap",uw="decrement-wrap",lw="storage",dw="read-only-storage",cw="write-only",hw="read-only",pw="read-write",gw="non-filtering",mw="comparison",fw="float",yw="unfilterable-float",bw="depth",xw="sint",Tw="uint",_w="2d",vw="3d",Nw="2d",Sw="2d-array",Rw="cube",Aw="3d",Ew="all",ww="vertex",Cw="instance",Mw={CoreFeaturesAndLimits:"core-features-and-limits",DepthClipControl:"depth-clip-control",Depth32FloatStencil8:"depth32float-stencil8",TextureCompressionBC:"texture-compression-bc",TextureCompressionBCSliced3D:"texture-compression-bc-sliced-3d",TextureCompressionETC2:"texture-compression-etc2",TextureCompressionASTC:"texture-compression-astc",TextureCompressionASTCSliced3D:"texture-compression-astc-sliced-3d",TimestampQuery:"timestamp-query",IndirectFirstInstance:"indirect-first-instance",ShaderF16:"shader-f16",RG11B10UFloat:"rg11b10ufloat-renderable",BGRA8UNormStorage:"bgra8unorm-storage",Float32Filterable:"float32-filterable",Float32Blendable:"float32-blendable",ClipDistances:"clip-distances",DualSourceBlending:"dual-source-blending",Subgroups:"subgroups",TextureFormatsTier1:"texture-formats-tier1",TextureFormatsTier2:"texture-formats-tier2"},Bw={"texture-compression-s3tc":"texture-compression-bc","texture-compression-etc1":"texture-compression-etc2"};class Lw extends VS{constructor(e,t,r){super(e,t?t.value:null),this.textureNode=t,this.groupNode=r}update(){const{textureNode:e}=this;return this.texture!==e.value?(this.texture=e.value,!0):super.update()}}class Pw extends LS{constructor(e,t){super(e,t?t.array:null),this.attribute=t,this.isStorageBuffer=!0}}let Fw=0;class Dw extends Pw{constructor(e,t){super("StorageBuffer_"+Fw++,e?e.value:null),this.nodeUniform=e,this.access=e?e.access:Js.READ_WRITE,this.groupNode=t}get buffer(){return this.nodeUniform.value}}class Iw extends ty{constructor(e){super(),this.device=e;this.mipmapSampler=e.createSampler({minFilter:PE}),this.flipYSampler=e.createSampler({minFilter:FE}),this.transferPipelines={},this.flipYPipelines={},this.mipmapVertexShaderModule=e.createShaderModule({label:"mipmapVertex",code:"\nstruct VarysStruct {\n\t@builtin( position ) Position: vec4,\n\t@location( 0 ) vTex : vec2\n};\n\n@vertex\nfn main( @builtin( vertex_index ) vertexIndex : u32 ) -> VarysStruct {\n\n\tvar Varys : VarysStruct;\n\n\tvar pos = array< vec2, 4 >(\n\t\tvec2( -1.0, 1.0 ),\n\t\tvec2( 1.0, 1.0 ),\n\t\tvec2( -1.0, -1.0 ),\n\t\tvec2( 1.0, -1.0 )\n\t);\n\n\tvar tex = array< vec2, 4 >(\n\t\tvec2( 0.0, 0.0 ),\n\t\tvec2( 1.0, 0.0 ),\n\t\tvec2( 0.0, 1.0 ),\n\t\tvec2( 1.0, 1.0 )\n\t);\n\n\tVarys.vTex = tex[ vertexIndex ];\n\tVarys.Position = vec4( pos[ vertexIndex ], 0.0, 1.0 );\n\n\treturn Varys;\n\n}\n"}),this.mipmapFragmentShaderModule=e.createShaderModule({label:"mipmapFragment",code:"\n@group( 0 ) @binding( 0 )\nvar imgSampler : sampler;\n\n@group( 0 ) @binding( 1 )\nvar img : texture_2d;\n\n@fragment\nfn main( @location( 0 ) vTex : vec2 ) -> @location( 0 ) vec4 {\n\n\treturn textureSample( img, imgSampler, vTex );\n\n}\n"}),this.flipYFragmentShaderModule=e.createShaderModule({label:"flipYFragment",code:"\n@group( 0 ) @binding( 0 )\nvar imgSampler : sampler;\n\n@group( 0 ) @binding( 1 )\nvar img : texture_2d;\n\n@fragment\nfn main( @location( 0 ) vTex : vec2 ) -> @location( 0 ) vec4 {\n\n\treturn textureSample( img, imgSampler, vec2( vTex.x, 1.0 - vTex.y ) );\n\n}\n"})}getTransferPipeline(e){let t=this.transferPipelines[e];return void 0===t&&(t=this.device.createRenderPipeline({label:`mipmap-${e}`,vertex:{module:this.mipmapVertexShaderModule,entryPoint:"main"},fragment:{module:this.mipmapFragmentShaderModule,entryPoint:"main",targets:[{format:e}]},primitive:{topology:AR,stripIndexFormat:WR},layout:"auto"}),this.transferPipelines[e]=t),t}getFlipYPipeline(e){let t=this.flipYPipelines[e];return void 0===t&&(t=this.device.createRenderPipeline({label:`flipY-${e}`,vertex:{module:this.mipmapVertexShaderModule,entryPoint:"main"},fragment:{module:this.flipYFragmentShaderModule,entryPoint:"main",targets:[{format:e}]},primitive:{topology:AR,stripIndexFormat:WR},layout:"auto"}),this.flipYPipelines[e]=t),t}flipY(e,t,r=0){const s=t.format,{width:i,height:n}=t.size,a=this.getTransferPipeline(s),o=this.getFlipYPipeline(s),u=this.device.createTexture({size:{width:i,height:n,depthOrArrayLayers:1},format:s,usage:GPUTextureUsage.RENDER_ATTACHMENT|GPUTextureUsage.TEXTURE_BINDING}),l=e.createView({baseMipLevel:0,mipLevelCount:1,dimension:Nw,baseArrayLayer:r}),d=u.createView({baseMipLevel:0,mipLevelCount:1,dimension:Nw,baseArrayLayer:0}),c=this.device.createCommandEncoder({}),h=(e,t,r)=>{const s=e.getBindGroupLayout(0),i=this.device.createBindGroup({layout:s,entries:[{binding:0,resource:this.flipYSampler},{binding:1,resource:t}]}),n=c.beginRenderPass({colorAttachments:[{view:r,loadOp:OR,storeOp:IR,clearValue:[0,0,0,0]}]});n.setPipeline(e),n.setBindGroup(0,i),n.draw(4,1,0,0),n.end()};h(a,l,d),h(o,d,l),this.device.queue.submit([c.finish()]),u.destroy()}generateMipmaps(e,t,r=0,s=null){const i=this.get(e);void 0===i.layers&&(i.layers=[]);const n=i.layers[r]||this._mipmapCreateBundles(e,t,r),a=s||this.device.createCommandEncoder({label:"mipmapEncoder"});this._mipmapRunBundles(a,n),null===s&&this.device.queue.submit([a.finish()]),i.layers[r]=n}_mipmapCreateBundles(e,t,r){const s=this.getTransferPipeline(t.format),i=s.getBindGroupLayout(0);let n=e.createView({baseMipLevel:0,mipLevelCount:1,dimension:Nw,baseArrayLayer:r});const a=[];for(let o=1;o0)for(let t=0,n=s.length;t0)for(let t=0,n=s.length;t0?e.width:r.size.width,l=a>0?e.height:r.size.height;o.queue.copyExternalImageToTexture({source:e,flipY:i},{texture:t,mipLevel:a,origin:{x:0,y:0,z:s},premultipliedAlpha:n},{width:u,height:l,depthOrArrayLayers:1})}_getPassUtils(){let e=this._passUtils;return null===e&&(this._passUtils=e=new Iw(this.backend.device)),e}_generateMipmaps(e,t,r=0,s=null){this._getPassUtils().generateMipmaps(e,t,r,s)}_flipY(e,t,r=0){this._getPassUtils().flipY(e,t,r)}_copyBufferToTexture(e,t,r,s,i,n=0,a=0){const o=this.backend.device,u=e.data,l=this._getBytesPerTexel(r.format),d=e.width*l;o.queue.writeTexture({texture:t,mipLevel:a,origin:{x:0,y:0,z:s}},u,{offset:e.width*e.height*l*n,bytesPerRow:d},{width:e.width,height:e.height,depthOrArrayLayers:1}),!0===i&&this._flipY(t,r,s)}_copyCompressedBufferToTexture(e,t,r){const s=this.backend.device,i=this._getBlockData(r.format),n=r.size.depthOrArrayLayers>1;for(let a=0;a]*\s*([a-z_0-9]+(?:<[\s\S]+?>)?)/i,zw=/([a-z_0-9]+)\s*:\s*([a-z_0-9]+(?:<[\s\S]+?>)?)/gi,$w={f32:"float",i32:"int",u32:"uint",bool:"bool","vec2":"vec2","vec2":"ivec2","vec2":"uvec2","vec2":"bvec2",vec2f:"vec2",vec2i:"ivec2",vec2u:"uvec2",vec2b:"bvec2","vec3":"vec3","vec3":"ivec3","vec3":"uvec3","vec3":"bvec3",vec3f:"vec3",vec3i:"ivec3",vec3u:"uvec3",vec3b:"bvec3","vec4":"vec4","vec4":"ivec4","vec4":"uvec4","vec4":"bvec4",vec4f:"vec4",vec4i:"ivec4",vec4u:"uvec4",vec4b:"bvec4","mat2x2":"mat2",mat2x2f:"mat2","mat3x3":"mat3",mat3x3f:"mat3","mat4x4":"mat4",mat4x4f:"mat4",sampler:"sampler",texture_1d:"texture",texture_2d:"texture",texture_2d_array:"texture",texture_multisampled_2d:"cubeTexture",texture_depth_2d:"depthTexture",texture_depth_2d_array:"depthTexture",texture_depth_multisampled_2d:"depthTexture",texture_depth_cube:"depthTexture",texture_depth_cube_array:"depthTexture",texture_3d:"texture3D",texture_cube:"cubeTexture",texture_cube_array:"cubeTexture",texture_storage_1d:"storageTexture",texture_storage_2d:"storageTexture",texture_storage_2d_array:"storageTexture",texture_storage_3d:"storageTexture"};class Ww extends qN{constructor(e){const{type:t,inputs:r,name:s,inputsCode:i,blockCode:n,outputType:a}=(e=>{const t=(e=e.trim()).match(Gw);if(null!==t&&4===t.length){const r=t[2],s=[];let i=null;for(;null!==(i=zw.exec(r));)s.push({name:i[1],type:i[2]});const n=[];for(let e=0;e "+this.outputType:"";return`fn ${e} ( ${this.inputsCode.trim()} ) ${t}`+this.blockCode}}class Hw extends jN{parseFunction(e){return new Ww(e)}}const jw={[Js.READ_ONLY]:"read",[Js.WRITE_ONLY]:"write",[Js.READ_WRITE]:"read_write"},qw={[Ir]:"repeat",[ye]:"clamp",[Dr]:"mirror"},Xw={vertex:ER.VERTEX,fragment:ER.FRAGMENT,compute:ER.COMPUTE},Kw={instance:!0,swizzleAssign:!1,storageBuffer:!0},Yw={"^^":"tsl_xor"},Qw={float:"f32",int:"i32",uint:"u32",bool:"bool",color:"vec3",vec2:"vec2",ivec2:"vec2",uvec2:"vec2",bvec2:"vec2",vec3:"vec3",ivec3:"vec3",uvec3:"vec3",bvec3:"vec3",vec4:"vec4",ivec4:"vec4",uvec4:"vec4",bvec4:"vec4",mat2:"mat2x2",mat3:"mat3x3",mat4:"mat4x4"},Zw={},Jw={tsl_xor:new jx("fn tsl_xor( a : bool, b : bool ) -> bool { return ( a || b ) && !( a && b ); }"),mod_float:new jx("fn tsl_mod_float( x : f32, y : f32 ) -> f32 { return x - y * floor( x / y ); }"),mod_vec2:new jx("fn tsl_mod_vec2( x : vec2f, y : vec2f ) -> vec2f { return x - y * floor( x / y ); }"),mod_vec3:new jx("fn tsl_mod_vec3( x : vec3f, y : vec3f ) -> vec3f { return x - y * floor( x / y ); }"),mod_vec4:new jx("fn tsl_mod_vec4( x : vec4f, y : vec4f ) -> vec4f { return x - y * floor( x / y ); }"),equals_bool:new jx("fn tsl_equals_bool( a : bool, b : bool ) -> bool { return a == b; }"),equals_bvec2:new jx("fn tsl_equals_bvec2( a : vec2f, b : vec2f ) -> vec2 { return vec2( a.x == b.x, a.y == b.y ); }"),equals_bvec3:new jx("fn tsl_equals_bvec3( a : vec3f, b : vec3f ) -> vec3 { return vec3( a.x == b.x, a.y == b.y, a.z == b.z ); }"),equals_bvec4:new jx("fn tsl_equals_bvec4( a : vec4f, b : vec4f ) -> vec4 { return vec4( a.x == b.x, a.y == b.y, a.z == b.z, a.w == b.w ); }"),repeatWrapping_float:new jx("fn tsl_repeatWrapping_float( coord: f32 ) -> f32 { return fract( coord ); }"),mirrorWrapping_float:new jx("fn tsl_mirrorWrapping_float( coord: f32 ) -> f32 { let mirrored = fract( coord * 0.5 ) * 2.0; return 1.0 - abs( 1.0 - mirrored ); }"),clampWrapping_float:new jx("fn tsl_clampWrapping_float( coord: f32 ) -> f32 { return clamp( coord, 0.0, 1.0 ); }"),biquadraticTexture:new jx("\nfn tsl_biquadraticTexture( map : texture_2d, coord : vec2f, iRes : vec2u, level : u32 ) -> vec4f {\n\n\tlet res = vec2f( iRes );\n\n\tlet uvScaled = coord * res;\n\tlet uvWrapping = ( ( uvScaled % res ) + res ) % res;\n\n\t// https://www.shadertoy.com/view/WtyXRy\n\n\tlet uv = uvWrapping - 0.5;\n\tlet iuv = floor( uv );\n\tlet f = fract( uv );\n\n\tlet rg1 = textureLoad( map, vec2u( iuv + vec2( 0.5, 0.5 ) ) % iRes, level );\n\tlet rg2 = textureLoad( map, vec2u( iuv + vec2( 1.5, 0.5 ) ) % iRes, level );\n\tlet rg3 = textureLoad( map, vec2u( iuv + vec2( 0.5, 1.5 ) ) % iRes, level );\n\tlet rg4 = textureLoad( map, vec2u( iuv + vec2( 1.5, 1.5 ) ) % iRes, level );\n\n\treturn mix( mix( rg1, rg2, f.x ), mix( rg3, rg4, f.x ), f.y );\n\n}\n")},eC={dFdx:"dpdx",dFdy:"- dpdy",mod_float:"tsl_mod_float",mod_vec2:"tsl_mod_vec2",mod_vec3:"tsl_mod_vec3",mod_vec4:"tsl_mod_vec4",equals_bool:"tsl_equals_bool",equals_bvec2:"tsl_equals_bvec2",equals_bvec3:"tsl_equals_bvec3",equals_bvec4:"tsl_equals_bvec4",inversesqrt:"inverseSqrt",bitcast:"bitcast",floatpack_snorm_2x16:"pack2x16snorm",floatpack_unorm_2x16:"pack2x16unorm",floatpack_float16_2x16:"pack2x16float",floatunpack_snorm_2x16:"unpack2x16snorm",floatunpack_unorm_2x16:"unpack2x16unorm",floatunpack_float16_2x16:"unpack2x16float"};let tC="";!0!==("undefined"!=typeof navigator&&/Firefox|Deno/g.test(navigator.userAgent))&&(tC+="diagnostic( off, derivative_uniformity );\n");class rC extends BN{constructor(e,t){super(e,t,new Hw),this.uniformGroups={},this.builtins={},this.directives={},this.scopedArrays=new Map}_generateTextureSample(e,t,r,s,i,n=this.shaderStage){return"fragment"===n?s?i?`textureSample( ${t}, ${t}_sampler, ${r}, ${s}, ${i} )`:`textureSample( ${t}, ${t}_sampler, ${r}, ${s} )`:i?`textureSample( ${t}, ${t}_sampler, ${r}, ${i} )`:`textureSample( ${t}, ${t}_sampler, ${r} )`:this.generateTextureSampleLevel(e,t,r,"0",s)}generateTextureSampleLevel(e,t,r,s,i,n){return!1===this.isUnfilterable(e)?n?`textureSampleLevel( ${t}, ${t}_sampler, ${r}, ${s}, ${n} )`:`textureSampleLevel( ${t}, ${t}_sampler, ${r}, ${s} )`:this.isFilteredTexture(e)?this.generateFilteredTexture(e,t,r,n,s):this.generateTextureLod(e,t,r,i,n,s)}generateWrapFunction(e){const t=`tsl_coord_${qw[e.wrapS]}S_${qw[e.wrapT]}_${e.is3DTexture||e.isData3DTexture?"3d":"2d"}T`;let r=Zw[t];if(void 0===r){const s=[],i=e.is3DTexture||e.isData3DTexture?"vec3f":"vec2f";let n=`fn ${t}( coord : ${i} ) -> ${i} {\n\n\treturn ${i}(\n`;const a=(e,t)=>{e===Ir?(s.push(Jw.repeatWrapping_float),n+=`\t\ttsl_repeatWrapping_float( coord.${t} )`):e===ye?(s.push(Jw.clampWrapping_float),n+=`\t\ttsl_clampWrapping_float( coord.${t} )`):e===Dr?(s.push(Jw.mirrorWrapping_float),n+=`\t\ttsl_mirrorWrapping_float( coord.${t} )`):(n+=`\t\tcoord.${t}`,d(`WebGPURenderer: Unsupported texture wrap type "${e}" for vertex shader.`))};a(e.wrapS,"x"),n+=",\n",a(e.wrapT,"y"),(e.is3DTexture||e.isData3DTexture)&&(n+=",\n",a(e.wrapR,"z")),n+="\n\t);\n\n}\n",Zw[t]=r=new jx(n,s)}return r.build(this),t}generateArrayDeclaration(e,t){return`array< ${this.getType(e)}, ${t} >`}generateTextureDimension(e,t,r){const s=this.getDataFromNode(e,this.shaderStage,this.globalCache);void 0===s.dimensionsSnippet&&(s.dimensionsSnippet={});let i=s.dimensionsSnippet[r];if(void 0===s.dimensionsSnippet[r]){let n,a;const{primarySamples:o}=this.renderer.backend.utils.getTextureSampleData(e),u=o>1;a=e.is3DTexture||e.isData3DTexture?"vec3":"vec2",n=u||e.isStorageTexture?t:`${t}${r?`, u32( ${r} )`:""}`,i=new Au(new pl(`textureDimensions( ${n} )`,a)),s.dimensionsSnippet[r]=i,(e.isArrayTexture||e.isDataArrayTexture||e.is3DTexture||e.isData3DTexture)&&(s.arrayLayerCount=new Au(new pl(`textureNumLayers(${t})`,"u32"))),e.isTextureCube&&(s.cubeFaceCount=new Au(new pl("6u","u32")))}return i.build(this)}generateFilteredTexture(e,t,r,s,i="0u"){this._include("biquadraticTexture");const n=this.generateWrapFunction(e),a=this.generateTextureDimension(e,t,i);return s&&(r=`${r} + vec2(${s}) / ${a}`),`tsl_biquadraticTexture( ${t}, ${n}( ${r} ), ${a}, u32( ${i} ) )`}generateTextureLod(e,t,r,s,i,n="0u"){const a=this.generateWrapFunction(e),o=this.generateTextureDimension(e,t,n),u=e.is3DTexture||e.isData3DTexture?"vec3":"vec2";i&&(r=`${r} + ${u}(${i}) / ${u}( ${o} )`);const l=`${u}( ${a}( ${r} ) * ${u}( ${o} ) )`;return this.generateTextureLoad(e,t,l,n,s,null)}generateTextureLoad(e,t,r,s,i,n){let a;return null===s&&(s="0u"),n&&(r=`${r} + ${n}`),i?a=`textureLoad( ${t}, ${r}, ${i}, u32( ${s} ) )`:(a=`textureLoad( ${t}, ${r}, u32( ${s} ) )`,this.renderer.backend.compatibilityMode&&e.isDepthTexture&&(a+=".x")),a}generateTextureStore(e,t,r,s,i){let n;return n=s?`textureStore( ${t}, ${r}, ${s}, ${i} )`:`textureStore( ${t}, ${r}, ${i} )`,n}isSampleCompare(e){return!0===e.isDepthTexture&&null!==e.compareFunction}isUnfilterable(e){return"float"!==this.getComponentTypeFromTexture(e)||!this.isAvailable("float32Filterable")&&!0===e.isDataTexture&&e.type===H||!1===this.isSampleCompare(e)&&e.minFilter===A&&e.magFilter===A||this.renderer.backend.utils.getTextureSampleData(e).primarySamples>1}generateTexture(e,t,r,s,i,n=this.shaderStage){let a=null;return a=this.isUnfilterable(e)?this.generateTextureLod(e,t,r,s,i,"0",n):this._generateTextureSample(e,t,r,s,i,n),a}generateTextureGrad(e,t,r,s,i,n,a=this.shaderStage){if("fragment"===a)return n?`textureSampleGrad( ${t}, ${t}_sampler, ${r}, ${s[0]}, ${s[1]}, ${n} )`:`textureSampleGrad( ${t}, ${t}_sampler, ${r}, ${s[0]}, ${s[1]} )`;o(`WebGPURenderer: THREE.TextureNode.gradient() does not support ${a} shader.`)}generateTextureCompare(e,t,r,s,i,n,a=this.shaderStage){if("fragment"===a)return!0===e.isDepthTexture&&!0===e.isArrayTexture?n?`textureSampleCompare( ${t}, ${t}_sampler, ${r}, ${i}, ${s}, ${n} )`:`textureSampleCompare( ${t}, ${t}_sampler, ${r}, ${i}, ${s} )`:n?`textureSampleCompare( ${t}, ${t}_sampler, ${r}, ${s}, ${n} )`:`textureSampleCompare( ${t}, ${t}_sampler, ${r}, ${s} )`;o(`WebGPURenderer: THREE.DepthTexture.compareFunction() does not support ${a} shader.`)}generateTextureLevel(e,t,r,s,i,n){return!1===this.isUnfilterable(e)?n?`textureSampleLevel( ${t}, ${t}_sampler, ${r}, ${s}, ${n} )`:`textureSampleLevel( ${t}, ${t}_sampler, ${r}, ${s} )`:this.isFilteredTexture(e)?this.generateFilteredTexture(e,t,r,n,s):this.generateTextureLod(e,t,r,i,n,s)}generateTextureBias(e,t,r,s,i,n,a=this.shaderStage){if("fragment"===a)return n?`textureSampleBias( ${t}, ${t}_sampler, ${r}, ${s}, ${n} )`:`textureSampleBias( ${t}, ${t}_sampler, ${r}, ${s} )`;o(`WebGPURenderer: THREE.TextureNode.biasNode does not support ${a} shader.`)}getPropertyName(e,t=this.shaderStage){if(!0===e.isNodeVarying&&!0===e.needsInterpolation){if("vertex"===t)return`varyings.${e.name}`}else if(!0===e.isNodeUniform){const t=e.name,r=e.type;return"texture"===r||"cubeTexture"===r||"cubeDepthTexture"===r||"storageTexture"===r||"texture3D"===r?t:"buffer"===r||"storageBuffer"===r||"indirectStorageBuffer"===r?this.isCustomStruct(e)?t:t+".value":e.groupNode.name+"."+t}return super.getPropertyName(e)}getOutputStructName(){return"output"}getFunctionOperator(e){const t=Yw[e];return void 0!==t?(this._include(t),t):null}getNodeAccess(e,t){return"compute"!==t?!0===e.isAtomic?(d("WebGPURenderer: Atomic operations are only supported in compute shaders."),Js.READ_WRITE):Js.READ_ONLY:e.access}getStorageAccess(e,t){return jw[this.getNodeAccess(e,t)]}getUniformFromNode(e,t,r,s=null){const i=super.getUniformFromNode(e,t,r,s),n=this.getDataFromNode(e,r,this.globalCache);if(void 0===n.uniformGPU){let a;const o=e.groupNode,u=o.name,l=this.getBindGroupArray(u,r);if("texture"===t||"cubeTexture"===t||"cubeDepthTexture"===t||"storageTexture"===t||"texture3D"===t){let s=null;const n=this.getNodeAccess(e,r);if("texture"===t||"storageTexture"===t?s=!0===e.value.is3DTexture?new WS(i.name,i.node,o,n):new zS(i.name,i.node,o,n):"cubeTexture"===t||"cubeDepthTexture"===t?s=new $S(i.name,i.node,o,n):"texture3D"===t&&(s=new WS(i.name,i.node,o,n)),s.store=!0===e.isStorageTextureNode,s.mipLevel=s.store?e.mipLevel:0,s.setVisibility(Xw[r]),!1===this.isUnfilterable(e.value)&&!1===s.store){const e=new Lw(`${i.name}_sampler`,i.node,o);e.setVisibility(Xw[r]),l.push(e,s),a=[e,s]}else l.push(s),a=[s]}else if("buffer"===t||"storageBuffer"===t||"indirectStorageBuffer"===t){const n=this.getSharedDataFromNode(e);let u=n.buffer;if(void 0===u){u=new("buffer"===t?DS:Dw)(e,o),n.buffer=u}u.setVisibility(u.getVisibility()|Xw[r]),l.push(u),a=u,i.name=s||"NodeBuffer_"+i.id}else{const e=this.uniformGroups[r]||(this.uniformGroups[r]={});let s=e[u];void 0===s&&(s=new OS(u,o),s.setVisibility(Xw[r]),e[u]=s,l.push(s)),a=this.getNodeUniform(i,t),s.addUniform(a)}n.uniformGPU=a}return i}getBuiltin(e,t,r,s=this.shaderStage){const i=this.builtins[s]||(this.builtins[s]=new Map);return!1===i.has(e)&&i.set(e,{name:e,property:t,type:r}),t}hasBuiltin(e,t=this.shaderStage){return void 0!==this.builtins[t]&&this.builtins[t].has(e)}getVertexIndex(){return"vertex"===this.shaderStage?this.getBuiltin("vertex_index","vertexIndex","u32","attribute"):"vertexIndex"}buildFunctionCode(e){const t=e.layout,r=this.flowShaderNode(e),s=[];for(const e of t.inputs)s.push(e.name+" : "+this.getType(e.type));let i=`fn ${t.name}( ${s.join(", ")} ) -> ${this.getType(t.type)} {\n${r.vars}\n${r.code}\n`;return r.result&&(i+=`\treturn ${r.result};\n`),i+="\n}\n",i}getInstanceIndex(){return"vertex"===this.shaderStage?this.getBuiltin("instance_index","instanceIndex","u32","attribute"):"instanceIndex"}getInvocationLocalIndex(){return this.getBuiltin("local_invocation_index","invocationLocalIndex","u32","attribute")}getSubgroupSize(){return this.enableSubGroups(),this.getBuiltin("subgroup_size","subgroupSize","u32","attribute")}getInvocationSubgroupIndex(){return this.enableSubGroups(),this.getBuiltin("subgroup_invocation_id","invocationSubgroupIndex","u32","attribute")}getSubgroupIndex(){return this.enableSubGroups(),this.getBuiltin("subgroup_id","subgroupIndex","u32","attribute")}getDrawIndex(){return null}getFrontFacing(){return this.getBuiltin("front_facing","isFront","bool")}getFragCoord(){return this.getBuiltin("position","fragCoord","vec4")+".xy"}getFragDepth(){return"output."+this.getBuiltin("frag_depth","depth","f32","output")}getClipDistance(){return"varyings.hw_clip_distances"}isFlipY(){return!1}enableDirective(e,t=this.shaderStage){(this.directives[t]||(this.directives[t]=new Set)).add(e)}getDirectives(e){const t=[],r=this.directives[e];if(void 0!==r)for(const e of r)t.push(`enable ${e};`);return t.join("\n")}enableSubGroups(){this.enableDirective("subgroups")}enableSubgroupsF16(){this.enableDirective("subgroups-f16")}enableClipDistances(){this.enableDirective("clip_distances")}enableShaderF16(){this.enableDirective("f16")}enableDualSourceBlending(){this.enableDirective("dual_source_blending")}enableHardwareClipping(e){this.enableClipDistances(),this.getBuiltin("clip_distances","hw_clip_distances",`array`,"vertex")}getBuiltins(e){const t=[],r=this.builtins[e];if(void 0!==r)for(const{name:e,property:s,type:i}of r.values())t.push(`@builtin( ${e} ) ${s} : ${i}`);return t.join(",\n\t")}getScopedArray(e,t,r,s){return!1===this.scopedArrays.has(e)&&this.scopedArrays.set(e,{name:e,scope:t,bufferType:r,bufferCount:s}),e}getScopedArrays(e){if("compute"!==e)return;const t=[];for(const{name:e,scope:r,bufferType:s,bufferCount:i}of this.scopedArrays.values()){const n=this.getType(s);t.push(`var<${r}> ${e}: array< ${n}, ${i} >;`)}return t.join("\n")}getAttributes(e){const t=[];if("compute"===e&&(this.getBuiltin("global_invocation_id","globalId","vec3","attribute"),this.getBuiltin("workgroup_id","workgroupId","vec3","attribute"),this.getBuiltin("local_invocation_id","localId","vec3","attribute"),this.getBuiltin("num_workgroups","numWorkgroups","vec3","attribute"),this.renderer.hasFeature("subgroups")&&(this.enableDirective("subgroups",e),this.getBuiltin("subgroup_size","subgroupSize","u32","attribute"))),"vertex"===e||"compute"===e){const e=this.getBuiltins("attribute");e&&t.push(e);const r=this.getAttributesArray();for(let e=0,s=r.length;e"),t.push(`\t${s+r.name} : ${i}`)}return e.output&&t.push(`\t${this.getBuiltins("output")}`),t.join(",\n")}getStructs(e){let t="";const r=this.structs[e];if(r.length>0){const e=[];for(const t of r){let r=`struct ${t.name} {\n`;r+=this.getStructMembers(t),r+="\n};",e.push(r)}t="\n"+e.join("\n\n")+"\n"}return t}getVar(e,t,r=null){let s=`var ${t} : `;return s+=null!==r?this.generateArrayDeclaration(e,r):this.getType(e),s}getVars(e){const t=[],r=this.vars[e];if(void 0!==r)for(const e of r)t.push(`\t${this.getVar(e.type,e.name,e.count)};`);return`\n${t.join("\n")}\n`}getVaryings(e){const t=[];if("vertex"===e&&this.getBuiltin("position","Vertex","vec4","vertex"),"vertex"===e||"fragment"===e){const r=this.varyings,s=this.vars[e];for(let i=0;ir.value.itemSize;return s&&!i}getUniforms(e){const t=this.uniforms[e],r=[],s=[],i=[],n={};for(const i of t){const t=i.groupNode.name,a=this.bindingsIndexes[t];if("texture"===i.type||"cubeTexture"===i.type||"cubeDepthTexture"===i.type||"storageTexture"===i.type||"texture3D"===i.type){const t=i.node.value;let s;!1===this.isUnfilterable(t)&&!0!==i.node.isStorageTextureNode&&(this.isSampleCompare(t)?r.push(`@binding( ${a.binding++} ) @group( ${a.group} ) var ${i.name}_sampler : sampler_comparison;`):r.push(`@binding( ${a.binding++} ) @group( ${a.group} ) var ${i.name}_sampler : sampler;`));let n="";const{primarySamples:o}=this.renderer.backend.utils.getTextureSampleData(t);if(o>1&&(n="_multisampled"),!0===t.isCubeTexture&&!0===t.isDepthTexture)s="texture_depth_cube";else if(!0===t.isCubeTexture)s="texture_cube";else if(!0===t.isDepthTexture)s=this.renderer.backend.compatibilityMode&&null===t.compareFunction?`texture${n}_2d`:`texture_depth${n}_2d${!0===t.isArrayTexture?"_array":""}`;else if(!0===i.node.isStorageTextureNode){const r=kw(t),n=this.getStorageAccess(i.node,e),a=i.node.value.is3DTexture,o=i.node.value.isArrayTexture;s=`texture_storage_${a?"3d":"2d"+(o?"_array":"")}<${r}, ${n}>`}else if(!0===t.isArrayTexture||!0===t.isDataArrayTexture||!0===t.isCompressedArrayTexture)s="texture_2d_array";else if(!0===t.is3DTexture||!0===t.isData3DTexture)s="texture_3d";else{s=`texture${n}_2d<${this.getComponentTypeFromTexture(t).charAt(0)}32>`}r.push(`@binding( ${a.binding++} ) @group( ${a.group} ) var ${i.name} : ${s};`)}else if("buffer"===i.type||"storageBuffer"===i.type||"indirectStorageBuffer"===i.type){const t=i.node,r=this.getType(t.getNodeType(this)),n=t.bufferCount,o=n>0&&"buffer"===i.type?", "+n:"",u=t.isStorageBufferNode?`storage, ${this.getStorageAccess(t,e)}`:"uniform";if(this.isCustomStruct(i))s.push(`@binding( ${a.binding++} ) @group( ${a.group} ) var<${u}> ${i.name} : ${r};`);else{const e=`\tvalue : array< ${t.isAtomic?`atomic<${r}>`:`${r}`}${o} >`;s.push(this._getWGSLStructBinding(i.name,e,u,a.binding++,a.group))}}else{const e=this.getType(this.getVectorType(i.type)),t=i.groupNode.name;(n[t]||(n[t]={index:a.binding++,id:a.group,snippets:[]})).snippets.push(`\t${i.name} : ${e}`)}}for(const e in n){const t=n[e];i.push(this._getWGSLStructBinding(e,t.snippets.join(",\n"),"uniform",t.index,t.id))}let a=r.join("\n");return a+=s.join("\n"),a+=i.join("\n"),a}buildCode(){const e=null!==this.material?{fragment:{},vertex:{}}:{compute:{}};this.sortBindingGroups();for(const t in e){this.shaderStage=t;const r=e[t];r.uniforms=this.getUniforms(t),r.attributes=this.getAttributes(t),r.varyings=this.getVaryings(t),r.structs=this.getStructs(t),r.vars=this.getVars(t),r.codes=this.getCodes(t),r.directives=this.getDirectives(t),r.scopedArrays=this.getScopedArrays(t);let s="// code\n\n";s+=this.flowCode[t];const i=this.flowNodes[t],n=i[i.length-1],a=n.outputNode,o=void 0!==a&&!0===a.isOutputStructNode;for(const e of i){const i=this.getFlowData(e),u=e.name;if(u&&(s.length>0&&(s+="\n"),s+=`\t// flow -> ${u}\n`),s+=`${i.code}\n\t`,e===n&&"compute"!==t)if(s+="// result\n\n\t","vertex"===t)s+=`varyings.Vertex = ${i.result};`;else if("fragment"===t)if(o)r.returnType=a.getNodeType(this),r.structs+="var output : "+r.returnType+";",s+=`return ${i.result};`;else{let e="\t@location(0) color: vec4";const t=this.getBuiltins("output");t&&(e+=",\n\t"+t),r.returnType="OutputStruct",r.structs+=this._getWGSLStruct("OutputStruct",e),r.structs+="\nvar output : OutputStruct;",s+=`output.color = ${i.result};\n\n\treturn output;`}}r.flow=s}if(this.shaderStage=null,null!==this.material)this.vertexShader=this._getWGSLVertexCode(e.vertex),this.fragmentShader=this._getWGSLFragmentCode(e.fragment);else{const t=this.object.workgroupSize;this.computeShader=this._getWGSLComputeCode(e.compute,t)}}getMethod(e,t=null){let r;return null!==t&&(r=this._getWGSLMethod(e+"_"+t)),void 0===r&&(r=this._getWGSLMethod(e)),r||e}getBitcastMethod(e){return`bitcast<${this.getType(e)}>`}getFloatPackingMethod(e){return this.getMethod(`floatpack_${e}_2x16`)}getFloatUnpackingMethod(e){return this.getMethod(`floatunpack_${e}_2x16`)}getTernary(e,t,r){return`select( ${r}, ${t}, ${e} )`}getType(e){return Qw[e]||e}isAvailable(e){let t=Kw[e];return void 0===t&&("float32Filterable"===e?t=this.renderer.hasFeature("float32-filterable"):"clipDistance"===e&&(t=this.renderer.hasFeature("clip-distances")),Kw[e]=t),t}_getWGSLMethod(e){return void 0!==Jw[e]&&this._include(e),eC[e]}_include(e){const t=Jw[e];return t.build(this),this.addInclude(t),t}_getWGSLVertexCode(e){return`${this.getSignature()}\n// directives\n${e.directives}\n\n// structs\n${e.structs}\n\n// uniforms\n${e.uniforms}\n\n// varyings\n${e.varyings}\nvar varyings : VaryingsStruct;\n\n// codes\n${e.codes}\n\n@vertex\nfn main( ${e.attributes} ) -> VaryingsStruct {\n\n\t// vars\n\t${e.vars}\n\n\t// flow\n\t${e.flow}\n\n\treturn varyings;\n\n}\n`}_getWGSLFragmentCode(e){return`${this.getSignature()}\n// global\n${tC}\n\n// structs\n${e.structs}\n\n// uniforms\n${e.uniforms}\n\n// codes\n${e.codes}\n\n@fragment\nfn main( ${e.varyings} ) -> ${e.returnType} {\n\n\t// vars\n\t${e.vars}\n\n\t// flow\n\t${e.flow}\n\n}\n`}_getWGSLComputeCode(e,t){const[r,s,i]=t;return`${this.getSignature()}\n// directives\n${e.directives}\n\n// system\nvar instanceIndex : u32;\n\n// locals\n${e.scopedArrays}\n\n// structs\n${e.structs}\n\n// uniforms\n${e.uniforms}\n\n// codes\n${e.codes}\n\n@compute @workgroup_size( ${r}, ${s}, ${i} )\nfn main( ${e.attributes} ) {\n\n\t// system\n\tinstanceIndex = globalId.x\n\t\t+ globalId.y * ( ${r} * numWorkgroups.x )\n\t\t+ globalId.z * ( ${r} * numWorkgroups.x ) * ( ${s} * numWorkgroups.y );\n\n\t// vars\n\t${e.vars}\n\n\t// flow\n\t${e.flow}\n\n}\n`}_getWGSLStruct(e,t){return`\nstruct ${e} {\n${t}\n};`}_getWGSLStructBinding(e,t,r,s=0,i=0){const n=e+"Struct";return`${this._getWGSLStruct(n,t)}\n@binding( ${s} ) @group( ${i} )\nvar<${r}> ${e} : ${n};`}}class sC{constructor(e){this.backend=e}getCurrentDepthStencilFormat(e){let t;return null!==e.depthTexture?t=this.getTextureFormatGPU(e.depthTexture):e.depth&&e.stencil?t=CA:e.depth&&(t=wA),t}getTextureFormatGPU(e){return this.backend.get(e).format}getTextureSampleData(e){let t;if(e.isFramebufferTexture)t=1;else if(e.isDepthTexture&&!e.renderTarget){const e=this.backend.renderer,r=e.getRenderTarget();t=r?r.samples:e.currentSamples}else e.renderTarget&&(t=e.renderTarget.samples);t=t||1;const r=t>1&&null!==e.renderTarget&&!0!==e.isDepthTexture&&!0!==e.isFramebufferTexture;return{samples:t,primarySamples:r?1:t,isMSAA:r}}getCurrentColorFormat(e){let t;return t=null!==e.textures?this.getTextureFormatGPU(e.textures[0]):this.getPreferredCanvasFormat(),t}getCurrentColorFormats(e){return null!==e.textures?e.textures.map(e=>this.getTextureFormatGPU(e)):[this.getPreferredCanvasFormat()]}getCurrentColorSpace(e){return null!==e.textures?e.textures[0].colorSpace:this.backend.renderer.outputColorSpace}getPrimitiveTopology(e,t){return e.isPoints?vR:e.isLineSegments||e.isMesh&&!0===t.wireframe?NR:e.isLine?SR:e.isMesh?RR:void 0}getSampleCount(e){return e>=4?4:1}getSampleCountRenderContext(e){return null!==e.textures?this.getSampleCount(e.sampleCount):this.getSampleCount(this.backend.renderer.currentSamples)}getPreferredCanvasFormat(){const e=this.backend.parameters.outputType;if(void 0===e)return navigator.gpu.getPreferredCanvasFormat();if(e===ke)return pA;if(e===fe)return NA;throw new Error("Unsupported outputType")}}const iC=new Map([[Int8Array,["sint8","snorm8"]],[Uint8Array,["uint8","unorm8"]],[Int16Array,["sint16","snorm16"]],[Uint16Array,["uint16","unorm16"]],[Int32Array,["sint32","snorm32"]],[Uint32Array,["uint32","unorm32"]],[Float32Array,["float32"]]]);"undefined"!=typeof Float16Array&&iC.set(Float16Array,["float16"]);const nC=new Map([[et,["float16"]]]),aC=new Map([[Int32Array,"sint32"],[Int16Array,"sint32"],[Uint32Array,"uint32"],[Uint16Array,"uint32"],[Float32Array,"float32"]]);class oC{constructor(e){this.backend=e}createAttribute(e,t){const r=this._getBufferAttribute(e),s=this.backend,i=s.get(r);let n=i.buffer;if(void 0===n){const a=s.device;let o=r.array;if(!1===e.normalized)if(o.constructor===Int16Array||o.constructor===Int8Array)o=new Int32Array(o);else if((o.constructor===Uint16Array||o.constructor===Uint8Array)&&(o=new Uint32Array(o),t&GPUBufferUsage.INDEX))for(let e=0;e1&&(s.multisampled=!0,r.texture.isDepthTexture||(s.sampleType=yw)),r.texture.isDepthTexture)t.compatibilityMode&&null===r.texture.compareFunction?s.sampleType=yw:s.sampleType=bw;else if(r.texture.isDataTexture||r.texture.isDataArrayTexture||r.texture.isData3DTexture){const e=r.texture.type;e===R?s.sampleType=xw:e===S?s.sampleType=Tw:e===H&&(this.backend.hasFeature("float32-filterable")?s.sampleType=fw:s.sampleType=yw)}r.isSampledCubeTexture?s.viewDimension=Rw:r.texture.isArrayTexture||r.texture.isDataArrayTexture||r.texture.isCompressedArrayTexture?s.viewDimension=Sw:r.isSampledTexture3D&&(s.viewDimension=Aw),e.texture=s}else if(r.isSampler){const s={};r.texture.isDepthTexture&&(null!==r.texture.compareFunction?s.type=mw:t.compatibilityMode&&(s.type=gw)),e.sampler=s}else o(`WebGPUBindingUtils: Unsupported binding "${r}".`);s.push(e)}return r.createBindGroupLayout({entries:s})}createBindings(e,t,r,s=0){const{backend:i,bindGroupLayoutCache:n}=this,a=i.get(e);let o,u=n.get(e.bindingsReference);void 0===u&&(u=this.createBindingsLayout(e),n.set(e.bindingsReference,u)),r>0&&(void 0===a.groups&&(a.groups=[],a.versions=[]),a.versions[r]===s&&(o=a.groups[r])),void 0===o&&(o=this.createBindGroup(e,u),r>0&&(a.groups[r]=o,a.versions[r]=s)),a.group=o,a.layout=u}updateBinding(e){const t=this.backend,r=t.device,s=e.buffer,i=t.get(e).buffer,n=e.updateRanges;if(0===n.length)r.queue.writeBuffer(i,0,s,0);else{const t=qr(s),a=t?1:s.BYTES_PER_ELEMENT;for(let e=0,o=n.length;e1&&(i+=`-${e.texture.depthOrArrayLayers}`),i+=`-${r}-${s}`,a=e[i],void 0===a){const n=Ew;let o;o=t.isSampledCubeTexture?Rw:t.isSampledTexture3D?Aw:t.texture.isArrayTexture||t.texture.isDataArrayTexture||t.texture.isCompressedArrayTexture?Sw:Nw,a=e[i]=e.texture.createView({aspect:n,dimension:o,mipLevelCount:r,baseMipLevel:s})}}n.push({binding:i,resource:a})}else if(t.isSampler){const e=r.get(t.texture);n.push({binding:i,resource:e.sampler})}i++}return s.createBindGroup({label:"bindGroup_"+e.name,layout:t,entries:n})}}class lC{constructor(e){this.backend=e,this._activePipelines=new WeakMap}setPipeline(e,t){this._activePipelines.get(e)!==t&&(e.setPipeline(t),this._activePipelines.set(e,t))}_getSampleCount(e){return this.backend.utils.getSampleCountRenderContext(e)}createRenderPipeline(e,t){const{object:r,material:s,geometry:i,pipeline:n}=e,{vertexProgram:a,fragmentProgram:u}=n,l=this.backend,d=l.device,c=l.utils,h=l.get(n),p=[];for(const t of e.getBindings()){const e=l.get(t);p.push(e.layout)}const g=l.attributeUtils.createShaderVertexBuffers(e);let m;s.blending===Z||s.blending===Qe&&!1===s.transparent||(m=this._getBlending(s));let f={};!0===s.stencilWrite&&(f={compare:this._getStencilCompare(s),failOp:this._getStencilOperation(s.stencilFail),depthFailOp:this._getStencilOperation(s.stencilZFail),passOp:this._getStencilOperation(s.stencilZPass)});const y=this._getColorWriteMask(s),b=[];if(null!==e.context.textures){const t=e.context.textures;for(let e=0;e1},layout:d.createPipelineLayout({bindGroupLayouts:p})},A={},E=e.context.depth,w=e.context.stencil;if(!0!==E&&!0!==w||(!0===E&&(A.format=N,A.depthWriteEnabled=s.depthWrite,A.depthCompare=v),!0===w&&(A.stencilFront=f,A.stencilBack={},A.stencilReadMask=s.stencilFuncMask,A.stencilWriteMask=s.stencilWriteMask),!0===s.polygonOffset&&(A.depthBias=s.polygonOffsetUnits,A.depthBiasSlopeScale=s.polygonOffsetFactor,A.depthBiasClamp=0),R.depthStencil=A),d.pushErrorScope("validation"),null===t)h.pipeline=d.createRenderPipeline(R),d.popErrorScope().then(e=>{null!==e&&(h.error=!0,o(e.message))});else{const e=new Promise(async e=>{try{h.pipeline=await d.createRenderPipelineAsync(R)}catch(e){}const t=await d.popErrorScope();null!==t&&(h.error=!0,o(t.message)),e()});t.push(e)}}createBundleEncoder(e,t="renderBundleEncoder"){const r=this.backend,{utils:s,device:i}=r,n=s.getCurrentDepthStencilFormat(e),a={label:t,colorFormats:s.getCurrentColorFormats(e),depthStencilFormat:n,sampleCount:this._getSampleCount(e)};return i.createRenderBundleEncoder(a)}createComputePipeline(e,t){const r=this.backend,s=r.device,i=r.get(e.computeProgram).module,n=r.get(e),a=[];for(const e of t){const t=r.get(e);a.push(t.layout)}n.pipeline=s.createComputePipeline({compute:i,layout:s.createPipelineLayout({bindGroupLayouts:a})})}_getBlending(e){let t,r;const s=e.blending,i=e.blendSrc,n=e.blendDst,a=e.blendEquation;if(s===nt){const s=null!==e.blendSrcAlpha?e.blendSrcAlpha:i,o=null!==e.blendDstAlpha?e.blendDstAlpha:n,u=null!==e.blendEquationAlpha?e.blendEquationAlpha:a;t={srcFactor:this._getBlendFactor(i),dstFactor:this._getBlendFactor(n),operation:this._getBlendOperation(a)},r={srcFactor:this._getBlendFactor(s),dstFactor:this._getBlendFactor(o),operation:this._getBlendOperation(u)}}else{const i=(e,s,i,n)=>{t={srcFactor:e,dstFactor:s,operation:XE},r={srcFactor:i,dstFactor:n,operation:XE}};if(e.premultipliedAlpha)switch(s){case Qe:i(IE,kE,IE,kE);break;case $t:i(IE,IE,IE,IE);break;case zt:i(DE,OE,DE,IE);break;case Gt:i(GE,kE,DE,IE)}else switch(s){case Qe:i(VE,kE,IE,kE);break;case $t:i(VE,IE,IE,IE);break;case zt:o("WebGPURenderer: SubtractiveBlending requires material.premultipliedAlpha = true");break;case Gt:o("WebGPURenderer: MultiplyBlending requires material.premultipliedAlpha = true")}}if(void 0!==t&&void 0!==r)return{color:t,alpha:r};o("WebGPURenderer: Invalid blending: ",s)}_getBlendFactor(e){let t;switch(e){case ot:t=DE;break;case Ut:t=IE;break;case It:t=UE;break;case Bt:t=OE;break;case Dt:t=VE;break;case Mt:t=kE;break;case Pt:t=GE;break;case Ct:t=zE;break;case Lt:t=$E;break;case wt:t=WE;break;case Ft:t=HE;break;case 211:t=jE;break;case 212:t=qE;break;default:o("WebGPURenderer: Blend factor not supported.",e)}return t}_getStencilCompare(e){let t;const r=e.stencilFunc;switch(r){case ts:t=wR;break;case es:t=DR;break;case Jr:t=CR;break;case Zr:t=BR;break;case Qr:t=MR;break;case Yr:t=FR;break;case Kr:t=LR;break;case Xr:t=PR;break;default:o("WebGPURenderer: Invalid stencil function.",r)}return t}_getStencilOperation(e){let t;switch(e){case ls:t=tw;break;case us:t=rw;break;case os:t=sw;break;case as:t=iw;break;case ns:t=nw;break;case is:t=aw;break;case ss:t=ow;break;case rs:t=uw;break;default:o("WebGPURenderer: Invalid stencil operation.",t)}return t}_getBlendOperation(e){let t;switch(e){case at:t=XE;break;case Et:t=KE;break;case At:t=YE;break;case cs:t=QE;break;case ds:t=ZE;break;default:o("WebGPUPipelineUtils: Blend equation not supported.",e)}return t}_getPrimitiveState(e,t,r){const s={},i=this.backend.utils;s.topology=i.getPrimitiveTopology(e,r),null!==t.index&&!0===e.isLine&&!0!==e.isLineSegments&&(s.stripIndexFormat=t.index.array instanceof Uint16Array?$R:WR);let n=r.side===w;return e.isMesh&&e.matrixWorld.determinant()<0&&(n=!n),s.frontFace=!0===n?kR:VR,s.cullMode=r.side===C?GR:zR,s}_getColorWriteMask(e){return!0===e.colorWrite?ew:JE}_getDepthCompare(e){let t;if(!1===e.depthTest)t=DR;else{const r=e.depthFunc;switch(r){case Qt:t=wR;break;case Yt:t=DR;break;case Kt:t=CR;break;case Xt:t=BR;break;case qt:t=MR;break;case jt:t=FR;break;case Ht:t=LR;break;case Wt:t=PR;break;default:o("WebGPUPipelineUtils: Invalid depth function.",r)}}return t}}class dC extends xR{constructor(e,t,r=2048){super(r),this.device=e,this.type=t,this.querySet=this.device.createQuerySet({type:"timestamp",count:this.maxQueries,label:`queryset_global_timestamp_${t}`});const s=8*this.maxQueries;this.resolveBuffer=this.device.createBuffer({label:`buffer_timestamp_resolve_${t}`,size:s,usage:GPUBufferUsage.QUERY_RESOLVE|GPUBufferUsage.COPY_SRC}),this.resultBuffer=this.device.createBuffer({label:`buffer_timestamp_result_${t}`,size:s,usage:GPUBufferUsage.COPY_DST|GPUBufferUsage.MAP_READ})}allocateQueriesForContext(e){if(!this.trackTimestamp||this.isDisposed)return null;if(this.currentQueryIndex+2>this.maxQueries)return v(`WebGPUTimestampQueryPool [${this.type}]: Maximum number of queries exceeded, when using trackTimestamp it is necessary to resolves the queries via renderer.resolveTimestampsAsync( THREE.TimestampQuery.${this.type.toUpperCase()} ).`),null;const t=this.currentQueryIndex;return this.currentQueryIndex+=2,this.queryOffsets.set(e,t),t}async resolveQueriesAsync(){if(!this.trackTimestamp||0===this.currentQueryIndex||this.isDisposed)return this.lastValue;if(this.pendingResolve)return this.pendingResolve;this.pendingResolve=this._resolveQueries();try{return await this.pendingResolve}finally{this.pendingResolve=null}}async _resolveQueries(){if(this.isDisposed)return this.lastValue;try{if("unmapped"!==this.resultBuffer.mapState)return this.lastValue;const e=new Map(this.queryOffsets),t=this.currentQueryIndex,r=8*t;this.currentQueryIndex=0,this.queryOffsets.clear();const s=this.device.createCommandEncoder();s.resolveQuerySet(this.querySet,0,t,this.resolveBuffer,0),s.copyBufferToBuffer(this.resolveBuffer,0,this.resultBuffer,0,r);const i=s.finish();if(this.device.queue.submit([i]),"unmapped"!==this.resultBuffer.mapState)return this.lastValue;if(await this.resultBuffer.mapAsync(GPUMapMode.READ,0,r),this.isDisposed)return"mapped"===this.resultBuffer.mapState&&this.resultBuffer.unmap(),this.lastValue;const n=new BigUint64Array(this.resultBuffer.getMappedRange(0,r)),a={},o=[];for(const[t,r]of e){const e=t.match(/^(.*):f(\d+)$/),s=parseInt(e[2]);!1===o.includes(s)&&o.push(s),void 0===a[s]&&(a[s]=0);const i=n[r],u=n[r+1],l=Number(u-i)/1e6;this.timestamps.set(t,l),a[s]+=l}const u=a[o[o.length-1]];return this.resultBuffer.unmap(),this.lastValue=u,this.frames=o,u}catch(e){return o("Error resolving queries:",e),"mapped"===this.resultBuffer.mapState&&this.resultBuffer.unmap(),this.lastValue}}async dispose(){if(!this.isDisposed){if(this.isDisposed=!0,this.pendingResolve)try{await this.pendingResolve}catch(e){o("Error waiting for pending resolve:",e)}if(this.resultBuffer&&"mapped"===this.resultBuffer.mapState)try{this.resultBuffer.unmap()}catch(e){o("Error unmapping buffer:",e)}this.querySet&&(this.querySet.destroy(),this.querySet=null),this.resolveBuffer&&(this.resolveBuffer.destroy(),this.resolveBuffer=null),this.resultBuffer&&(this.resultBuffer.destroy(),this.resultBuffer=null),this.queryOffsets.clear(),this.pendingResolve=null}}}class cC extends tR{constructor(e={}){super(e),this.isWebGPUBackend=!0,this.parameters.alpha=void 0===e.alpha||e.alpha,this.parameters.compatibilityMode=void 0!==e.compatibilityMode&&e.compatibilityMode,this.parameters.requiredLimits=void 0===e.requiredLimits?{}:e.requiredLimits,this.compatibilityMode=this.parameters.compatibilityMode,this.device=null,this.defaultRenderPassdescriptor=null,this.utils=new sC(this),this.attributeUtils=new oC(this),this.bindingUtils=new uC(this),this.pipelineUtils=new lC(this),this.textureUtils=new Vw(this),this.occludedResolveCache=new Map}async init(e){await super.init(e);const t=this.parameters;let r;if(void 0===t.device){const e={powerPreference:t.powerPreference,featureLevel:t.compatibilityMode?"compatibility":void 0},s="undefined"!=typeof navigator?await navigator.gpu.requestAdapter(e):null;if(null===s)throw new Error("WebGPUBackend: Unable to create WebGPU adapter.");const i=Object.values(Mw),n=[];for(const e of i)s.features.has(e)&&n.push(e);const a={requiredFeatures:n,requiredLimits:t.requiredLimits};r=await s.requestDevice(a)}else r=t.device;r.lost.then(t=>{const r={api:"WebGPU",message:t.message||"Unknown reason",reason:t.reason||null,originalEvent:t};e.onDeviceLost(r)}),this.device=r,this.trackTimestamp=this.trackTimestamp&&this.hasFeature(Mw.TimestampQuery),this.updateSize()}get context(){const e=this.renderer.getCanvasTarget(),t=this.get(e);let r=t.context;if(void 0===r){const s=this.parameters;r=!0===e.isDefaultCanvasTarget&&void 0!==s.context?s.context:e.domElement.getContext("webgpu"),"setAttribute"in e.domElement&&e.domElement.setAttribute("data-engine",`three.js r${tt} webgpu`);const i=s.alpha?"premultiplied":"opaque",n=s.outputType===fe?"extended":"standard";r.configure({device:this.device,format:this.utils.getPreferredCanvasFormat(),usage:GPUTextureUsage.RENDER_ATTACHMENT|GPUTextureUsage.COPY_SRC,alphaMode:i,toneMapping:{mode:n}}),t.context=r}return r}get coordinateSystem(){return h}async getArrayBufferAsync(e){return await this.attributeUtils.getArrayBufferAsync(e)}getContext(){return this.context}_getDefaultRenderPassDescriptor(){const e=this.renderer,t=e.getCanvasTarget(),r=this.get(t),s=e.currentSamples;let i=r.descriptor;if(void 0===i||r.samples!==s){i={colorAttachments:[{view:null}]},!0!==e.depth&&!0!==e.stencil||(i.depthStencilAttachment={view:this.textureUtils.getDepthBuffer(e.depth,e.stencil).createView()});const t=i.colorAttachments[0];s>0?t.view=this.textureUtils.getColorBuffer().createView():t.resolveTarget=void 0,r.descriptor=i,r.samples=s}const n=i.colorAttachments[0];return s>0?n.resolveTarget=this.context.getCurrentTexture().createView():n.view=this.context.getCurrentTexture().createView(),i}_isRenderCameraDepthArray(e){return e.depthTexture&&e.depthTexture.image.depth>1&&e.camera.isArrayCamera}_getRenderPassDescriptor(e,t={}){const r=e.renderTarget,s=this.get(r);let i=s.descriptors;void 0!==i&&s.width===r.width&&s.height===r.height&&s.samples===r.samples||(i={},s.descriptors=i);const n=e.getCacheKey();let a=i[n];if(void 0===a){const t=e.textures,o=[];let u;const l=this._isRenderCameraDepthArray(e);for(let s=0;s1)if(!0===l){const t=e.camera.cameras;for(let e=0;e0&&(t.currentOcclusionQuerySet&&t.currentOcclusionQuerySet.destroy(),t.currentOcclusionQueryBuffer&&t.currentOcclusionQueryBuffer.destroy(),t.currentOcclusionQuerySet=t.occlusionQuerySet,t.currentOcclusionQueryBuffer=t.occlusionQueryBuffer,t.currentOcclusionQueryObjects=t.occlusionQueryObjects,i=r.createQuerySet({type:"occlusion",count:s,label:`occlusionQuerySet_${e.id}`}),t.occlusionQuerySet=i,t.occlusionQueryIndex=0,t.occlusionQueryObjects=new Array(s),t.lastOcclusionObject=null),n=null===e.textures?this._getDefaultRenderPassDescriptor():this._getRenderPassDescriptor(e,{loadOp:UR}),this.initTimestampQuery(St.RENDER,this.getTimestampUID(e),n),n.occlusionQuerySet=i;const a=n.depthStencilAttachment;if(null!==e.textures){const t=n.colorAttachments;for(let r=0;r0&&t.currentPass.executeBundles(t.renderBundles),r>t.occlusionQueryIndex&&t.currentPass.endOcclusionQuery();const s=t.encoder;if(!0===this._isRenderCameraDepthArray(e)){const r=[];for(let e=0;e0){const s=8*r;let i=this.occludedResolveCache.get(s);void 0===i&&(i=this.device.createBuffer({size:s,usage:GPUBufferUsage.QUERY_RESOLVE|GPUBufferUsage.COPY_SRC}),this.occludedResolveCache.set(s,i));const n=this.device.createBuffer({size:s,usage:GPUBufferUsage.COPY_DST|GPUBufferUsage.MAP_READ});t.encoder.resolveQuerySet(t.occlusionQuerySet,0,r,i,0),t.encoder.copyBufferToBuffer(i,0,n,0,s),t.occlusionQueryBuffer=n,this.resolveOccludedAsync(e)}if(this.device.queue.submit([t.encoder.finish()]),null!==e.textures){const t=e.textures;for(let e=0;eo&&(i[0]=Math.min(a,o),i[1]=Math.ceil(a/o)),n.dispatchSize=i}i=n.dispatchSize}a.dispatchWorkgroups(i[0],i[1]||1,i[2]||1)}finishCompute(e){const t=this.get(e);t.passEncoderGPU.end(),this.device.queue.submit([t.cmdEncoderGPU.finish()])}draw(e,t){const{object:r,material:s,context:i,pipeline:n}=e,a=e.getBindings(),o=this.get(i),u=this.get(n),l=u.pipeline;if(!0===u.error)return;const d=e.getIndex(),c=null!==d,h=e.getDrawParameters();if(null===h)return;const p=(t,r)=>{this.pipelineUtils.setPipeline(t,l),r.pipeline=l;const n=r.bindingGroups;for(let e=0,r=a.length;e{if(p(s,i),!0===r.isBatchedMesh){const e=r._multiDrawStarts,i=r._multiDrawCounts,n=r._multiDrawCount,a=r._multiDrawInstances;null!==a&&v("WebGPUBackend: renderMultiDrawInstances has been deprecated and will be removed in r184. Append to renderMultiDraw arguments and use indirection.");for(let o=0;o1?0:o;!0===c?s.drawIndexed(i[o],n,e[o]/d.array.BYTES_PER_ELEMENT,0,u):s.draw(i[o],n,e[o],u),t.update(r,i[o],n)}}else if(!0===c){const{vertexCount:i,instanceCount:n,firstVertex:a}=h,o=e.getIndirect();if(null!==o){const t=this.get(o).buffer,r=e.getIndirectOffset();s.drawIndexedIndirect(t,r)}else s.drawIndexed(i,n,a,0,0);t.update(r,i,n)}else{const{vertexCount:i,instanceCount:n,firstVertex:a}=h,o=e.getIndirect();if(null!==o){const t=this.get(o).buffer,r=e.getIndirectOffset();s.drawIndirect(t,r)}else s.draw(i,n,a,0);t.update(r,i,n)}};if(e.camera.isArrayCamera&&e.camera.cameras.length>0){const t=this.get(e.camera),s=e.camera.cameras,n=e.getBindingGroup("cameraIndex");if(void 0===t.indexesGPU||t.indexesGPU.length!==s.length){const e=this.get(n),r=[],i=new Uint32Array([0,0,0,0]);for(let t=0,n=s.length;t(d("WebGPURenderer: WebGPU is not available, running under WebGL2 backend."),new _R(e)));super(new t(e),e),this.library=new gC,this.isWebGPURenderer=!0}}class fC extends Rs{constructor(){super(),this.isBundleGroup=!0,this.type="BundleGroup",this.static=!0,this.version=0}set needsUpdate(e){!0===e&&this.version++}}class yC{constructor(e,t=Sn(0,0,1,1)){this.renderer=e,this.outputNode=t,this.outputColorTransform=!0,this.needsUpdate=!0;const r=new Xp;r.name="PostProcessing",this._quadMesh=new Wb(r),this._quadMesh.name="Post-Processing",this._context=null}render(){const e=this.renderer;this._update(),null!==this._context.onBeforePostProcessing&&this._context.onBeforePostProcessing();const t=e.toneMapping,r=e.outputColorSpace;e.toneMapping=m,e.outputColorSpace=p.workingColorSpace;const s=e.xr.enabled;e.xr.enabled=!1,this._quadMesh.render(e),e.xr.enabled=s,e.toneMapping=t,e.outputColorSpace=r,null!==this._context.onAfterPostProcessing&&this._context.onAfterPostProcessing()}get context(){return this._context}dispose(){this._quadMesh.material.dispose()}_update(){if(!0===this.needsUpdate){const e=this.renderer,t=e.toneMapping,r=e.outputColorSpace,s={postProcessing:this,onBeforePostProcessing:null,onAfterPostProcessing:null};let i=this.outputNode;!0===this.outputColorTransform?(i=i.context(s),i=yl(i,t,r)):(s.toneMapping=t,s.outputColorSpace=r,i=i.context(s)),this._context=s,this._quadMesh.material.fragmentNode=i,this._quadMesh.material.needsUpdate=!0,this.needsUpdate=!1}}async renderAsync(){v('PostProcessing: "renderAsync()" has been deprecated. Use "render()" and "await renderer.init();" when creating the renderer.'),await this.renderer.init(),this.render()}}class bC extends N{constructor(e=1,t=1){super(),this.image={width:e,height:t},this.magFilter=ne,this.minFilter=ne,this.isStorageTexture=!0,this.mipmapsAutoUpdate=!0}setSize(e,t){this.image.width===e&&this.image.height===t||(this.image.width=e,this.image.height=t,this.dispose())}}class xC extends sx{constructor(e,t){super(e,t,Uint32Array),this.isIndirectStorageBufferAttribute=!0}}class TC extends As{constructor(e){super(e),this.textures={},this.nodes={}}load(e,t,r,s){const i=new Es(this.manager);i.setPath(this.path),i.setRequestHeader(this.requestHeader),i.setWithCredentials(this.withCredentials),i.load(e,r=>{try{t(this.parse(JSON.parse(r)))}catch(t){s?s(t):o(t),this.manager.itemError(e)}},r,s)}parseNodes(e){const t={};if(void 0!==e){for(const r of e){const{uuid:e,type:s}=r;t[e]=this.createNodeFromType(s),t[e].uuid=e}const r={nodes:t,textures:this.textures};for(const s of e){s.meta=r;t[s.uuid].deserialize(s),delete s.meta}}return t}parse(e){const t=this.createNodeFromType(e.type);t.uuid=e.uuid;const r={nodes:this.parseNodes(e.nodes),textures:this.textures};return e.meta=r,t.deserialize(e),delete e.meta,t}setTextures(e){return this.textures=e,this}setNodes(e){return this.nodes=e,this}createNodeFromType(e){return void 0===this.nodes[e]?(o("NodeLoader: Node type not found:",e),hn()):Yi(new this.nodes[e])}}class _C extends ws{constructor(e){super(e),this.nodes={},this.nodeMaterials={}}parse(e){const t=super.parse(e),r=this.nodes,s=e.inputNodes;for(const e in s){const i=s[e];t[e]=r[i]}return t}setNodes(e){return this.nodes=e,this}setNodeMaterials(e){return this.nodeMaterials=e,this}createMaterialFromType(e){const t=this.nodeMaterials[e];return void 0!==t?new t:super.createMaterialFromType(e)}}class vC extends Cs{constructor(e){super(e),this.nodes={},this.nodeMaterials={},this._nodesJSON=null}setNodes(e){return this.nodes=e,this}setNodeMaterials(e){return this.nodeMaterials=e,this}parse(e,t){this._nodesJSON=e.nodes;const r=super.parse(e,t);return this._nodesJSON=null,r}parseNodes(e,t){if(void 0!==e){const r=new TC;return r.setNodes(this.nodes),r.setTextures(t),r.parseNodes(e)}return{}}parseMaterials(e,t){const r={};if(void 0!==e){const s=this.parseNodes(this._nodesJSON,t),i=new _C;i.setTextures(t),i.setNodes(s),i.setNodeMaterials(this.nodeMaterials);for(let t=0,s=e.length;t0){const{width:r,height:s}=e.context;t.bufferWidth=r,t.bufferHeight=s}t.lights=this.getLightsData(e.lightsNode.getLights()),this.renderObjects.set(e,t)}return t}getAttributesData(e){const t={};for(const r in e){const s=e[r];t[r]={version:s.version}}return t}containsNode(e){const t=e.material;for(const e in t)if(t[e]&&t[e].isNode)return!0;return!!(e.context.modelViewMatrix||e.context.modelNormalViewMatrix||e.context.getAO||e.context.getShadow)}getMaterialData(e){const t={};for(const r of this.refreshUniforms){const s=e[r];null!=s&&("object"==typeof s&&void 0!==s.clone?!0===s.isTexture?t[r]={id:s.id,version:s.version}:t[r]=s.clone():t[r]=s)}return t}equals(e,t){const{object:r,material:s,geometry:i}=e,n=this.getRenderObjectData(e);if(!0!==n.worldMatrix.equals(r.matrixWorld))return n.worldMatrix.copy(r.matrixWorld),!1;const a=n.material;for(const e in a){const t=a[e],r=s[e];if(void 0!==t.equals){if(!1===t.equals(r))return t.copy(r),!1}else if(!0===r.isTexture){if(t.id!==r.id||t.version!==r.version)return t.id=r.id,t.version=r.version,!1}else if(t!==r)return a[e]=r,!1}if(a.transmission>0){const{width:t,height:r}=e.context;if(n.bufferWidth!==t||n.bufferHeight!==r)return n.bufferWidth=t,n.bufferHeight=r,!1}const o=n.geometry,u=i.attributes,l=o.attributes,d=Object.keys(l),c=Object.keys(u);if(o.id!==i.id)return o.id=i.id,!1;if(d.length!==c.length)return n.geometry.attributes=this.getAttributesData(u),!1;for(const e of d){const t=l[e],r=u[e];if(void 0===r)return delete l[e],!1;if(t.version!==r.version)return t.version=r.version,!1}const h=i.index,p=o.indexVersion,g=h?h.version:null;if(p!==g)return o.indexVersion=g,!1;if(o.drawRange.start!==i.drawRange.start||o.drawRange.count!==i.drawRange.count)return o.drawRange.start=i.drawRange.start,o.drawRange.count=i.drawRange.count,!1;if(n.morphTargetInfluences){let e=!1;for(let t=0;t>>16,2246822507),r^=Math.imul(s^s>>>13,3266489909),s=Math.imul(s^s>>>16,2246822507),s^=Math.imul(r^r>>>13,3266489909),4294967296*(2097151&s)+(r>>>0)}const Fs=e=>Ps(e),Ds=e=>Ps(e),Us=(...e)=>Ps(e),Is=new Map([[1,"float"],[2,"vec2"],[3,"vec3"],[4,"vec4"],[9,"mat3"],[16,"mat4"]]),Os=new WeakMap;function Vs(e){return Is.get(e)}function ks(e){if(/[iu]?vec\d/.test(e))return e.startsWith("ivec")?Int32Array:e.startsWith("uvec")?Uint32Array:Float32Array;if(/mat\d/.test(e))return Float32Array;if(/float/.test(e))return Float32Array;if(/uint/.test(e))return Uint32Array;if(/int/.test(e))return Int32Array;throw new Error(`THREE.NodeUtils: Unsupported type: ${e}`)}function Gs(e){return/float|int|uint/.test(e)?1:/vec2/.test(e)?2:/vec3/.test(e)?3:/vec4/.test(e)||/mat2/.test(e)?4:/mat3/.test(e)?9:/mat4/.test(e)?16:void o("TSL: Unsupported type:",e)}function zs(e){return/float|int|uint/.test(e)?1:/vec2/.test(e)?2:/vec3/.test(e)?3:/vec4/.test(e)||/mat2/.test(e)?4:/mat3/.test(e)?12:/mat4/.test(e)?16:void o("TSL: Unsupported type:",e)}function $s(e){return/float|int|uint/.test(e)?4:/vec2/.test(e)?8:/vec3/.test(e)||/vec4/.test(e)?16:/mat2/.test(e)?8:/mat3/.test(e)||/mat4/.test(e)?16:void o("TSL: Unsupported type:",e)}function Ws(e){if(null==e)return null;const t=typeof e;return!0===e.isNode?"node":"number"===t?"float":"boolean"===t?"bool":"string"===t?"string":"function"===t?"shader":!0===e.isVector2?"vec2":!0===e.isVector3?"vec3":!0===e.isVector4?"vec4":!0===e.isMatrix2?"mat2":!0===e.isMatrix3?"mat3":!0===e.isMatrix4?"mat4":!0===e.isColor?"color":e instanceof ArrayBuffer?"ArrayBuffer":null}function Hs(o,...u){const l=o?o.slice(-4):void 0;return 1===u.length&&("vec2"===l?u=[u[0],u[0]]:"vec3"===l?u=[u[0],u[0],u[0]]:"vec4"===l&&(u=[u[0],u[0],u[0],u[0]])),"color"===o?new e(...u):"vec2"===l?new t(...u):"vec3"===l?new r(...u):"vec4"===l?new s(...u):"mat2"===l?new i(...u):"mat3"===l?new n(...u):"mat4"===l?new a(...u):"bool"===o?u[0]||!1:"float"===o||"int"===o||"uint"===o?u[0]||0:"string"===o?u[0]||"":"ArrayBuffer"===o?Xs(u[0]):null}function js(e){let t=Os.get(e);return void 0===t&&(t={},Os.set(e,t)),t}function qs(e){let t="";const r=new Uint8Array(e);for(let e=0;ee.charCodeAt(0)).buffer}var Ks=Object.freeze({__proto__:null,arrayBufferToBase64:qs,base64ToArrayBuffer:Xs,getAlignmentFromType:$s,getDataFromObject:js,getLengthFromType:Gs,getMemoryLengthFromType:zs,getTypeFromLength:Vs,getTypedArrayFromType:ks,getValueFromType:Hs,getValueType:Ws,hash:Us,hashArray:Ds,hashString:Fs});const Ys={VERTEX:"vertex",FRAGMENT:"fragment"},Qs={NONE:"none",FRAME:"frame",RENDER:"render",OBJECT:"object"},Zs={BOOLEAN:"bool",INTEGER:"int",FLOAT:"float",VECTOR2:"vec2",VECTOR3:"vec3",VECTOR4:"vec4",MATRIX2:"mat2",MATRIX3:"mat3",MATRIX4:"mat4"},Js={READ_ONLY:"readOnly",WRITE_ONLY:"writeOnly",READ_WRITE:"readWrite"},ei=["fragment","vertex"],ti=["setup","analyze","generate"],ri=[...ei,"compute"],si=["x","y","z","w"],ii={analyze:"setup",generate:"analyze"};let ni=0;class ai extends u{static get type(){return"Node"}constructor(e=null){super(),this.nodeType=e,this.updateType=Qs.NONE,this.updateBeforeType=Qs.NONE,this.updateAfterType=Qs.NONE,this.uuid=l.generateUUID(),this.version=0,this.name="",this.global=!1,this.parents=!1,this.isNode=!0,this._beforeNodes=null,this._cacheKey=null,this._cacheKeyVersion=0,Object.defineProperty(this,"id",{value:ni++})}set needsUpdate(e){!0===e&&this.version++}get type(){return this.constructor.type}onUpdate(e,t){return this.updateType=t,this.update=e.bind(this),this}onFrameUpdate(e){return this.onUpdate(e,Qs.FRAME)}onRenderUpdate(e){return this.onUpdate(e,Qs.RENDER)}onObjectUpdate(e){return this.onUpdate(e,Qs.OBJECT)}onReference(e){return this.updateReference=e.bind(this),this}updateReference(){return this}isGlobal(){return this.global}*getChildren(){for(const{childNode:e}of this._getChildren())yield e}dispose(){this.dispatchEvent({type:"dispose"})}traverse(e){e(this);for(const t of this.getChildren())t.traverse(e)}_getChildren(e=new Set){const t=[];e.add(this);for(const r of Object.getOwnPropertyNames(this)){const s=this[r];if(!0!==r.startsWith("_")&&!e.has(s))if(!0===Array.isArray(s))for(let e=0;e0&&(e.inputNodes=r)}deserialize(e){if(void 0!==e.inputNodes){const t=e.meta.nodes;for(const r in e.inputNodes)if(Array.isArray(e.inputNodes[r])){const s=[];for(const i of e.inputNodes[r])s.push(t[i]);this[r]=s}else if("object"==typeof e.inputNodes[r]){const s={};for(const i in e.inputNodes[r]){const n=e.inputNodes[r][i];s[i]=t[n]}this[r]=s}else{const s=e.inputNodes[r];this[r]=t[s]}}}toJSON(e){const{uuid:t,type:r}=this,s=void 0===e||"string"==typeof e;s&&(e={textures:{},images:{},nodes:{}});let i=e.nodes[t];function n(e){const t=[];for(const r in e){const s=e[r];delete s.metadata,t.push(s)}return t}if(void 0===i&&(i={uuid:t,type:r,meta:e,metadata:{version:4.7,type:"Node",generator:"Node.toJSON"}},!0!==s&&(e.nodes[i.uuid]=i),this.serialize(i),delete i.meta),s){const t=n(e.textures),r=n(e.images),s=n(e.nodes);t.length>0&&(i.textures=t),r.length>0&&(i.images=r),s.length>0&&(i.nodes=s)}return i}}class oi extends ai{static get type(){return"ArrayElementNode"}constructor(e,t){super(),this.node=e,this.indexNode=t,this.isArrayElementNode=!0}getNodeType(e){return this.node.getElementType(e)}generate(e){const t=this.indexNode.getNodeType(e);return`${this.node.build(e)}[ ${this.indexNode.build(e,!e.isVector(t)&&e.isInteger(t)?t:"uint")} ]`}}class ui extends ai{static get type(){return"ConvertNode"}constructor(e,t){super(),this.node=e,this.convertTo=t}getNodeType(e){const t=this.node.getNodeType(e);let r=null;for(const s of this.convertTo.split("|"))null!==r&&e.getTypeLength(t)!==e.getTypeLength(s)||(r=s);return r}serialize(e){super.serialize(e),e.convertTo=this.convertTo}deserialize(e){super.deserialize(e),this.convertTo=e.convertTo}generate(e,t){const r=this.node,s=this.getNodeType(e),i=r.build(e,s);return e.format(i,s,t)}}class li extends ai{static get type(){return"TempNode"}constructor(e=null){super(e),this.isTempNode=!0}hasDependencies(e){return e.getDataFromNode(this).usageCount>1}build(e,t){if("generate"===e.getBuildStage()){const r=e.getVectorType(this.getNodeType(e,t)),s=e.getDataFromNode(this);if(void 0!==s.propertyName)return e.format(s.propertyName,r,t);if("void"!==r&&"void"!==t&&this.hasDependencies(e)){const i=super.build(e,r),n=e.getVarFromNode(this,null,r),a=e.getPropertyName(n);return e.addLineFlowCode(`${a} = ${i}`,this),s.snippet=i,s.propertyName=a,e.format(s.propertyName,r,t)}}return super.build(e,t)}}class di extends li{static get type(){return"JoinNode"}constructor(e=[],t=null){super(t),this.nodes=e}getNodeType(e){return null!==this.nodeType?e.getVectorType(this.nodeType):e.getTypeFromLength(this.nodes.reduce((t,r)=>t+e.getTypeLength(r.getNodeType(e)),0))}generate(e,t){const r=this.getNodeType(e),s=e.getTypeLength(r),i=this.nodes,n=e.getComponentType(r),a=[];let u=0;for(const t of i){if(u>=s){o(`TSL: Length of parameters exceeds maximum length of function '${r}()' type.`);break}let i,l=t.getNodeType(e),d=e.getTypeLength(l);u+d>s&&(o(`TSL: Length of '${r}()' data exceeds maximum length of output type.`),d=s-u,l=e.getTypeFromLength(d)),u+=d,i=t.build(e,l);if(e.getComponentType(l)!==n){const t=e.getTypeFromLength(d,n);i=e.format(i,l,t)}a.push(i)}const l=`${e.getType(r)}( ${a.join(", ")} )`;return e.format(l,r,t)}}const ci=si.join("");class hi extends ai{static get type(){return"SplitNode"}constructor(e,t="x"){super(),this.node=e,this.components=t,this.isSplitNode=!0}getVectorLength(){let e=this.components.length;for(const t of this.components)e=Math.max(si.indexOf(t)+1,e);return e}getComponentType(e){return e.getComponentType(this.node.getNodeType(e))}getNodeType(e){return e.getTypeFromLength(this.components.length,this.getComponentType(e))}getScope(){return this.node.getScope()}generate(e,t){const r=this.node,s=e.getTypeLength(r.getNodeType(e));let i=null;if(s>1){let n=null;this.getVectorLength()>=s&&(n=e.getTypeFromLength(this.getVectorLength(),this.getComponentType(e)));const a=r.build(e,n);i=this.components.length===s&&this.components===ci.slice(0,this.components.length)?e.format(a,n,t):e.format(`${a}.${this.components}`,this.getNodeType(e),t)}else i=r.build(e,t);return i}serialize(e){super.serialize(e),e.components=this.components}deserialize(e){super.deserialize(e),this.components=e.components}}class pi extends li{static get type(){return"SetNode"}constructor(e,t,r){super(),this.sourceNode=e,this.components=t,this.targetNode=r}getNodeType(e){return this.sourceNode.getNodeType(e)}generate(e){const{sourceNode:t,components:r,targetNode:s}=this,i=this.getNodeType(e),n=e.getComponentType(s.getNodeType(e)),a=e.getTypeFromLength(r.length,n),o=s.build(e,a),u=t.build(e,i),l=e.getTypeLength(i),d=[];for(let e=0;e(e=>e.replace(/r|s/g,"x").replace(/g|t/g,"y").replace(/b|p/g,"z").replace(/a|q/g,"w"))(e).split("").sort().join("");ai.prototype.assign=function(...e){if(!0!==this.isStackNode)return null!==xi?xi.assign(this,...e):o("TSL: No stack defined for assign operation. Make sure the assign is inside a Fn()."),this;{const t=Ti.get("assign");return this.addToStack(t(...e))}},ai.prototype.toVarIntent=function(){return this},ai.prototype.get=function(e){return new bi(this,e)};const Ni={};function Si(e,t,r){Ni[e]=Ni[t]=Ni[r]={get(){this._cache=this._cache||{};let t=this._cache[e];return void 0===t&&(t=new hi(this,e),this._cache[e]=t),t},set(t){this[e].assign(Yi(t))}};const s=e.toUpperCase(),i=t.toUpperCase(),n=r.toUpperCase();ai.prototype["set"+s]=ai.prototype["set"+i]=ai.prototype["set"+n]=function(t){const r=vi(e);return new pi(this,r,Yi(t))},ai.prototype["flip"+s]=ai.prototype["flip"+i]=ai.prototype["flip"+n]=function(){const t=vi(e);return new gi(this,t)}}const Ai=["x","y","z","w"],Ri=["r","g","b","a"],Ei=["s","t","p","q"];for(let e=0;e<4;e++){let t=Ai[e],r=Ri[e],s=Ei[e];Si(t,r,s);for(let i=0;i<4;i++){t=Ai[e]+Ai[i],r=Ri[e]+Ri[i],s=Ei[e]+Ei[i],Si(t,r,s);for(let n=0;n<4;n++){t=Ai[e]+Ai[i]+Ai[n],r=Ri[e]+Ri[i]+Ri[n],s=Ei[e]+Ei[i]+Ei[n],Si(t,r,s);for(let a=0;a<4;a++)t=Ai[e]+Ai[i]+Ai[n]+Ai[a],r=Ri[e]+Ri[i]+Ri[n]+Ri[a],s=Ei[e]+Ei[i]+Ei[n]+Ei[a],Si(t,r,s)}}}for(let e=0;e<32;e++)Ni[e]={get(){this._cache=this._cache||{};let t=this._cache[e];return void 0===t&&(t=new oi(this,new yi(e,"uint")),this._cache[e]=t),t},set(t){this[e].assign(Yi(t))}};Object.defineProperties(ai.prototype,Ni);const wi=new WeakMap,Ci=function(e,t=null){for(const r in e)e[r]=Yi(e[r],t);return e},Mi=function(e,t=null){const r=e.length;for(let s=0;su?(o(`TSL: "${r}" parameter length exceeds limit.`),t.slice(0,u)):t}return null===t?n=(...t)=>i(new e(...Ji(d(t)))):null!==r?(r=Yi(r),n=(...s)=>i(new e(t,...Ji(d(s)),r))):n=(...r)=>i(new e(t,...Ji(d(r)))),n.setParameterLength=(...e)=>(1===e.length?a=u=e[0]:2===e.length&&([a,u]=e),n),n.setName=e=>(l=e,n),n},Li=function(e,...t){return Yi(new e(...Ji(t)))};class Pi extends ai{constructor(e,t){super(),this.shaderNode=e,this.rawInputs=t,this.isShaderCallNodeInternal=!0}getNodeType(e){return this.shaderNode.nodeType||this.getOutputNode(e).getNodeType(e)}getElementType(e){return this.getOutputNode(e).getElementType(e)}getMemberType(e,t){return this.getOutputNode(e).getMemberType(e,t)}call(e){const{shaderNode:t,rawInputs:r}=this,s=e.getNodeProperties(t),i=e.getClosestSubBuild(t.subBuilds)||"",n=i||"default";if(s[n])return s[n];const a=e.subBuildFn,o=e.fnCall;e.subBuildFn=i,e.fnCall=this;let u=null;if(t.layout){let s=wi.get(e.constructor);void 0===s&&(s=new WeakMap,wi.set(e.constructor,s));let i=s.get(t);void 0===i&&(i=Yi(e.buildFunctionNode(t)),s.set(t,i)),e.addInclude(i);const n=r?function(e){let t;Zi(e);t=e[0]&&(e[0].isNode||Object.getPrototypeOf(e[0])!==Object.prototype)?[...e]:e[0];return t}(r):null;u=Yi(i.call(n))}else{const s=new Proxy(e,{get:(e,t,r)=>{let s;return s=Symbol.iterator===t?function*(){yield}:Reflect.get(e,t,r),s}}),i=r?function(e){let t=0;return Zi(e),new Proxy(e,{get:(r,s,i)=>{let n;if("length"===s)return n=e.length,n;if(Symbol.iterator===s)n=function*(){for(const t of e)yield Yi(t)};else{if(e.length>0)if(Object.getPrototypeOf(e[0])===Object.prototype){const r=e[0];n=void 0===r[s]?r[t++]:Reflect.get(r,s,i)}else e[0]instanceof ai&&(n=void 0===e[s]?e[t++]:Reflect.get(e,s,i));else n=Reflect.get(r,s,i);n=Yi(n)}return n}})}(r):null,n=Array.isArray(r)?r.length>0:null!==r,a=t.jsFunc,o=n||a.length>1?a(i,s):a(s);u=Yi(o)}return e.subBuildFn=a,e.fnCall=o,t.once&&(s[n]=u),u}setupOutput(e){return e.addStack(),e.stack.outputNode=this.call(e),e.removeStack()}getOutputNode(e){const t=e.getNodeProperties(this),r=e.getSubBuildOutput(this);return t[r]=t[r]||this.setupOutput(e),t[r].subBuild=e.getClosestSubBuild(this),t[r]}build(e,t=null){let r=null;const s=e.getBuildStage(),i=e.getNodeProperties(this),n=e.getSubBuildOutput(this),a=this.getOutputNode(e),o=e.fnCall;if(e.fnCall=this,"setup"===s){const t=e.getSubBuildProperty("initialized",this);if(!0!==i[t]&&(i[t]=!0,i[n]=this.getOutputNode(e),i[n].build(e),this.shaderNode.subBuilds))for(const t of e.chaining){const r=e.getDataFromNode(t,"any");r.subBuilds=r.subBuilds||new Set;for(const e of this.shaderNode.subBuilds)r.subBuilds.add(e)}r=i[n]}else"analyze"===s?a.build(e,t):"generate"===s&&(r=a.build(e,t)||"");return e.fnCall=o,r}}class Fi extends ai{constructor(e,t){super(t),this.jsFunc=e,this.layout=null,this.global=!0,this.once=!1}setLayout(e){return this.layout=e,this}getLayout(){return this.layout}call(e=null){return new Pi(this,e)}setup(){return this.call()}}const Di=[!1,!0],Ui=[0,1,2,3],Ii=[-1,-2],Oi=[.5,1.5,1/3,1e-6,1e6,Math.PI,2*Math.PI,1/Math.PI,2/Math.PI,1/(2*Math.PI),Math.PI/2],Vi=new Map;for(const e of Di)Vi.set(e,new yi(e));const ki=new Map;for(const e of Ui)ki.set(e,new yi(e,"uint"));const Gi=new Map([...ki].map(e=>new yi(e.value,"int")));for(const e of Ii)Gi.set(e,new yi(e,"int"));const zi=new Map([...Gi].map(e=>new yi(e.value)));for(const e of Oi)zi.set(e,new yi(e));for(const e of Oi)zi.set(-e,new yi(-e));const $i={bool:Vi,uint:ki,ints:Gi,float:zi},Wi=new Map([...Vi,...zi]),Hi=(e,t)=>Wi.has(e)?Wi.get(e):!0===e.isNode?e:new yi(e,t),ji=function(e,t=null){return(...r)=>{for(const t of r)if(void 0===t)return o(`TSL: Invalid parameter for the type "${e}".`),Yi(new yi(0,e));if((0===r.length||!["bool","float","int","uint"].includes(e)&&r.every(e=>{const t=typeof e;return"object"!==t&&"function"!==t}))&&(r=[Hs(e,...r)]),1===r.length&&null!==t&&t.has(r[0]))return Qi(t.get(r[0]));if(1===r.length){const t=Hi(r[0],e);return t.nodeType===e?Qi(t):Qi(new ui(t,e))}const s=r.map(e=>Hi(e));return Qi(new di(s,e))}},qi=e=>"object"==typeof e&&null!==e?e.value:e,Xi=e=>null!=e?e.nodeType||e.convertTo||("string"==typeof e?e:null):null;function Ki(e,t){return new Fi(e,t)}const Yi=(e,t=null)=>function(e,t=null){const r=Ws(e);return"node"===r?e:null===t&&("float"===r||"boolean"===r)||r&&"shader"!==r&&"string"!==r?Yi(Hi(e,t)):"shader"===r?e.isFn?e:an(e):e}(e,t),Qi=(e,t=null)=>Yi(e,t).toVarIntent(),Zi=(e,t=null)=>new Ci(e,t),Ji=(e,t=null)=>new Mi(e,t),en=(e,t=null,r=null,s=null)=>new Bi(e,t,r,s),tn=(e,...t)=>new Li(e,...t),rn=(e,t=null,r=null,s={})=>new Bi(e,t,r,{...s,intent:!0});let sn=0;class nn extends ai{constructor(e,t=null){super();let r=null;null!==t&&("object"==typeof t?r=t.return:("string"==typeof t?r=t:o("TSL: Invalid layout type."),t=null)),this.shaderNode=new Ki(e,r),null!==t&&this.setLayout(t),this.isFn=!0}setLayout(e){const t=this.shaderNode.nodeType;if("object"!=typeof e.inputs){const r={name:"fn"+sn++,type:t,inputs:[]};for(const t in e)"return"!==t&&r.inputs.push({name:t,type:e[t]});e=r}return this.shaderNode.setLayout(e),this}getNodeType(e){return this.shaderNode.getNodeType(e)||"float"}call(...e){const t=this.shaderNode.call(e);return"void"===this.shaderNode.nodeType&&t.toStack(),t.toVarIntent()}once(e=null){return this.shaderNode.once=!0,this.shaderNode.subBuilds=e,this}generate(e){const t=this.getNodeType(e);return o('TSL: "Fn()" was declared but not invoked. Try calling it like "Fn()( ...params )".'),e.generateConst(t)}}function an(e,t=null){const r=new nn(e,t);return new Proxy(()=>{},{apply:(e,t,s)=>r.call(...s),get:(e,t,s)=>Reflect.get(r,t,s),set:(e,t,s,i)=>Reflect.set(r,t,s,i)})}const on=e=>{xi=e},un=()=>xi,ln=(...e)=>xi.If(...e);function dn(e){return xi&&xi.addToStack(e),e}_i("toStack",dn);const cn=new ji("color"),hn=new ji("float",$i.float),pn=new ji("int",$i.ints),gn=new ji("uint",$i.uint),mn=new ji("bool",$i.bool),fn=new ji("vec2"),yn=new ji("ivec2"),bn=new ji("uvec2"),xn=new ji("bvec2"),Tn=new ji("vec3"),_n=new ji("ivec3"),vn=new ji("uvec3"),Nn=new ji("bvec3"),Sn=new ji("vec4"),An=new ji("ivec4"),Rn=new ji("uvec4"),En=new ji("bvec4"),wn=new ji("mat2"),Cn=new ji("mat3"),Mn=new ji("mat4");_i("toColor",cn),_i("toFloat",hn),_i("toInt",pn),_i("toUint",gn),_i("toBool",mn),_i("toVec2",fn),_i("toIVec2",yn),_i("toUVec2",bn),_i("toBVec2",xn),_i("toVec3",Tn),_i("toIVec3",_n),_i("toUVec3",vn),_i("toBVec3",Nn),_i("toVec4",Sn),_i("toIVec4",An),_i("toUVec4",Rn),_i("toBVec4",En),_i("toMat2",wn),_i("toMat3",Cn),_i("toMat4",Mn);const Bn=en(oi).setParameterLength(2),Ln=(e,t)=>Yi(new ui(Yi(e),t));_i("element",Bn),_i("convert",Ln);_i("append",e=>(d("TSL: .append() has been renamed to .toStack()."),dn(e)));class Pn extends ai{static get type(){return"PropertyNode"}constructor(e,t=null,r=!1){super(e),this.name=t,this.varying=r,this.isPropertyNode=!0,this.global=!0}customCacheKey(){return Fs(this.type+":"+(this.name||"")+":"+(this.varying?"1":"0"))}getHash(e){return this.name||super.getHash(e)}generate(e){let t;return!0===this.varying?(t=e.getVaryingFromNode(this,this.name),t.needsInterpolation=!0):t=e.getVarFromNode(this,this.name),e.getPropertyName(t)}}const Fn=(e,t)=>Yi(new Pn(e,t)),Dn=(e,t)=>Yi(new Pn(e,t,!0)),Un=tn(Pn,"vec4","DiffuseColor"),In=tn(Pn,"vec3","DiffuseContribution"),On=tn(Pn,"vec3","EmissiveColor"),Vn=tn(Pn,"float","Roughness"),kn=tn(Pn,"float","Metalness"),Gn=tn(Pn,"float","Clearcoat"),zn=tn(Pn,"float","ClearcoatRoughness"),$n=tn(Pn,"vec3","Sheen"),Wn=tn(Pn,"float","SheenRoughness"),Hn=tn(Pn,"float","Iridescence"),jn=tn(Pn,"float","IridescenceIOR"),qn=tn(Pn,"float","IridescenceThickness"),Xn=tn(Pn,"float","AlphaT"),Kn=tn(Pn,"float","Anisotropy"),Yn=tn(Pn,"vec3","AnisotropyT"),Qn=tn(Pn,"vec3","AnisotropyB"),Zn=tn(Pn,"color","SpecularColor"),Jn=tn(Pn,"color","SpecularColorBlended"),ea=tn(Pn,"float","SpecularF90"),ta=tn(Pn,"float","Shininess"),ra=tn(Pn,"vec4","Output"),sa=tn(Pn,"float","dashSize"),ia=tn(Pn,"float","gapSize"),na=tn(Pn,"float","pointWidth"),aa=tn(Pn,"float","IOR"),oa=tn(Pn,"float","Transmission"),ua=tn(Pn,"float","Thickness"),la=tn(Pn,"float","AttenuationDistance"),da=tn(Pn,"color","AttenuationColor"),ca=tn(Pn,"float","Dispersion");class ha extends ai{static get type(){return"UniformGroupNode"}constructor(e,t=!1,r=1){super("string"),this.name=e,this.shared=t,this.order=r,this.isUniformGroup=!0}serialize(e){super.serialize(e),e.name=this.name,e.version=this.version,e.shared=this.shared}deserialize(e){super.deserialize(e),this.name=e.name,this.version=e.version,this.shared=e.shared}}const pa=e=>new ha(e),ga=(e,t=0)=>new ha(e,!0,t),ma=ga("frame"),fa=ga("render"),ya=pa("object");class ba extends mi{static get type(){return"UniformNode"}constructor(e,t=null){super(e,t),this.isUniformNode=!0,this.name="",this.groupNode=ya}setName(e){return this.name=e,this}label(e){return d('TSL: "label()" has been deprecated. Use "setName()" instead.'),this.setName(e)}setGroup(e){return this.groupNode=e,this}getGroup(){return this.groupNode}getUniformHash(e){return this.getHash(e)}onUpdate(e,t){return e=e.bind(this),super.onUpdate(t=>{const r=e(t,this);void 0!==r&&(this.value=r)},t)}getInputType(e){let t=super.getInputType(e);return"bool"===t&&(t="uint"),t}generate(e,t){const r=this.getNodeType(e),s=this.getUniformHash(e);let i=e.getNodeFromHash(s);void 0===i&&(e.setHashNode(this,s),i=this);const n=i.getInputType(e),a=e.getUniformFromNode(i,n,e.shaderStage,this.name||e.context.nodeName),o=e.getPropertyName(a);void 0!==e.context.nodeName&&delete e.context.nodeName;let u=o;if("bool"===r){const t=e.getDataFromNode(this);let s=t.propertyName;if(void 0===s){const i=e.getVarFromNode(this,null,"bool");s=e.getPropertyName(i),t.propertyName=s,u=e.format(o,n,r),e.addLineFlowCode(`${s} = ${u}`,this)}u=s}return e.format(u,r,t)}}const xa=(e,t)=>{const r=Xi(t||e);if(r===e&&(e=Hs(r)),e&&!0===e.isNode){let t=e.value;e.traverse(e=>{!0===e.isConstNode&&(t=e.value)}),e=t}return Yi(new ba(e,r))};class Ta extends li{static get type(){return"ArrayNode"}constructor(e,t,r=null){super(e),this.count=t,this.values=r,this.isArrayNode=!0}getArrayCount(){return this.count}getNodeType(e){return null===this.nodeType&&(this.nodeType=this.values[0].getNodeType(e)),this.nodeType}getElementType(e){return this.getNodeType(e)}generate(e){const t=this.getNodeType(e);return e.generateArray(t,this.count,this.values)}}const _a=(...e)=>{let t;if(1===e.length){const r=e[0];t=new Ta(null,r.length,r)}else{const r=e[0],s=e[1];t=new Ta(r,s)}return Yi(t)};_i("toArray",(e,t)=>_a(Array(t).fill(e)));class va extends li{static get type(){return"AssignNode"}constructor(e,t){super(),this.targetNode=e,this.sourceNode=t,this.isAssignNode=!0}hasDependencies(){return!1}getNodeType(e,t){return"void"!==t?this.targetNode.getNodeType(e):"void"}needsSplitAssign(e){const{targetNode:t}=this;if(!1===e.isAvailable("swizzleAssign")&&t.isSplitNode&&t.components.length>1){const r=e.getTypeLength(t.node.getNodeType(e));return si.join("").slice(0,r)!==t.components}return!1}setup(e){const{targetNode:t,sourceNode:r}=this,s=t.getScope();e.getDataFromNode(s).assign=!0;const i=e.getNodeProperties(this);i.sourceNode=r,i.targetNode=t.context({assign:!0})}generate(e,t){const{targetNode:r,sourceNode:s}=e.getNodeProperties(this),i=this.needsSplitAssign(e),n=r.build(e),a=r.getNodeType(e),o=s.build(e,a),u=s.getNodeType(e),l=e.getDataFromNode(this);let d;if(!0===l.initialized)"void"!==t&&(d=n);else if(i){const s=e.getVarFromNode(this,null,a),i=e.getPropertyName(s);e.addLineFlowCode(`${i} = ${o}`,this);const u=r.node,l=u.node.context({assign:!0}).build(e);for(let t=0;t{const s=r.type;let i;return i="pointer"===s?"&"+t.build(e):t.build(e,s),i};if(Array.isArray(i)){if(i.length>s.length)o("TSL: The number of provided parameters exceeds the expected number of inputs in 'Fn()'."),i.length=s.length;else if(i.length(t=t.length>1||t[0]&&!0===t[0].isNode?Ji(t):Zi(t[0]),new Sa(Yi(e),t));_i("call",Aa);const Ra={"==":"equal","!=":"notEqual","<":"lessThan",">":"greaterThan","<=":"lessThanEqual",">=":"greaterThanEqual","%":"mod"};class Ea extends li{static get type(){return"OperatorNode"}constructor(e,t,r,...s){if(super(),s.length>0){let i=new Ea(e,t,r);for(let t=0;t>"===r||"<<"===r)return e.getIntegerType(n);if("!"===r||"&&"===r||"||"===r||"^^"===r)return"bool";if("=="===r||"!="===r||"<"===r||">"===r||"<="===r||">="===r){const t=Math.max(e.getTypeLength(n),e.getTypeLength(a));return t>1?`bvec${t}`:"bool"}if(e.isMatrix(n)){if("float"===a)return n;if(e.isVector(a))return e.getVectorFromMatrix(n);if(e.isMatrix(a))return n}else if(e.isMatrix(a)){if("float"===n)return a;if(e.isVector(n))return e.getVectorFromMatrix(a)}return e.getTypeLength(a)>e.getTypeLength(n)?a:n}generate(e,t){const r=this.op,{aNode:s,bNode:i}=this,n=this.getNodeType(e,t);let a=null,o=null;"void"!==n?(a=s.getNodeType(e),o=i?i.getNodeType(e):null,"<"===r||">"===r||"<="===r||">="===r||"=="===r||"!="===r?e.isVector(a)?o=a:e.isVector(o)?a=o:a!==o&&(a=o="float"):">>"===r||"<<"===r?(a=n,o=e.changeComponentType(o,"uint")):"%"===r?(a=n,o=e.isInteger(a)&&e.isInteger(o)?o:a):e.isMatrix(a)?"float"===o?o="float":e.isVector(o)?o=e.getVectorFromMatrix(a):e.isMatrix(o)||(a=o=n):a=e.isMatrix(o)?"float"===a?"float":e.isVector(a)?e.getVectorFromMatrix(o):o=n:o=n):a=o=n;const u=s.build(e,a),l=i?i.build(e,o):null,d=e.getFunctionOperator(r);if("void"!==t){const s=e.renderer.coordinateSystem===c;if("=="===r||"!="===r||"<"===r||">"===r||"<="===r||">="===r)return s&&e.isVector(a)?e.format(`${this.getOperatorMethod(e,t)}( ${u}, ${l} )`,n,t):e.format(`( ${u} ${r} ${l} )`,n,t);if("%"===r)return e.isInteger(o)?e.format(`( ${u} % ${l} )`,n,t):e.format(`${this.getOperatorMethod(e,n)}( ${u}, ${l} )`,n,t);if("!"===r||"~"===r)return e.format(`(${r}${u})`,a,t);if(d)return e.format(`${d}( ${u}, ${l} )`,n,t);if(e.isMatrix(a)&&"float"===o)return e.format(`( ${l} ${r} ${u} )`,n,t);if("float"===a&&e.isMatrix(o))return e.format(`${u} ${r} ${l}`,n,t);{let i=`( ${u} ${r} ${l} )`;return!s&&"bool"===n&&e.isVector(a)&&e.isVector(o)&&(i=`all${i}`),e.format(i,n,t)}}if("void"!==a)return d?e.format(`${d}( ${u}, ${l} )`,n,t):e.isMatrix(a)&&"float"===o?e.format(`${l} ${r} ${u}`,n,t):e.format(`${u} ${r} ${l}`,n,t)}serialize(e){super.serialize(e),e.op=this.op}deserialize(e){super.deserialize(e),this.op=e.op}}const wa=rn(Ea,"+").setParameterLength(2,1/0).setName("add"),Ca=rn(Ea,"-").setParameterLength(2,1/0).setName("sub"),Ma=rn(Ea,"*").setParameterLength(2,1/0).setName("mul"),Ba=rn(Ea,"/").setParameterLength(2,1/0).setName("div"),La=rn(Ea,"%").setParameterLength(2).setName("mod"),Pa=rn(Ea,"==").setParameterLength(2).setName("equal"),Fa=rn(Ea,"!=").setParameterLength(2).setName("notEqual"),Da=rn(Ea,"<").setParameterLength(2).setName("lessThan"),Ua=rn(Ea,">").setParameterLength(2).setName("greaterThan"),Ia=rn(Ea,"<=").setParameterLength(2).setName("lessThanEqual"),Oa=rn(Ea,">=").setParameterLength(2).setName("greaterThanEqual"),Va=rn(Ea,"&&").setParameterLength(2,1/0).setName("and"),ka=rn(Ea,"||").setParameterLength(2,1/0).setName("or"),Ga=rn(Ea,"!").setParameterLength(1).setName("not"),za=rn(Ea,"^^").setParameterLength(2).setName("xor"),$a=rn(Ea,"&").setParameterLength(2).setName("bitAnd"),Wa=rn(Ea,"~").setParameterLength(1).setName("bitNot"),Ha=rn(Ea,"|").setParameterLength(2).setName("bitOr"),ja=rn(Ea,"^").setParameterLength(2).setName("bitXor"),qa=rn(Ea,"<<").setParameterLength(2).setName("shiftLeft"),Xa=rn(Ea,">>").setParameterLength(2).setName("shiftRight"),Ka=an(([e])=>(e.addAssign(1),e)),Ya=an(([e])=>(e.subAssign(1),e)),Qa=an(([e])=>{const t=pn(e).toConst();return e.addAssign(1),t}),Za=an(([e])=>{const t=pn(e).toConst();return e.subAssign(1),t});_i("add",wa),_i("sub",Ca),_i("mul",Ma),_i("div",Ba),_i("mod",La),_i("equal",Pa),_i("notEqual",Fa),_i("lessThan",Da),_i("greaterThan",Ua),_i("lessThanEqual",Ia),_i("greaterThanEqual",Oa),_i("and",Va),_i("or",ka),_i("not",Ga),_i("xor",za),_i("bitAnd",$a),_i("bitNot",Wa),_i("bitOr",Ha),_i("bitXor",ja),_i("shiftLeft",qa),_i("shiftRight",Xa),_i("incrementBefore",Ka),_i("decrementBefore",Ya),_i("increment",Qa),_i("decrement",Za);const Ja=(e,t)=>(d('TSL: "modInt()" is deprecated. Use "mod( int( ... ) )" instead.'),La(pn(e),pn(t)));_i("modInt",Ja);class eo extends li{static get type(){return"MathNode"}constructor(e,t,r=null,s=null){if(super(),(e===eo.MAX||e===eo.MIN)&&arguments.length>3){let i=new eo(e,t,r);for(let t=2;tn&&i>a?t:n>a?r:a>i?s:t}getNodeType(e){const t=this.method;return t===eo.LENGTH||t===eo.DISTANCE||t===eo.DOT?"float":t===eo.CROSS?"vec3":t===eo.ALL||t===eo.ANY?"bool":t===eo.EQUALS?e.changeComponentType(this.aNode.getNodeType(e),"bool"):this.getInputType(e)}setup(e){const{aNode:t,bNode:r,method:s}=this;let i=null;if(s===eo.ONE_MINUS)i=Ca(1,t);else if(s===eo.RECIPROCAL)i=Ba(1,t);else if(s===eo.DIFFERENCE)i=wo(Ca(t,r));else if(s===eo.TRANSFORM_DIRECTION){let s=t,n=r;e.isMatrix(s.getNodeType(e))?n=Sn(Tn(n),0):s=Sn(Tn(s),0);const a=Ma(s,n).xyz;i=To(a)}return null!==i?i:super.setup(e)}generate(e,t){if(e.getNodeProperties(this).outputNode)return super.generate(e,t);let r=this.method;const s=this.getNodeType(e),i=this.getInputType(e),n=this.aNode,a=this.bNode,o=this.cNode,u=e.renderer.coordinateSystem;if(r===eo.NEGATE)return e.format("( - "+n.build(e,i)+" )",s,t);{const l=[];return r===eo.CROSS?l.push(n.build(e,s),a.build(e,s)):u===c&&r===eo.STEP?l.push(n.build(e,1===e.getTypeLength(n.getNodeType(e))?"float":i),a.build(e,i)):u!==c||r!==eo.MIN&&r!==eo.MAX?r===eo.REFRACT?l.push(n.build(e,i),a.build(e,i),o.build(e,"float")):r===eo.MIX?l.push(n.build(e,i),a.build(e,i),o.build(e,1===e.getTypeLength(o.getNodeType(e))?"float":i)):(u===h&&r===eo.ATAN&&null!==a&&(r="atan2"),"fragment"===e.shaderStage||r!==eo.DFDX&&r!==eo.DFDY||(d(`TSL: '${r}' is not supported in the ${e.shaderStage} stage.`),r="/*"+r+"*/"),l.push(n.build(e,i)),null!==a&&l.push(a.build(e,i)),null!==o&&l.push(o.build(e,i))):l.push(n.build(e,i),a.build(e,1===e.getTypeLength(a.getNodeType(e))?"float":i)),e.format(`${e.getMethod(r,s)}( ${l.join(", ")} )`,s,t)}}serialize(e){super.serialize(e),e.method=this.method}deserialize(e){super.deserialize(e),this.method=e.method}}eo.ALL="all",eo.ANY="any",eo.RADIANS="radians",eo.DEGREES="degrees",eo.EXP="exp",eo.EXP2="exp2",eo.LOG="log",eo.LOG2="log2",eo.SQRT="sqrt",eo.INVERSE_SQRT="inversesqrt",eo.FLOOR="floor",eo.CEIL="ceil",eo.NORMALIZE="normalize",eo.FRACT="fract",eo.SIN="sin",eo.COS="cos",eo.TAN="tan",eo.ASIN="asin",eo.ACOS="acos",eo.ATAN="atan",eo.ABS="abs",eo.SIGN="sign",eo.LENGTH="length",eo.NEGATE="negate",eo.ONE_MINUS="oneMinus",eo.DFDX="dFdx",eo.DFDY="dFdy",eo.ROUND="round",eo.RECIPROCAL="reciprocal",eo.TRUNC="trunc",eo.FWIDTH="fwidth",eo.TRANSPOSE="transpose",eo.DETERMINANT="determinant",eo.INVERSE="inverse",eo.EQUALS="equals",eo.MIN="min",eo.MAX="max",eo.STEP="step",eo.REFLECT="reflect",eo.DISTANCE="distance",eo.DIFFERENCE="difference",eo.DOT="dot",eo.CROSS="cross",eo.POW="pow",eo.TRANSFORM_DIRECTION="transformDirection",eo.MIX="mix",eo.CLAMP="clamp",eo.REFRACT="refract",eo.SMOOTHSTEP="smoothstep",eo.FACEFORWARD="faceforward";const to=hn(1e-6),ro=hn(1e6),so=hn(Math.PI),io=hn(2*Math.PI),no=hn(2*Math.PI),ao=hn(.5*Math.PI),oo=rn(eo,eo.ALL).setParameterLength(1),uo=rn(eo,eo.ANY).setParameterLength(1),lo=rn(eo,eo.RADIANS).setParameterLength(1),co=rn(eo,eo.DEGREES).setParameterLength(1),ho=rn(eo,eo.EXP).setParameterLength(1),po=rn(eo,eo.EXP2).setParameterLength(1),go=rn(eo,eo.LOG).setParameterLength(1),mo=rn(eo,eo.LOG2).setParameterLength(1),fo=rn(eo,eo.SQRT).setParameterLength(1),yo=rn(eo,eo.INVERSE_SQRT).setParameterLength(1),bo=rn(eo,eo.FLOOR).setParameterLength(1),xo=rn(eo,eo.CEIL).setParameterLength(1),To=rn(eo,eo.NORMALIZE).setParameterLength(1),_o=rn(eo,eo.FRACT).setParameterLength(1),vo=rn(eo,eo.SIN).setParameterLength(1),No=rn(eo,eo.COS).setParameterLength(1),So=rn(eo,eo.TAN).setParameterLength(1),Ao=rn(eo,eo.ASIN).setParameterLength(1),Ro=rn(eo,eo.ACOS).setParameterLength(1),Eo=rn(eo,eo.ATAN).setParameterLength(1,2),wo=rn(eo,eo.ABS).setParameterLength(1),Co=rn(eo,eo.SIGN).setParameterLength(1),Mo=rn(eo,eo.LENGTH).setParameterLength(1),Bo=rn(eo,eo.NEGATE).setParameterLength(1),Lo=rn(eo,eo.ONE_MINUS).setParameterLength(1),Po=rn(eo,eo.DFDX).setParameterLength(1),Fo=rn(eo,eo.DFDY).setParameterLength(1),Do=rn(eo,eo.ROUND).setParameterLength(1),Uo=rn(eo,eo.RECIPROCAL).setParameterLength(1),Io=rn(eo,eo.TRUNC).setParameterLength(1),Oo=rn(eo,eo.FWIDTH).setParameterLength(1),Vo=rn(eo,eo.TRANSPOSE).setParameterLength(1),ko=rn(eo,eo.DETERMINANT).setParameterLength(1),Go=rn(eo,eo.INVERSE).setParameterLength(1),zo=(e,t)=>(d('TSL: "equals" is deprecated. Use "equal" inside a vector instead, like: "bvec*( equal( ... ) )"'),Pa(e,t)),$o=rn(eo,eo.MIN).setParameterLength(2,1/0),Wo=rn(eo,eo.MAX).setParameterLength(2,1/0),Ho=rn(eo,eo.STEP).setParameterLength(2),jo=rn(eo,eo.REFLECT).setParameterLength(2),qo=rn(eo,eo.DISTANCE).setParameterLength(2),Xo=rn(eo,eo.DIFFERENCE).setParameterLength(2),Ko=rn(eo,eo.DOT).setParameterLength(2),Yo=rn(eo,eo.CROSS).setParameterLength(2),Qo=rn(eo,eo.POW).setParameterLength(2),Zo=e=>Ma(e,e),Jo=e=>Ma(e,e,e),eu=e=>Ma(e,e,e,e),tu=rn(eo,eo.TRANSFORM_DIRECTION).setParameterLength(2),ru=e=>Ma(Co(e),Qo(wo(e),1/3)),su=e=>Ko(e,e),iu=rn(eo,eo.MIX).setParameterLength(3),nu=(e,t=0,r=1)=>Yi(new eo(eo.CLAMP,Yi(e),Yi(t),Yi(r))),au=e=>nu(e),ou=rn(eo,eo.REFRACT).setParameterLength(3),uu=rn(eo,eo.SMOOTHSTEP).setParameterLength(3),lu=rn(eo,eo.FACEFORWARD).setParameterLength(3),du=an(([e])=>{const t=Ko(e.xy,fn(12.9898,78.233)),r=La(t,so);return _o(vo(r).mul(43758.5453))}),cu=(e,t,r)=>iu(t,r,e),hu=(e,t,r)=>uu(t,r,e),pu=(e,t)=>Ho(t,e),gu=(e,t)=>(d('TSL: "atan2" is overloaded. Use "atan" instead.'),Eo(e,t)),mu=lu,fu=yo;_i("all",oo),_i("any",uo),_i("equals",zo),_i("radians",lo),_i("degrees",co),_i("exp",ho),_i("exp2",po),_i("log",go),_i("log2",mo),_i("sqrt",fo),_i("inverseSqrt",yo),_i("floor",bo),_i("ceil",xo),_i("normalize",To),_i("fract",_o),_i("sin",vo),_i("cos",No),_i("tan",So),_i("asin",Ao),_i("acos",Ro),_i("atan",Eo),_i("abs",wo),_i("sign",Co),_i("length",Mo),_i("lengthSq",su),_i("negate",Bo),_i("oneMinus",Lo),_i("dFdx",Po),_i("dFdy",Fo),_i("round",Do),_i("reciprocal",Uo),_i("trunc",Io),_i("fwidth",Oo),_i("atan2",gu),_i("min",$o),_i("max",Wo),_i("step",pu),_i("reflect",jo),_i("distance",qo),_i("dot",Ko),_i("cross",Yo),_i("pow",Qo),_i("pow2",Zo),_i("pow3",Jo),_i("pow4",eu),_i("transformDirection",tu),_i("mix",cu),_i("clamp",nu),_i("refract",ou),_i("smoothstep",hu),_i("faceForward",lu),_i("difference",Xo),_i("saturate",au),_i("cbrt",ru),_i("transpose",Vo),_i("determinant",ko),_i("inverse",Go),_i("rand",du);class yu extends ai{static get type(){return"ConditionalNode"}constructor(e,t,r=null){super(),this.condNode=e,this.ifNode=t,this.elseNode=r}getNodeType(e){const{ifNode:t,elseNode:r}=e.getNodeProperties(this);if(void 0===t)return e.flowBuildStage(this,"setup"),this.getNodeType(e);const s=t.getNodeType(e);if(null!==r){const t=r.getNodeType(e);if(e.getTypeLength(t)>e.getTypeLength(s))return t}return s}setup(e){const t=this.condNode,r=this.ifNode.isolate(),s=this.elseNode?this.elseNode.isolate():null,i=e.context.nodeBlock;e.getDataFromNode(r).parentNodeBlock=i,null!==s&&(e.getDataFromNode(s).parentNodeBlock=i);const n=e.context.uniformFlow,a=e.getNodeProperties(this);a.condNode=t,a.ifNode=n?r:r.context({nodeBlock:r}),a.elseNode=s?n?s:s.context({nodeBlock:s}):null}generate(e,t){const r=this.getNodeType(e),s=e.getDataFromNode(this);if(void 0!==s.nodeProperty)return s.nodeProperty;const{condNode:i,ifNode:n,elseNode:a}=e.getNodeProperties(this),o=e.currentFunctionNode,u="void"!==t,l=u?Fn(r).build(e):"";s.nodeProperty=l;const c=i.build(e,"bool");if(e.context.uniformFlow&&null!==a){const s=n.build(e,r),i=a.build(e,r),o=e.getTernary(c,s,i);return e.format(o,r,t)}e.addFlowCode(`\n${e.tab}if ( ${c} ) {\n\n`).addFlowTab();let h=n.build(e,r);if(h&&(u?h=l+" = "+h+";":(h="return "+h+";",null===o&&(d("TSL: Return statement used in an inline 'Fn()'. Define a layout struct to allow return values."),h="// "+h))),e.removeFlowTab().addFlowCode(e.tab+"\t"+h+"\n\n"+e.tab+"}"),null!==a){e.addFlowCode(" else {\n\n").addFlowTab();let t=a.build(e,r);t&&(u?t=l+" = "+t+";":(t="return "+t+";",null===o&&(d("TSL: Return statement used in an inline 'Fn()'. Define a layout struct to allow return values."),t="// "+t))),e.removeFlowTab().addFlowCode(e.tab+"\t"+t+"\n\n"+e.tab+"}\n\n")}else e.addFlowCode("\n\n");return e.format(l,r,t)}}const bu=en(yu).setParameterLength(2,3);_i("select",bu);class xu extends ai{static get type(){return"ContextNode"}constructor(e=null,t={}){super(),this.isContextNode=!0,this.node=e,this.value=t}getScope(){return this.node.getScope()}getNodeType(e){return this.node.getNodeType(e)}getFlowContextData(){const e=[];return this.traverse(t=>{!0===t.isContextNode&&e.push(t.value)}),Object.assign({},...e)}getMemberType(e,t){return this.node.getMemberType(e,t)}analyze(e){const t=e.addContext(this.value);this.node.build(e),e.setContext(t)}setup(e){const t=e.addContext(this.value);this.node.build(e),e.setContext(t)}generate(e,t){const r=e.addContext(this.value),s=this.node.build(e,t);return e.setContext(r),s}}const Tu=(e=null,t={})=>{let r=e;return null!==r&&!0===r.isNode||(t=r||t,r=null),new xu(r,t)},_u=e=>Tu(e,{uniformFlow:!0}),vu=(e,t)=>Tu(e,{nodeName:t});function Nu(e,t,r=null){return Tu(r,{getShadow:({light:r,shadowColorNode:s})=>t===r?s.mul(e):s})}function Su(e,t=null){return Tu(t,{getAO:(t,{material:r})=>!0===r.transparent?t:null!==t?t.mul(e):e})}function Au(e,t){return d('TSL: "label()" has been deprecated. Use "setName()" instead.'),vu(e,t)}_i("context",Tu),_i("label",Au),_i("uniformFlow",_u),_i("setName",vu),_i("builtinShadowContext",(e,t,r)=>Nu(t,r,e)),_i("builtinAOContext",(e,t)=>Su(t,e));class Ru extends ai{static get type(){return"VarNode"}constructor(e,t=null,r=!1){super(),this.node=e,this.name=t,this.global=!0,this.isVarNode=!0,this.readOnly=r,this.parents=!0,this.intent=!1}setIntent(e){return this.intent=e,this}isIntent(e){return!0!==e.getDataFromNode(this).forceDeclaration&&this.intent}getIntent(){return this.intent}getMemberType(e,t){return this.node.getMemberType(e,t)}getElementType(e){return this.node.getElementType(e)}getNodeType(e){return this.node.getNodeType(e)}getArrayCount(e){return this.node.getArrayCount(e)}isAssign(e){return e.getDataFromNode(this).assign}build(...e){const t=e[0];if(!1===this._hasStack(t)&&"setup"===t.buildStage&&(t.context.nodeLoop||t.context.nodeBlock)){let e=!1;if(this.node.isShaderCallNodeInternal&&null===this.node.shaderNode.getLayout()&&t.fnCall&&t.fnCall.shaderNode){if(t.getDataFromNode(this.node.shaderNode).hasLoop){t.getDataFromNode(this).forceDeclaration=!0,e=!0}}const r=t.getBaseStack();e?r.addToStackBefore(this):r.addToStack(this)}return this.isIntent(t)&&!0!==this.isAssign(t)?this.node.build(...e):super.build(...e)}generate(e){const{node:t,name:r,readOnly:s}=this,{renderer:i}=e,n=!0===i.backend.isWebGPUBackend;let a=!1,u=!1;s&&(a=e.isDeterministic(t),u=n?s:a);const l=this.getNodeType(e);if("void"==l){!0!==this.isIntent(e)&&o('TSL: ".toVar()" can not be used with void type.');return t.build(e)}const d=e.getVectorType(l),c=t.build(e,d),h=e.getVarFromNode(this,r,d,void 0,u),p=e.getPropertyName(h);let g=p;if(u)if(n)g=a?`const ${p}`:`let ${p}`;else{const r=t.getArrayCount(e);g=`const ${e.getVar(h.type,p,r)}`}return e.addLineFlowCode(`${g} = ${c}`,this),p}_hasStack(e){return void 0!==e.getDataFromNode(this).stack}}const Eu=en(Ru),wu=(e,t=null)=>Eu(e,t).toStack(),Cu=(e,t=null)=>Eu(e,t,!0).toStack(),Mu=e=>Eu(e).setIntent(!0).toStack();_i("toVar",wu),_i("toConst",Cu),_i("toVarIntent",Mu);class Bu extends ai{static get type(){return"SubBuild"}constructor(e,t,r=null){super(r),this.node=e,this.name=t,this.isSubBuildNode=!0}getNodeType(e){if(null!==this.nodeType)return this.nodeType;e.addSubBuild(this.name);const t=this.node.getNodeType(e);return e.removeSubBuild(),t}build(e,...t){e.addSubBuild(this.name);const r=this.node.build(e,...t);return e.removeSubBuild(),r}}const Lu=(e,t,r=null)=>Yi(new Bu(Yi(e),t,r));class Pu extends ai{static get type(){return"VaryingNode"}constructor(e,t=null){super(),this.node=e,this.name=t,this.isVaryingNode=!0,this.interpolationType=null,this.interpolationSampling=null,this.global=!0}setInterpolation(e,t=null){return this.interpolationType=e,this.interpolationSampling=t,this}getHash(e){return this.name||super.getHash(e)}getNodeType(e){return this.node.getNodeType(e)}setupVarying(e){const t=e.getNodeProperties(this);let r=t.varying;if(void 0===r){const s=this.name,i=this.getNodeType(e),n=this.interpolationType,a=this.interpolationSampling;t.varying=r=e.getVaryingFromNode(this,s,i,n,a),t.node=Lu(this.node,"VERTEX")}return r.needsInterpolation||(r.needsInterpolation="fragment"===e.shaderStage),r}setup(e){this.setupVarying(e),e.flowNodeFromShaderStage(Ys.VERTEX,this.node)}analyze(e){this.setupVarying(e),e.flowNodeFromShaderStage(Ys.VERTEX,this.node)}generate(e){const t=e.getSubBuildProperty("property",e.currentStack),r=e.getNodeProperties(this),s=this.setupVarying(e);if(void 0===r[t]){const i=this.getNodeType(e),n=e.getPropertyName(s,Ys.VERTEX);e.flowNodeFromShaderStage(Ys.VERTEX,r.node,i,n),r[t]=n}return e.getPropertyName(s)}}const Fu=en(Pu).setParameterLength(1,2),Du=e=>Fu(e);_i("toVarying",Fu),_i("toVertexStage",Du),_i("varying",(...e)=>(d("TSL: .varying() has been renamed to .toVarying()."),Fu(...e))),_i("vertexStage",(...e)=>(d("TSL: .vertexStage() has been renamed to .toVertexStage()."),Fu(...e)));const Uu=an(([e])=>{const t=e.mul(.9478672986).add(.0521327014).pow(2.4),r=e.mul(.0773993808),s=e.lessThanEqual(.04045);return iu(t,r,s)}).setLayout({name:"sRGBTransferEOTF",type:"vec3",inputs:[{name:"color",type:"vec3"}]}),Iu=an(([e])=>{const t=e.pow(.41666).mul(1.055).sub(.055),r=e.mul(12.92),s=e.lessThanEqual(.0031308);return iu(t,r,s)}).setLayout({name:"sRGBTransferOETF",type:"vec3",inputs:[{name:"color",type:"vec3"}]}),Ou="WorkingColorSpace";class Vu extends li{static get type(){return"ColorSpaceNode"}constructor(e,t,r){super("vec4"),this.colorNode=e,this.source=t,this.target=r}resolveColorSpace(e,t){return t===Ou?p.workingColorSpace:"OutputColorSpace"===t?e.context.outputColorSpace||e.renderer.outputColorSpace:t}setup(e){const{colorNode:t}=this,r=this.resolveColorSpace(e,this.source),s=this.resolveColorSpace(e,this.target);let i=t;return!1!==p.enabled&&r!==s&&r&&s?(p.getTransfer(r)===g&&(i=Sn(Uu(i.rgb),i.a)),p.getPrimaries(r)!==p.getPrimaries(s)&&(i=Sn(Cn(p._getMatrix(new n,r,s)).mul(i.rgb),i.a)),p.getTransfer(s)===g&&(i=Sn(Iu(i.rgb),i.a)),i):i}}const ku=(e,t)=>Yi(new Vu(Yi(e),Ou,t)),Gu=(e,t)=>Yi(new Vu(Yi(e),t,Ou));_i("workingToColorSpace",ku),_i("colorSpaceToWorking",Gu);let zu=class extends oi{static get type(){return"ReferenceElementNode"}constructor(e,t){super(e,t),this.referenceNode=e,this.isReferenceElementNode=!0}getNodeType(){return this.referenceNode.uniformType}generate(e){const t=super.generate(e),r=this.referenceNode.getNodeType(),s=this.getNodeType();return e.format(t,r,s)}};class $u extends ai{static get type(){return"ReferenceBaseNode"}constructor(e,t,r=null,s=null){super(),this.property=e,this.uniformType=t,this.object=r,this.count=s,this.properties=e.split("."),this.reference=r,this.node=null,this.group=null,this.updateType=Qs.OBJECT}setGroup(e){return this.group=e,this}element(e){return Yi(new zu(this,Yi(e)))}setNodeType(e){const t=xa(null,e);null!==this.group&&t.setGroup(this.group),this.node=t}getNodeType(e){return null===this.node&&(this.updateReference(e),this.updateValue()),this.node.getNodeType(e)}getValueFromReference(e=this.reference){const{properties:t}=this;let r=e[t[0]];for(let e=1;eYi(new Wu(e,t,r));class ju extends li{static get type(){return"ToneMappingNode"}constructor(e,t=Xu,r=null){super("vec3"),this._toneMapping=e,this.exposureNode=t,this.colorNode=r}customCacheKey(){return Us(this._toneMapping)}setToneMapping(e){return this._toneMapping=e,this}getToneMapping(){return this._toneMapping}setup(e){const t=this.colorNode||e.context.color,r=this._toneMapping;if(r===m)return t;let s=null;const i=e.renderer.library.getToneMappingFunction(r);return null!==i?s=Sn(i(t.rgb,this.exposureNode),t.a):(o("ToneMappingNode: Unsupported Tone Mapping configuration.",r),s=t),s}}const qu=(e,t,r)=>Yi(new ju(e,Yi(t),Yi(r))),Xu=Hu("toneMappingExposure","float");_i("toneMapping",(e,t,r)=>qu(t,r,e));const Ku=new WeakMap;function Yu(e,t){let r=Ku.get(e);return void 0===r&&(r=new b(e,t),Ku.set(e,r)),r}class Qu extends mi{static get type(){return"BufferAttributeNode"}constructor(e,t=null,r=0,s=0){super(e,t),this.isBufferNode=!0,this.bufferType=t,this.bufferStride=r,this.bufferOffset=s,this.usage=f,this.instanced=!1,this.attribute=null,this.global=!0,e&&!0===e.isBufferAttribute&&e.itemSize<=4&&(this.attribute=e,this.usage=e.usage,this.instanced=e.isInstancedBufferAttribute)}getHash(e){if(0===this.bufferStride&&0===this.bufferOffset){let t=e.globalCache.getData(this.value);return void 0===t&&(t={node:this},e.globalCache.setData(this.value,t)),t.node.uuid}return this.uuid}getNodeType(e){return null===this.bufferType&&(this.bufferType=e.getTypeFromAttribute(this.attribute)),this.bufferType}setup(e){if(null!==this.attribute)return;const t=this.getNodeType(e),r=e.getTypeLength(t),s=this.value,i=this.bufferStride||r,n=this.bufferOffset;let a;a=!0===s.isInterleavedBuffer?s:!0===s.isBufferAttribute?Yu(s.array,i):Yu(s,i);const o=new y(a,r,n);a.setUsage(this.usage),this.attribute=o,this.attribute.isInstancedBufferAttribute=this.instanced}generate(e){const t=this.getNodeType(e),r=e.getBufferAttributeFromNode(this,t),s=e.getPropertyName(r);let i=null;if("vertex"===e.shaderStage||"compute"===e.shaderStage)this.name=s,i=s;else{i=Fu(this).build(e,t)}return i}getInputType(){return"bufferAttribute"}setUsage(e){return this.usage=e,this.attribute&&!0===this.attribute.isBufferAttribute&&(this.attribute.usage=e),this}setInstanced(e){return this.instanced=e,this}}function Zu(e,t=null,r=0,s=0,i=f,n=!1){return"mat3"===t||null===t&&9===e.itemSize?Cn(new Qu(e,"vec3",9,0).setUsage(i).setInstanced(n),new Qu(e,"vec3",9,3).setUsage(i).setInstanced(n),new Qu(e,"vec3",9,6).setUsage(i).setInstanced(n)):"mat4"===t||null===t&&16===e.itemSize?Mn(new Qu(e,"vec4",16,0).setUsage(i).setInstanced(n),new Qu(e,"vec4",16,4).setUsage(i).setInstanced(n),new Qu(e,"vec4",16,8).setUsage(i).setInstanced(n),new Qu(e,"vec4",16,12).setUsage(i).setInstanced(n)):new Qu(e,t,r,s)}const Ju=(e,t=null,r=0,s=0)=>Zu(e,t,r,s),el=(e,t=null,r=0,s=0)=>Zu(e,t,r,s,f,!0),tl=(e,t=null,r=0,s=0)=>Zu(e,t,r,s,x,!0);_i("toAttribute",e=>Ju(e.value));class rl extends ai{static get type(){return"ComputeNode"}constructor(e,t){super("void"),this.isComputeNode=!0,this.computeNode=e,this.workgroupSize=t,this.count=null,this.version=1,this.name="",this.updateBeforeType=Qs.OBJECT,this.onInitFunction=null}setCount(e){return this.count=e,this}getCount(){return this.count}dispose(){this.dispatchEvent({type:"dispose"})}setName(e){return this.name=e,this}label(e){return d('TSL: "label()" has been deprecated. Use "setName()" instead.'),this.setName(e)}onInit(e){return this.onInitFunction=e,this}updateBefore({renderer:e}){e.compute(this)}setup(e){const t=this.computeNode.build(e);if(t){e.getNodeProperties(this).outputComputeNode=t.outputNode,t.outputNode=null}return t}generate(e,t){const{shaderStage:r}=e;if("compute"===r){const t=this.computeNode.build(e,"void");""!==t&&e.addLineFlowCode(t,this)}else{const r=e.getNodeProperties(this).outputComputeNode;if(r)return r.build(e,t)}}}const sl=(e,t=[64])=>{(0===t.length||t.length>3)&&o("TSL: compute() workgroupSize must have 1, 2, or 3 elements");for(let e=0;esl(e,r).setCount(t);_i("compute",il),_i("computeKernel",sl);class nl extends ai{static get type(){return"IsolateNode"}constructor(e,t=!0){super(),this.node=e,this.parent=t,this.isIsolateNode=!0}getNodeType(e){const t=e.getCache(),r=e.getCacheFromNode(this,this.parent);e.setCache(r);const s=this.node.getNodeType(e);return e.setCache(t),s}build(e,...t){const r=e.getCache(),s=e.getCacheFromNode(this,this.parent);e.setCache(s);const i=this.node.build(e,...t);return e.setCache(r),i}setParent(e){return this.parent=e,this}getParent(){return this.parent}}const al=e=>new nl(Yi(e));function ol(e,t=!0){return d('TSL: "cache()" has been deprecated. Use "isolate()" instead.'),al(e).setParent(t)}_i("cache",ol),_i("isolate",al);class ul extends ai{static get type(){return"BypassNode"}constructor(e,t){super(),this.isBypassNode=!0,this.outputNode=e,this.callNode=t}getNodeType(e){return this.outputNode.getNodeType(e)}generate(e){const t=this.callNode.build(e,"void");return""!==t&&e.addLineFlowCode(t,this),this.outputNode.build(e)}}const ll=en(ul).setParameterLength(2);_i("bypass",ll);class dl extends ai{static get type(){return"RemapNode"}constructor(e,t,r,s=hn(0),i=hn(1)){super(),this.node=e,this.inLowNode=t,this.inHighNode=r,this.outLowNode=s,this.outHighNode=i,this.doClamp=!0}setup(){const{node:e,inLowNode:t,inHighNode:r,outLowNode:s,outHighNode:i,doClamp:n}=this;let a=e.sub(t).div(r.sub(t));return!0===n&&(a=a.clamp()),a.mul(i.sub(s)).add(s)}}const cl=en(dl,null,null,{doClamp:!1}).setParameterLength(3,5),hl=en(dl).setParameterLength(3,5);_i("remap",cl),_i("remapClamp",hl);class pl extends ai{static get type(){return"ExpressionNode"}constructor(e="",t="void"){super(t),this.snippet=e}generate(e,t){const r=this.getNodeType(e),s=this.snippet;if("void"!==r)return e.format(s,r,t);e.addLineFlowCode(s,this)}}const gl=en(pl).setParameterLength(1,2),ml=e=>(e?bu(e,gl("discard")):gl("discard")).toStack();_i("discard",ml);class fl extends li{static get type(){return"RenderOutputNode"}constructor(e,t,r){super("vec4"),this.colorNode=e,this._toneMapping=t,this.outputColorSpace=r,this.isRenderOutputNode=!0}setToneMapping(e){return this._toneMapping=e,this}getToneMapping(){return this._toneMapping}setup({context:e}){let t=this.colorNode||e.color;const r=(null!==this._toneMapping?this._toneMapping:e.toneMapping)||m,s=(null!==this.outputColorSpace?this.outputColorSpace:e.outputColorSpace)||T;return r!==m&&(t=t.toneMapping(r)),s!==T&&s!==p.workingColorSpace&&(t=t.workingToColorSpace(s)),t}}const yl=(e,t=null,r=null)=>Yi(new fl(Yi(e),t,r));_i("renderOutput",yl);class bl extends li{static get type(){return"DebugNode"}constructor(e,t=null){super(),this.node=e,this.callback=t}getNodeType(e){return this.node.getNodeType(e)}setup(e){return this.node.build(e)}analyze(e){return this.node.build(e)}generate(e){const t=this.callback,r=this.node.build(e),s="--- TSL debug - "+e.shaderStage+" shader ---",i="-".repeat(s.length);let n="";return n+="// #"+s+"#\n",n+=e.flow.code.replace(/^\t/gm,"")+"\n",n+="/* ... */ "+r+" /* ... */\n",n+="// #"+i+"#\n",null!==t?t(e,n):_(n),r}}const xl=(e,t=null)=>Yi(new bl(Yi(e),t)).toStack();_i("debug",xl);class Tl{constructor(){this._renderer=null,this.currentFrame=null}get nodeFrame(){return this._renderer._nodes.nodeFrame}setRenderer(e){return this._renderer=e,this}getRenderer(){return this._renderer}init(){}begin(){}finish(){}inspect(){}computeAsync(){}beginCompute(){}finishCompute(){}beginRender(){}finishRender(){}copyTextureToTexture(){}copyFramebufferToTexture(){}}class _l extends ai{static get type(){return"InspectorNode"}constructor(e,t="",r=null){super(),this.node=e,this.name=t,this.callback=r,this.updateType=Qs.FRAME,this.isInspectorNode=!0}getName(){return this.name||this.node.name}update(e){e.renderer.inspector.inspect(this)}getNodeType(e){return this.node.getNodeType(e)}setup(e){let t=this.node;return!0===e.context.inspector&&null!==this.callback&&(t=this.callback(t)),!0!==e.renderer.backend.isWebGPUBackend&&e.renderer.inspector.constructor!==Tl&&v('TSL: ".toInspector()" is only available with WebGPU.'),t}}function vl(e,t="",r=null){return(e=Yi(e)).before(new _l(e,t,r))}_i("toInspector",vl);class Nl extends ai{static get type(){return"AttributeNode"}constructor(e,t=null){super(t),this.global=!0,this._attributeName=e}getHash(e){return this.getAttributeName(e)}getNodeType(e){let t=this.nodeType;if(null===t){const r=this.getAttributeName(e);if(e.hasGeometryAttribute(r)){const s=e.geometry.getAttribute(r);t=e.getTypeFromAttribute(s)}else t="float"}return t}setAttributeName(e){return this._attributeName=e,this}getAttributeName(){return this._attributeName}generate(e){const t=this.getAttributeName(e),r=this.getNodeType(e);if(!0===e.hasGeometryAttribute(t)){const s=e.geometry.getAttribute(t),i=e.getTypeFromAttribute(s),n=e.getAttribute(t,i);if("vertex"===e.shaderStage)return e.format(n.name,i,r);return Fu(this).build(e,r)}return d(`AttributeNode: Vertex attribute "${t}" not found on geometry.`),e.generateConst(r)}serialize(e){super.serialize(e),e.global=this.global,e._attributeName=this._attributeName}deserialize(e){super.deserialize(e),this.global=e.global,this._attributeName=e._attributeName}}const Sl=(e,t=null)=>Yi(new Nl(e,t)),Al=(e=0)=>Sl("uv"+(e>0?e:""),"vec2");class Rl extends ai{static get type(){return"TextureSizeNode"}constructor(e,t=null){super("uvec2"),this.isTextureSizeNode=!0,this.textureNode=e,this.levelNode=t}generate(e,t){const r=this.textureNode.build(e,"property"),s=null===this.levelNode?"0":this.levelNode.build(e,"int");return e.format(`${e.getMethod("textureDimensions")}( ${r}, ${s} )`,this.getNodeType(e),t)}}const El=en(Rl).setParameterLength(1,2);class wl extends ba{static get type(){return"MaxMipLevelNode"}constructor(e){super(0),this._textureNode=e,this.updateType=Qs.FRAME}get textureNode(){return this._textureNode}get texture(){return this._textureNode.value}update(){const e=this.texture,t=e.images,r=t&&t.length>0?t[0]&&t[0].image||t[0]:e.image;if(r&&void 0!==r.width){const{width:e,height:t}=r;this.value=Math.log2(Math.max(e,t))}}}const Cl=en(wl).setParameterLength(1),Ml=new N;class Bl extends ba{static get type(){return"TextureNode"}constructor(e=Ml,t=null,r=null,s=null){super(e),this.isTextureNode=!0,this.uvNode=t,this.levelNode=r,this.biasNode=s,this.compareNode=null,this.depthNode=null,this.gradNode=null,this.offsetNode=null,this.sampler=!0,this.updateMatrix=!1,this.updateType=Qs.NONE,this.referenceNode=null,this._value=e,this._matrixUniform=null,this._flipYUniform=null,this.setUpdateMatrix(null===t)}set value(e){this.referenceNode?this.referenceNode.value=e:this._value=e}get value(){return this.referenceNode?this.referenceNode.value:this._value}getUniformHash(){return this.value.uuid}getNodeType(){return!0===this.value.isDepthTexture?"float":this.value.type===S?"uvec4":this.value.type===A?"ivec4":"vec4"}getInputType(){return"texture"}getDefaultUV(){return Al(this.value.channel)}updateReference(){return this.value}getTransformedUV(e){return null===this._matrixUniform&&(this._matrixUniform=xa(this.value.matrix)),this._matrixUniform.mul(Tn(e,1)).xy}setUpdateMatrix(e){return this.updateMatrix=e,this}setupUV(e,t){return e.isFlipY()&&(null===this._flipYUniform&&(this._flipYUniform=xa(!1)),t=t.toVar(),t=this.sampler?this._flipYUniform.select(t.flipY(),t):this._flipYUniform.select(t.setY(pn(El(this,this.levelNode).y).sub(t.y).sub(1)),t)),t}setup(e){const t=e.getNodeProperties(this);t.referenceNode=this.referenceNode;const r=this.value;if(!r||!0!==r.isTexture)throw new Error("THREE.TSL: `texture( value )` function expects a valid instance of THREE.Texture().");const s=an(()=>{let t=this.uvNode;return null!==t&&!0!==e.context.forceUVContext||!e.context.getUV||(t=e.context.getUV(this,e)),t||(t=this.getDefaultUV()),!0===this.updateMatrix&&(t=this.getTransformedUV(t)),t=this.setupUV(e,t),this.updateType=null!==this._matrixUniform||null!==this._flipYUniform?Qs.OBJECT:Qs.NONE,t})();let i=this.levelNode;null===i&&e.context.getTextureLevel&&(i=e.context.getTextureLevel(this)),t.uvNode=s,t.levelNode=i,t.biasNode=this.biasNode,t.compareNode=this.compareNode,t.gradNode=this.gradNode,t.depthNode=this.depthNode,t.offsetNode=this.offsetNode}generateUV(e,t){return t.build(e,!0===this.sampler?"vec2":"ivec2")}generateOffset(e,t){return t.build(e,"ivec2")}generateSnippet(e,t,r,s,i,n,a,o,u){const l=this.value;let d;return d=i?e.generateTextureBias(l,t,r,i,n,u):o?e.generateTextureGrad(l,t,r,o,n,u):a?e.generateTextureCompare(l,t,r,a,n,u):!1===this.sampler?e.generateTextureLoad(l,t,r,s,n,u):s?e.generateTextureLevel(l,t,r,s,n,u):e.generateTexture(l,t,r,n,u),d}generate(e,t){const r=this.value,s=e.getNodeProperties(this),i=super.generate(e,"property");if(/^sampler/.test(t))return i+"_sampler";if(e.isReference(t))return i;{const n=e.getDataFromNode(this);let a=n.propertyName;if(void 0===a){const{uvNode:t,levelNode:r,biasNode:o,compareNode:u,depthNode:l,gradNode:d,offsetNode:c}=s,h=this.generateUV(e,t),p=r?r.build(e,"float"):null,g=o?o.build(e,"float"):null,m=l?l.build(e,"int"):null,f=u?u.build(e,"float"):null,y=d?[d[0].build(e,"vec2"),d[1].build(e,"vec2")]:null,b=c?this.generateOffset(e,c):null,x=e.getVarFromNode(this);a=e.getPropertyName(x);const T=this.generateSnippet(e,i,h,p,g,m,f,y,b);e.addLineFlowCode(`${a} = ${T}`,this),n.snippet=T,n.propertyName=a}let o=a;const u=this.getNodeType(e);return e.needsToWorkingColorSpace(r)&&(o=Gu(gl(o,u),r.colorSpace).setup(e).build(e,u)),e.format(o,u,t)}}setSampler(e){return this.sampler=e,this}getSampler(){return this.sampler}uv(e){return d("TextureNode: .uv() has been renamed. Use .sample() instead."),this.sample(e)}sample(e){const t=this.clone();return t.uvNode=Yi(e),t.referenceNode=this.getBase(),Yi(t)}load(e){return this.sample(e).setSampler(!1)}blur(e){const t=this.clone();t.biasNode=Yi(e).mul(Cl(t)),t.referenceNode=this.getBase();const r=t.value;return!1===t.generateMipmaps&&(r&&!1===r.generateMipmaps||r.minFilter===R||r.magFilter===R)&&(d("TSL: texture().blur() requires mipmaps and sampling. Use .generateMipmaps=true and .minFilter/.magFilter=THREE.LinearFilter in the Texture."),t.biasNode=null),Yi(t)}level(e){const t=this.clone();return t.levelNode=Yi(e),t.referenceNode=this.getBase(),Yi(t)}size(e){return El(this,e)}bias(e){const t=this.clone();return t.biasNode=Yi(e),t.referenceNode=this.getBase(),Yi(t)}getBase(){return this.referenceNode?this.referenceNode.getBase():this}compare(e){const t=this.clone();return t.compareNode=Yi(e),t.referenceNode=this.getBase(),Yi(t)}grad(e,t){const r=this.clone();return r.gradNode=[Yi(e),Yi(t)],r.referenceNode=this.getBase(),Yi(r)}depth(e){const t=this.clone();return t.depthNode=Yi(e),t.referenceNode=this.getBase(),Yi(t)}offset(e){const t=this.clone();return t.offsetNode=Yi(e),t.referenceNode=this.getBase(),Yi(t)}serialize(e){super.serialize(e),e.value=this.value.toJSON(e.meta).uuid,e.sampler=this.sampler,e.updateMatrix=this.updateMatrix,e.updateType=this.updateType}deserialize(e){super.deserialize(e),this.value=e.meta.textures[e.value],this.sampler=e.sampler,this.updateMatrix=e.updateMatrix,this.updateType=e.updateType}update(){const e=this.value,t=this._matrixUniform;null!==t&&(t.value=e.matrix),!0===e.matrixAutoUpdate&&e.updateMatrix();const r=this._flipYUniform;null!==r&&(r.value=e.image instanceof ImageBitmap&&!0===e.flipY||!0===e.isRenderTargetTexture||!0===e.isFramebufferTexture||!0===e.isDepthTexture)}clone(){const e=new this.constructor(this.value,this.uvNode,this.levelNode,this.biasNode);return e.sampler=this.sampler,e.depthNode=this.depthNode,e.compareNode=this.compareNode,e.gradNode=this.gradNode,e.offsetNode=this.offsetNode,e}}const Ll=en(Bl).setParameterLength(1,4).setName("texture"),Pl=(e=Ml,t=null,r=null,s=null)=>{let i;return e&&!0===e.isTextureNode?(i=Yi(e.clone()),i.referenceNode=e.getBase(),null!==t&&(i.uvNode=Yi(t)),null!==r&&(i.levelNode=Yi(r)),null!==s&&(i.biasNode=Yi(s))):i=Ll(e,t,r,s),i},Fl=(...e)=>Pl(...e).setSampler(!1);class Dl extends ba{static get type(){return"BufferNode"}constructor(e,t,r=0){super(e,t),this.isBufferNode=!0,this.bufferType=t,this.bufferCount=r,this.updateRanges=[]}addUpdateRange(e,t){this.updateRanges.push({start:e,count:t})}clearUpdateRanges(){this.updateRanges.length=0}getElementType(e){return this.getNodeType(e)}getInputType(){return"buffer"}}const Ul=(e,t,r)=>Yi(new Dl(e,t,r));class Il extends oi{static get type(){return"UniformArrayElementNode"}constructor(e,t){super(e,t),this.isArrayBufferElementNode=!0}generate(e){const t=super.generate(e),r=this.getNodeType(),s=this.node.getPaddedType();return e.format(t,s,r)}}class Ol extends Dl{static get type(){return"UniformArrayNode"}constructor(e,t=null){super(null),this.array=e,this.elementType=null===t?Ws(e[0]):t,this.paddedType=this.getPaddedType(),this.updateType=Qs.RENDER,this.isArrayBufferNode=!0}getNodeType(){return this.paddedType}getElementType(){return this.elementType}getPaddedType(){const e=this.elementType;let t="vec4";return"mat2"===e?t="mat2":!0===/mat/.test(e)?t="mat4":"i"===e.charAt(0)?t="ivec4":"u"===e.charAt(0)&&(t="uvec4"),t}update(){const{array:e,value:t}=this,r=this.elementType;if("float"===r||"int"===r||"uint"===r)for(let r=0;rYi(new Ol(e,t));const kl=en(class extends ai{constructor(e){super("float"),this.name=e,this.isBuiltinNode=!0}generate(){return this.name}}).setParameterLength(1);let Gl,zl;class $l extends ai{static get type(){return"ScreenNode"}constructor(e){super(),this.scope=e,this._output=null,this.isViewportNode=!0}getNodeType(){return this.scope===$l.DPR?"float":this.scope===$l.VIEWPORT?"vec4":"vec2"}getUpdateType(){let e=Qs.NONE;return this.scope!==$l.SIZE&&this.scope!==$l.VIEWPORT&&this.scope!==$l.DPR||(e=Qs.RENDER),this.updateType=e,e}update({renderer:e}){const t=e.getRenderTarget();this.scope===$l.VIEWPORT?null!==t?zl.copy(t.viewport):(e.getViewport(zl),zl.multiplyScalar(e.getPixelRatio())):this.scope===$l.DPR?this._output.value=e.getPixelRatio():null!==t?(Gl.width=t.width,Gl.height=t.height):e.getDrawingBufferSize(Gl)}setup(){const e=this.scope;let r=null;return r=e===$l.SIZE?xa(Gl||(Gl=new t)):e===$l.VIEWPORT?xa(zl||(zl=new s)):e===$l.DPR?xa(1):fn(ql.div(jl)),this._output=r,r}generate(e){if(this.scope===$l.COORDINATE){let t=e.getFragCoord();if(e.isFlipY()){const r=e.getNodeProperties(jl).outputNode.build(e);t=`${e.getType("vec2")}( ${t}.x, ${r}.y - ${t}.y )`}return t}return super.generate(e)}}$l.COORDINATE="coordinate",$l.VIEWPORT="viewport",$l.SIZE="size",$l.UV="uv",$l.DPR="dpr";const Wl=tn($l,$l.DPR),Hl=tn($l,$l.UV),jl=tn($l,$l.SIZE),ql=tn($l,$l.COORDINATE),Xl=tn($l,$l.VIEWPORT),Kl=Xl.zw,Yl=ql.sub(Xl.xy),Ql=Yl.div(Kl),Zl=an(()=>(d('TSL: "viewportResolution" is deprecated. Use "screenSize" instead.'),jl),"vec2").once()(),Jl=xa(0,"uint").setName("u_cameraIndex").setGroup(ga("cameraIndex")).toVarying("v_cameraIndex"),ed=xa("float").setName("cameraNear").setGroup(fa).onRenderUpdate(({camera:e})=>e.near),td=xa("float").setName("cameraFar").setGroup(fa).onRenderUpdate(({camera:e})=>e.far),rd=an(({camera:e})=>{let t;if(e.isArrayCamera&&e.cameras.length>0){const r=[];for(const t of e.cameras)r.push(t.projectionMatrix);t=Vl(r).setGroup(fa).setName("cameraProjectionMatrices").element(e.isMultiViewCamera?kl("gl_ViewID_OVR"):Jl).toConst("cameraProjectionMatrix")}else t=xa("mat4").setName("cameraProjectionMatrix").setGroup(fa).onRenderUpdate(({camera:e})=>e.projectionMatrix);return t}).once()(),sd=an(({camera:e})=>{let t;if(e.isArrayCamera&&e.cameras.length>0){const r=[];for(const t of e.cameras)r.push(t.projectionMatrixInverse);t=Vl(r).setGroup(fa).setName("cameraProjectionMatricesInverse").element(e.isMultiViewCamera?kl("gl_ViewID_OVR"):Jl).toConst("cameraProjectionMatrixInverse")}else t=xa("mat4").setName("cameraProjectionMatrixInverse").setGroup(fa).onRenderUpdate(({camera:e})=>e.projectionMatrixInverse);return t}).once()(),id=an(({camera:e})=>{let t;if(e.isArrayCamera&&e.cameras.length>0){const r=[];for(const t of e.cameras)r.push(t.matrixWorldInverse);t=Vl(r).setGroup(fa).setName("cameraViewMatrices").element(e.isMultiViewCamera?kl("gl_ViewID_OVR"):Jl).toConst("cameraViewMatrix")}else t=xa("mat4").setName("cameraViewMatrix").setGroup(fa).onRenderUpdate(({camera:e})=>e.matrixWorldInverse);return t}).once()(),nd=an(({camera:e})=>{let t;if(e.isArrayCamera&&e.cameras.length>0){const r=[];for(const t of e.cameras)r.push(t.matrixWorld);t=Vl(r).setGroup(fa).setName("cameraWorldMatrices").element(e.isMultiViewCamera?kl("gl_ViewID_OVR"):Jl).toConst("cameraWorldMatrix")}else t=xa("mat4").setName("cameraWorldMatrix").setGroup(fa).onRenderUpdate(({camera:e})=>e.matrixWorld);return t}).once()(),ad=an(({camera:e})=>{let t;if(e.isArrayCamera&&e.cameras.length>0){const r=[];for(const t of e.cameras)r.push(t.normalMatrix);t=Vl(r).setGroup(fa).setName("cameraNormalMatrices").element(e.isMultiViewCamera?kl("gl_ViewID_OVR"):Jl).toConst("cameraNormalMatrix")}else t=xa("mat3").setName("cameraNormalMatrix").setGroup(fa).onRenderUpdate(({camera:e})=>e.normalMatrix);return t}).once()(),od=an(({camera:e})=>{let t;if(e.isArrayCamera&&e.cameras.length>0){const s=[];for(let t=0,i=e.cameras.length;t{const r=e.cameras,s=t.array;for(let e=0,t=r.length;et.value.setFromMatrixPosition(e.matrixWorld));return t}).once()(),ud=an(({camera:e})=>{let t;if(e.isArrayCamera&&e.cameras.length>0){const r=[];for(const t of e.cameras)r.push(t.viewport);t=Vl(r,"vec4").setGroup(fa).setName("cameraViewports").element(Jl).toConst("cameraViewport")}else t=Sn(0,0,jl.x,jl.y).toConst("cameraViewport");return t}).once()(),ld=new E;class dd extends ai{static get type(){return"Object3DNode"}constructor(e,t=null){super(),this.scope=e,this.object3d=t,this.updateType=Qs.OBJECT,this.uniformNode=new ba(null)}getNodeType(){const e=this.scope;return e===dd.WORLD_MATRIX?"mat4":e===dd.POSITION||e===dd.VIEW_POSITION||e===dd.DIRECTION||e===dd.SCALE?"vec3":e===dd.RADIUS?"float":void 0}update(e){const t=this.object3d,s=this.uniformNode,i=this.scope;if(i===dd.WORLD_MATRIX)s.value=t.matrixWorld;else if(i===dd.POSITION)s.value=s.value||new r,s.value.setFromMatrixPosition(t.matrixWorld);else if(i===dd.SCALE)s.value=s.value||new r,s.value.setFromMatrixScale(t.matrixWorld);else if(i===dd.DIRECTION)s.value=s.value||new r,t.getWorldDirection(s.value);else if(i===dd.VIEW_POSITION){const i=e.camera;s.value=s.value||new r,s.value.setFromMatrixPosition(t.matrixWorld),s.value.applyMatrix4(i.matrixWorldInverse)}else if(i===dd.RADIUS){const r=e.object.geometry;null===r.boundingSphere&&r.computeBoundingSphere(),ld.copy(r.boundingSphere).applyMatrix4(t.matrixWorld),s.value=ld.radius}}generate(e){const t=this.scope;return t===dd.WORLD_MATRIX?this.uniformNode.nodeType="mat4":t===dd.POSITION||t===dd.VIEW_POSITION||t===dd.DIRECTION||t===dd.SCALE?this.uniformNode.nodeType="vec3":t===dd.RADIUS&&(this.uniformNode.nodeType="float"),this.uniformNode.build(e)}serialize(e){super.serialize(e),e.scope=this.scope}deserialize(e){super.deserialize(e),this.scope=e.scope}}dd.WORLD_MATRIX="worldMatrix",dd.POSITION="position",dd.SCALE="scale",dd.VIEW_POSITION="viewPosition",dd.DIRECTION="direction",dd.RADIUS="radius";const cd=en(dd,dd.DIRECTION).setParameterLength(1),hd=en(dd,dd.WORLD_MATRIX).setParameterLength(1),pd=en(dd,dd.POSITION).setParameterLength(1),gd=en(dd,dd.SCALE).setParameterLength(1),md=en(dd,dd.VIEW_POSITION).setParameterLength(1),fd=en(dd,dd.RADIUS).setParameterLength(1);class yd extends dd{static get type(){return"ModelNode"}constructor(e){super(e)}update(e){this.object3d=e.object,super.update(e)}}const bd=tn(yd,yd.DIRECTION),xd=tn(yd,yd.WORLD_MATRIX),Td=tn(yd,yd.POSITION),_d=tn(yd,yd.SCALE),vd=tn(yd,yd.VIEW_POSITION),Nd=tn(yd,yd.RADIUS),Sd=xa(new n).onObjectUpdate(({object:e},t)=>t.value.getNormalMatrix(e.matrixWorld)),Ad=xa(new a).onObjectUpdate(({object:e},t)=>t.value.copy(e.matrixWorld).invert()),Rd=an(e=>e.context.modelViewMatrix||Ed).once()().toVar("modelViewMatrix"),Ed=id.mul(xd),wd=an(e=>(e.context.isHighPrecisionModelViewMatrix=!0,xa("mat4").onObjectUpdate(({object:e,camera:t})=>e.modelViewMatrix.multiplyMatrices(t.matrixWorldInverse,e.matrixWorld)))).once()().toVar("highpModelViewMatrix"),Cd=an(e=>{const t=e.context.isHighPrecisionModelViewMatrix;return xa("mat3").onObjectUpdate(({object:e,camera:r})=>(!0!==t&&e.modelViewMatrix.multiplyMatrices(r.matrixWorldInverse,e.matrixWorld),e.normalMatrix.getNormalMatrix(e.modelViewMatrix)))}).once()().toVar("highpModelNormalViewMatrix"),Md=Sl("position","vec3"),Bd=Md.toVarying("positionLocal"),Ld=Md.toVarying("positionPrevious"),Pd=an(e=>xd.mul(Bd).xyz.toVarying(e.getSubBuildProperty("v_positionWorld")),"vec3").once(["POSITION"])(),Fd=an(()=>Bd.transformDirection(xd).toVarying("v_positionWorldDirection").normalize().toVar("positionWorldDirection"),"vec3").once(["POSITION"])(),Dd=an(e=>e.context.setupPositionView().toVarying("v_positionView"),"vec3").once(["POSITION"])(),Ud=an(e=>{let t;return t=e.camera.isOrthographicCamera?Tn(0,0,1):Dd.negate().toVarying("v_positionViewDirection").normalize(),t.toVar("positionViewDirection")},"vec3").once(["POSITION"])();class Id extends ai{static get type(){return"FrontFacingNode"}constructor(){super("bool"),this.isFrontFacingNode=!0}generate(e){if("fragment"!==e.shaderStage)return"true";const{material:t}=e;return t.side===w?"false":e.getFrontFacing()}}const Od=tn(Id),Vd=hn(Od).mul(2).sub(1),kd=an(([e],{material:t})=>{const r=t.side;return r===w?e=e.mul(-1):r===C&&(e=e.mul(Vd)),e}),Gd=Sl("normal","vec3"),zd=an(e=>!1===e.geometry.hasAttribute("normal")?(d('TSL: Vertex attribute "normal" not found on geometry.'),Tn(0,1,0)):Gd,"vec3").once()().toVar("normalLocal"),$d=Dd.dFdx().cross(Dd.dFdy()).normalize().toVar("normalFlat"),Wd=an(e=>{let t;return t=!0===e.material.flatShading?$d:Yd(zd).toVarying("v_normalViewGeometry").normalize(),t},"vec3").once()().toVar("normalViewGeometry"),Hd=an(e=>{let t=Wd.transformDirection(id);return!0!==e.material.flatShading&&(t=t.toVarying("v_normalWorldGeometry")),t.normalize().toVar("normalWorldGeometry")},"vec3").once()(),jd=an(({subBuildFn:e,material:t,context:r})=>{let s;return"NORMAL"===e||"VERTEX"===e?(s=Wd,!0!==t.flatShading&&(s=kd(s))):s=r.setupNormal().context({getUV:null}),s},"vec3").once(["NORMAL","VERTEX"])().toVar("normalView"),qd=jd.transformDirection(id).toVar("normalWorld"),Xd=an(({subBuildFn:e,context:t})=>{let r;return r="NORMAL"===e||"VERTEX"===e?jd:t.setupClearcoatNormal().context({getUV:null}),r},"vec3").once(["NORMAL","VERTEX"])().toVar("clearcoatNormalView"),Kd=an(([e,t=xd])=>{const r=Cn(t),s=e.div(Tn(r[0].dot(r[0]),r[1].dot(r[1]),r[2].dot(r[2])));return r.mul(s).xyz}),Yd=an(([e],t)=>{const r=t.context.modelNormalViewMatrix;if(r)return r.transformDirection(e);const s=Sd.mul(e);return id.transformDirection(s)}),Qd=an(()=>(d('TSL: "transformedNormalView" is deprecated. Use "normalView" instead.'),jd)).once(["NORMAL","VERTEX"])(),Zd=an(()=>(d('TSL: "transformedNormalWorld" is deprecated. Use "normalWorld" instead.'),qd)).once(["NORMAL","VERTEX"])(),Jd=an(()=>(d('TSL: "transformedClearcoatNormalView" is deprecated. Use "clearcoatNormalView" instead.'),Xd)).once(["NORMAL","VERTEX"])(),ec=new M,tc=new a,rc=xa(0).onReference(({material:e})=>e).onObjectUpdate(({material:e})=>e.refractionRatio),sc=xa(1).onReference(({material:e})=>e).onObjectUpdate(function({material:e,scene:t}){return e.envMap?e.envMapIntensity:t.environmentIntensity}),ic=xa(new a).onReference(function(e){return e.material}).onObjectUpdate(function({material:e,scene:t}){const r=null!==t.environment&&null===e.envMap?t.environmentRotation:e.envMapRotation;return r?(ec.copy(r),tc.makeRotationFromEuler(ec)):tc.identity(),tc}),nc=Ud.negate().reflect(jd),ac=Ud.negate().refract(jd,rc),oc=nc.transformDirection(id).toVar("reflectVector"),uc=ac.transformDirection(id).toVar("reflectVector"),lc=new B;class dc extends Bl{static get type(){return"CubeTextureNode"}constructor(e,t=null,r=null,s=null){super(e,t,r,s),this.isCubeTextureNode=!0}getInputType(){return!0===this.value.isDepthTexture?"cubeDepthTexture":"cubeTexture"}getDefaultUV(){const e=this.value;return e.mapping===L?oc:e.mapping===P?uc:(o('CubeTextureNode: Mapping "%s" not supported.',e.mapping),Tn(0,0,0))}setUpdateMatrix(){}setupUV(e,t){const r=this.value;return!0===r.isDepthTexture?e.renderer.coordinateSystem===h?Tn(t.x,t.y.negate(),t.z):t:(e.renderer.coordinateSystem!==h&&r.isRenderTargetTexture||(t=Tn(t.x.negate(),t.yz)),ic.mul(t))}generateUV(e,t){return t.build(e,!0===this.sampler?"vec3":"ivec3")}}const cc=en(dc).setParameterLength(1,4).setName("cubeTexture"),hc=(e=lc,t=null,r=null,s=null)=>{let i;return e&&!0===e.isCubeTextureNode?(i=Yi(e.clone()),i.referenceNode=e,null!==t&&(i.uvNode=Yi(t)),null!==r&&(i.levelNode=Yi(r)),null!==s&&(i.biasNode=Yi(s))):i=cc(e,t,r,s),i};class pc extends oi{static get type(){return"ReferenceElementNode"}constructor(e,t){super(e,t),this.referenceNode=e,this.isReferenceElementNode=!0}getNodeType(){return this.referenceNode.uniformType}generate(e){const t=super.generate(e),r=this.referenceNode.getNodeType(),s=this.getNodeType();return e.format(t,r,s)}}class gc extends ai{static get type(){return"ReferenceNode"}constructor(e,t,r=null,s=null){super(),this.property=e,this.uniformType=t,this.object=r,this.count=s,this.properties=e.split("."),this.reference=r,this.node=null,this.group=null,this.name=null,this.updateType=Qs.OBJECT}element(e){return Yi(new pc(this,Yi(e)))}setGroup(e){return this.group=e,this}setName(e){return this.name=e,this}label(e){return d('TSL: "label()" has been deprecated. Use "setName()" instead.'),this.setName(e)}setNodeType(e){let t=null;t=null!==this.count?Ul(null,e,this.count):Array.isArray(this.getValueFromReference())?Vl(null,e):"texture"===e?Pl(null):"cubeTexture"===e?hc(null):xa(null,e),null!==this.group&&t.setGroup(this.group),null!==this.name&&t.setName(this.name),this.node=t}getNodeType(e){return null===this.node&&(this.updateReference(e),this.updateValue()),this.node.getNodeType(e)}getValueFromReference(e=this.reference){const{properties:t}=this;let r=e[t[0]];for(let e=1;eYi(new gc(e,t,r)),fc=(e,t,r,s)=>Yi(new gc(e,t,s,r));class yc extends gc{static get type(){return"MaterialReferenceNode"}constructor(e,t,r=null){super(e,t,r),this.material=r,this.isMaterialReferenceNode=!0}updateReference(e){return this.reference=null!==this.material?this.material:e.material,this.reference}}const bc=(e,t,r=null)=>Yi(new yc(e,t,r)),xc=Al(),Tc=Dd.dFdx(),_c=Dd.dFdy(),vc=xc.dFdx(),Nc=xc.dFdy(),Sc=jd,Ac=_c.cross(Sc),Rc=Sc.cross(Tc),Ec=Ac.mul(vc.x).add(Rc.mul(Nc.x)),wc=Ac.mul(vc.y).add(Rc.mul(Nc.y)),Cc=Ec.dot(Ec).max(wc.dot(wc)),Mc=Cc.equal(0).select(0,Cc.inverseSqrt()),Bc=Ec.mul(Mc).toVar("tangentViewFrame"),Lc=wc.mul(Mc).toVar("bitangentViewFrame"),Pc=Sl("tangent","vec4"),Fc=Pc.xyz.toVar("tangentLocal"),Dc=an(({subBuildFn:e,geometry:t,material:r})=>{let s;return s="VERTEX"===e||t.hasAttribute("tangent")?Rd.mul(Sn(Fc,0)).xyz.toVarying("v_tangentView").normalize():Bc,!0!==r.flatShading&&(s=kd(s)),s},"vec3").once(["NORMAL","VERTEX"])().toVar("tangentView"),Uc=Dc.transformDirection(id).toVarying("v_tangentWorld").normalize().toVar("tangentWorld"),Ic=an(([e,t],{subBuildFn:r,material:s})=>{let i=e.mul(Pc.w).xyz;return"NORMAL"===r&&!0!==s.flatShading&&(i=i.toVarying(t)),i}).once(["NORMAL"]),Oc=Ic(Gd.cross(Pc),"v_bitangentGeometry").normalize().toVar("bitangentGeometry"),Vc=Ic(zd.cross(Fc),"v_bitangentLocal").normalize().toVar("bitangentLocal"),kc=an(({subBuildFn:e,geometry:t,material:r})=>{let s;return s="VERTEX"===e||t.hasAttribute("tangent")?Ic(jd.cross(Dc),"v_bitangentView").normalize():Lc,!0!==r.flatShading&&(s=kd(s)),s},"vec3").once(["NORMAL","VERTEX"])().toVar("bitangentView"),Gc=Ic(qd.cross(Uc),"v_bitangentWorld").normalize().toVar("bitangentWorld"),zc=Cn(Dc,kc,jd).toVar("TBNViewMatrix"),$c=Ud.mul(zc),Wc=an(()=>{let e=Qn.cross(Ud);return e=e.cross(Qn).normalize(),e=iu(e,jd,Kn.mul(Vn.oneMinus()).oneMinus().pow2().pow2()).normalize(),e}).once()(),Hc=e=>Yi(e).mul(.5).add(.5),jc=e=>Tn(e,fo(au(hn(1).sub(Ko(e,e)))));class qc extends li{static get type(){return"NormalMapNode"}constructor(e,t=null){super("vec3"),this.node=e,this.scaleNode=t,this.normalMapType=F,this.unpackNormalMode=D}setup({material:e}){const{normalMapType:t,scaleNode:r,unpackNormalMode:s}=this;let i=this.node.mul(2).sub(1);if(t===F?s===U?i=jc(i.xy):s===I?i=jc(i.yw):s!==D&&console.error(`THREE.NodeMaterial: Unexpected unpack normal mode: ${s}`):s!==D&&console.error(`THREE.NodeMaterial: Normal map type '${t}' is not compatible with unpack normal mode '${s}'`),null!==r){let t=r;!0===e.flatShading&&(t=kd(t)),i=Tn(i.xy.mul(t),i.z)}let n=null;return t===O?n=Yd(i):t===F?n=zc.mul(i).normalize():(o(`NodeMaterial: Unsupported normal map type: ${t}`),n=jd),n}}const Xc=en(qc).setParameterLength(1,2),Kc=an(({textureNode:e,bumpScale:t})=>{const r=t=>e.isolate().context({getUV:e=>t(e.uvNode||Al()),forceUVContext:!0}),s=hn(r(e=>e));return fn(hn(r(e=>e.add(e.dFdx()))).sub(s),hn(r(e=>e.add(e.dFdy()))).sub(s)).mul(t)}),Yc=an(e=>{const{surf_pos:t,surf_norm:r,dHdxy:s}=e,i=t.dFdx().normalize(),n=r,a=t.dFdy().normalize().cross(n),o=n.cross(i),u=i.dot(a).mul(Vd),l=u.sign().mul(s.x.mul(a).add(s.y.mul(o)));return u.abs().mul(r).sub(l).normalize()});class Qc extends li{static get type(){return"BumpMapNode"}constructor(e,t=null){super("vec3"),this.textureNode=e,this.scaleNode=t}setup(){const e=null!==this.scaleNode?this.scaleNode:1,t=Kc({textureNode:this.textureNode,bumpScale:e});return Yc({surf_pos:Dd,surf_norm:jd,dHdxy:t})}}const Zc=en(Qc).setParameterLength(1,2),Jc=new Map;class eh extends ai{static get type(){return"MaterialNode"}constructor(e){super(),this.scope=e}getCache(e,t){let r=Jc.get(e);return void 0===r&&(r=bc(e,t),Jc.set(e,r)),r}getFloat(e){return this.getCache(e,"float")}getColor(e){return this.getCache(e,"color")}getTexture(e){return this.getCache("map"===e?"map":e+"Map","texture")}setup(e){const t=e.context.material,r=this.scope;let s=null;if(r===eh.COLOR){const e=void 0!==t.color?this.getColor(r):Tn();s=t.map&&!0===t.map.isTexture?e.mul(this.getTexture("map")):e}else if(r===eh.OPACITY){const e=this.getFloat(r);s=t.alphaMap&&!0===t.alphaMap.isTexture?e.mul(this.getTexture("alpha")):e}else if(r===eh.SPECULAR_STRENGTH)s=t.specularMap&&!0===t.specularMap.isTexture?this.getTexture("specular").r:hn(1);else if(r===eh.SPECULAR_INTENSITY){const e=this.getFloat(r);s=t.specularIntensityMap&&!0===t.specularIntensityMap.isTexture?e.mul(this.getTexture(r).a):e}else if(r===eh.SPECULAR_COLOR){const e=this.getColor(r);s=t.specularColorMap&&!0===t.specularColorMap.isTexture?e.mul(this.getTexture(r).rgb):e}else if(r===eh.ROUGHNESS){const e=this.getFloat(r);s=t.roughnessMap&&!0===t.roughnessMap.isTexture?e.mul(this.getTexture(r).g):e}else if(r===eh.METALNESS){const e=this.getFloat(r);s=t.metalnessMap&&!0===t.metalnessMap.isTexture?e.mul(this.getTexture(r).b):e}else if(r===eh.EMISSIVE){const e=this.getFloat("emissiveIntensity"),i=this.getColor(r).mul(e);s=t.emissiveMap&&!0===t.emissiveMap.isTexture?i.mul(this.getTexture(r)):i}else if(r===eh.NORMAL)t.normalMap?(s=Xc(this.getTexture("normal"),this.getCache("normalScale","vec2")),s.normalMapType=t.normalMapType,t.normalMap.format!=V&&t.normalMap.format!=k&&t.normalMap.format!=G||(s.unpackNormalMode=U)):s=t.bumpMap?Zc(this.getTexture("bump").r,this.getFloat("bumpScale")):jd;else if(r===eh.CLEARCOAT){const e=this.getFloat(r);s=t.clearcoatMap&&!0===t.clearcoatMap.isTexture?e.mul(this.getTexture(r).r):e}else if(r===eh.CLEARCOAT_ROUGHNESS){const e=this.getFloat(r);s=t.clearcoatRoughnessMap&&!0===t.clearcoatRoughnessMap.isTexture?e.mul(this.getTexture(r).r):e}else if(r===eh.CLEARCOAT_NORMAL)s=t.clearcoatNormalMap?Xc(this.getTexture(r),this.getCache(r+"Scale","vec2")):jd;else if(r===eh.SHEEN){const e=this.getColor("sheenColor").mul(this.getFloat("sheen"));s=t.sheenColorMap&&!0===t.sheenColorMap.isTexture?e.mul(this.getTexture("sheenColor").rgb):e}else if(r===eh.SHEEN_ROUGHNESS){const e=this.getFloat(r);s=t.sheenRoughnessMap&&!0===t.sheenRoughnessMap.isTexture?e.mul(this.getTexture(r).a):e,s=s.clamp(1e-4,1)}else if(r===eh.ANISOTROPY)if(t.anisotropyMap&&!0===t.anisotropyMap.isTexture){const e=this.getTexture(r);s=wn(Oh.x,Oh.y,Oh.y.negate(),Oh.x).mul(e.rg.mul(2).sub(fn(1)).normalize().mul(e.b))}else s=Oh;else if(r===eh.IRIDESCENCE_THICKNESS){const e=mc("1","float",t.iridescenceThicknessRange);if(t.iridescenceThicknessMap){const i=mc("0","float",t.iridescenceThicknessRange);s=e.sub(i).mul(this.getTexture(r).g).add(i)}else s=e}else if(r===eh.TRANSMISSION){const e=this.getFloat(r);s=t.transmissionMap?e.mul(this.getTexture(r).r):e}else if(r===eh.THICKNESS){const e=this.getFloat(r);s=t.thicknessMap?e.mul(this.getTexture(r).g):e}else if(r===eh.IOR)s=this.getFloat(r);else if(r===eh.LIGHT_MAP)s=this.getTexture(r).rgb.mul(this.getFloat("lightMapIntensity"));else if(r===eh.AO)s=this.getTexture(r).r.sub(1).mul(this.getFloat("aoMapIntensity")).add(1);else if(r===eh.LINE_DASH_OFFSET)s=t.dashOffset?this.getFloat(r):hn(0);else{const t=this.getNodeType(e);s=this.getCache(r,t)}return s}}eh.ALPHA_TEST="alphaTest",eh.COLOR="color",eh.OPACITY="opacity",eh.SHININESS="shininess",eh.SPECULAR="specular",eh.SPECULAR_STRENGTH="specularStrength",eh.SPECULAR_INTENSITY="specularIntensity",eh.SPECULAR_COLOR="specularColor",eh.REFLECTIVITY="reflectivity",eh.ROUGHNESS="roughness",eh.METALNESS="metalness",eh.NORMAL="normal",eh.CLEARCOAT="clearcoat",eh.CLEARCOAT_ROUGHNESS="clearcoatRoughness",eh.CLEARCOAT_NORMAL="clearcoatNormal",eh.EMISSIVE="emissive",eh.ROTATION="rotation",eh.SHEEN="sheen",eh.SHEEN_ROUGHNESS="sheenRoughness",eh.ANISOTROPY="anisotropy",eh.IRIDESCENCE="iridescence",eh.IRIDESCENCE_IOR="iridescenceIOR",eh.IRIDESCENCE_THICKNESS="iridescenceThickness",eh.IOR="ior",eh.TRANSMISSION="transmission",eh.THICKNESS="thickness",eh.ATTENUATION_DISTANCE="attenuationDistance",eh.ATTENUATION_COLOR="attenuationColor",eh.LINE_SCALE="scale",eh.LINE_DASH_SIZE="dashSize",eh.LINE_GAP_SIZE="gapSize",eh.LINE_WIDTH="linewidth",eh.LINE_DASH_OFFSET="dashOffset",eh.POINT_SIZE="size",eh.DISPERSION="dispersion",eh.LIGHT_MAP="light",eh.AO="ao";const th=tn(eh,eh.ALPHA_TEST),rh=tn(eh,eh.COLOR),sh=tn(eh,eh.SHININESS),ih=tn(eh,eh.EMISSIVE),nh=tn(eh,eh.OPACITY),ah=tn(eh,eh.SPECULAR),oh=tn(eh,eh.SPECULAR_INTENSITY),uh=tn(eh,eh.SPECULAR_COLOR),lh=tn(eh,eh.SPECULAR_STRENGTH),dh=tn(eh,eh.REFLECTIVITY),ch=tn(eh,eh.ROUGHNESS),hh=tn(eh,eh.METALNESS),ph=tn(eh,eh.NORMAL),gh=tn(eh,eh.CLEARCOAT),mh=tn(eh,eh.CLEARCOAT_ROUGHNESS),fh=tn(eh,eh.CLEARCOAT_NORMAL),yh=tn(eh,eh.ROTATION),bh=tn(eh,eh.SHEEN),xh=tn(eh,eh.SHEEN_ROUGHNESS),Th=tn(eh,eh.ANISOTROPY),_h=tn(eh,eh.IRIDESCENCE),vh=tn(eh,eh.IRIDESCENCE_IOR),Nh=tn(eh,eh.IRIDESCENCE_THICKNESS),Sh=tn(eh,eh.TRANSMISSION),Ah=tn(eh,eh.THICKNESS),Rh=tn(eh,eh.IOR),Eh=tn(eh,eh.ATTENUATION_DISTANCE),wh=tn(eh,eh.ATTENUATION_COLOR),Ch=tn(eh,eh.LINE_SCALE),Mh=tn(eh,eh.LINE_DASH_SIZE),Bh=tn(eh,eh.LINE_GAP_SIZE),Lh=tn(eh,eh.LINE_WIDTH),Ph=tn(eh,eh.LINE_DASH_OFFSET),Fh=tn(eh,eh.POINT_SIZE),Dh=tn(eh,eh.DISPERSION),Uh=tn(eh,eh.LIGHT_MAP),Ih=tn(eh,eh.AO),Oh=xa(new t).onReference(function(e){return e.material}).onRenderUpdate(function({material:e}){this.value.set(e.anisotropy*Math.cos(e.anisotropyRotation),e.anisotropy*Math.sin(e.anisotropyRotation))}),Vh=an(e=>e.context.setupModelViewProjection(),"vec4").once()().toVarying("v_modelViewProjection");class kh extends oi{static get type(){return"StorageArrayElementNode"}constructor(e,t){super(e,t),this.isStorageArrayElementNode=!0}set storageBufferNode(e){this.node=e}get storageBufferNode(){return this.node}getMemberType(e,t){const r=this.storageBufferNode.structTypeNode;return r?r.getMemberType(e,t):"void"}setup(e){return!1===e.isAvailable("storageBuffer")&&!0===this.node.isPBO&&e.setupPBO(this.node),super.setup(e)}generate(e,t){let r;const s=e.context.assign;if(r=!1===e.isAvailable("storageBuffer")?!0!==this.node.isPBO||!0===s||!this.node.value.isInstancedBufferAttribute&&"compute"===e.shaderStage?this.node.build(e):e.generatePBO(this):super.generate(e),!0!==s){const s=this.getNodeType(e);r=e.format(r,s,t)}return r}}const Gh=en(kh).setParameterLength(2);class zh extends Dl{static get type(){return"StorageBufferNode"}constructor(e,t=null,r=0){let s,i=null;t&&t.isStruct?(s="struct",i=t.layout,(e.isStorageBufferAttribute||e.isStorageInstancedBufferAttribute)&&(r=e.count)):null===t&&(e.isStorageBufferAttribute||e.isStorageInstancedBufferAttribute)?(s=Vs(e.itemSize),r=e.count):s=t,super(e,s,r),this.isStorageBufferNode=!0,this.structTypeNode=i,this.access=Js.READ_WRITE,this.isAtomic=!1,this.isPBO=!1,this._attribute=null,this._varying=null,this.global=!0,!0!==e.isStorageBufferAttribute&&!0!==e.isStorageInstancedBufferAttribute&&(e.isInstancedBufferAttribute?e.isStorageInstancedBufferAttribute=!0:e.isStorageBufferAttribute=!0)}getHash(e){if(0===this.bufferCount){let t=e.globalCache.getData(this.value);return void 0===t&&(t={node:this},e.globalCache.setData(this.value,t)),t.node.uuid}return this.uuid}getInputType(){return this.value.isIndirectStorageBufferAttribute?"indirectStorageBuffer":"storageBuffer"}element(e){return Gh(this,e)}setPBO(e){return this.isPBO=e,this}getPBO(){return this.isPBO}setAccess(e){return this.access=e,this}toReadOnly(){return this.setAccess(Js.READ_ONLY)}setAtomic(e){return this.isAtomic=e,this}toAtomic(){return this.setAtomic(!0)}getAttributeData(){return null===this._attribute&&(this._attribute=Ju(this.value),this._varying=Fu(this._attribute)),{attribute:this._attribute,varying:this._varying}}getNodeType(e){if(null!==this.structTypeNode)return this.structTypeNode.getNodeType(e);if(e.isAvailable("storageBuffer")||e.isAvailable("indirectStorageBuffer"))return super.getNodeType(e);const{attribute:t}=this.getAttributeData();return t.getNodeType(e)}getMemberType(e,t){return null!==this.structTypeNode?this.structTypeNode.getMemberType(e,t):"void"}generate(e){if(null!==this.structTypeNode&&this.structTypeNode.build(e),e.isAvailable("storageBuffer")||e.isAvailable("indirectStorageBuffer"))return super.generate(e);const{attribute:t,varying:r}=this.getAttributeData(),s=r.build(e);return e.registerTransform(s,t),s}}const $h=(e,t=null,r=0)=>Yi(new zh(e,t,r));class Wh extends ai{static get type(){return"IndexNode"}constructor(e){super("uint"),this.scope=e,this.isIndexNode=!0}generate(e){const t=this.getNodeType(e),r=this.scope;let s,i;if(r===Wh.VERTEX)s=e.getVertexIndex();else if(r===Wh.INSTANCE)s=e.getInstanceIndex();else if(r===Wh.DRAW)s=e.getDrawIndex();else if(r===Wh.INVOCATION_LOCAL)s=e.getInvocationLocalIndex();else if(r===Wh.INVOCATION_SUBGROUP)s=e.getInvocationSubgroupIndex();else{if(r!==Wh.SUBGROUP)throw new Error("THREE.IndexNode: Unknown scope: "+r);s=e.getSubgroupIndex()}if("vertex"===e.shaderStage||"compute"===e.shaderStage)i=s;else{i=Fu(this).build(e,t)}return i}}Wh.VERTEX="vertex",Wh.INSTANCE="instance",Wh.SUBGROUP="subgroup",Wh.INVOCATION_LOCAL="invocationLocal",Wh.INVOCATION_SUBGROUP="invocationSubgroup",Wh.DRAW="draw";const Hh=tn(Wh,Wh.VERTEX),jh=tn(Wh,Wh.INSTANCE),qh=tn(Wh,Wh.SUBGROUP),Xh=tn(Wh,Wh.INVOCATION_SUBGROUP),Kh=tn(Wh,Wh.INVOCATION_LOCAL),Yh=tn(Wh,Wh.DRAW);class Qh extends ai{static get type(){return"InstanceNode"}constructor(e,t,r=null){super("void"),this.count=e,this.instanceMatrix=t,this.instanceColor=r,this.instanceMatrixNode=null,this.instanceColorNode=null,this.updateType=Qs.FRAME,this.buffer=null,this.bufferColor=null}get isStorageMatrix(){const{instanceMatrix:e}=this;return e&&!0===e.isStorageInstancedBufferAttribute}get isStorageColor(){const{instanceColor:e}=this;return e&&!0===e.isStorageInstancedBufferAttribute}setup(e){const{instanceMatrix:t,instanceColor:r,isStorageMatrix:s,isStorageColor:i}=this,{count:n}=t;let{instanceMatrixNode:a,instanceColorNode:o}=this;if(null===a){if(s)a=$h(t,"mat4",Math.max(n,1)).element(jh);else if(n<=1e3)a=Ul(t.array,"mat4",Math.max(n,1)).element(jh);else{const e=new z(t.array,16,1);this.buffer=e;const r=t.usage===x?tl:el,s=[r(e,"vec4",16,0),r(e,"vec4",16,4),r(e,"vec4",16,8),r(e,"vec4",16,12)];a=Mn(...s)}this.instanceMatrixNode=a}if(r&&null===o){if(i)o=$h(r,"vec3",Math.max(r.count,1)).element(jh);else{const e=new $(r.array,3),t=r.usage===x?tl:el;this.bufferColor=e,o=Tn(t(e,"vec3",3,0))}this.instanceColorNode=o}const u=a.mul(Bd).xyz;if(Bd.assign(u),e.hasGeometryAttribute("normal")){const e=Kd(zd,a);zd.assign(e)}null!==this.instanceColorNode&&Dn("vec3","vInstanceColor").assign(this.instanceColorNode)}update(){null!==this.buffer&&!0!==this.isStorageMatrix&&(this.buffer.clearUpdateRanges(),this.buffer.updateRanges.push(...this.instanceMatrix.updateRanges),this.instanceMatrix.usage!==x&&this.instanceMatrix.version!==this.buffer.version&&(this.buffer.version=this.instanceMatrix.version)),this.instanceColor&&null!==this.bufferColor&&!0!==this.isStorageColor&&(this.bufferColor.clearUpdateRanges(),this.bufferColor.updateRanges.push(...this.instanceColor.updateRanges),this.instanceColor.usage!==x&&this.instanceColor.version!==this.bufferColor.version&&(this.bufferColor.version=this.instanceColor.version))}}const Zh=en(Qh).setParameterLength(2,3);class Jh extends Qh{static get type(){return"InstancedMeshNode"}constructor(e){const{count:t,instanceMatrix:r,instanceColor:s}=e;super(t,r,s),this.instancedMesh=e}}const ep=en(Jh).setParameterLength(1);class tp extends ai{static get type(){return"BatchNode"}constructor(e){super("void"),this.batchMesh=e,this.batchingIdNode=null}setup(e){null===this.batchingIdNode&&(null===e.getDrawIndex()?this.batchingIdNode=jh:this.batchingIdNode=Yh);const t=an(([e])=>{const t=pn(El(Fl(this.batchMesh._indirectTexture),0).x).toConst(),r=pn(e).mod(t).toConst(),s=pn(e).div(t).toConst();return Fl(this.batchMesh._indirectTexture,yn(r,s)).x}).setLayout({name:"getIndirectIndex",type:"uint",inputs:[{name:"id",type:"int"}]}),r=t(pn(this.batchingIdNode)),s=this.batchMesh._matricesTexture,i=pn(El(Fl(s),0).x).toConst(),n=hn(r).mul(4).toInt().toConst(),a=n.mod(i).toConst(),o=n.div(i).toConst(),u=Mn(Fl(s,yn(a,o)),Fl(s,yn(a.add(1),o)),Fl(s,yn(a.add(2),o)),Fl(s,yn(a.add(3),o))),l=this.batchMesh._colorsTexture;if(null!==l){const e=an(([e])=>{const t=pn(El(Fl(l),0).x).toConst(),r=e,s=r.mod(t).toConst(),i=r.div(t).toConst();return Fl(l,yn(s,i)).rgb}).setLayout({name:"getBatchingColor",type:"vec3",inputs:[{name:"id",type:"int"}]}),t=e(r);Dn("vec3","vBatchColor").assign(t)}const d=Cn(u);Bd.assign(u.mul(Bd));const c=zd.div(Tn(d[0].dot(d[0]),d[1].dot(d[1]),d[2].dot(d[2]))),h=d.mul(c).xyz;zd.assign(h),e.hasGeometryAttribute("tangent")&&Fc.mulAssign(d)}}const rp=en(tp).setParameterLength(1),sp=new WeakMap;class ip extends ai{static get type(){return"SkinningNode"}constructor(e){super("void"),this.skinnedMesh=e,this.updateType=Qs.OBJECT,this.skinIndexNode=Sl("skinIndex","uvec4"),this.skinWeightNode=Sl("skinWeight","vec4"),this.bindMatrixNode=mc("bindMatrix","mat4"),this.bindMatrixInverseNode=mc("bindMatrixInverse","mat4"),this.boneMatricesNode=fc("skeleton.boneMatrices","mat4",e.skeleton.bones.length),this.positionNode=Bd,this.toPositionNode=Bd,this.previousBoneMatricesNode=null}getSkinnedPosition(e=this.boneMatricesNode,t=this.positionNode){const{skinIndexNode:r,skinWeightNode:s,bindMatrixNode:i,bindMatrixInverseNode:n}=this,a=e.element(r.x),o=e.element(r.y),u=e.element(r.z),l=e.element(r.w),d=i.mul(t),c=wa(a.mul(s.x).mul(d),o.mul(s.y).mul(d),u.mul(s.z).mul(d),l.mul(s.w).mul(d));return n.mul(c).xyz}getSkinnedNormal(e=this.boneMatricesNode,t=zd){const{skinIndexNode:r,skinWeightNode:s,bindMatrixNode:i,bindMatrixInverseNode:n}=this,a=e.element(r.x),o=e.element(r.y),u=e.element(r.z),l=e.element(r.w);let d=wa(s.x.mul(a),s.y.mul(o),s.z.mul(u),s.w.mul(l));return d=n.mul(d).mul(i),d.transformDirection(t).xyz}getPreviousSkinnedPosition(e){const t=e.object;return null===this.previousBoneMatricesNode&&(t.skeleton.previousBoneMatrices=new Float32Array(t.skeleton.boneMatrices),this.previousBoneMatricesNode=fc("skeleton.previousBoneMatrices","mat4",t.skeleton.bones.length)),this.getSkinnedPosition(this.previousBoneMatricesNode,Ld)}needsPreviousBoneMatrices(e){const t=e.renderer.getMRT();return t&&t.has("velocity")||!0===js(e.object).useVelocity}setup(e){this.needsPreviousBoneMatrices(e)&&Ld.assign(this.getPreviousSkinnedPosition(e));const t=this.getSkinnedPosition();if(this.toPositionNode&&this.toPositionNode.assign(t),e.hasGeometryAttribute("normal")){const t=this.getSkinnedNormal();zd.assign(t),e.hasGeometryAttribute("tangent")&&Fc.assign(t)}return t}generate(e,t){if("void"!==t)return super.generate(e,t)}update(e){const t=e.object&&e.object.skeleton?e.object.skeleton:this.skinnedMesh.skeleton;sp.get(t)!==e.frameId&&(sp.set(t,e.frameId),null!==this.previousBoneMatricesNode&&(null===t.previousBoneMatrices&&(t.previousBoneMatrices=new Float32Array(t.boneMatrices)),t.previousBoneMatrices.set(t.boneMatrices)),t.update())}}const np=e=>Yi(new ip(e));class ap extends ai{static get type(){return"LoopNode"}constructor(e=[]){super("void"),this.params=e}getVarName(e){return String.fromCharCode("i".charCodeAt(0)+e)}getProperties(e){const t=e.getNodeProperties(this);if(void 0!==t.stackNode)return t;const r={};for(let e=0,t=this.params.length-1;eNumber(l)?">=":"<")),a)n=`while ( ${l} )`;else{const r={start:u,end:l},s=r.start,i=r.end;let a;const g=()=>h.includes("<")?"+=":"-=";if(null!=p)switch(typeof p){case"function":a=e.flowStagesNode(t.updateNode,"void").code.replace(/\t|;/g,"");break;case"number":a=d+" "+g()+" "+e.generateConst(c,p);break;case"string":a=d+" "+p;break;default:p.isNode?a=d+" "+g()+" "+p.build(e):(o("TSL: 'Loop( { update: ... } )' is not a function, string or number."),a="break /* invalid update */")}else p="int"===c||"uint"===c?h.includes("<")?"++":"--":g()+" 1.",a=d+" "+p;n=`for ( ${e.getVar(c,d)+" = "+s}; ${d+" "+h+" "+i}; ${a} )`}e.addFlowCode((0===s?"\n":"")+e.tab+n+" {\n\n").addFlowTab()}const i=s.build(e,"void");t.returnsNode.build(e,"void"),e.removeFlowTab().addFlowCode("\n"+e.tab+i);for(let t=0,r=this.params.length-1;tnew ap(Ji(e,"int")).toStack(),up=()=>gl("break").toStack(),lp=new WeakMap,dp=new s,cp=an(({bufferMap:e,influence:t,stride:r,width:s,depth:i,offset:n})=>{const a=pn(Hh).mul(r).add(n),o=a.div(s),u=a.sub(o.mul(s));return Fl(e,yn(u,o)).depth(i).xyz.mul(t)});class hp extends ai{static get type(){return"MorphNode"}constructor(e){super("void"),this.mesh=e,this.morphBaseInfluence=xa(1),this.updateType=Qs.OBJECT}setup(e){const{geometry:r}=e,s=void 0!==r.morphAttributes.position,i=r.hasAttribute("normal")&&void 0!==r.morphAttributes.normal,n=r.morphAttributes.position||r.morphAttributes.normal||r.morphAttributes.color,a=void 0!==n?n.length:0,{texture:o,stride:u,size:l}=function(e){const r=void 0!==e.morphAttributes.position,s=void 0!==e.morphAttributes.normal,i=void 0!==e.morphAttributes.color,n=e.morphAttributes.position||e.morphAttributes.normal||e.morphAttributes.color,a=void 0!==n?n.length:0;let o=lp.get(e);if(void 0===o||o.count!==a){void 0!==o&&o.texture.dispose();const u=e.morphAttributes.position||[],l=e.morphAttributes.normal||[],d=e.morphAttributes.color||[];let c=0;!0===r&&(c=1),!0===s&&(c=2),!0===i&&(c=3);let h=e.attributes.position.count*c,p=1;const g=4096;h>g&&(p=Math.ceil(h/g),h=g);const m=new Float32Array(h*p*4*a),f=new W(m,h,p,a);f.type=H,f.needsUpdate=!0;const y=4*c;for(let x=0;x{const t=hn(0).toVar();this.mesh.count>1&&null!==this.mesh.morphTexture&&void 0!==this.mesh.morphTexture?t.assign(Fl(this.mesh.morphTexture,yn(pn(e).add(1),pn(jh))).r):t.assign(mc("morphTargetInfluences","float").element(e).toVar()),ln(t.notEqual(0),()=>{!0===s&&Bd.addAssign(cp({bufferMap:o,influence:t,stride:u,width:d,depth:e,offset:pn(0)})),!0===i&&zd.addAssign(cp({bufferMap:o,influence:t,stride:u,width:d,depth:e,offset:pn(1)}))})})}update(){const e=this.morphBaseInfluence;this.mesh.geometry.morphTargetsRelative?e.value=1:e.value=1-this.mesh.morphTargetInfluences.reduce((e,t)=>e+t,0)}}const pp=en(hp).setParameterLength(1);class gp extends ai{static get type(){return"LightingNode"}constructor(){super("vec3"),this.isLightingNode=!0}}class mp extends gp{static get type(){return"AONode"}constructor(e=null){super(),this.aoNode=e}setup(e){e.context.ambientOcclusion.mulAssign(this.aoNode)}}class fp extends xu{static get type(){return"LightingContextNode"}constructor(e,t=null,r=null,s=null){super(e),this.lightingModel=t,this.backdropNode=r,this.backdropAlphaNode=s,this._value=null}getContext(){const{backdropNode:e,backdropAlphaNode:t}=this,r={directDiffuse:Tn().toVar("directDiffuse"),directSpecular:Tn().toVar("directSpecular"),indirectDiffuse:Tn().toVar("indirectDiffuse"),indirectSpecular:Tn().toVar("indirectSpecular")};return{radiance:Tn().toVar("radiance"),irradiance:Tn().toVar("irradiance"),iblIrradiance:Tn().toVar("iblIrradiance"),ambientOcclusion:hn(1).toVar("ambientOcclusion"),reflectedLight:r,backdrop:e,backdropAlpha:t}}setup(e){return this.value=this._value||(this._value=this.getContext()),this.value.lightingModel=this.lightingModel||e.context.lightingModel,super.setup(e)}}const yp=en(fp);class bp extends gp{static get type(){return"IrradianceNode"}constructor(e){super(),this.node=e}setup(e){e.context.irradiance.addAssign(this.node)}}const xp=new t;class Tp extends Bl{static get type(){return"ViewportTextureNode"}constructor(e=Hl,t=null,r=null){let s=null;null===r?(s=new j,s.minFilter=q,r=s):s=r,super(r,e,t),this.generateMipmaps=!1,this.defaultFramebuffer=s,this.isOutputTextureNode=!0,this.updateBeforeType=Qs.FRAME,this._cacheTextures=new WeakMap}getTextureForReference(e=null){let t,r;if(this.referenceNode?(t=this.referenceNode.defaultFramebuffer,r=this.referenceNode._cacheTextures):(t=this.defaultFramebuffer,r=this._cacheTextures),null===e)return t;if(!1===r.has(e)){const s=t.clone();r.set(e,s)}return r.get(e)}updateReference(e){const t=e.renderer.getRenderTarget();return this.value=this.getTextureForReference(t),this.value}updateBefore(e){const t=e.renderer,r=t.getRenderTarget();null===r?t.getDrawingBufferSize(xp):xp.set(r.width,r.height);const s=this.getTextureForReference(r);s.image.width===xp.width&&s.image.height===xp.height||(s.image.width=xp.width,s.image.height=xp.height,s.needsUpdate=!0);const i=s.generateMipmaps;s.generateMipmaps=this.generateMipmaps,t.copyFramebufferToTexture(s),s.generateMipmaps=i}clone(){const e=new this.constructor(this.uvNode,this.levelNode,this.value);return e.generateMipmaps=this.generateMipmaps,e}}const _p=en(Tp).setParameterLength(0,3),vp=en(Tp,null,null,{generateMipmaps:!0}).setParameterLength(0,3);let Np=null;class Sp extends Tp{static get type(){return"ViewportDepthTextureNode"}constructor(e=Hl,t=null){null===Np&&(Np=new X),super(e,t,Np)}getTextureForReference(){return Np}}const Ap=en(Sp).setParameterLength(0,2);class Rp extends ai{static get type(){return"ViewportDepthNode"}constructor(e,t=null){super("float"),this.scope=e,this.valueNode=t,this.isViewportDepthNode=!0}generate(e){const{scope:t}=this;return t===Rp.DEPTH_BASE?e.getFragDepth():super.generate(e)}setup({camera:e}){const{scope:t}=this,r=this.valueNode;let s=null;if(t===Rp.DEPTH_BASE)null!==r&&(s=Bp().assign(r));else if(t===Rp.DEPTH)s=e.isPerspectiveCamera?wp(Dd.z,ed,td):Ep(Dd.z,ed,td);else if(t===Rp.LINEAR_DEPTH)if(null!==r)if(e.isPerspectiveCamera){const e=Cp(r,ed,td);s=Ep(e,ed,td)}else s=r;else s=Ep(Dd.z,ed,td);return s}}Rp.DEPTH_BASE="depthBase",Rp.DEPTH="depth",Rp.LINEAR_DEPTH="linearDepth";const Ep=(e,t,r)=>e.add(t).div(t.sub(r)),wp=(e,t,r)=>t.add(e).mul(r).div(r.sub(t).mul(e)),Cp=(e,t,r)=>t.mul(r).div(r.sub(t).mul(e).sub(r)),Mp=(e,t,r)=>{t=t.max(1e-6).toVar();const s=mo(e.negate().div(t)),i=mo(r.div(t));return s.div(i)},Bp=en(Rp,Rp.DEPTH_BASE),Lp=tn(Rp,Rp.DEPTH),Pp=en(Rp,Rp.LINEAR_DEPTH).setParameterLength(0,1),Fp=Pp(Ap());Lp.assign=e=>Bp(e);class Dp extends ai{static get type(){return"ClippingNode"}constructor(e=Dp.DEFAULT){super(),this.scope=e}setup(e){super.setup(e);const t=e.clippingContext,{intersectionPlanes:r,unionPlanes:s}=t;return this.hardwareClipping=e.material.hardwareClipping,this.scope===Dp.ALPHA_TO_COVERAGE?this.setupAlphaToCoverage(r,s):this.scope===Dp.HARDWARE?this.setupHardwareClipping(s,e):this.setupDefault(r,s)}setupAlphaToCoverage(e,t){return an(()=>{const r=hn().toVar("distanceToPlane"),s=hn().toVar("distanceToGradient"),i=hn(1).toVar("clipOpacity"),n=t.length;if(!1===this.hardwareClipping&&n>0){const e=Vl(t).setGroup(fa);op(n,({i:t})=>{const n=e.element(t);r.assign(Dd.dot(n.xyz).negate().add(n.w)),s.assign(r.fwidth().div(2)),i.mulAssign(uu(s.negate(),s,r))})}const a=e.length;if(a>0){const t=Vl(e).setGroup(fa),n=hn(1).toVar("intersectionClipOpacity");op(a,({i:e})=>{const i=t.element(e);r.assign(Dd.dot(i.xyz).negate().add(i.w)),s.assign(r.fwidth().div(2)),n.mulAssign(uu(s.negate(),s,r).oneMinus())}),i.mulAssign(n.oneMinus())}Un.a.mulAssign(i),Un.a.equal(0).discard()})()}setupDefault(e,t){return an(()=>{const r=t.length;if(!1===this.hardwareClipping&&r>0){const e=Vl(t).setGroup(fa);op(r,({i:t})=>{const r=e.element(t);Dd.dot(r.xyz).greaterThan(r.w).discard()})}const s=e.length;if(s>0){const t=Vl(e).setGroup(fa),r=mn(!0).toVar("clipped");op(s,({i:e})=>{const s=t.element(e);r.assign(Dd.dot(s.xyz).greaterThan(s.w).and(r))}),r.discard()}})()}setupHardwareClipping(e,t){const r=e.length;return t.enableHardwareClipping(r),an(()=>{const s=Vl(e).setGroup(fa),i=kl(t.getClipDistance());op(r,({i:e})=>{const t=s.element(e),r=Dd.dot(t.xyz).sub(t.w).negate();i.element(e).assign(r)})})()}}Dp.ALPHA_TO_COVERAGE="alphaToCoverage",Dp.DEFAULT="default",Dp.HARDWARE="hardware";const Up=an(([e])=>_o(Ma(1e4,vo(Ma(17,e.x).add(Ma(.1,e.y)))).mul(wa(.1,wo(vo(Ma(13,e.y).add(e.x))))))),Ip=an(([e])=>Up(fn(Up(e.xy),e.z))),Op=an(([e])=>{const t=Wo(Mo(Po(e.xyz)),Mo(Fo(e.xyz))),r=hn(1).div(hn(.05).mul(t)).toVar("pixScale"),s=fn(po(bo(mo(r))),po(xo(mo(r)))),i=fn(Ip(bo(s.x.mul(e.xyz))),Ip(bo(s.y.mul(e.xyz)))),n=_o(mo(r)),a=wa(Ma(n.oneMinus(),i.x),Ma(n,i.y)),o=$o(n,n.oneMinus()),u=Tn(a.mul(a).div(Ma(2,o).mul(Ca(1,o))),a.sub(Ma(.5,o)).div(Ca(1,o)),Ca(1,Ca(1,a).mul(Ca(1,a)).div(Ma(2,o).mul(Ca(1,o))))),l=a.lessThan(o.oneMinus()).select(a.lessThan(o).select(u.x,u.y),u.z);return nu(l,1e-6,1)}).setLayout({name:"getAlphaHashThreshold",type:"float",inputs:[{name:"position",type:"vec3"}]});class Vp extends Nl{static get type(){return"VertexColorNode"}constructor(e){super(null,"vec4"),this.isVertexColorNode=!0,this.index=e}getAttributeName(){const e=this.index;return"color"+(e>0?e:"")}generate(e){const t=this.getAttributeName(e);let r;return r=!0===e.hasGeometryAttribute(t)?super.generate(e):e.generateConst(this.nodeType,new s(1,1,1,1)),r}serialize(e){super.serialize(e),e.index=this.index}deserialize(e){super.deserialize(e),this.index=e.index}}const kp=(e=0)=>Yi(new Vp(e)),Gp=an(([e,t])=>$o(1,e.oneMinus().div(t)).oneMinus()).setLayout({name:"blendBurn",type:"vec3",inputs:[{name:"base",type:"vec3"},{name:"blend",type:"vec3"}]}),zp=an(([e,t])=>$o(e.div(t.oneMinus()),1)).setLayout({name:"blendDodge",type:"vec3",inputs:[{name:"base",type:"vec3"},{name:"blend",type:"vec3"}]}),$p=an(([e,t])=>e.oneMinus().mul(t.oneMinus()).oneMinus()).setLayout({name:"blendScreen",type:"vec3",inputs:[{name:"base",type:"vec3"},{name:"blend",type:"vec3"}]}),Wp=an(([e,t])=>iu(e.mul(2).mul(t),e.oneMinus().mul(2).mul(t.oneMinus()).oneMinus(),Ho(.5,e))).setLayout({name:"blendOverlay",type:"vec3",inputs:[{name:"base",type:"vec3"},{name:"blend",type:"vec3"}]}),Hp=an(([e,t])=>{const r=t.a.add(e.a.mul(t.a.oneMinus()));return Sn(t.rgb.mul(t.a).add(e.rgb.mul(e.a).mul(t.a.oneMinus())).div(r),r)}).setLayout({name:"blendColor",type:"vec4",inputs:[{name:"base",type:"vec4"},{name:"blend",type:"vec4"}]}),jp=an(([e])=>Sn(e.rgb.mul(e.a),e.a),{color:"vec4",return:"vec4"}),qp=an(([e])=>(ln(e.a.equal(0),()=>Sn(0)),Sn(e.rgb.div(e.a),e.a)),{color:"vec4",return:"vec4"});class Xp extends K{static get type(){return"NodeMaterial"}get type(){return this.constructor.type}set type(e){}constructor(){super(),this.isNodeMaterial=!0,this.fog=!0,this.lights=!1,this.hardwareClipping=!1,this.lightsNode=null,this.envNode=null,this.aoNode=null,this.colorNode=null,this.normalNode=null,this.opacityNode=null,this.backdropNode=null,this.backdropAlphaNode=null,this.alphaTestNode=null,this.maskNode=null,this.positionNode=null,this.geometryNode=null,this.depthNode=null,this.receivedShadowPositionNode=null,this.castShadowPositionNode=null,this.receivedShadowNode=null,this.castShadowNode=null,this.outputNode=null,this.mrtNode=null,this.fragmentNode=null,this.vertexNode=null,this.contextNode=null,Object.defineProperty(this,"shadowPositionNode",{get:()=>this.receivedShadowPositionNode,set:e=>{d('NodeMaterial: ".shadowPositionNode" was renamed to ".receivedShadowPositionNode".'),this.receivedShadowPositionNode=e}})}_getNodeChildren(){const e=[];for(const t of Object.getOwnPropertyNames(this)){if(!0===t.startsWith("_"))continue;const r=this[t];r&&!0===r.isNode&&e.push({property:t,childNode:r})}return e}customProgramCacheKey(){const e=[];for(const{property:t,childNode:r}of this._getNodeChildren())e.push(Fs(t.slice(0,-4)),r.getCacheKey());return this.type+Ds(e)}build(e){this.setup(e)}setupObserver(e){return new Ls(e)}setup(e){e.context.setupNormal=()=>Lu(this.setupNormal(e),"NORMAL","vec3"),e.context.setupPositionView=()=>this.setupPositionView(e),e.context.setupModelViewProjection=()=>this.setupModelViewProjection(e);const t=e.renderer,r=t.getRenderTarget();!0===t.contextNode.isContextNode?e.context={...e.context,...t.contextNode.getFlowContextData()}:o('NodeMaterial: "renderer.contextNode" must be an instance of `context()`.'),null!==this.contextNode&&(!0===this.contextNode.isContextNode?e.context={...e.context,...this.contextNode.getFlowContextData()}:o('NodeMaterial: "material.contextNode" must be an instance of `context()`.')),e.addStack();const s=Lu(this.setupVertex(e),"VERTEX"),i=this.vertexNode||s;let n;e.stack.outputNode=i,this.setupHardwareClipping(e),null!==this.geometryNode&&(e.stack.outputNode=e.stack.outputNode.bypass(this.geometryNode)),e.addFlow("vertex",e.removeStack()),e.addStack();const a=this.setupClipping(e);if(!0!==this.depthWrite&&!0!==this.depthTest||(null!==r?!0===r.depthBuffer&&this.setupDepth(e):!0===t.depth&&this.setupDepth(e)),null===this.fragmentNode){this.setupDiffuseColor(e),this.setupVariants(e);const s=this.setupLighting(e);null!==a&&e.stack.addToStack(a);const i=Sn(s,Un.a).max(0);n=this.setupOutput(e,i),ra.assign(n);const o=null!==this.outputNode;if(o&&(n=this.outputNode),e.context.getOutput&&(n=e.context.getOutput(n,e)),null!==r){const e=t.getMRT(),r=this.mrtNode;null!==e?(o&&ra.assign(n),n=e,null!==r&&(n=e.merge(r))):null!==r&&(n=r)}}else{let t=this.fragmentNode;!0!==t.isOutputStructNode&&(t=Sn(t)),n=this.setupOutput(e,t)}e.stack.outputNode=n,e.addFlow("fragment",e.removeStack()),e.observer=this.setupObserver(e)}setupClipping(e){if(null===e.clippingContext)return null;const{unionPlanes:t,intersectionPlanes:r}=e.clippingContext;let s=null;if(t.length>0||r.length>0){const t=e.renderer.currentSamples;this.alphaToCoverage&&t>1?s=Yi(new Dp(Dp.ALPHA_TO_COVERAGE)):e.stack.addToStack(Yi(new Dp))}return s}setupHardwareClipping(e){if(this.hardwareClipping=!1,null===e.clippingContext)return;const t=e.clippingContext.unionPlanes.length;t>0&&t<=8&&e.isAvailable("clipDistance")&&(e.stack.addToStack(Yi(new Dp(Dp.HARDWARE))),this.hardwareClipping=!0)}setupDepth(e){const{renderer:t,camera:r}=e;let s=this.depthNode;if(null===s){const e=t.getMRT();e&&e.has("depth")?s=e.get("depth"):!0===t.logarithmicDepthBuffer&&(s=r.isPerspectiveCamera?Mp(Dd.z,ed,td):Ep(Dd.z,ed,td))}null!==s&&Lp.assign(s).toStack()}setupPositionView(){return Rd.mul(Bd).xyz}setupModelViewProjection(){return rd.mul(Dd)}setupVertex(e){return e.addStack(),this.setupPosition(e),e.context.vertex=e.removeStack(),Vh}setupPosition(e){const{object:t,geometry:r}=e;if((r.morphAttributes.position||r.morphAttributes.normal||r.morphAttributes.color)&&pp(t).toStack(),!0===t.isSkinnedMesh&&np(t).toStack(),this.displacementMap){const e=bc("displacementMap","texture"),t=bc("displacementScale","float"),r=bc("displacementBias","float");Bd.addAssign(zd.normalize().mul(e.x.mul(t).add(r)))}return t.isBatchedMesh&&rp(t).toStack(),t.isInstancedMesh&&t.instanceMatrix&&!0===t.instanceMatrix.isInstancedBufferAttribute&&ep(t).toStack(),null!==this.positionNode&&Bd.assign(Lu(this.positionNode,"POSITION","vec3")),Bd}setupDiffuseColor(e){const{object:t,geometry:r}=e;null!==this.maskNode&&mn(this.maskNode).not().discard();let s=this.colorNode?Sn(this.colorNode):rh;if(!0===this.vertexColors&&r.hasAttribute("color")&&(s=s.mul(kp())),t.instanceColor){s=Dn("vec3","vInstanceColor").mul(s)}if(t.isBatchedMesh&&t._colorsTexture){s=Dn("vec3","vBatchColor").mul(s)}Un.assign(s);const i=this.opacityNode?hn(this.opacityNode):nh;Un.a.assign(Un.a.mul(i));let n=null;(null!==this.alphaTestNode||this.alphaTest>0)&&(n=null!==this.alphaTestNode?hn(this.alphaTestNode):th,!0===this.alphaToCoverage?(Un.a=uu(n,n.add(Oo(Un.a)),Un.a),Un.a.lessThanEqual(0).discard()):Un.a.lessThanEqual(n).discard()),!0===this.alphaHash&&Un.a.lessThan(Op(Bd)).discard(),e.isOpaque()&&Un.a.assign(1)}setupVariants(){}setupOutgoingLight(){return!0===this.lights?Tn(0):Un.rgb}setupNormal(){return this.normalNode?Tn(this.normalNode):ph}setupEnvironment(){let e=null;return this.envNode?e=this.envNode:this.envMap&&(e=this.envMap.isCubeTexture?bc("envMap","cubeTexture"):bc("envMap","texture")),e}setupLightMap(e){let t=null;return e.material.lightMap&&(t=new bp(Uh)),t}setupLights(e){const t=[],r=this.setupEnvironment(e);r&&r.isLightingNode&&t.push(r);const s=this.setupLightMap(e);s&&s.isLightingNode&&t.push(s);let i=this.aoNode;null===i&&e.material.aoMap&&(i=Ih),e.context.getAO&&(i=e.context.getAO(i,e)),i&&t.push(new mp(i));let n=this.lightsNode||e.lightsNode;return t.length>0&&(n=e.renderer.lighting.createNode([...n.getLights(),...t])),n}setupLightingModel(){}setupLighting(e){const{material:t}=e,{backdropNode:r,backdropAlphaNode:s,emissiveNode:i}=this,n=!0===this.lights||null!==this.lightsNode?this.setupLights(e):null;let a=this.setupOutgoingLight(e);if(n&&n.getScope().hasLights){const t=this.setupLightingModel(e)||null;a=yp(n,t,r,s)}else null!==r&&(a=Tn(null!==s?iu(a,r,s):r));return(i&&!0===i.isNode||t.emissive&&!0===t.emissive.isColor)&&(On.assign(Tn(i||ih)),a=a.add(On)),a}setupFog(e,t){const r=e.fogNode;return r&&(ra.assign(t),t=Sn(r.toVar())),t}setupPremultipliedAlpha(e,t){return jp(t)}setupOutput(e,t){return!0===this.fog&&(t=this.setupFog(e,t)),!0===this.premultipliedAlpha&&(t=this.setupPremultipliedAlpha(e,t)),t}setDefaultValues(e){for(const t in e){const r=e[t];void 0===this[t]&&(this[t]=r,r&&r.clone&&(this[t]=r.clone()))}const t=Object.getOwnPropertyDescriptors(e.constructor.prototype);for(const e in t)void 0===Object.getOwnPropertyDescriptor(this.constructor.prototype,e)&&void 0!==t[e].get&&Object.defineProperty(this.constructor.prototype,e,t[e])}toJSON(e){const t=void 0===e||"string"==typeof e;t&&(e={textures:{},images:{},nodes:{}});const r=K.prototype.toJSON.call(this,e);r.inputNodes={};for(const{property:t,childNode:s}of this._getNodeChildren())r.inputNodes[t]=s.toJSON(e).uuid;function s(e){const t=[];for(const r in e){const s=e[r];delete s.metadata,t.push(s)}return t}if(t){const t=s(e.textures),i=s(e.images),n=s(e.nodes);t.length>0&&(r.textures=t),i.length>0&&(r.images=i),n.length>0&&(r.nodes=n)}return r}copy(e){return this.lightsNode=e.lightsNode,this.envNode=e.envNode,this.aoNode=e.aoNode,this.colorNode=e.colorNode,this.normalNode=e.normalNode,this.opacityNode=e.opacityNode,this.backdropNode=e.backdropNode,this.backdropAlphaNode=e.backdropAlphaNode,this.alphaTestNode=e.alphaTestNode,this.maskNode=e.maskNode,this.positionNode=e.positionNode,this.geometryNode=e.geometryNode,this.depthNode=e.depthNode,this.receivedShadowPositionNode=e.receivedShadowPositionNode,this.castShadowPositionNode=e.castShadowPositionNode,this.receivedShadowNode=e.receivedShadowNode,this.castShadowNode=e.castShadowNode,this.outputNode=e.outputNode,this.mrtNode=e.mrtNode,this.fragmentNode=e.fragmentNode,this.vertexNode=e.vertexNode,this.contextNode=e.contextNode,super.copy(e)}}const Kp=new Y;class Yp extends Xp{static get type(){return"LineBasicNodeMaterial"}constructor(e){super(),this.isLineBasicNodeMaterial=!0,this.setDefaultValues(Kp),this.setValues(e)}}const Qp=new Q;class Zp extends Xp{static get type(){return"LineDashedNodeMaterial"}constructor(e){super(),this.isLineDashedNodeMaterial=!0,this.setDefaultValues(Qp),this.dashOffset=0,this.offsetNode=null,this.dashScaleNode=null,this.dashSizeNode=null,this.gapSizeNode=null,this.setValues(e)}setupVariants(){const e=this.offsetNode?hn(this.offsetNode):Ph,t=this.dashScaleNode?hn(this.dashScaleNode):Ch,r=this.dashSizeNode?hn(this.dashSizeNode):Mh,s=this.gapSizeNode?hn(this.gapSizeNode):Bh;sa.assign(r),ia.assign(s);const i=Fu(Sl("lineDistance").mul(t));(e?i.add(e):i).mod(sa.add(ia)).greaterThan(sa).discard()}}let Jp=null;class eg extends Tp{static get type(){return"ViewportSharedTextureNode"}constructor(e=Hl,t=null){null===Jp&&(Jp=new j),super(e,t,Jp)}getTextureForReference(){return Jp}updateReference(){return this}}const tg=en(eg).setParameterLength(0,2),rg=new Q;class sg extends Xp{static get type(){return"Line2NodeMaterial"}constructor(e={}){super(),this.isLine2NodeMaterial=!0,this.setDefaultValues(rg),this.useColor=e.vertexColors,this.dashOffset=0,this.lineColorNode=null,this.offsetNode=null,this.dashScaleNode=null,this.dashSizeNode=null,this.gapSizeNode=null,this.blending=Z,this._useDash=e.dashed,this._useAlphaToCoverage=!0,this._useWorldUnits=!1,this.setValues(e)}setup(e){const{renderer:t}=e,r=this._useAlphaToCoverage,s=this.useColor,i=this._useDash,n=this._useWorldUnits,a=an(({start:e,end:t})=>{const r=rd.element(2).element(2),s=rd.element(3).element(2).mul(-.5).div(r).sub(e.z).div(t.z.sub(e.z));return Sn(iu(e.xyz,t.xyz,s),t.w)}).setLayout({name:"trimSegment",type:"vec4",inputs:[{name:"start",type:"vec4"},{name:"end",type:"vec4"}]});this.vertexNode=an(()=>{const e=Sl("instanceStart"),t=Sl("instanceEnd"),r=Sn(Rd.mul(Sn(e,1))).toVar("start"),s=Sn(Rd.mul(Sn(t,1))).toVar("end");if(i){const e=this.dashScaleNode?hn(this.dashScaleNode):Ch,t=this.offsetNode?hn(this.offsetNode):Ph,r=Sl("instanceDistanceStart"),s=Sl("instanceDistanceEnd");let i=Md.y.lessThan(.5).select(e.mul(r),e.mul(s));i=i.add(t),Dn("float","lineDistance").assign(i)}n&&(Dn("vec3","worldStart").assign(r.xyz),Dn("vec3","worldEnd").assign(s.xyz));const o=Xl.z.div(Xl.w),u=rd.element(2).element(3).equal(-1);ln(u,()=>{ln(r.z.lessThan(0).and(s.z.greaterThan(0)),()=>{s.assign(a({start:r,end:s}))}).ElseIf(s.z.lessThan(0).and(r.z.greaterThanEqual(0)),()=>{r.assign(a({start:s,end:r}))})});const l=rd.mul(r),d=rd.mul(s),c=l.xyz.div(l.w),h=d.xyz.div(d.w),p=h.xy.sub(c.xy).toVar();p.x.assign(p.x.mul(o)),p.assign(p.normalize());const g=Sn().toVar();if(n){const e=s.xyz.sub(r.xyz).normalize(),t=iu(r.xyz,s.xyz,.5).normalize(),n=e.cross(t).normalize(),a=e.cross(n),o=Dn("vec4","worldPos");o.assign(Md.y.lessThan(.5).select(r,s));const u=Lh.mul(.5);o.addAssign(Sn(Md.x.lessThan(0).select(n.mul(u),n.mul(u).negate()),0)),i||(o.addAssign(Sn(Md.y.lessThan(.5).select(e.mul(u).negate(),e.mul(u)),0)),o.addAssign(Sn(a.mul(u),0)),ln(Md.y.greaterThan(1).or(Md.y.lessThan(0)),()=>{o.subAssign(Sn(a.mul(2).mul(u),0))})),g.assign(rd.mul(o));const l=Tn().toVar();l.assign(Md.y.lessThan(.5).select(c,h)),g.z.assign(l.z.mul(g.w))}else{const e=fn(p.y,p.x.negate()).toVar("offset");p.x.assign(p.x.div(o)),e.x.assign(e.x.div(o)),e.assign(Md.x.lessThan(0).select(e.negate(),e)),ln(Md.y.lessThan(0),()=>{e.assign(e.sub(p))}).ElseIf(Md.y.greaterThan(1),()=>{e.assign(e.add(p))}),e.assign(e.mul(Lh)),e.assign(e.div(Xl.w.div(Wl))),g.assign(Md.y.lessThan(.5).select(l,d)),e.assign(e.mul(g.w)),g.assign(g.add(Sn(e,0,0)))}return g})();const o=an(({p1:e,p2:t,p3:r,p4:s})=>{const i=e.sub(r),n=s.sub(r),a=t.sub(e),o=i.dot(n),u=n.dot(a),l=i.dot(a),d=n.dot(n),c=a.dot(a).mul(d).sub(u.mul(u)),h=o.mul(u).sub(l.mul(d)).div(c).clamp(),p=o.add(u.mul(h)).div(d).clamp();return fn(h,p)});if(this.colorNode=an(()=>{const e=Al();if(i){const t=this.dashSizeNode?hn(this.dashSizeNode):Mh,r=this.gapSizeNode?hn(this.gapSizeNode):Bh;sa.assign(t),ia.assign(r);const s=Dn("float","lineDistance");e.y.lessThan(-1).or(e.y.greaterThan(1)).discard(),s.mod(sa.add(ia)).greaterThan(sa).discard()}const a=hn(1).toVar("alpha");if(n){const e=Dn("vec3","worldStart"),s=Dn("vec3","worldEnd"),n=Dn("vec4","worldPos").xyz.normalize().mul(1e5),u=s.sub(e),l=o({p1:e,p2:s,p3:Tn(0,0,0),p4:n}),d=e.add(u.mul(l.x)),c=n.mul(l.y),h=d.sub(c).length().div(Lh);if(!i)if(r&&t.currentSamples>0){const e=h.fwidth();a.assign(uu(e.negate().add(.5),e.add(.5),h).oneMinus())}else h.greaterThan(.5).discard()}else if(r&&t.currentSamples>0){const t=e.x,r=e.y.greaterThan(0).select(e.y.sub(1),e.y.add(1)),s=t.mul(t).add(r.mul(r)),i=hn(s.fwidth()).toVar("dlen");ln(e.y.abs().greaterThan(1),()=>{a.assign(uu(i.oneMinus(),i.add(1),s).oneMinus())})}else ln(e.y.abs().greaterThan(1),()=>{const t=e.x,r=e.y.greaterThan(0).select(e.y.sub(1),e.y.add(1));t.mul(t).add(r.mul(r)).greaterThan(1).discard()});let u;if(this.lineColorNode)u=this.lineColorNode;else if(s){const e=Sl("instanceColorStart"),t=Sl("instanceColorEnd");u=Md.y.lessThan(.5).select(e,t).mul(rh)}else u=rh;return Sn(u,a)})(),this.transparent){const e=this.opacityNode?hn(this.opacityNode):nh;this.outputNode=Sn(this.colorNode.rgb.mul(e).add(tg().rgb.mul(e.oneMinus())),this.colorNode.a)}super.setup(e)}get worldUnits(){return this._useWorldUnits}set worldUnits(e){this._useWorldUnits!==e&&(this._useWorldUnits=e,this.needsUpdate=!0)}get dashed(){return this._useDash}set dashed(e){this._useDash!==e&&(this._useDash=e,this.needsUpdate=!0)}get alphaToCoverage(){return this._useAlphaToCoverage}set alphaToCoverage(e){this._useAlphaToCoverage!==e&&(this._useAlphaToCoverage=e,this.needsUpdate=!0)}}const ig=new J;class ng extends Xp{static get type(){return"MeshNormalNodeMaterial"}constructor(e){super(),this.isMeshNormalNodeMaterial=!0,this.setDefaultValues(ig),this.setValues(e)}setupDiffuseColor(){const e=this.opacityNode?hn(this.opacityNode):nh;Un.assign(Gu(Sn(Hc(jd),e),ee))}}const ag=an(([e=Fd])=>{const t=e.z.atan(e.x).mul(1/(2*Math.PI)).add(.5),r=e.y.clamp(-1,1).asin().mul(1/Math.PI).add(.5);return fn(t,r)});class og extends te{constructor(e=1,t={}){super(e,t),this.isCubeRenderTarget=!0}fromEquirectangularTexture(e,t){const r=t.minFilter,s=t.generateMipmaps;t.generateMipmaps=!0,this.texture.type=t.type,this.texture.colorSpace=t.colorSpace,this.texture.generateMipmaps=t.generateMipmaps,this.texture.minFilter=t.minFilter,this.texture.magFilter=t.magFilter;const i=new re(5,5,5),n=ag(Fd),a=new Xp;a.colorNode=Pl(t,n,0),a.side=w,a.blending=Z;const o=new se(i,a),u=new ie;u.add(o),t.minFilter===q&&(t.minFilter=ne);const l=new ae(1,10,this),d=e.getMRT();return e.setMRT(null),l.update(e,u),e.setMRT(d),t.minFilter=r,t.currentGenerateMipmaps=s,o.geometry.dispose(),o.material.dispose(),this}}const ug=new WeakMap;class lg extends li{static get type(){return"CubeMapNode"}constructor(e){super("vec3"),this.envNode=e,this._cubeTexture=null,this._cubeTextureNode=hc(null);const t=new B;t.isRenderTargetTexture=!0,this._defaultTexture=t,this.updateBeforeType=Qs.RENDER}updateBefore(e){const{renderer:t,material:r}=e,s=this.envNode;if(s.isTextureNode||s.isMaterialReferenceNode){const e=s.isTextureNode?s.value:r[s.property];if(e&&e.isTexture){const r=e.mapping;if(r===oe||r===ue){if(ug.has(e)){const t=ug.get(e);cg(t,e.mapping),this._cubeTexture=t}else{const r=e.image;if(function(e){return null!=e&&e.height>0}(r)){const s=new og(r.height);s.fromEquirectangularTexture(t,e),cg(s.texture,e.mapping),this._cubeTexture=s.texture,ug.set(e,s.texture),e.addEventListener("dispose",dg)}else this._cubeTexture=this._defaultTexture}this._cubeTextureNode.value=this._cubeTexture}else this._cubeTextureNode=this.envNode}}}setup(e){return this.updateBefore(e),this._cubeTextureNode}}function dg(e){const t=e.target;t.removeEventListener("dispose",dg);const r=ug.get(t);void 0!==r&&(ug.delete(t),r.dispose())}function cg(e,t){t===oe?e.mapping=L:t===ue&&(e.mapping=P)}const hg=en(lg).setParameterLength(1);class pg extends gp{static get type(){return"BasicEnvironmentNode"}constructor(e=null){super(),this.envNode=e}setup(e){e.context.environment=hg(this.envNode)}}class gg extends gp{static get type(){return"BasicLightMapNode"}constructor(e=null){super(),this.lightMapNode=e}setup(e){const t=hn(1/Math.PI);e.context.irradianceLightMap=this.lightMapNode.mul(t)}}class mg{start(e){e.lightsNode.setupLights(e,e.lightsNode.getLightNodes(e)),this.indirect(e)}finish(){}direct(){}directRectArea(){}indirect(){}ambientOcclusion(){}}class fg extends mg{constructor(){super()}indirect({context:e}){const t=e.ambientOcclusion,r=e.reflectedLight,s=e.irradianceLightMap;r.indirectDiffuse.assign(Sn(0)),s?r.indirectDiffuse.addAssign(s):r.indirectDiffuse.addAssign(Sn(1,1,1,0)),r.indirectDiffuse.mulAssign(t),r.indirectDiffuse.mulAssign(Un.rgb)}finish(e){const{material:t,context:r}=e,s=r.outgoingLight,i=e.context.environment;if(i)switch(t.combine){case ce:s.rgb.assign(iu(s.rgb,s.rgb.mul(i.rgb),lh.mul(dh)));break;case de:s.rgb.assign(iu(s.rgb,i.rgb,lh.mul(dh)));break;case le:s.rgb.addAssign(i.rgb.mul(lh.mul(dh)));break;default:d("BasicLightingModel: Unsupported .combine value:",t.combine)}}}const yg=new he;class bg extends Xp{static get type(){return"MeshBasicNodeMaterial"}constructor(e){super(),this.isMeshBasicNodeMaterial=!0,this.lights=!0,this.setDefaultValues(yg),this.setValues(e)}setupNormal(){return kd(Wd)}setupEnvironment(e){const t=super.setupEnvironment(e);return t?new pg(t):null}setupLightMap(e){let t=null;return e.material.lightMap&&(t=new gg(Uh)),t}setupOutgoingLight(){return Un.rgb}setupLightingModel(){return new fg}}const xg=an(({f0:e,f90:t,dotVH:r})=>{const s=r.mul(-5.55473).sub(6.98316).mul(r).exp2();return e.mul(s.oneMinus()).add(t.mul(s))}),Tg=an(e=>e.diffuseColor.mul(1/Math.PI)),_g=an(({dotNH:e})=>ta.mul(hn(.5)).add(1).mul(hn(1/Math.PI)).mul(e.pow(ta))),vg=an(({lightDirection:e})=>{const t=e.add(Ud).normalize(),r=jd.dot(t).clamp(),s=Ud.dot(t).clamp(),i=xg({f0:Zn,f90:1,dotVH:s}),n=hn(.25),a=_g({dotNH:r});return i.mul(n).mul(a)});class Ng extends fg{constructor(e=!0){super(),this.specular=e}direct({lightDirection:e,lightColor:t,reflectedLight:r}){const s=jd.dot(e).clamp().mul(t);r.directDiffuse.addAssign(s.mul(Tg({diffuseColor:Un.rgb}))),!0===this.specular&&r.directSpecular.addAssign(s.mul(vg({lightDirection:e})).mul(lh))}indirect(e){const{ambientOcclusion:t,irradiance:r,reflectedLight:s}=e.context;s.indirectDiffuse.addAssign(r.mul(Tg({diffuseColor:Un}))),s.indirectDiffuse.mulAssign(t)}}const Sg=new pe;class Ag extends Xp{static get type(){return"MeshLambertNodeMaterial"}constructor(e){super(),this.isMeshLambertNodeMaterial=!0,this.lights=!0,this.setDefaultValues(Sg),this.setValues(e)}setupEnvironment(e){const t=super.setupEnvironment(e);return t?new pg(t):null}setupLightingModel(){return new Ng(!1)}}const Rg=new ge;class Eg extends Xp{static get type(){return"MeshPhongNodeMaterial"}constructor(e){super(),this.isMeshPhongNodeMaterial=!0,this.lights=!0,this.shininessNode=null,this.specularNode=null,this.setDefaultValues(Rg),this.setValues(e)}setupEnvironment(e){const t=super.setupEnvironment(e);return t?new pg(t):null}setupLightingModel(){return new Ng}setupVariants(){const e=(this.shininessNode?hn(this.shininessNode):sh).max(1e-4);ta.assign(e);const t=this.specularNode||ah;Zn.assign(t)}copy(e){return this.shininessNode=e.shininessNode,this.specularNode=e.specularNode,super.copy(e)}}const wg=an(e=>{if(!1===e.geometry.hasAttribute("normal"))return hn(0);const t=Wd.dFdx().abs().max(Wd.dFdy().abs());return t.x.max(t.y).max(t.z)}),Cg=an(e=>{const{roughness:t}=e,r=wg();let s=t.max(.0525);return s=s.add(r),s=s.min(1),s}),Mg=an(({alpha:e,dotNL:t,dotNV:r})=>{const s=e.pow2(),i=t.mul(s.add(s.oneMinus().mul(r.pow2())).sqrt()),n=r.mul(s.add(s.oneMinus().mul(t.pow2())).sqrt());return Ba(.5,i.add(n).max(to))}).setLayout({name:"V_GGX_SmithCorrelated",type:"float",inputs:[{name:"alpha",type:"float"},{name:"dotNL",type:"float"},{name:"dotNV",type:"float"}]}),Bg=an(({alphaT:e,alphaB:t,dotTV:r,dotBV:s,dotTL:i,dotBL:n,dotNV:a,dotNL:o})=>{const u=o.mul(Tn(e.mul(r),t.mul(s),a).length()),l=a.mul(Tn(e.mul(i),t.mul(n),o).length());return Ba(.5,u.add(l))}).setLayout({name:"V_GGX_SmithCorrelated_Anisotropic",type:"float",inputs:[{name:"alphaT",type:"float",qualifier:"in"},{name:"alphaB",type:"float",qualifier:"in"},{name:"dotTV",type:"float",qualifier:"in"},{name:"dotBV",type:"float",qualifier:"in"},{name:"dotTL",type:"float",qualifier:"in"},{name:"dotBL",type:"float",qualifier:"in"},{name:"dotNV",type:"float",qualifier:"in"},{name:"dotNL",type:"float",qualifier:"in"}]}),Lg=an(({alpha:e,dotNH:t})=>{const r=e.pow2(),s=t.pow2().mul(r.oneMinus()).oneMinus();return r.div(s.pow2()).mul(1/Math.PI)}).setLayout({name:"D_GGX",type:"float",inputs:[{name:"alpha",type:"float"},{name:"dotNH",type:"float"}]}),Pg=hn(1/Math.PI),Fg=an(({alphaT:e,alphaB:t,dotNH:r,dotTH:s,dotBH:i})=>{const n=e.mul(t),a=Tn(t.mul(s),e.mul(i),n.mul(r)),o=a.dot(a),u=n.div(o);return Pg.mul(n.mul(u.pow2()))}).setLayout({name:"D_GGX_Anisotropic",type:"float",inputs:[{name:"alphaT",type:"float",qualifier:"in"},{name:"alphaB",type:"float",qualifier:"in"},{name:"dotNH",type:"float",qualifier:"in"},{name:"dotTH",type:"float",qualifier:"in"},{name:"dotBH",type:"float",qualifier:"in"}]}),Dg=an(({lightDirection:e,f0:t,f90:r,roughness:s,f:i,normalView:n=jd,USE_IRIDESCENCE:a,USE_ANISOTROPY:o})=>{const u=s.pow2(),l=e.add(Ud).normalize(),d=n.dot(e).clamp(),c=n.dot(Ud).clamp(),h=n.dot(l).clamp(),p=Ud.dot(l).clamp();let g,m,f=xg({f0:t,f90:r,dotVH:p});if(qi(a)&&(f=Hn.mix(f,i)),qi(o)){const t=Yn.dot(e),r=Yn.dot(Ud),s=Yn.dot(l),i=Qn.dot(e),n=Qn.dot(Ud),a=Qn.dot(l);g=Bg({alphaT:Xn,alphaB:u,dotTV:r,dotBV:n,dotTL:t,dotBL:i,dotNV:c,dotNL:d}),m=Fg({alphaT:Xn,alphaB:u,dotNH:h,dotTH:s,dotBH:a})}else g=Mg({alpha:u,dotNL:d,dotNV:c}),m=Lg({alpha:u,dotNH:h});return f.mul(g).mul(m)}),Ug=new Uint16Array([12469,15057,12620,14925,13266,14620,13807,14376,14323,13990,14545,13625,14713,13328,14840,12882,14931,12528,14996,12233,15039,11829,15066,11525,15080,11295,15085,10976,15082,10705,15073,10495,13880,14564,13898,14542,13977,14430,14158,14124,14393,13732,14556,13410,14702,12996,14814,12596,14891,12291,14937,11834,14957,11489,14958,11194,14943,10803,14921,10506,14893,10278,14858,9960,14484,14039,14487,14025,14499,13941,14524,13740,14574,13468,14654,13106,14743,12678,14818,12344,14867,11893,14889,11509,14893,11180,14881,10751,14852,10428,14812,10128,14765,9754,14712,9466,14764,13480,14764,13475,14766,13440,14766,13347,14769,13070,14786,12713,14816,12387,14844,11957,14860,11549,14868,11215,14855,10751,14825,10403,14782,10044,14729,9651,14666,9352,14599,9029,14967,12835,14966,12831,14963,12804,14954,12723,14936,12564,14917,12347,14900,11958,14886,11569,14878,11247,14859,10765,14828,10401,14784,10011,14727,9600,14660,9289,14586,8893,14508,8533,15111,12234,15110,12234,15104,12216,15092,12156,15067,12010,15028,11776,14981,11500,14942,11205,14902,10752,14861,10393,14812,9991,14752,9570,14682,9252,14603,8808,14519,8445,14431,8145,15209,11449,15208,11451,15202,11451,15190,11438,15163,11384,15117,11274,15055,10979,14994,10648,14932,10343,14871,9936,14803,9532,14729,9218,14645,8742,14556,8381,14461,8020,14365,7603,15273,10603,15272,10607,15267,10619,15256,10631,15231,10614,15182,10535,15118,10389,15042,10167,14963,9787,14883,9447,14800,9115,14710,8665,14615,8318,14514,7911,14411,7507,14279,7198,15314,9675,15313,9683,15309,9712,15298,9759,15277,9797,15229,9773,15166,9668,15084,9487,14995,9274,14898,8910,14800,8539,14697,8234,14590,7790,14479,7409,14367,7067,14178,6621,15337,8619,15337,8631,15333,8677,15325,8769,15305,8871,15264,8940,15202,8909,15119,8775,15022,8565,14916,8328,14804,8009,14688,7614,14569,7287,14448,6888,14321,6483,14088,6171,15350,7402,15350,7419,15347,7480,15340,7613,15322,7804,15287,7973,15229,8057,15148,8012,15046,7846,14933,7611,14810,7357,14682,7069,14552,6656,14421,6316,14251,5948,14007,5528,15356,5942,15356,5977,15353,6119,15348,6294,15332,6551,15302,6824,15249,7044,15171,7122,15070,7050,14949,6861,14818,6611,14679,6349,14538,6067,14398,5651,14189,5311,13935,4958,15359,4123,15359,4153,15356,4296,15353,4646,15338,5160,15311,5508,15263,5829,15188,6042,15088,6094,14966,6001,14826,5796,14678,5543,14527,5287,14377,4985,14133,4586,13869,4257,15360,1563,15360,1642,15358,2076,15354,2636,15341,3350,15317,4019,15273,4429,15203,4732,15105,4911,14981,4932,14836,4818,14679,4621,14517,4386,14359,4156,14083,3795,13808,3437,15360,122,15360,137,15358,285,15355,636,15344,1274,15322,2177,15281,2765,15215,3223,15120,3451,14995,3569,14846,3567,14681,3466,14511,3305,14344,3121,14037,2800,13753,2467,15360,0,15360,1,15359,21,15355,89,15346,253,15325,479,15287,796,15225,1148,15133,1492,15008,1749,14856,1882,14685,1886,14506,1783,14324,1608,13996,1398,13702,1183]);let Ig=null;const Og=an(({roughness:e,dotNV:t})=>{null===Ig&&(Ig=new me(Ug,16,16,V,fe),Ig.name="DFG_LUT",Ig.minFilter=ne,Ig.magFilter=ne,Ig.wrapS=ye,Ig.wrapT=ye,Ig.generateMipmaps=!1,Ig.needsUpdate=!0);const r=fn(e,t);return Pl(Ig,r).rg}),Vg=an(({lightDirection:e,f0:t,f90:r,roughness:s,f:i,USE_IRIDESCENCE:n,USE_ANISOTROPY:a})=>{const o=Dg({lightDirection:e,f0:t,f90:r,roughness:s,f:i,USE_IRIDESCENCE:n,USE_ANISOTROPY:a}),u=jd.dot(e).clamp(),l=jd.dot(Ud).clamp(),d=Og({roughness:s,dotNV:l}),c=Og({roughness:s,dotNV:u}),h=t.mul(d.x).add(r.mul(d.y)),p=t.mul(c.x).add(r.mul(c.y)),g=d.x.add(d.y),m=c.x.add(c.y),f=hn(1).sub(g),y=hn(1).sub(m),b=t.add(t.oneMinus().mul(.047619)),x=h.mul(p).mul(b).div(hn(1).sub(f.mul(y).mul(b).mul(b)).add(to)),T=f.mul(y),_=x.mul(T);return o.add(_)}),kg=an(e=>{const{dotNV:t,specularColor:r,specularF90:s,roughness:i}=e,n=Og({dotNV:t,roughness:i});return r.mul(n.x).add(s.mul(n.y))}),Gg=an(({f:e,f90:t,dotVH:r})=>{const s=r.oneMinus().saturate(),i=s.mul(s),n=s.mul(i,i).clamp(0,.9999);return e.sub(Tn(t).mul(n)).div(n.oneMinus())}).setLayout({name:"Schlick_to_F0",type:"vec3",inputs:[{name:"f",type:"vec3"},{name:"f90",type:"float"},{name:"dotVH",type:"float"}]}),zg=an(({roughness:e,dotNH:t})=>{const r=e.pow2(),s=hn(1).div(r),i=t.pow2().oneMinus().max(.0078125);return hn(2).add(s).mul(i.pow(s.mul(.5))).div(2*Math.PI)}).setLayout({name:"D_Charlie",type:"float",inputs:[{name:"roughness",type:"float"},{name:"dotNH",type:"float"}]}),$g=an(({dotNV:e,dotNL:t})=>hn(1).div(hn(4).mul(t.add(e).sub(t.mul(e))))).setLayout({name:"V_Neubelt",type:"float",inputs:[{name:"dotNV",type:"float"},{name:"dotNL",type:"float"}]}),Wg=an(({lightDirection:e})=>{const t=e.add(Ud).normalize(),r=jd.dot(e).clamp(),s=jd.dot(Ud).clamp(),i=jd.dot(t).clamp(),n=zg({roughness:Wn,dotNH:i}),a=$g({dotNV:s,dotNL:r});return $n.mul(n).mul(a)}),Hg=an(({N:e,V:t,roughness:r})=>{const s=e.dot(t).saturate(),i=fn(r,s.oneMinus().sqrt());return i.assign(i.mul(.984375).add(.0078125)),i}).setLayout({name:"LTC_Uv",type:"vec2",inputs:[{name:"N",type:"vec3"},{name:"V",type:"vec3"},{name:"roughness",type:"float"}]}),jg=an(({f:e})=>{const t=e.length();return Wo(t.mul(t).add(e.z).div(t.add(1)),0)}).setLayout({name:"LTC_ClippedSphereFormFactor",type:"float",inputs:[{name:"f",type:"vec3"}]}),qg=an(({v1:e,v2:t})=>{const r=e.dot(t),s=r.abs().toVar(),i=s.mul(.0145206).add(.4965155).mul(s).add(.8543985).toVar(),n=s.add(4.1616724).mul(s).add(3.417594).toVar(),a=i.div(n),o=r.greaterThan(0).select(a,Wo(r.mul(r).oneMinus(),1e-7).inverseSqrt().mul(.5).sub(a));return e.cross(t).mul(o)}).setLayout({name:"LTC_EdgeVectorFormFactor",type:"vec3",inputs:[{name:"v1",type:"vec3"},{name:"v2",type:"vec3"}]}),Xg=an(({N:e,V:t,P:r,mInv:s,p0:i,p1:n,p2:a,p3:o})=>{const u=n.sub(i).toVar(),l=o.sub(i).toVar(),d=u.cross(l),c=Tn().toVar();return ln(d.dot(r.sub(i)).greaterThanEqual(0),()=>{const u=t.sub(e.mul(t.dot(e))).normalize(),l=e.cross(u).negate(),d=s.mul(Cn(u,l,e).transpose()).toVar(),h=d.mul(i.sub(r)).normalize().toVar(),p=d.mul(n.sub(r)).normalize().toVar(),g=d.mul(a.sub(r)).normalize().toVar(),m=d.mul(o.sub(r)).normalize().toVar(),f=Tn(0).toVar();f.addAssign(qg({v1:h,v2:p})),f.addAssign(qg({v1:p,v2:g})),f.addAssign(qg({v1:g,v2:m})),f.addAssign(qg({v1:m,v2:h})),c.assign(Tn(jg({f:f})))}),c}).setLayout({name:"LTC_Evaluate",type:"vec3",inputs:[{name:"N",type:"vec3"},{name:"V",type:"vec3"},{name:"P",type:"vec3"},{name:"mInv",type:"mat3"},{name:"p0",type:"vec3"},{name:"p1",type:"vec3"},{name:"p2",type:"vec3"},{name:"p3",type:"vec3"}]}),Kg=an(({P:e,p0:t,p1:r,p2:s,p3:i})=>{const n=r.sub(t).toVar(),a=i.sub(t).toVar(),o=n.cross(a),u=Tn().toVar();return ln(o.dot(e.sub(t)).greaterThanEqual(0),()=>{const n=t.sub(e).normalize().toVar(),a=r.sub(e).normalize().toVar(),o=s.sub(e).normalize().toVar(),l=i.sub(e).normalize().toVar(),d=Tn(0).toVar();d.addAssign(qg({v1:n,v2:a})),d.addAssign(qg({v1:a,v2:o})),d.addAssign(qg({v1:o,v2:l})),d.addAssign(qg({v1:l,v2:n})),u.assign(Tn(jg({f:d.abs()})))}),u}).setLayout({name:"LTC_Evaluate",type:"vec3",inputs:[{name:"P",type:"vec3"},{name:"p0",type:"vec3"},{name:"p1",type:"vec3"},{name:"p2",type:"vec3"},{name:"p3",type:"vec3"}]}),Yg=1/6,Qg=e=>Ma(Yg,Ma(e,Ma(e,e.negate().add(3)).sub(3)).add(1)),Zg=e=>Ma(Yg,Ma(e,Ma(e,Ma(3,e).sub(6))).add(4)),Jg=e=>Ma(Yg,Ma(e,Ma(e,Ma(-3,e).add(3)).add(3)).add(1)),em=e=>Ma(Yg,Qo(e,3)),tm=e=>Qg(e).add(Zg(e)),rm=e=>Jg(e).add(em(e)),sm=e=>wa(-1,Zg(e).div(Qg(e).add(Zg(e)))),im=e=>wa(1,em(e).div(Jg(e).add(em(e)))),nm=(e,t,r)=>{const s=e.uvNode,i=Ma(s,t.zw).add(.5),n=bo(i),a=_o(i),o=tm(a.x),u=rm(a.x),l=sm(a.x),d=im(a.x),c=sm(a.y),h=im(a.y),p=fn(n.x.add(l),n.y.add(c)).sub(.5).mul(t.xy),g=fn(n.x.add(d),n.y.add(c)).sub(.5).mul(t.xy),m=fn(n.x.add(l),n.y.add(h)).sub(.5).mul(t.xy),f=fn(n.x.add(d),n.y.add(h)).sub(.5).mul(t.xy),y=tm(a.y).mul(wa(o.mul(e.sample(p).level(r)),u.mul(e.sample(g).level(r)))),b=rm(a.y).mul(wa(o.mul(e.sample(m).level(r)),u.mul(e.sample(f).level(r))));return y.add(b)},am=an(([e,t])=>{const r=fn(e.size(pn(t))),s=fn(e.size(pn(t.add(1)))),i=Ba(1,r),n=Ba(1,s),a=nm(e,Sn(i,r),bo(t)),o=nm(e,Sn(n,s),xo(t));return _o(t).mix(a,o)}),om=an(([e,t])=>{const r=t.mul(Cl(e));return am(e,r)}),um=an(([e,t,r,s,i])=>{const n=Tn(ou(t.negate(),To(e),Ba(1,s))),a=Tn(Mo(i[0].xyz),Mo(i[1].xyz),Mo(i[2].xyz));return To(n).mul(r.mul(a))}).setLayout({name:"getVolumeTransmissionRay",type:"vec3",inputs:[{name:"n",type:"vec3"},{name:"v",type:"vec3"},{name:"thickness",type:"float"},{name:"ior",type:"float"},{name:"modelMatrix",type:"mat4"}]}),lm=an(([e,t])=>e.mul(nu(t.mul(2).sub(2),0,1))).setLayout({name:"applyIorToRoughness",type:"float",inputs:[{name:"roughness",type:"float"},{name:"ior",type:"float"}]}),dm=vp(),cm=vp(),hm=an(([e,t,r],{material:s})=>{const i=(s.side===w?dm:cm).sample(e),n=mo(jl.x).mul(lm(t,r));return am(i,n)}),pm=an(([e,t,r])=>(ln(r.notEqual(0),()=>{const s=go(t).negate().div(r);return ho(s.negate().mul(e))}),Tn(1))).setLayout({name:"volumeAttenuation",type:"vec3",inputs:[{name:"transmissionDistance",type:"float"},{name:"attenuationColor",type:"vec3"},{name:"attenuationDistance",type:"float"}]}),gm=an(([e,t,r,s,i,n,a,o,u,l,d,c,h,p,g])=>{let m,f;if(g){m=Sn().toVar(),f=Tn().toVar();const i=d.sub(1).mul(g.mul(.025)),n=Tn(d.sub(i),d,d.add(i));op({start:0,end:3},({i:i})=>{const d=n.element(i),g=um(e,t,c,d,o),y=a.add(g),b=l.mul(u.mul(Sn(y,1))),x=fn(b.xy.div(b.w)).toVar();x.addAssign(1),x.divAssign(2),x.assign(fn(x.x,x.y.oneMinus()));const T=hm(x,r,d);m.element(i).assign(T.element(i)),m.a.addAssign(T.a),f.element(i).assign(s.element(i).mul(pm(Mo(g),h,p).element(i)))}),m.a.divAssign(3)}else{const i=um(e,t,c,d,o),n=a.add(i),g=l.mul(u.mul(Sn(n,1))),y=fn(g.xy.div(g.w)).toVar();y.addAssign(1),y.divAssign(2),y.assign(fn(y.x,y.y.oneMinus())),m=hm(y,r,d),f=s.mul(pm(Mo(i),h,p))}const y=f.rgb.mul(m.rgb),b=e.dot(t).clamp(),x=Tn(kg({dotNV:b,specularColor:i,specularF90:n,roughness:r})),T=f.r.add(f.g,f.b).div(3);return Sn(x.oneMinus().mul(y),m.a.oneMinus().mul(T).oneMinus())}),mm=Cn(3.2404542,-.969266,.0556434,-1.5371385,1.8760108,-.2040259,-.4985314,.041556,1.0572252),fm=(e,t)=>e.sub(t).div(e.add(t)).pow2(),ym=an(({outsideIOR:e,eta2:t,cosTheta1:r,thinFilmThickness:s,baseF0:i})=>{const n=iu(e,t,uu(0,.03,s)),a=e.div(n).pow2().mul(r.pow2().oneMinus()).oneMinus();ln(a.lessThan(0),()=>Tn(1));const o=a.sqrt(),u=fm(n,e),l=xg({f0:u,f90:1,dotVH:r}),d=l.oneMinus(),c=n.lessThan(e).select(Math.PI,0),h=hn(Math.PI).sub(c),p=(e=>{const t=e.sqrt();return Tn(1).add(t).div(Tn(1).sub(t))})(i.clamp(0,.9999)),g=fm(p,n.toVec3()),m=xg({f0:g,f90:1,dotVH:o}),f=Tn(p.x.lessThan(n).select(Math.PI,0),p.y.lessThan(n).select(Math.PI,0),p.z.lessThan(n).select(Math.PI,0)),y=n.mul(s,o,2),b=Tn(h).add(f),x=l.mul(m).clamp(1e-5,.9999),T=x.sqrt(),_=d.pow2().mul(m).div(Tn(1).sub(x)),v=l.add(_).toVar(),N=_.sub(d).toVar();return op({start:1,end:2,condition:"<=",name:"m"},({m:e})=>{N.mulAssign(T);const t=((e,t)=>{const r=e.mul(2*Math.PI*1e-9),s=Tn(54856e-17,44201e-17,52481e-17),i=Tn(1681e3,1795300,2208400),n=Tn(43278e5,93046e5,66121e5),a=hn(9747e-17*Math.sqrt(2*Math.PI*45282e5)).mul(r.mul(2239900).add(t.x).cos()).mul(r.pow2().mul(-45282e5).exp());let o=s.mul(n.mul(2*Math.PI).sqrt()).mul(i.mul(r).add(t).cos()).mul(r.pow2().negate().mul(n).exp());return o=Tn(o.x.add(a),o.y,o.z).div(1.0685e-7),mm.mul(o)})(hn(e).mul(y),hn(e).mul(b)).mul(2);v.addAssign(N.mul(t))}),v.max(Tn(0))}).setLayout({name:"evalIridescence",type:"vec3",inputs:[{name:"outsideIOR",type:"float"},{name:"eta2",type:"float"},{name:"cosTheta1",type:"float"},{name:"thinFilmThickness",type:"float"},{name:"baseF0",type:"vec3"}]}),bm=an(({normal:e,viewDir:t,roughness:r})=>{const s=e.dot(t).saturate(),i=r.mul(r),n=r.add(.1).reciprocal(),a=hn(-1.9362).add(r.mul(1.0678)).add(i.mul(.4573)).sub(n.mul(.8469)),o=hn(-.6014).add(r.mul(.5538)).sub(i.mul(.467)).sub(n.mul(.1255));return a.mul(s).add(o).exp().saturate()}),xm=Tn(.04),Tm=hn(1);class _m extends mg{constructor(e=!1,t=!1,r=!1,s=!1,i=!1,n=!1){super(),this.clearcoat=e,this.sheen=t,this.iridescence=r,this.anisotropy=s,this.transmission=i,this.dispersion=n,this.clearcoatRadiance=null,this.clearcoatSpecularDirect=null,this.clearcoatSpecularIndirect=null,this.sheenSpecularDirect=null,this.sheenSpecularIndirect=null,this.iridescenceFresnel=null,this.iridescenceF0=null,this.iridescenceF0Dielectric=null,this.iridescenceF0Metallic=null}start(e){if(!0===this.clearcoat&&(this.clearcoatRadiance=Tn().toVar("clearcoatRadiance"),this.clearcoatSpecularDirect=Tn().toVar("clearcoatSpecularDirect"),this.clearcoatSpecularIndirect=Tn().toVar("clearcoatSpecularIndirect")),!0===this.sheen&&(this.sheenSpecularDirect=Tn().toVar("sheenSpecularDirect"),this.sheenSpecularIndirect=Tn().toVar("sheenSpecularIndirect")),!0===this.iridescence){const e=jd.dot(Ud).clamp(),t=ym({outsideIOR:hn(1),eta2:jn,cosTheta1:e,thinFilmThickness:qn,baseF0:Zn}),r=ym({outsideIOR:hn(1),eta2:jn,cosTheta1:e,thinFilmThickness:qn,baseF0:Un.rgb});this.iridescenceFresnel=iu(t,r,kn),this.iridescenceF0Dielectric=Gg({f:t,f90:1,dotVH:e}),this.iridescenceF0Metallic=Gg({f:r,f90:1,dotVH:e}),this.iridescenceF0=iu(this.iridescenceF0Dielectric,this.iridescenceF0Metallic,kn)}if(!0===this.transmission){const t=Pd,r=od.sub(Pd).normalize(),s=qd,i=e.context;i.backdrop=gm(s,r,Vn,In,Jn,ea,t,xd,id,rd,aa,ua,da,la,this.dispersion?ca:null),i.backdropAlpha=oa,Un.a.mulAssign(iu(1,i.backdrop.a,oa))}super.start(e)}computeMultiscattering(e,t,r,s,i=null){const n=jd.dot(Ud).clamp(),a=Og({roughness:Vn,dotNV:n}),o=i?Hn.mix(s,i):s,u=o.mul(a.x).add(r.mul(a.y)),l=a.x.add(a.y).oneMinus(),d=o.add(o.oneMinus().mul(.047619)),c=u.mul(d).div(l.mul(d).oneMinus());e.addAssign(u),t.addAssign(c.mul(l))}direct({lightDirection:e,lightColor:t,reflectedLight:r}){const s=jd.dot(e).clamp().mul(t).toVar();if(!0===this.sheen){this.sheenSpecularDirect.addAssign(s.mul(Wg({lightDirection:e})));const t=bm({normal:jd,viewDir:Ud,roughness:Wn}),r=bm({normal:jd,viewDir:e,roughness:Wn}),i=$n.r.max($n.g).max($n.b).mul(t.max(r)).oneMinus();s.mulAssign(i)}if(!0===this.clearcoat){const r=Xd.dot(e).clamp().mul(t);this.clearcoatSpecularDirect.addAssign(r.mul(Dg({lightDirection:e,f0:xm,f90:Tm,roughness:zn,normalView:Xd})))}r.directDiffuse.addAssign(s.mul(Tg({diffuseColor:In}))),r.directSpecular.addAssign(s.mul(Vg({lightDirection:e,f0:Jn,f90:1,roughness:Vn,f:this.iridescenceFresnel,USE_IRIDESCENCE:this.iridescence,USE_ANISOTROPY:this.anisotropy})))}directRectArea({lightColor:e,lightPosition:t,halfWidth:r,halfHeight:s,reflectedLight:i,ltc_1:n,ltc_2:a}){const o=t.add(r).sub(s),u=t.sub(r).sub(s),l=t.sub(r).add(s),d=t.add(r).add(s),c=jd,h=Ud,p=Dd.toVar(),g=Hg({N:c,V:h,roughness:Vn}),m=n.sample(g).toVar(),f=a.sample(g).toVar(),y=Cn(Tn(m.x,0,m.y),Tn(0,1,0),Tn(m.z,0,m.w)).toVar(),b=Jn.mul(f.x).add(Jn.oneMinus().mul(f.y)).toVar();i.directSpecular.addAssign(e.mul(b).mul(Xg({N:c,V:h,P:p,mInv:y,p0:o,p1:u,p2:l,p3:d}))),i.directDiffuse.addAssign(e.mul(In).mul(Xg({N:c,V:h,P:p,mInv:Cn(1,0,0,0,1,0,0,0,1),p0:o,p1:u,p2:l,p3:d})))}indirect(e){this.indirectDiffuse(e),this.indirectSpecular(e),this.ambientOcclusion(e)}indirectDiffuse(e){const{irradiance:t,reflectedLight:r}=e.context,s=t.mul(Tg({diffuseColor:In})).toVar();if(!0===this.sheen){const e=bm({normal:jd,viewDir:Ud,roughness:Wn}),t=$n.r.max($n.g).max($n.b).mul(e).oneMinus();s.mulAssign(t)}r.indirectDiffuse.addAssign(s)}indirectSpecular(e){const{radiance:t,iblIrradiance:r,reflectedLight:s}=e.context;if(!0===this.sheen&&this.sheenSpecularIndirect.addAssign(r.mul($n,bm({normal:jd,viewDir:Ud,roughness:Wn}))),!0===this.clearcoat){const e=Xd.dot(Ud).clamp(),t=kg({dotNV:e,specularColor:xm,specularF90:Tm,roughness:zn});this.clearcoatSpecularIndirect.addAssign(this.clearcoatRadiance.mul(t))}const i=Tn().toVar("singleScatteringDielectric"),n=Tn().toVar("multiScatteringDielectric"),a=Tn().toVar("singleScatteringMetallic"),o=Tn().toVar("multiScatteringMetallic");this.computeMultiscattering(i,n,ea,Zn,this.iridescenceF0Dielectric),this.computeMultiscattering(a,o,ea,Un.rgb,this.iridescenceF0Metallic);const u=iu(i,a,kn),l=iu(n,o,kn),d=i.add(n),c=In.mul(d.oneMinus()),h=r.mul(1/Math.PI),p=t.mul(u).add(l.mul(h)).toVar(),g=c.mul(h).toVar();if(!0===this.sheen){const e=bm({normal:jd,viewDir:Ud,roughness:Wn}),t=$n.r.max($n.g).max($n.b).mul(e).oneMinus();p.mulAssign(t),g.mulAssign(t)}s.indirectSpecular.addAssign(p),s.indirectDiffuse.addAssign(g)}ambientOcclusion(e){const{ambientOcclusion:t,reflectedLight:r}=e.context,s=jd.dot(Ud).clamp().add(t),i=Vn.mul(-16).oneMinus().negate().exp2(),n=t.sub(s.pow(i).oneMinus()).clamp();!0===this.clearcoat&&this.clearcoatSpecularIndirect.mulAssign(t),!0===this.sheen&&this.sheenSpecularIndirect.mulAssign(t),r.indirectDiffuse.mulAssign(t),r.indirectSpecular.mulAssign(n)}finish({context:e}){const{outgoingLight:t}=e;if(!0===this.clearcoat){const e=Xd.dot(Ud).clamp(),r=xg({dotVH:e,f0:xm,f90:Tm}),s=t.mul(Gn.mul(r).oneMinus()).add(this.clearcoatSpecularDirect.add(this.clearcoatSpecularIndirect).mul(Gn));t.assign(s)}if(!0===this.sheen){const e=t.add(this.sheenSpecularDirect,this.sheenSpecularIndirect.mul(1/Math.PI));t.assign(e)}}}const vm=hn(1),Nm=hn(-2),Sm=hn(.8),Am=hn(-1),Rm=hn(.4),Em=hn(2),wm=hn(.305),Cm=hn(3),Mm=hn(.21),Bm=hn(4),Lm=hn(4),Pm=hn(16),Fm=an(([e])=>{const t=Tn(wo(e)).toVar(),r=hn(-1).toVar();return ln(t.x.greaterThan(t.z),()=>{ln(t.x.greaterThan(t.y),()=>{r.assign(bu(e.x.greaterThan(0),0,3))}).Else(()=>{r.assign(bu(e.y.greaterThan(0),1,4))})}).Else(()=>{ln(t.z.greaterThan(t.y),()=>{r.assign(bu(e.z.greaterThan(0),2,5))}).Else(()=>{r.assign(bu(e.y.greaterThan(0),1,4))})}),r}).setLayout({name:"getFace",type:"float",inputs:[{name:"direction",type:"vec3"}]}),Dm=an(([e,t])=>{const r=fn().toVar();return ln(t.equal(0),()=>{r.assign(fn(e.z,e.y).div(wo(e.x)))}).ElseIf(t.equal(1),()=>{r.assign(fn(e.x.negate(),e.z.negate()).div(wo(e.y)))}).ElseIf(t.equal(2),()=>{r.assign(fn(e.x.negate(),e.y).div(wo(e.z)))}).ElseIf(t.equal(3),()=>{r.assign(fn(e.z.negate(),e.y).div(wo(e.x)))}).ElseIf(t.equal(4),()=>{r.assign(fn(e.x.negate(),e.z).div(wo(e.y)))}).Else(()=>{r.assign(fn(e.x,e.y).div(wo(e.z)))}),Ma(.5,r.add(1))}).setLayout({name:"getUV",type:"vec2",inputs:[{name:"direction",type:"vec3"},{name:"face",type:"float"}]}),Um=an(([e])=>{const t=hn(0).toVar();return ln(e.greaterThanEqual(Sm),()=>{t.assign(vm.sub(e).mul(Am.sub(Nm)).div(vm.sub(Sm)).add(Nm))}).ElseIf(e.greaterThanEqual(Rm),()=>{t.assign(Sm.sub(e).mul(Em.sub(Am)).div(Sm.sub(Rm)).add(Am))}).ElseIf(e.greaterThanEqual(wm),()=>{t.assign(Rm.sub(e).mul(Cm.sub(Em)).div(Rm.sub(wm)).add(Em))}).ElseIf(e.greaterThanEqual(Mm),()=>{t.assign(wm.sub(e).mul(Bm.sub(Cm)).div(wm.sub(Mm)).add(Cm))}).Else(()=>{t.assign(hn(-2).mul(mo(Ma(1.16,e))))}),t}).setLayout({name:"roughnessToMip",type:"float",inputs:[{name:"roughness",type:"float"}]}),Im=an(([e,t])=>{const r=e.toVar();r.assign(Ma(2,r).sub(1));const s=Tn(r,1).toVar();return ln(t.equal(0),()=>{s.assign(s.zyx)}).ElseIf(t.equal(1),()=>{s.assign(s.xzy),s.xz.mulAssign(-1)}).ElseIf(t.equal(2),()=>{s.x.mulAssign(-1)}).ElseIf(t.equal(3),()=>{s.assign(s.zyx),s.xz.mulAssign(-1)}).ElseIf(t.equal(4),()=>{s.assign(s.xzy),s.xy.mulAssign(-1)}).ElseIf(t.equal(5),()=>{s.z.mulAssign(-1)}),s}).setLayout({name:"getDirection",type:"vec3",inputs:[{name:"uv",type:"vec2"},{name:"face",type:"float"}]}),Om=an(([e,t,r,s,i,n])=>{const a=hn(r),o=Tn(t),u=nu(Um(a),Nm,n),l=_o(u),d=bo(u),c=Tn(Vm(e,o,d,s,i,n)).toVar();return ln(l.notEqual(0),()=>{const t=Tn(Vm(e,o,d.add(1),s,i,n)).toVar();c.assign(iu(c,t,l))}),c}),Vm=an(([e,t,r,s,i,n])=>{const a=hn(r).toVar(),o=Tn(t),u=hn(Fm(o)).toVar(),l=hn(Wo(Lm.sub(a),0)).toVar();a.assign(Wo(a,Lm));const d=hn(po(a)).toVar(),c=fn(Dm(o,u).mul(d.sub(2)).add(1)).toVar();return ln(u.greaterThan(2),()=>{c.y.addAssign(d),u.subAssign(3)}),c.x.addAssign(u.mul(d)),c.x.addAssign(l.mul(Ma(3,Pm))),c.y.addAssign(Ma(4,po(n).sub(d))),c.x.mulAssign(s),c.y.mulAssign(i),e.sample(c).grad(fn(),fn())}),km=an(({envMap:e,mipInt:t,outputDirection:r,theta:s,axis:i,CUBEUV_TEXEL_WIDTH:n,CUBEUV_TEXEL_HEIGHT:a,CUBEUV_MAX_MIP:o})=>{const u=No(s),l=r.mul(u).add(i.cross(r).mul(vo(s))).add(i.mul(i.dot(r).mul(u.oneMinus())));return Vm(e,l,t,n,a,o)}),Gm=an(({n:e,latitudinal:t,poleAxis:r,outputDirection:s,weights:i,samples:n,dTheta:a,mipInt:o,envMap:u,CUBEUV_TEXEL_WIDTH:l,CUBEUV_TEXEL_HEIGHT:d,CUBEUV_MAX_MIP:c})=>{const h=Tn(bu(t,r,Yo(r,s))).toVar();ln(h.equal(Tn(0)),()=>{h.assign(Tn(s.z,0,s.x.negate()))}),h.assign(To(h));const p=Tn().toVar();return p.addAssign(i.element(0).mul(km({theta:0,axis:h,outputDirection:s,mipInt:o,envMap:u,CUBEUV_TEXEL_WIDTH:l,CUBEUV_TEXEL_HEIGHT:d,CUBEUV_MAX_MIP:c}))),op({start:pn(1),end:e},({i:e})=>{ln(e.greaterThanEqual(n),()=>{up()});const t=hn(a.mul(hn(e))).toVar();p.addAssign(i.element(e).mul(km({theta:t.mul(-1),axis:h,outputDirection:s,mipInt:o,envMap:u,CUBEUV_TEXEL_WIDTH:l,CUBEUV_TEXEL_HEIGHT:d,CUBEUV_MAX_MIP:c}))),p.addAssign(i.element(e).mul(km({theta:t,axis:h,outputDirection:s,mipInt:o,envMap:u,CUBEUV_TEXEL_WIDTH:l,CUBEUV_TEXEL_HEIGHT:d,CUBEUV_MAX_MIP:c})))}),Sn(p,1)}),zm=an(([e])=>{const t=gn(e).toVar();return t.assign(t.shiftLeft(gn(16)).bitOr(t.shiftRight(gn(16)))),t.assign(t.bitAnd(gn(1431655765)).shiftLeft(gn(1)).bitOr(t.bitAnd(gn(2863311530)).shiftRight(gn(1)))),t.assign(t.bitAnd(gn(858993459)).shiftLeft(gn(2)).bitOr(t.bitAnd(gn(3435973836)).shiftRight(gn(2)))),t.assign(t.bitAnd(gn(252645135)).shiftLeft(gn(4)).bitOr(t.bitAnd(gn(4042322160)).shiftRight(gn(4)))),t.assign(t.bitAnd(gn(16711935)).shiftLeft(gn(8)).bitOr(t.bitAnd(gn(4278255360)).shiftRight(gn(8)))),hn(t).mul(2.3283064365386963e-10)}),$m=an(([e,t])=>fn(hn(e).div(hn(t)),zm(e))),Wm=an(([e,t,r])=>{const s=Tn(t).toVar(),i=hn(r),n=i.mul(i).toVar(),a=To(Tn(n.mul(s.x),n.mul(s.y),s.z)).toVar(),o=a.x.mul(a.x).add(a.y.mul(a.y)),u=bu(o.greaterThan(0),Tn(a.y.negate(),a.x,0).div(fo(o)),Tn(1,0,0)).toVar(),l=Yo(a,u).toVar(),d=fo(e.x),c=Ma(2,3.14159265359).mul(e.y),h=d.mul(No(c)).toVar(),p=d.mul(vo(c)).toVar(),g=Ma(.5,a.z.add(1));p.assign(g.oneMinus().mul(fo(h.mul(h).oneMinus())).add(g.mul(p)));const m=u.mul(h).add(l.mul(p)).add(a.mul(fo(Wo(0,h.mul(h).add(p.mul(p)).oneMinus()))));return To(Tn(n.mul(m.x),n.mul(m.y),Wo(0,m.z)))}),Hm=an(({roughness:e,mipInt:t,envMap:r,N_immutable:s,GGX_SAMPLES:i,CUBEUV_TEXEL_WIDTH:n,CUBEUV_TEXEL_HEIGHT:a,CUBEUV_MAX_MIP:o})=>{const u=Tn(s).toVar(),l=Tn(0).toVar(),d=hn(0).toVar();return ln(e.lessThan(.001),()=>{l.assign(Vm(r,u,t,n,a,o))}).Else(()=>{const s=bu(wo(u.z).lessThan(.999),Tn(0,0,1),Tn(1,0,0)),c=To(Yo(s,u)).toVar(),h=Yo(u,c).toVar();op({start:gn(0),end:i},({i:s})=>{const p=$m(s,i),g=Wm(p,Tn(0,0,1),e),m=To(c.mul(g.x).add(h.mul(g.y)).add(u.mul(g.z))),f=To(m.mul(Ko(u,m).mul(2)).sub(u)),y=Wo(Ko(u,f),0);ln(y.greaterThan(0),()=>{const e=Vm(r,f,t,n,a,o);l.addAssign(e.mul(y)),d.addAssign(y)})}),ln(d.greaterThan(0),()=>{l.assign(l.div(d))})}),Sn(l,1)}),jm=[.125,.215,.35,.446,.526,.582],qm=20,Xm=new xe(-1,1,1,-1,0,1),Km=new Te(90,1),Ym=new e;let Qm=null,Zm=0,Jm=0;const ef=new r,tf=new WeakMap,rf=[3,1,5,0,4,2],sf=Im(Al(),Sl("faceIndex")).normalize(),nf=Tn(sf.x,sf.y,sf.z);class af{constructor(e){this._renderer=e,this._pingPongRenderTarget=null,this._lodMax=0,this._cubeSize=0,this._sizeLods=[],this._sigmas=[],this._lodMeshes=[],this._blurMaterial=null,this._ggxMaterial=null,this._cubemapMaterial=null,this._equirectMaterial=null,this._backgroundBox=null}get _hasInitialized(){return this._renderer.hasInitialized()}fromScene(e,t=0,r=.1,s=100,i={}){const{size:n=256,position:a=ef,renderTarget:o=null}=i;if(this._setSize(n),!1===this._hasInitialized){d('PMREMGenerator: ".fromScene()" called before the backend is initialized. Try using "await renderer.init()" instead.');const n=o||this._allocateTarget();return i.renderTarget=n,this.fromSceneAsync(e,t,r,s,i),n}Qm=this._renderer.getRenderTarget(),Zm=this._renderer.getActiveCubeFace(),Jm=this._renderer.getActiveMipmapLevel();const u=o||this._allocateTarget();return u.depthBuffer=!0,this._init(u),this._sceneToCubeUV(e,r,s,u,a),t>0&&this._blur(u,0,0,t),this._applyPMREM(u),this._cleanup(u),u}async fromSceneAsync(e,t=0,r=.1,s=100,i={}){return v('PMREMGenerator: ".fromSceneAsync()" is deprecated. Use "await renderer.init()" instead.'),await this._renderer.init(),this.fromScene(e,t,r,s,i)}fromEquirectangular(e,t=null){if(!1===this._hasInitialized){d('PMREMGenerator: .fromEquirectangular() called before the backend is initialized. Try using "await renderer.init()" instead.'),this._setSizeFromTexture(e);const r=t||this._allocateTarget();return this.fromEquirectangularAsync(e,r),r}return this._fromTexture(e,t)}async fromEquirectangularAsync(e,t=null){return v('PMREMGenerator: ".fromEquirectangularAsync()" is deprecated. Use "await renderer.init()" instead.'),await this._renderer.init(),this._fromTexture(e,t)}fromCubemap(e,t=null){if(!1===this._hasInitialized){d("PMREMGenerator: .fromCubemap() called before the backend is initialized. Try using .fromCubemapAsync() instead."),this._setSizeFromTexture(e);const r=t||this._allocateTarget();return this.fromCubemapAsync(e,t),r}return this._fromTexture(e,t)}async fromCubemapAsync(e,t=null){return v('PMREMGenerator: ".fromCubemapAsync()" is deprecated. Use "await renderer.init()" instead.'),await this._renderer.init(),this._fromTexture(e,t)}async compileCubemapShader(){null===this._cubemapMaterial&&(this._cubemapMaterial=df(),await this._compileMaterial(this._cubemapMaterial))}async compileEquirectangularShader(){null===this._equirectMaterial&&(this._equirectMaterial=cf(),await this._compileMaterial(this._equirectMaterial))}dispose(){this._dispose(),null!==this._cubemapMaterial&&this._cubemapMaterial.dispose(),null!==this._equirectMaterial&&this._equirectMaterial.dispose(),null!==this._backgroundBox&&(this._backgroundBox.geometry.dispose(),this._backgroundBox.material.dispose())}_setSizeFromTexture(e){e.mapping===L||e.mapping===P?this._setSize(0===e.image.length?16:e.image[0].width||e.image[0].image.width):this._setSize(e.image.width/4)}_setSize(e){this._lodMax=Math.floor(Math.log2(e)),this._cubeSize=Math.pow(2,this._lodMax)}_dispose(){null!==this._blurMaterial&&this._blurMaterial.dispose(),null!==this._ggxMaterial&&this._ggxMaterial.dispose(),null!==this._pingPongRenderTarget&&this._pingPongRenderTarget.dispose();for(let e=0;ee-4?o=jm[a-e+4-1]:0===a&&(o=0),r.push(o);const u=1/(n-2),l=-u,d=1+u,c=[l,l,d,l,d,d,l,l,d,d,l,d],h=6,p=6,g=3,m=2,f=1,y=new Float32Array(g*p*h),b=new Float32Array(m*p*h),x=new Float32Array(f*p*h);for(let e=0;e2?0:-1,s=[t,r,0,t+2/3,r,0,t+2/3,r+1,0,t,r,0,t+2/3,r+1,0,t,r+1,0],i=rf[e];y.set(s,g*p*i),b.set(c,m*p*i);const n=[i,i,i,i,i,i];x.set(n,f*p*i)}const T=new be;T.setAttribute("position",new Ae(y,g)),T.setAttribute("uv",new Ae(b,m)),T.setAttribute("faceIndex",new Ae(x,f)),s.push(new se(T,null)),i>4&&i--}return{lodMeshes:s,sizeLods:t,sigmas:r}}(t)),this._blurMaterial=function(e,t,s){const i=Vl(new Array(qm).fill(0)),n=xa(new r(0,1,0)),a=xa(0),o=hn(qm),u=xa(0),l=xa(1),d=Pl(),c=xa(0),h=hn(1/t),p=hn(1/s),g=hn(e),m={n:o,latitudinal:u,weights:i,poleAxis:n,outputDirection:nf,dTheta:a,samples:l,envMap:d,mipInt:c,CUBEUV_TEXEL_WIDTH:h,CUBEUV_TEXEL_HEIGHT:p,CUBEUV_MAX_MIP:g},f=lf("blur");return f.fragmentNode=Gm({...m,latitudinal:u.equal(1)}),tf.set(f,m),f}(t,e.width,e.height),this._ggxMaterial=function(e,t,r){const s=Pl(),i=xa(0),n=xa(0),a=hn(1/t),o=hn(1/r),u=hn(e),l={envMap:s,roughness:i,mipInt:n,CUBEUV_TEXEL_WIDTH:a,CUBEUV_TEXEL_HEIGHT:o,CUBEUV_MAX_MIP:u},d=lf("ggx");return d.fragmentNode=Hm({...l,N_immutable:nf,GGX_SAMPLES:gn(512)}),tf.set(d,l),d}(t,e.width,e.height)}}async _compileMaterial(e){const t=new se(new be,e);await this._renderer.compile(t,Xm)}_sceneToCubeUV(e,t,r,s,i){const n=Km;n.near=t,n.far=r;const a=[1,1,1,1,-1,1],o=[1,-1,1,-1,1,-1],u=this._renderer,l=u.autoClear;u.getClearColor(Ym),u.autoClear=!1,null===this._backgroundBox&&(this._backgroundBox=new se(new re,new he({name:"PMREM.Background",side:w,depthWrite:!1,depthTest:!1})));const d=this._backgroundBox,c=d.material;let h=!1;const p=e.background;p?p.isColor&&(c.color.copy(p),e.background=null,h=!0):(c.color.copy(Ym),h=!0),u.setRenderTarget(s),u.clear(),h&&u.render(d,n);for(let t=0;t<6;t++){const r=t%3;0===r?(n.up.set(0,a[t],0),n.position.set(i.x,i.y,i.z),n.lookAt(i.x+o[t],i.y,i.z)):1===r?(n.up.set(0,0,a[t]),n.position.set(i.x,i.y,i.z),n.lookAt(i.x,i.y+o[t],i.z)):(n.up.set(0,a[t],0),n.position.set(i.x,i.y,i.z),n.lookAt(i.x,i.y,i.z+o[t]));const l=this._cubeSize;uf(s,r*l,t>2?l:0,l,l),u.render(e,n)}u.autoClear=l,e.background=p}_textureToCubeUV(e,t){const r=this._renderer,s=e.mapping===L||e.mapping===P;s?null===this._cubemapMaterial&&(this._cubemapMaterial=df(e)):null===this._equirectMaterial&&(this._equirectMaterial=cf(e));const i=s?this._cubemapMaterial:this._equirectMaterial;i.fragmentNode.value=e;const n=this._lodMeshes[0];n.material=i;const a=this._cubeSize;uf(t,0,0,3*a,2*a),r.setRenderTarget(t),r.render(n,Xm)}_applyPMREM(e){const t=this._renderer,r=t.autoClear;t.autoClear=!1;const s=this._lodMeshes.length;for(let t=1;tc-4?r-c+4:0),g=4*(this._cubeSize-h);e.texture.frame=(e.texture.frame||0)+1,o.envMap.value=e.texture,o.roughness.value=d,o.mipInt.value=c-t,uf(i,p,g,3*h,2*h),s.setRenderTarget(i),s.render(a,Xm),i.texture.frame=(i.texture.frame||0)+1,o.envMap.value=i.texture,o.roughness.value=0,o.mipInt.value=c-r,uf(e,p,g,3*h,2*h),s.setRenderTarget(e),s.render(a,Xm)}_blur(e,t,r,s,i){const n=this._pingPongRenderTarget;this._halfBlur(e,n,t,r,s,"latitudinal",i),this._halfBlur(n,e,r,r,s,"longitudinal",i)}_halfBlur(e,t,r,s,i,n,a){const u=this._renderer,l=this._blurMaterial;"latitudinal"!==n&&"longitudinal"!==n&&o("blur direction must be either latitudinal or longitudinal!");const c=this._lodMeshes[s];c.material=l;const h=tf.get(l),p=this._sizeLods[r]-1,g=isFinite(i)?Math.PI/(2*p):2*Math.PI/39,m=i/g,f=isFinite(i)?1+Math.floor(3*m):qm;f>qm&&d(`sigmaRadians, ${i}, is too large and will clip, as it requested ${f} samples when the maximum is set to 20`);const y=[];let b=0;for(let e=0;ex-4?s-x+4:0),4*(this._cubeSize-T),3*T,2*T),u.setRenderTarget(t),u.render(c,Xm)}}function of(e,t){const r=new _e(e,t,{magFilter:ne,minFilter:ne,generateMipmaps:!1,type:fe,format:Ne,colorSpace:ve});return r.texture.mapping=Se,r.texture.name="PMREM.cubeUv",r.texture.isPMREMTexture=!0,r.scissorTest=!0,r}function uf(e,t,r,s,i){e.viewport.set(t,r,s,i),e.scissor.set(t,r,s,i)}function lf(e){const t=new Xp;return t.depthTest=!1,t.depthWrite=!1,t.blending=Z,t.name=`PMREM_${e}`,t}function df(e){const t=lf("cubemap");return t.fragmentNode=hc(e,nf),t}function cf(e){const t=lf("equirect");return t.fragmentNode=Pl(e,ag(nf),0),t}const hf=new WeakMap;function pf(e,t,r){const s=function(e){let t=hf.get(e);void 0===t&&(t=new WeakMap,hf.set(e,t));return t}(t);let i=s.get(e);if((void 0!==i?i.pmremVersion:-1)!==e.pmremVersion){const t=e.image;if(e.isCubeTexture){if(!function(e){if(null==e)return!1;let t=0;const r=6;for(let s=0;s0}(t))return null;i=r.fromEquirectangular(e,i)}i.pmremVersion=e.pmremVersion,s.set(e,i)}return i.texture}class gf extends li{static get type(){return"PMREMNode"}constructor(e,t=null,r=null){super("vec3"),this._value=e,this._pmrem=null,this.uvNode=t,this.levelNode=r,this._generator=null;const s=new N;s.isRenderTargetTexture=!0,this._texture=Pl(s),this._width=xa(0),this._height=xa(0),this._maxMip=xa(0),this.updateBeforeType=Qs.RENDER}set value(e){this._value=e,this._pmrem=null}get value(){return this._value}updateFromTexture(e){const t=function(e){const t=Math.log2(e)-2,r=1/e;return{texelWidth:1/(3*Math.max(Math.pow(2,t),112)),texelHeight:r,maxMip:t}}(e.image.height);this._texture.value=e,this._width.value=t.texelWidth,this._height.value=t.texelHeight,this._maxMip.value=t.maxMip}updateBefore(e){let t=this._pmrem;const r=t?t.pmremVersion:-1,s=this._value;r!==s.pmremVersion&&(t=!0===s.isPMREMTexture?s:pf(s,e.renderer,this._generator),null!==t&&(this._pmrem=t,this.updateFromTexture(t)))}setup(e){null===this._generator&&(this._generator=new af(e.renderer)),this.updateBefore(e);let t=this.uvNode;null===t&&e.context.getUV&&(t=e.context.getUV(this,e)),t=ic.mul(Tn(t.x,t.y.negate(),t.z));let r=this.levelNode;return null===r&&e.context.getTextureLevel&&(r=e.context.getTextureLevel(this)),Om(this._texture,t,r,this._width,this._height,this._maxMip)}dispose(){super.dispose(),null!==this._generator&&this._generator.dispose()}}const mf=en(gf).setParameterLength(1,3),ff=new WeakMap;class yf extends gp{static get type(){return"EnvironmentNode"}constructor(e=null){super(),this.envNode=e}setup(e){const{material:t}=e;let r=this.envNode;if(r.isTextureNode||r.isMaterialReferenceNode){const e=r.isTextureNode?r.value:t[r.property];let s=ff.get(e);void 0===s&&(s=mf(e),ff.set(e,s)),r=s}const s=!0===t.useAnisotropy||t.anisotropy>0?Wc:jd,i=r.context(bf(Vn,s)).mul(sc),n=r.context(xf(qd)).mul(Math.PI).mul(sc),a=al(i),o=al(n);e.context.radiance.addAssign(a),e.context.iblIrradiance.addAssign(o);const u=e.context.lightingModel.clearcoatRadiance;if(u){const e=r.context(bf(zn,Xd)).mul(sc),t=al(e);u.addAssign(t)}}}const bf=(e,t)=>{let r=null;return{getUV:()=>(null===r&&(r=Ud.negate().reflect(t),r=eu(e).mix(r,t).normalize(),r=r.transformDirection(id)),r),getTextureLevel:()=>e}},xf=e=>({getUV:()=>e,getTextureLevel:()=>hn(1)}),Tf=new Re;class _f extends Xp{static get type(){return"MeshStandardNodeMaterial"}constructor(e){super(),this.isMeshStandardNodeMaterial=!0,this.lights=!0,this.emissiveNode=null,this.metalnessNode=null,this.roughnessNode=null,this.setDefaultValues(Tf),this.setValues(e)}setupEnvironment(e){let t=super.setupEnvironment(e);return null===t&&e.environmentNode&&(t=e.environmentNode),t?new yf(t):null}setupLightingModel(){return new _m}setupSpecular(){const e=iu(Tn(.04),Un.rgb,kn);Zn.assign(Tn(.04)),Jn.assign(e),ea.assign(1)}setupVariants(){const e=this.metalnessNode?hn(this.metalnessNode):hh;kn.assign(e);let t=this.roughnessNode?hn(this.roughnessNode):ch;t=Cg({roughness:t}),Vn.assign(t),this.setupSpecular(),In.assign(Un.rgb.mul(e.oneMinus()))}copy(e){return this.emissiveNode=e.emissiveNode,this.metalnessNode=e.metalnessNode,this.roughnessNode=e.roughnessNode,super.copy(e)}}const vf=new Ee;class Nf extends _f{static get type(){return"MeshPhysicalNodeMaterial"}constructor(e){super(),this.isMeshPhysicalNodeMaterial=!0,this.clearcoatNode=null,this.clearcoatRoughnessNode=null,this.clearcoatNormalNode=null,this.sheenNode=null,this.sheenRoughnessNode=null,this.iridescenceNode=null,this.iridescenceIORNode=null,this.iridescenceThicknessNode=null,this.specularIntensityNode=null,this.specularColorNode=null,this.iorNode=null,this.transmissionNode=null,this.thicknessNode=null,this.attenuationDistanceNode=null,this.attenuationColorNode=null,this.dispersionNode=null,this.anisotropyNode=null,this.setDefaultValues(vf),this.setValues(e)}get useClearcoat(){return this.clearcoat>0||null!==this.clearcoatNode}get useIridescence(){return this.iridescence>0||null!==this.iridescenceNode}get useSheen(){return this.sheen>0||null!==this.sheenNode}get useAnisotropy(){return this.anisotropy>0||null!==this.anisotropyNode}get useTransmission(){return this.transmission>0||null!==this.transmissionNode}get useDispersion(){return this.dispersion>0||null!==this.dispersionNode}setupSpecular(){const e=this.iorNode?hn(this.iorNode):Rh;aa.assign(e),Zn.assign($o(Zo(aa.sub(1).div(aa.add(1))).mul(uh),Tn(1)).mul(oh)),Jn.assign(iu(Zn,Un.rgb,kn)),ea.assign(iu(oh,1,kn))}setupLightingModel(){return new _m(this.useClearcoat,this.useSheen,this.useIridescence,this.useAnisotropy,this.useTransmission,this.useDispersion)}setupVariants(e){if(super.setupVariants(e),this.useClearcoat){const e=this.clearcoatNode?hn(this.clearcoatNode):gh,t=this.clearcoatRoughnessNode?hn(this.clearcoatRoughnessNode):mh;Gn.assign(e),zn.assign(Cg({roughness:t}))}if(this.useSheen){const e=this.sheenNode?Tn(this.sheenNode):bh,t=this.sheenRoughnessNode?hn(this.sheenRoughnessNode):xh;$n.assign(e),Wn.assign(t)}if(this.useIridescence){const e=this.iridescenceNode?hn(this.iridescenceNode):_h,t=this.iridescenceIORNode?hn(this.iridescenceIORNode):vh,r=this.iridescenceThicknessNode?hn(this.iridescenceThicknessNode):Nh;Hn.assign(e),jn.assign(t),qn.assign(r)}if(this.useAnisotropy){const e=(this.anisotropyNode?fn(this.anisotropyNode):Th).toVar();Kn.assign(e.length()),ln(Kn.equal(0),()=>{e.assign(fn(1,0))}).Else(()=>{e.divAssign(fn(Kn)),Kn.assign(Kn.saturate())}),Xn.assign(Kn.pow2().mix(Vn.pow2(),1)),Yn.assign(zc[0].mul(e.x).add(zc[1].mul(e.y))),Qn.assign(zc[1].mul(e.x).sub(zc[0].mul(e.y)))}if(this.useTransmission){const e=this.transmissionNode?hn(this.transmissionNode):Sh,t=this.thicknessNode?hn(this.thicknessNode):Ah,r=this.attenuationDistanceNode?hn(this.attenuationDistanceNode):Eh,s=this.attenuationColorNode?Tn(this.attenuationColorNode):wh;if(oa.assign(e),ua.assign(t),la.assign(r),da.assign(s),this.useDispersion){const e=this.dispersionNode?hn(this.dispersionNode):Dh;ca.assign(e)}}}setupClearcoatNormal(){return this.clearcoatNormalNode?Tn(this.clearcoatNormalNode):fh}setup(e){e.context.setupClearcoatNormal=()=>Lu(this.setupClearcoatNormal(e),"NORMAL","vec3"),super.setup(e)}copy(e){return this.clearcoatNode=e.clearcoatNode,this.clearcoatRoughnessNode=e.clearcoatRoughnessNode,this.clearcoatNormalNode=e.clearcoatNormalNode,this.sheenNode=e.sheenNode,this.sheenRoughnessNode=e.sheenRoughnessNode,this.iridescenceNode=e.iridescenceNode,this.iridescenceIORNode=e.iridescenceIORNode,this.iridescenceThicknessNode=e.iridescenceThicknessNode,this.specularIntensityNode=e.specularIntensityNode,this.specularColorNode=e.specularColorNode,this.transmissionNode=e.transmissionNode,this.thicknessNode=e.thicknessNode,this.attenuationDistanceNode=e.attenuationDistanceNode,this.attenuationColorNode=e.attenuationColorNode,this.dispersionNode=e.dispersionNode,this.anisotropyNode=e.anisotropyNode,super.copy(e)}}class Sf extends _m{constructor(e=!1,t=!1,r=!1,s=!1,i=!1,n=!1,a=!1){super(e,t,r,s,i,n),this.useSSS=a}direct({lightDirection:e,lightColor:t,reflectedLight:r},s){if(!0===this.useSSS){const i=s.material,{thicknessColorNode:n,thicknessDistortionNode:a,thicknessAmbientNode:o,thicknessAttenuationNode:u,thicknessPowerNode:l,thicknessScaleNode:d}=i,c=e.add(jd.mul(a)).normalize(),h=hn(Ud.dot(c.negate()).saturate().pow(l).mul(d)),p=Tn(h.add(o).mul(n));r.directDiffuse.addAssign(p.mul(u.mul(t)))}super.direct({lightDirection:e,lightColor:t,reflectedLight:r},s)}}class Af extends Nf{static get type(){return"MeshSSSNodeMaterial"}constructor(e){super(e),this.thicknessColorNode=null,this.thicknessDistortionNode=hn(.1),this.thicknessAmbientNode=hn(0),this.thicknessAttenuationNode=hn(.1),this.thicknessPowerNode=hn(2),this.thicknessScaleNode=hn(10)}get useSSS(){return null!==this.thicknessColorNode}setupLightingModel(){return new Sf(this.useClearcoat,this.useSheen,this.useIridescence,this.useAnisotropy,this.useTransmission,this.useDispersion,this.useSSS)}copy(e){return this.thicknessColorNode=e.thicknessColorNode,this.thicknessDistortionNode=e.thicknessDistortionNode,this.thicknessAmbientNode=e.thicknessAmbientNode,this.thicknessAttenuationNode=e.thicknessAttenuationNode,this.thicknessPowerNode=e.thicknessPowerNode,this.thicknessScaleNode=e.thicknessScaleNode,super.copy(e)}}const Rf=an(({normal:e,lightDirection:t,builder:r})=>{const s=e.dot(t),i=fn(s.mul(.5).add(.5),0);if(r.material.gradientMap){const e=bc("gradientMap","texture").context({getUV:()=>i});return Tn(e.r)}{const e=i.fwidth().mul(.5);return iu(Tn(.7),Tn(1),uu(hn(.7).sub(e.x),hn(.7).add(e.x),i.x))}});class Ef extends mg{direct({lightDirection:e,lightColor:t,reflectedLight:r},s){const i=Rf({normal:Gd,lightDirection:e,builder:s}).mul(t);r.directDiffuse.addAssign(i.mul(Tg({diffuseColor:Un.rgb})))}indirect(e){const{ambientOcclusion:t,irradiance:r,reflectedLight:s}=e.context;s.indirectDiffuse.addAssign(r.mul(Tg({diffuseColor:Un}))),s.indirectDiffuse.mulAssign(t)}}const wf=new we;class Cf extends Xp{static get type(){return"MeshToonNodeMaterial"}constructor(e){super(),this.isMeshToonNodeMaterial=!0,this.lights=!0,this.setDefaultValues(wf),this.setValues(e)}setupLightingModel(){return new Ef}}const Mf=an(()=>{const e=Tn(Ud.z,0,Ud.x.negate()).normalize(),t=Ud.cross(e);return fn(e.dot(jd),t.dot(jd)).mul(.495).add(.5)}).once(["NORMAL","VERTEX"])().toVar("matcapUV"),Bf=new Ce;class Lf extends Xp{static get type(){return"MeshMatcapNodeMaterial"}constructor(e){super(),this.isMeshMatcapNodeMaterial=!0,this.setDefaultValues(Bf),this.setValues(e)}setupVariants(e){const t=Mf;let r;r=e.material.matcap?bc("matcap","texture").context({getUV:()=>t}):Tn(iu(.2,.8,t.y)),Un.rgb.mulAssign(r.rgb)}}class Pf extends li{static get type(){return"RotateNode"}constructor(e,t){super(),this.positionNode=e,this.rotationNode=t}getNodeType(e){return this.positionNode.getNodeType(e)}setup(e){const{rotationNode:t,positionNode:r}=this;if("vec2"===this.getNodeType(e)){const e=t.cos(),s=t.sin();return wn(e,s,s.negate(),e).mul(r)}{const e=t,s=Mn(Sn(1,0,0,0),Sn(0,No(e.x),vo(e.x).negate(),0),Sn(0,vo(e.x),No(e.x),0),Sn(0,0,0,1)),i=Mn(Sn(No(e.y),0,vo(e.y),0),Sn(0,1,0,0),Sn(vo(e.y).negate(),0,No(e.y),0),Sn(0,0,0,1)),n=Mn(Sn(No(e.z),vo(e.z).negate(),0,0),Sn(vo(e.z),No(e.z),0,0),Sn(0,0,1,0),Sn(0,0,0,1));return s.mul(i).mul(n).mul(Sn(r,1)).xyz}}}const Ff=en(Pf).setParameterLength(2),Df=new Me;class Uf extends Xp{static get type(){return"SpriteNodeMaterial"}constructor(e){super(),this.isSpriteNodeMaterial=!0,this._useSizeAttenuation=!0,this.positionNode=null,this.rotationNode=null,this.scaleNode=null,this.transparent=!0,this.setDefaultValues(Df),this.setValues(e)}setupPositionView(e){const{object:t,camera:r}=e,{positionNode:s,rotationNode:i,scaleNode:n,sizeAttenuation:a}=this,o=Rd.mul(Tn(s||0));let u=fn(xd[0].xyz.length(),xd[1].xyz.length());null!==n&&(u=u.mul(fn(n))),r.isPerspectiveCamera&&!1===a&&(u=u.mul(o.z.negate()));let l=Md.xy;if(t.center&&!0===t.center.isVector2){const e=((e,t,r)=>Yi(new $u(e,t,r)))("center","vec2",t);l=l.sub(e.sub(.5))}l=l.mul(u);const d=hn(i||yh),c=Ff(l,d);return Sn(o.xy.add(c),o.zw)}copy(e){return this.positionNode=e.positionNode,this.rotationNode=e.rotationNode,this.scaleNode=e.scaleNode,super.copy(e)}get sizeAttenuation(){return this._useSizeAttenuation}set sizeAttenuation(e){this._useSizeAttenuation!==e&&(this._useSizeAttenuation=e,this.needsUpdate=!0)}}const If=new Be,Of=new t;class Vf extends Uf{static get type(){return"PointsNodeMaterial"}constructor(e){super(),this.sizeNode=null,this.isPointsNodeMaterial=!0,this.setDefaultValues(If),this.setValues(e)}setupPositionView(){const{positionNode:e}=this;return Rd.mul(Tn(e||Bd)).xyz}setupVertexSprite(e){const{material:t,camera:r}=e,{rotationNode:s,scaleNode:i,sizeNode:n,sizeAttenuation:a}=this;let o=super.setupVertex(e);if(!0!==t.isNodeMaterial)return o;let u=null!==n?fn(n):Fh;u=u.mul(Wl),r.isPerspectiveCamera&&!0===a&&(u=u.mul(kf.div(Dd.z.negate()))),i&&i.isNode&&(u=u.mul(fn(i)));let l=Md.xy;if(s&&s.isNode){const e=hn(s);l=Ff(l,e)}return l=l.mul(u),l=l.div(Kl.div(2)),l=l.mul(o.w),o=o.add(Sn(l,0,0)),o}setupVertex(e){return e.object.isPoints?super.setupVertex(e):this.setupVertexSprite(e)}get alphaToCoverage(){return this._useAlphaToCoverage}set alphaToCoverage(e){this._useAlphaToCoverage!==e&&(this._useAlphaToCoverage=e,this.needsUpdate=!0)}}const kf=xa(1).onFrameUpdate(function({renderer:e}){const t=e.getSize(Of);this.value=.5*t.y});class Gf extends mg{constructor(){super(),this.shadowNode=hn(1).toVar("shadowMask")}direct({lightNode:e}){null!==e.shadowNode&&this.shadowNode.mulAssign(e.shadowNode)}finish({context:e}){Un.a.mulAssign(this.shadowNode.oneMinus()),e.outgoingLight.rgb.assign(Un.rgb)}}const zf=new Le;class $f extends Xp{static get type(){return"ShadowNodeMaterial"}constructor(e){super(),this.isShadowNodeMaterial=!0,this.lights=!0,this.transparent=!0,this.setDefaultValues(zf),this.setValues(e)}setupLightingModel(){return new Gf}}const Wf=Fn("vec3"),Hf=Fn("vec3"),jf=Fn("vec3");class qf extends mg{constructor(){super()}start(e){const{material:t}=e,r=Fn("vec3"),s=Fn("vec3");ln(od.sub(Pd).length().greaterThan(Nd.mul(2)),()=>{r.assign(od),s.assign(Pd)}).Else(()=>{r.assign(Pd),s.assign(od)});const i=s.sub(r),n=xa("int").onRenderUpdate(({material:e})=>e.steps),a=i.length().div(n).toVar(),o=i.normalize().toVar(),u=hn(0).toVar(),l=Tn(1).toVar();t.offsetNode&&u.addAssign(t.offsetNode.mul(a)),op(n,()=>{const s=r.add(o.mul(u)),i=id.mul(Sn(s,1)).xyz;let n;null!==t.depthNode&&(Hf.assign(Pp(wp(i.z,ed,td))),e.context.sceneDepthNode=Pp(t.depthNode).toVar()),e.context.positionWorld=s,e.context.shadowPositionWorld=s,e.context.positionView=i,Wf.assign(0),t.scatteringNode&&(n=t.scatteringNode({positionRay:s})),super.start(e),n&&Wf.mulAssign(n);const d=Wf.mul(.01).negate().mul(a).exp();l.mulAssign(d),u.addAssign(a)}),jf.addAssign(l.saturate().oneMinus())}scatteringLight(e,t){const r=t.context.sceneDepthNode;r?ln(r.greaterThanEqual(Hf),()=>{Wf.addAssign(e)}):Wf.addAssign(e)}direct({lightNode:e,lightColor:t},r){if(void 0===e.light.distance)return;const s=t.xyz.toVar();s.mulAssign(e.shadowNode),this.scatteringLight(s,r)}directRectArea({lightColor:e,lightPosition:t,halfWidth:r,halfHeight:s},i){const n=t.add(r).sub(s),a=t.sub(r).sub(s),o=t.sub(r).add(s),u=t.add(r).add(s),l=i.context.positionView,d=e.xyz.mul(Kg({P:l,p0:n,p1:a,p2:o,p3:u})).pow(1.5);this.scatteringLight(d,i)}finish(e){e.context.outgoingLight.assign(jf)}}class Xf extends Xp{static get type(){return"VolumeNodeMaterial"}constructor(e){super(),this.isVolumeNodeMaterial=!0,this.steps=25,this.offsetNode=null,this.scatteringNode=null,this.lights=!0,this.transparent=!0,this.side=w,this.depthTest=!1,this.depthWrite=!1,this.setValues(e)}setupLightingModel(){return new qf}}class Kf{constructor(e,t,r){this.renderer=e,this.nodes=t,this.info=r,this._context="undefined"!=typeof self?self:null,this._animationLoop=null,this._requestId=null}start(){const e=(t,r)=>{this._requestId=this._context.requestAnimationFrame(e),!0===this.info.autoReset&&this.info.reset(),this.nodes.nodeFrame.update(),this.info.frame=this.nodes.nodeFrame.frameId,this.renderer._inspector.begin(),null!==this._animationLoop&&this._animationLoop(t,r),this.renderer._inspector.finish()};e()}stop(){this._context.cancelAnimationFrame(this._requestId),this._requestId=null}getAnimationLoop(){return this._animationLoop}setAnimationLoop(e){this._animationLoop=e}getContext(){return this._context}setContext(e){this._context=e}dispose(){this.stop()}}class Yf{constructor(){this.weakMap=new WeakMap}get(e){let t=this.weakMap;for(let r=0;r{this.dispose()},this.onGeometryDispose=()=>{this.attributes=null,this.attributesId=null},this.material.addEventListener("dispose",this.onMaterialDispose),this.geometry.addEventListener("dispose",this.onGeometryDispose)}updateClipping(e){this.clippingContext=e}get clippingNeedsUpdate(){return null!==this.clippingContext&&this.clippingContext.cacheKey!==this.clippingContextCacheKey&&(this.clippingContextCacheKey=this.clippingContext.cacheKey,!0)}get hardwareClippingPlanes(){return!0===this.material.hardwareClipping?this.clippingContext.unionClippingCount:0}getNodeBuilderState(){return this._nodeBuilderState||(this._nodeBuilderState=this._nodes.getForRender(this))}getMonitor(){return this._monitor||(this._monitor=this.getNodeBuilderState().observer)}getBindings(){return this._bindings||(this._bindings=this.getNodeBuilderState().createBindings())}getBindingGroup(e){for(const t of this.getBindings())if(t.name===e)return t}getIndex(){return this._geometries.getIndex(this)}getIndirect(){return this._geometries.getIndirect(this)}getIndirectOffset(){return this._geometries.getIndirectOffset(this)}getChainArray(){return[this.object,this.material,this.context,this.lightsNode]}setGeometry(e){this.geometry=e,this.attributes=null,this.attributesId=null}getAttributes(){if(null!==this.attributes)return this.attributes;const e=this.getNodeBuilderState().nodeAttributes,t=this.geometry,r=[],s=new Set,i={};for(const n of e){let e;if(n.node&&n.node.attribute?e=n.node.attribute:(e=t.getAttribute(n.name),i[n.name]=e.version),void 0===e)continue;r.push(e);const a=e.isInterleavedBufferAttribute?e.data:e;s.add(a)}return this.attributes=r,this.attributesId=i,this.vertexBuffers=Array.from(s.values()),r}getVertexBuffers(){return null===this.vertexBuffers&&this.getAttributes(),this.vertexBuffers}getDrawParameters(){const{object:e,material:t,geometry:r,group:s,drawRange:i}=this,n=this.drawParams||(this.drawParams={vertexCount:0,firstVertex:0,instanceCount:0,firstInstance:0}),a=this.getIndex(),o=null!==a;let u=1;if(!0===r.isInstancedBufferGeometry?u=r.instanceCount:void 0!==e.count&&(u=Math.max(0,e.count)),0===u)return null;if(n.instanceCount=u,!0===e.isBatchedMesh)return n;let l=1;!0!==t.wireframe||e.isPoints||e.isLineSegments||e.isLine||e.isLineLoop||(l=2);let d=i.start*l,c=(i.start+i.count)*l;null!==s&&(d=Math.max(d,s.start*l),c=Math.min(c,(s.start+s.count)*l));const h=r.attributes.position;let p=1/0;o?p=a.count:null!=h&&(p=h.count),d=Math.max(d,0),c=Math.min(c,p);const g=c-d;return g<0||g===1/0?null:(n.vertexCount=g,n.firstVertex=d,n)}getGeometryCacheKey(){const{geometry:e}=this;let t="";for(const r of Object.keys(e.attributes).sort()){const s=e.attributes[r];t+=r+",",s.data&&(t+=s.data.stride+","),s.offset&&(t+=s.offset+","),s.itemSize&&(t+=s.itemSize+","),s.normalized&&(t+="n,")}for(const r of Object.keys(e.morphAttributes).sort()){const s=e.morphAttributes[r];t+="morph-"+r+",";for(let e=0,r=s.length;e1||Array.isArray(e.morphTargetInfluences))&&(s+=e.uuid+","),s+=this.context.id+",",s+=e.receiveShadow+",",Fs(s)}get needsGeometryUpdate(){if(this.geometry.id!==this.object.geometry.id)return!0;if(null!==this.attributes){const e=this.attributesId;for(const t in e){const r=this.geometry.getAttribute(t);if(void 0===r||e[t]!==r.id)return!0}}return!1}get needsUpdate(){return this.initialNodesCacheKey!==this.getDynamicCacheKey()||this.clippingNeedsUpdate}getDynamicCacheKey(){let e=0;return!0!==this.material.isShadowPassMaterial&&(e=this._nodes.getCacheKey(this.scene,this.lightsNode)),this.camera.isArrayCamera&&(e=Us(e,this.camera.cameras.length)),this.object.receiveShadow&&(e=Us(e,1)),e=Us(e,this.camera.id,this.renderer.contextNode.id,this.renderer.contextNode.version),e}getCacheKey(){return this.getMaterialCacheKey()+this.getDynamicCacheKey()}dispose(){this.material.removeEventListener("dispose",this.onMaterialDispose),this.geometry.removeEventListener("dispose",this.onGeometryDispose),this.onDispose()}}const Jf=[];class ey{constructor(e,t,r,s,i,n){this.renderer=e,this.nodes=t,this.geometries=r,this.pipelines=s,this.bindings=i,this.info=n,this.chainMaps={}}get(e,t,r,s,i,n,a,o){const u=this.getChainMap(o);Jf[0]=e,Jf[1]=t,Jf[2]=n,Jf[3]=i;let l=u.get(Jf);return void 0===l?(l=this.createRenderObject(this.nodes,this.geometries,this.renderer,e,t,r,s,i,n,a,o),u.set(Jf,l)):(l.updateClipping(a),l.needsGeometryUpdate&&l.setGeometry(e.geometry),(l.version!==t.version||l.needsUpdate)&&(l.initialCacheKey!==l.getCacheKey()?(l.dispose(),l=this.get(e,t,r,s,i,n,a,o)):l.version=t.version)),Jf.length=0,l}getChainMap(e="default"){return this.chainMaps[e]||(this.chainMaps[e]=new Yf)}dispose(){this.chainMaps={}}createRenderObject(e,t,r,s,i,n,a,o,u,l,d){const c=this.getChainMap(d),h=new Zf(e,t,r,s,i,n,a,o,u,l);return h.onDispose=()=>{this.pipelines.delete(h),this.bindings.deleteForRender(h),this.nodes.delete(h),c.delete(h.getChainArray())},h}}class ty{constructor(){this.data=new WeakMap}get(e){let t=this.data.get(e);return void 0===t&&(t={},this.data.set(e,t)),t}delete(e){let t=null;return this.data.has(e)&&(t=this.data.get(e),this.data.delete(e)),t}has(e){return this.data.has(e)}dispose(){this.data=new WeakMap}}const ry=1,sy=2,iy=3,ny=4,ay=16;class oy extends ty{constructor(e){super(),this.backend=e}delete(e){const t=super.delete(e);return null!==t&&this.backend.destroyAttribute(e),t}update(e,t){const r=this.get(e);if(void 0===r.version)t===ry?this.backend.createAttribute(e):t===sy?this.backend.createIndexAttribute(e):t===iy?this.backend.createStorageAttribute(e):t===ny&&this.backend.createIndirectStorageAttribute(e),r.version=this._getBufferAttribute(e).version;else{const t=this._getBufferAttribute(e);(r.version{this.info.memory.geometries--;const s=t.index,i=e.getAttributes();null!==s&&this.attributes.delete(s);for(const e of i)this.attributes.delete(e);const n=this.wireframes.get(t);void 0!==n&&this.attributes.delete(n),t.removeEventListener("dispose",r),this._geometryDisposeListeners.delete(t)};t.addEventListener("dispose",r),this._geometryDisposeListeners.set(t,r)}updateAttributes(e){const t=e.getAttributes();for(const e of t)e.isStorageBufferAttribute||e.isStorageInstancedBufferAttribute?this.updateAttribute(e,iy):this.updateAttribute(e,ry);const r=this.getIndex(e);null!==r&&this.updateAttribute(r,sy);const s=e.geometry.indirect;null!==s&&this.updateAttribute(s,ny)}updateAttribute(e,t){const r=this.info.render.calls;e.isInterleavedBufferAttribute?void 0===this.attributeCall.get(e)?(this.attributes.update(e,t),this.attributeCall.set(e,r)):this.attributeCall.get(e.data)!==r&&(this.attributes.update(e,t),this.attributeCall.set(e.data,r),this.attributeCall.set(e,r)):this.attributeCall.get(e)!==r&&(this.attributes.update(e,t),this.attributeCall.set(e,r))}getIndirect(e){return e.geometry.indirect}getIndirectOffset(e){return e.geometry.indirectOffset}getIndex(e){const{geometry:t,material:r}=e;let s=t.index;if(!0===r.wireframe){const e=this.wireframes;let r=e.get(t);void 0===r?(r=ly(t),e.set(t,r)):r.version!==uy(t)&&(this.attributes.delete(r),r=ly(t),e.set(t,r)),s=r}return s}dispose(){for(const[e,t]of this._geometryDisposeListeners.entries())e.removeEventListener("dispose",t);this._geometryDisposeListeners.clear()}}class cy{constructor(){this.autoReset=!0,this.frame=0,this.calls=0,this.render={calls:0,frameCalls:0,drawCalls:0,triangles:0,points:0,lines:0,timestamp:0},this.compute={calls:0,frameCalls:0,timestamp:0},this.memory={geometries:0,textures:0}}update(e,t,r){this.render.drawCalls++,e.isMesh||e.isSprite?this.render.triangles+=r*(t/3):e.isPoints?this.render.points+=r*t:e.isLineSegments?this.render.lines+=r*(t/2):e.isLine?this.render.lines+=r*(t-1):o("WebGPUInfo: Unknown object type.")}reset(){this.render.drawCalls=0,this.render.frameCalls=0,this.compute.frameCalls=0,this.render.triangles=0,this.render.points=0,this.render.lines=0}dispose(){this.reset(),this.calls=0,this.render.calls=0,this.compute.calls=0,this.render.timestamp=0,this.compute.timestamp=0,this.memory.geometries=0,this.memory.textures=0}}class hy{constructor(e){this.cacheKey=e,this.usedTimes=0}}class py extends hy{constructor(e,t,r){super(e),this.vertexProgram=t,this.fragmentProgram=r}}class gy extends hy{constructor(e,t){super(e),this.computeProgram=t,this.isComputePipeline=!0}}let my=0;class fy{constructor(e,t,r,s=null,i=null){this.id=my++,this.code=e,this.stage=t,this.name=r,this.transforms=s,this.attributes=i,this.usedTimes=0}}class yy extends ty{constructor(e,t){super(),this.backend=e,this.nodes=t,this.bindings=null,this.caches=new Map,this.programs={vertex:new Map,fragment:new Map,compute:new Map}}getForCompute(e,t){const{backend:r}=this,s=this.get(e);if(this._needsComputeUpdate(e)){const i=s.pipeline;i&&(i.usedTimes--,i.computeProgram.usedTimes--);const n=this.nodes.getForCompute(e);let a=this.programs.compute.get(n.computeShader);void 0===a&&(i&&0===i.computeProgram.usedTimes&&this._releaseProgram(i.computeProgram),a=new fy(n.computeShader,"compute",e.name,n.transforms,n.nodeAttributes),this.programs.compute.set(n.computeShader,a),r.createProgram(a));const o=this._getComputeCacheKey(e,a);let u=this.caches.get(o);void 0===u&&(i&&0===i.usedTimes&&this._releasePipeline(i),u=this._getComputePipeline(e,a,o,t)),u.usedTimes++,a.usedTimes++,s.version=e.version,s.pipeline=u}return s.pipeline}getForRender(e,t=null){const{backend:r}=this,s=this.get(e);if(this._needsRenderUpdate(e)){const i=s.pipeline;i&&(i.usedTimes--,i.vertexProgram.usedTimes--,i.fragmentProgram.usedTimes--);const n=e.getNodeBuilderState(),a=e.material?e.material.name:"";let o=this.programs.vertex.get(n.vertexShader);void 0===o&&(i&&0===i.vertexProgram.usedTimes&&this._releaseProgram(i.vertexProgram),o=new fy(n.vertexShader,"vertex",a),this.programs.vertex.set(n.vertexShader,o),r.createProgram(o));let u=this.programs.fragment.get(n.fragmentShader);void 0===u&&(i&&0===i.fragmentProgram.usedTimes&&this._releaseProgram(i.fragmentProgram),u=new fy(n.fragmentShader,"fragment",a),this.programs.fragment.set(n.fragmentShader,u),r.createProgram(u));const l=this._getRenderCacheKey(e,o,u);let d=this.caches.get(l);void 0===d?(i&&0===i.usedTimes&&this._releasePipeline(i),d=this._getRenderPipeline(e,o,u,l,t)):e.pipeline=d,d.usedTimes++,o.usedTimes++,u.usedTimes++,s.pipeline=d}return s.pipeline}delete(e){const t=this.get(e).pipeline;return t&&(t.usedTimes--,0===t.usedTimes&&this._releasePipeline(t),t.isComputePipeline?(t.computeProgram.usedTimes--,0===t.computeProgram.usedTimes&&this._releaseProgram(t.computeProgram)):(t.fragmentProgram.usedTimes--,t.vertexProgram.usedTimes--,0===t.vertexProgram.usedTimes&&this._releaseProgram(t.vertexProgram),0===t.fragmentProgram.usedTimes&&this._releaseProgram(t.fragmentProgram))),super.delete(e)}dispose(){super.dispose(),this.caches=new Map,this.programs={vertex:new Map,fragment:new Map,compute:new Map}}updateForRender(e){this.getForRender(e)}_getComputePipeline(e,t,r,s){r=r||this._getComputeCacheKey(e,t);let i=this.caches.get(r);return void 0===i&&(i=new gy(r,t),this.caches.set(r,i),this.backend.createComputePipeline(i,s)),i}_getRenderPipeline(e,t,r,s,i){s=s||this._getRenderCacheKey(e,t,r);let n=this.caches.get(s);return void 0===n&&(n=new py(s,t,r),this.caches.set(s,n),e.pipeline=n,this.backend.createRenderPipeline(e,i)),n}_getComputeCacheKey(e,t){return e.id+","+t.id}_getRenderCacheKey(e,t,r){return t.id+","+r.id+","+this.backend.getRenderCacheKey(e)}_releasePipeline(e){this.caches.delete(e.cacheKey)}_releaseProgram(e){const t=e.code,r=e.stage;this.programs[r].delete(t)}_needsComputeUpdate(e){const t=this.get(e);return void 0===t.pipeline||t.version!==e.version}_needsRenderUpdate(e){return void 0===this.get(e).pipeline||this.backend.needsRenderUpdate(e)}}class by extends ty{constructor(e,t,r,s,i,n){super(),this.backend=e,this.textures=r,this.pipelines=i,this.attributes=s,this.nodes=t,this.info=n,this.pipelines.bindings=this}getForRender(e){const t=e.getBindings();for(const e of t){const r=this.get(e);void 0===r.bindGroup&&(this._init(e),this.backend.createBindings(e,t,0),r.bindGroup=e)}return t}getForCompute(e){const t=this.nodes.getForCompute(e).bindings;for(const e of t){const r=this.get(e);void 0===r.bindGroup&&(this._init(e),this.backend.createBindings(e,t,0),r.bindGroup=e)}return t}updateForCompute(e){this._updateBindings(this.getForCompute(e))}updateForRender(e){this._updateBindings(this.getForRender(e))}deleteForCompute(e){const t=this.nodes.getForCompute(e).bindings;for(const e of t)this.backend.deleteBindGroupData(e),this.delete(e)}deleteForRender(e){const t=e.getBindings();for(const e of t)this.backend.deleteBindGroupData(e),this.delete(e)}_updateBindings(e){for(const t of e)this._update(t,e)}_init(e){for(const t of e.bindings)if(t.isSampledTexture)this.textures.updateTexture(t.texture);else if(t.isSampler)this.textures.updateSampler(t.texture);else if(t.isStorageBuffer){const e=t.attribute,r=e.isIndirectStorageBufferAttribute?ny:iy;this.attributes.update(e,r)}}_update(e,t){const{backend:r}=this;let s=!1,i=!0,n=0,a=0;for(const t of e.bindings){if(!1!==this.nodes.updateGroup(t)){if(t.isStorageBuffer){const e=t.attribute,r=e.isIndirectStorageBufferAttribute?ny:iy;this.attributes.update(e,r)}if(t.isUniformBuffer){t.update()&&r.updateBinding(t)}else if(t.isSampledTexture){const e=t.update(),o=t.texture,u=this.textures.get(o);e&&(this.textures.updateTexture(o),t.generation!==u.generation&&(t.generation=u.generation,s=!0,i=!1));if(void 0!==r.get(o).externalTexture||u.isDefaultTexture?i=!1:(n=10*n+o.id,a+=o.version),!0===o.isStorageTexture&&!0===o.mipmapsAutoUpdate){const e=this.get(o);!0===t.store?e.needsMipmap=!0:this.textures.needsMipmaps(o)&&!0===e.needsMipmap&&(this.backend.generateMipmaps(o),e.needsMipmap=!1)}}else if(t.isSampler){if(t.update()){const e=this.textures.updateSampler(t.texture);t.samplerKey!==e&&(t.samplerKey=e,s=!0,i=!1)}}}}!0===s&&this.backend.updateBindings(e,t,i?n:0,a)}}function xy(e,t){return e.groupOrder!==t.groupOrder?e.groupOrder-t.groupOrder:e.renderOrder!==t.renderOrder?e.renderOrder-t.renderOrder:e.z!==t.z?e.z-t.z:e.id-t.id}function Ty(e,t){return e.groupOrder!==t.groupOrder?e.groupOrder-t.groupOrder:e.renderOrder!==t.renderOrder?e.renderOrder-t.renderOrder:e.z!==t.z?t.z-e.z:e.id-t.id}function _y(e){return(e.transmission>0||e.transmissionNode&&e.transmissionNode.isNode)&&e.side===C&&!1===e.forceSinglePass}class vy{constructor(e,t,r){this.renderItems=[],this.renderItemsIndex=0,this.opaque=[],this.transparentDoublePass=[],this.transparent=[],this.bundles=[],this.lightsNode=e.getNode(t,r),this.lightsArray=[],this.scene=t,this.camera=r,this.occlusionQueryCount=0}begin(){return this.renderItemsIndex=0,this.opaque.length=0,this.transparentDoublePass.length=0,this.transparent.length=0,this.bundles.length=0,this.lightsArray.length=0,this.occlusionQueryCount=0,this}getNextRenderItem(e,t,r,s,i,n,a){let o=this.renderItems[this.renderItemsIndex];return void 0===o?(o={id:e.id,object:e,geometry:t,material:r,groupOrder:s,renderOrder:e.renderOrder,z:i,group:n,clippingContext:a},this.renderItems[this.renderItemsIndex]=o):(o.id=e.id,o.object=e,o.geometry=t,o.material=r,o.groupOrder=s,o.renderOrder=e.renderOrder,o.z=i,o.group=n,o.clippingContext=a),this.renderItemsIndex++,o}push(e,t,r,s,i,n,a){const o=this.getNextRenderItem(e,t,r,s,i,n,a);!0===e.occlusionTest&&this.occlusionQueryCount++,!0===r.transparent||r.transmission>0||r.transmissionNode&&r.transmissionNode.isNode||r.backdropNode&&r.backdropNode.isNode?(_y(r)&&this.transparentDoublePass.push(o),this.transparent.push(o)):this.opaque.push(o)}unshift(e,t,r,s,i,n,a){const o=this.getNextRenderItem(e,t,r,s,i,n,a);!0===r.transparent||r.transmission>0||r.transmissionNode&&r.transmissionNode.isNode||r.backdropNode&&r.backdropNode.isNode?(_y(r)&&this.transparentDoublePass.unshift(o),this.transparent.unshift(o)):this.opaque.unshift(o)}pushBundle(e){this.bundles.push(e)}pushLight(e){this.lightsArray.push(e)}sort(e,t){this.opaque.length>1&&this.opaque.sort(e||xy),this.transparentDoublePass.length>1&&this.transparentDoublePass.sort(t||Ty),this.transparent.length>1&&this.transparent.sort(t||Ty)}finish(){this.lightsNode.setLights(this.lightsArray);for(let e=this.renderItemsIndex,t=this.renderItems.length;e>t,u=a.height>>t;let l=e.depthTexture||i[t];const d=!0===e.depthBuffer||!0===e.stencilBuffer;let c=!1;void 0===l&&d&&(l=new X,l.format=e.stencilBuffer?Ie:Oe,l.type=e.stencilBuffer?Ve:S,l.image.width=o,l.image.height=u,l.image.depth=a.depth,l.renderTarget=e,l.isArrayTexture=!0===e.multiview&&a.depth>1,i[t]=l),r.width===a.width&&a.height===r.height||(c=!0,l&&(l.needsUpdate=!0,l.image.width=o,l.image.height=u,l.image.depth=l.isArrayTexture?l.image.depth:1)),r.width=a.width,r.height=a.height,r.textures=n,r.depthTexture=l||null,r.depth=e.depthBuffer,r.stencil=e.stencilBuffer,r.renderTarget=e,r.sampleCount!==s&&(c=!0,l&&(l.needsUpdate=!0),r.sampleCount=s);const h={sampleCount:s};if(!0!==e.isXRRenderTarget){for(let e=0;e{this._destroyRenderTarget(e)},e.addEventListener("dispose",r.onDispose))}updateTexture(e,t={}){const r=this.get(e);if(!0===r.initialized&&r.version===e.version)return;const s=e.isRenderTargetTexture||e.isDepthTexture||e.isFramebufferTexture,i=this.backend;if(s&&!0===r.initialized&&i.destroyTexture(e),e.isFramebufferTexture){const t=this.renderer.getRenderTarget();e.type=t?t.texture.type:ke}const{width:n,height:a,depth:o}=this.getSize(e);if(t.width=n,t.height=a,t.depth=o,t.needsMipmaps=this.needsMipmaps(e),t.levels=t.needsMipmaps?this.getMipLevels(e,n,a):1,e.isCubeTexture&&e.mipmaps.length>0&&t.levels++,s||!0===e.isStorageTexture||!0===e.isExternalTexture)i.createTexture(e,t),r.generation=e.version;else if(e.version>0){const s=e.image;if(void 0===s)d("Renderer: Texture marked for update but image is undefined.");else if(!1===s.complete)d("Renderer: Texture marked for update but image is incomplete.");else{if(e.images){const r=[];for(const t of e.images)r.push(t);t.images=r}else t.image=s;void 0!==r.isDefaultTexture&&!0!==r.isDefaultTexture||(i.createTexture(e,t),r.isDefaultTexture=!1,r.generation=e.version),!0===e.source.dataReady&&i.updateTexture(e,t);const n=!0===e.isStorageTexture&&!1===e.mipmapsAutoUpdate;t.needsMipmaps&&0===e.mipmaps.length&&!n&&i.generateMipmaps(e),e.onUpdate&&e.onUpdate(e)}}else i.createDefaultTexture(e),r.isDefaultTexture=!0,r.generation=e.version;!0!==r.initialized&&(r.initialized=!0,r.generation=e.version,this.info.memory.textures++,e.isVideoTexture&&p.getTransfer(e.colorSpace)!==g&&d("WebGPURenderer: Video textures must use a color space with a sRGB transfer function, e.g. SRGBColorSpace."),r.onDispose=()=>{this._destroyTexture(e)},e.addEventListener("dispose",r.onDispose)),r.version=e.version}updateSampler(e){return this.backend.updateSampler(e)}getSize(e,t=Ly){let r=e.images?e.images[0]:e.image;return r?(void 0!==r.image&&(r=r.image),"undefined"!=typeof HTMLVideoElement&&r instanceof HTMLVideoElement?(t.width=r.videoWidth||1,t.height=r.videoHeight||1,t.depth=1):"undefined"!=typeof VideoFrame&&r instanceof VideoFrame?(t.width=r.displayWidth||1,t.height=r.displayHeight||1,t.depth=1):(t.width=r.width||1,t.height=r.height||1,t.depth=e.isCubeTexture?6:r.depth||1)):t.width=t.height=t.depth=1,t}getMipLevels(e,t,r){let s;return s=e.mipmaps.length>0?e.mipmaps.length:!0===e.isCompressedTexture?1:Math.floor(Math.log2(Math.max(t,r)))+1,s}needsMipmaps(e){return!0===e.generateMipmaps||e.mipmaps.length>0}_destroyRenderTarget(e){if(!0===this.has(e)){const t=this.get(e),r=t.textures,s=t.depthTexture;e.removeEventListener("dispose",t.onDispose);for(let e=0;e=2)for(let r=0;r{if(this._currentNode=t,!t.isVarNode||!t.isIntent(e)||!0===t.isAssign(e))if("setup"===s)t.build(e);else if("analyze"===s)t.build(e,this);else if("generate"===s){const r=e.getDataFromNode(t,"any").stages,s=r&&r[e.shaderStage];if(t.isVarNode&&s&&1===s.length&&s[0]&&s[0].isStackNode)return;t.build(e,"void")}},n=[...this.nodes];for(const e of n)i(e);this._currentNode=null;const a=this.nodes.filter(e=>-1===n.indexOf(e));for(const e of a)i(e);let o;return o=this.hasOutput?this.outputNode.build(e,...t):super.build(e,...t),on(r),e.removeActiveStack(this),o}}const Iy=en(Uy).setParameterLength(0,1);class Oy extends ai{static get type(){return"StructTypeNode"}constructor(e,t=null){var r;super("struct"),this.membersLayout=(r=e,Object.entries(r).map(([e,t])=>"string"==typeof t?{name:e,type:t,atomic:!1}:{name:e,type:t.type,atomic:t.atomic||!1})),this.name=t,this.isStructLayoutNode=!0}getLength(){const e=Float32Array.BYTES_PER_ELEMENT;let t=1,r=0;for(const s of this.membersLayout){const i=s.type,n=zs(i),a=$s(i)/e;t=Math.max(t,a);const o=r%t%a;0!==o&&(r+=a-o),r+=n}return Math.ceil(r/t)*t}getMemberType(e,t){const r=this.membersLayout.find(e=>e.name===t);return r?r.type:"void"}getNodeType(e){return e.getStructTypeFromNode(this,this.membersLayout,this.name).name}setup(e){e.getStructTypeFromNode(this,this.membersLayout,this.name),e.addInclude(this)}generate(e){return this.getNodeType(e)}}class Vy extends ai{static get type(){return"StructNode"}constructor(e,t){super("vec3"),this.structTypeNode=e,this.values=t,this.isStructNode=!0}getNodeType(e){return this.structTypeNode.getNodeType(e)}getMemberType(e,t){return this.structTypeNode.getMemberType(e,t)}generate(e){const t=e.getVarFromNode(this),r=t.type,s=e.getPropertyName(t);return e.addLineFlowCode(`${s} = ${e.generateStruct(r,this.structTypeNode.membersLayout,this.values)}`,this),t.name}}class ky extends ai{static get type(){return"OutputStructNode"}constructor(...e){super(),this.members=e,this.isOutputStructNode=!0}getNodeType(e){const t=e.getNodeProperties(this);if(void 0===t.membersLayout){const r=this.members,s=[];for(let t=0;tnew Hy(e,"uint","float"),Xy={};class Ky extends eo{static get type(){return"BitcountNode"}constructor(e,t){super(e,t),this.isBitcountNode=!0}_resolveElementType(e,t,r){"int"===r?t.assign(jy(e,"uint")):t.assign(e)}_returnDataNode(e){switch(e){case"uint":return gn;case"int":return pn;case"uvec2":return bn;case"uvec3":return vn;case"uvec4":return Rn;case"ivec2":return yn;case"ivec3":return _n;case"ivec4":return An}}_createTrailingZerosBaseLayout(e,t){const r=this._returnDataNode(t);return an(([e])=>{const s=gn(0);this._resolveElementType(e,s,t);const i=hn(s.bitAnd(Bo(s))),n=qy(i).shiftRight(23).sub(127);return r(n)}).setLayout({name:e,type:t,inputs:[{name:"value",type:t}]})}_createLeadingZerosBaseLayout(e,t){const r=this._returnDataNode(t);return an(([e])=>{ln(e.equal(gn(0)),()=>gn(32));const s=gn(0),i=gn(0);return this._resolveElementType(e,s,t),ln(s.shiftRight(16).equal(0),()=>{i.addAssign(16),s.shiftLeftAssign(16)}),ln(s.shiftRight(24).equal(0),()=>{i.addAssign(8),s.shiftLeftAssign(8)}),ln(s.shiftRight(28).equal(0),()=>{i.addAssign(4),s.shiftLeftAssign(4)}),ln(s.shiftRight(30).equal(0),()=>{i.addAssign(2),s.shiftLeftAssign(2)}),ln(s.shiftRight(31).equal(0),()=>{i.addAssign(1)}),r(i)}).setLayout({name:e,type:t,inputs:[{name:"value",type:t}]})}_createOneBitsBaseLayout(e,t){const r=this._returnDataNode(t);return an(([e])=>{const s=gn(0);this._resolveElementType(e,s,t),s.assign(s.sub(s.shiftRight(gn(1)).bitAnd(gn(1431655765)))),s.assign(s.bitAnd(gn(858993459)).add(s.shiftRight(gn(2)).bitAnd(gn(858993459))));const i=s.add(s.shiftRight(gn(4))).bitAnd(gn(252645135)).mul(gn(16843009)).shiftRight(gn(24));return r(i)}).setLayout({name:e,type:t,inputs:[{name:"value",type:t}]})}_createMainLayout(e,t,r,s){const i=this._returnDataNode(t);return an(([e])=>{if(1===r)return i(s(e));{const t=i(0),n=["x","y","z","w"];for(let i=0;id(r))()}}Ky.COUNT_TRAILING_ZEROS="countTrailingZeros",Ky.COUNT_LEADING_ZEROS="countLeadingZeros",Ky.COUNT_ONE_BITS="countOneBits";const Yy=rn(Ky,Ky.COUNT_TRAILING_ZEROS).setParameterLength(1),Qy=rn(Ky,Ky.COUNT_LEADING_ZEROS).setParameterLength(1),Zy=rn(Ky,Ky.COUNT_ONE_BITS).setParameterLength(1),Jy=an(([e])=>{const t=e.toUint().mul(747796405).add(2891336453),r=t.shiftRight(t.shiftRight(28).add(4)).bitXor(t).mul(277803737);return r.shiftRight(22).bitXor(r).toFloat().mul(1/2**32)}),eb=(e,t)=>Qo(Ma(4,e.mul(Ca(1,e))),t);class tb extends li{static get type(){return"PackFloatNode"}constructor(e,t){super(),this.vectorNode=t,this.encoding=e,this.isPackFloatNode=!0}getNodeType(){return"uint"}generate(e){const t=this.vectorNode.getNodeType(e);return`${e.getFloatPackingMethod(this.encoding)}(${this.vectorNode.build(e,t)})`}}const rb=rn(tb,"snorm").setParameterLength(1),sb=rn(tb,"unorm").setParameterLength(1),ib=rn(tb,"float16").setParameterLength(1);class nb extends li{static get type(){return"UnpackFloatNode"}constructor(e,t){super(),this.uintNode=t,this.encoding=e,this.isUnpackFloatNode=!0}getNodeType(){return"vec2"}generate(e){const t=this.uintNode.getNodeType(e);return`${e.getFloatUnpackingMethod(this.encoding)}(${this.uintNode.build(e,t)})`}}const ab=rn(nb,"snorm").setParameterLength(1),ob=rn(nb,"unorm").setParameterLength(1),ub=rn(nb,"float16").setParameterLength(1),lb=an(([e])=>e.fract().sub(.5).abs()).setLayout({name:"tri",type:"float",inputs:[{name:"x",type:"float"}]}),db=an(([e])=>Tn(lb(e.z.add(lb(e.y.mul(1)))),lb(e.z.add(lb(e.x.mul(1)))),lb(e.y.add(lb(e.x.mul(1)))))).setLayout({name:"tri3",type:"vec3",inputs:[{name:"p",type:"vec3"}]}),cb=an(([e,t,r])=>{const s=Tn(e).toVar(),i=hn(1.4).toVar(),n=hn(0).toVar(),a=Tn(s).toVar();return op({start:hn(0),end:hn(3),type:"float",condition:"<="},()=>{const e=Tn(db(a.mul(2))).toVar();s.addAssign(e.add(r.mul(hn(.1).mul(t)))),a.mulAssign(1.8),i.mulAssign(1.5),s.mulAssign(1.2);const o=hn(lb(s.z.add(lb(s.x.add(lb(s.y)))))).toVar();n.addAssign(o.div(i)),a.addAssign(.14)}),n}).setLayout({name:"triNoise3D",type:"float",inputs:[{name:"position",type:"vec3"},{name:"speed",type:"float"},{name:"time",type:"float"}]});class hb extends ai{static get type(){return"FunctionOverloadingNode"}constructor(e=[],...t){super(),this.functionNodes=e,this.parametersNodes=t,this._candidateFn=null,this.global=!0}getNodeType(e){return this.getCandidateFn(e).shaderNode.layout.type}getCandidateFn(e){const t=this.parametersNodes;let r=this._candidateFn;if(null===r){let s=null,i=-1;for(const r of this.functionNodes){const n=r.shaderNode.layout;if(null===n)throw new Error("FunctionOverloadingNode: FunctionNode must be a layout.");const a=n.inputs;if(t.length===a.length){let n=0;for(let r=0;ri&&(s=r,i=n)}}this._candidateFn=r=s}return r}setup(e){return this.getCandidateFn(e)(...this.parametersNodes)}}const pb=en(hb),gb=e=>(...t)=>pb(e,...t),mb=xa(0).setGroup(fa).onRenderUpdate(e=>e.time),fb=xa(0).setGroup(fa).onRenderUpdate(e=>e.deltaTime),yb=xa(0,"uint").setGroup(fa).onRenderUpdate(e=>e.frameId);const bb=an(([e,t,r=fn(.5)])=>Ff(e.sub(r),t).add(r)),xb=an(([e,t,r=fn(.5)])=>{const s=e.sub(r),i=s.dot(s),n=i.mul(i).mul(t);return e.add(s.mul(n))}),Tb=an(({position:e=null,horizontal:t=!0,vertical:r=!1})=>{let s;null!==e?(s=xd.toVar(),s[3][0]=e.x,s[3][1]=e.y,s[3][2]=e.z):s=xd;const i=id.mul(s);return qi(t)&&(i[0][0]=xd[0].length(),i[0][1]=0,i[0][2]=0),qi(r)&&(i[1][0]=0,i[1][1]=xd[1].length(),i[1][2]=0),i[2][0]=0,i[2][1]=0,i[2][2]=1,rd.mul(i).mul(Bd)}),_b=an(([e=null])=>{const t=Pp();return Pp(Ap(e)).sub(t).lessThan(0).select(Hl,e)});class vb extends ai{static get type(){return"SpriteSheetUVNode"}constructor(e,t=Al(),r=hn(0)){super("vec2"),this.countNode=e,this.uvNode=t,this.frameNode=r}setup(){const{frameNode:e,uvNode:t,countNode:r}=this,{width:s,height:i}=r,n=e.mod(s.mul(i)).floor(),a=n.mod(s),o=i.sub(n.add(1).div(s).ceil()),u=r.reciprocal(),l=fn(a,o);return t.add(l).mul(u)}}const Nb=en(vb).setParameterLength(3),Sb=an(([e,t=null,r=null,s=hn(1),i=Bd,n=zd])=>{let a=n.abs().normalize();a=a.div(a.dot(Tn(1)));const o=i.yz.mul(s),u=i.zx.mul(s),l=i.xy.mul(s),d=e.value,c=null!==t?t.value:d,h=null!==r?r.value:d,p=Pl(d,o).mul(a.x),g=Pl(c,u).mul(a.y),m=Pl(h,l).mul(a.z);return wa(p,g,m)}),Ab=new Ge,Rb=new r,Eb=new r,wb=new r,Cb=new a,Mb=new r(0,0,-1),Bb=new s,Lb=new r,Pb=new r,Fb=new s,Db=new t,Ub=new _e,Ib=Hl.flipX();Ub.depthTexture=new X(1,1);let Ob=!1;class Vb extends Bl{static get type(){return"ReflectorNode"}constructor(e={}){super(e.defaultTexture||Ub.texture,Ib),this._reflectorBaseNode=e.reflector||new kb(this,e),this._depthNode=null,this.setUpdateMatrix(!1)}get reflector(){return this._reflectorBaseNode}get target(){return this._reflectorBaseNode.target}getDepthNode(){if(null===this._depthNode){if(!0!==this._reflectorBaseNode.depth)throw new Error("THREE.ReflectorNode: Depth node can only be requested when the reflector is created with { depth: true }. ");this._depthNode=Yi(new Vb({defaultTexture:Ub.depthTexture,reflector:this._reflectorBaseNode}))}return this._depthNode}setup(e){return e.object.isQuadMesh||this._reflectorBaseNode.build(e),super.setup(e)}clone(){const e=new this.constructor(this.reflectorNode);return e.uvNode=this.uvNode,e.levelNode=this.levelNode,e.biasNode=this.biasNode,e.sampler=this.sampler,e.depthNode=this.depthNode,e.compareNode=this.compareNode,e.gradNode=this.gradNode,e.offsetNode=this.offsetNode,e._reflectorBaseNode=this._reflectorBaseNode,e}dispose(){super.dispose(),this._reflectorBaseNode.dispose()}}class kb extends ai{static get type(){return"ReflectorBaseNode"}constructor(e,t={}){super();const{target:r=new ze,resolutionScale:s=1,generateMipmaps:i=!1,bounces:n=!0,depth:a=!1,samples:o=0}=t;this.textureNode=e,this.target=r,this.resolutionScale=s,void 0!==t.resolution&&(v('ReflectorNode: The "resolution" parameter has been renamed to "resolutionScale".'),this.resolutionScale=t.resolution),this.generateMipmaps=i,this.bounces=n,this.depth=a,this.samples=o,this.updateBeforeType=n?Qs.RENDER:Qs.FRAME,this.virtualCameras=new WeakMap,this.renderTargets=new Map,this.forceUpdate=!1,this.hasOutput=!1}_updateResolution(e,t){const r=this.resolutionScale;t.getDrawingBufferSize(Db),e.setSize(Math.round(Db.width*r),Math.round(Db.height*r))}setup(e){return this._updateResolution(Ub,e.renderer),super.setup(e)}dispose(){super.dispose();for(const e of this.renderTargets.values())e.dispose()}getVirtualCamera(e){let t=this.virtualCameras.get(e);return void 0===t&&(t=e.clone(),this.virtualCameras.set(e,t)),t}getRenderTarget(e){let t=this.renderTargets.get(e);return void 0===t&&(t=new _e(0,0,{type:fe,samples:this.samples}),!0===this.generateMipmaps&&(t.texture.minFilter=$e,t.texture.generateMipmaps=!0),!0===this.depth&&(t.depthTexture=new X),this.renderTargets.set(e,t)),t}updateBefore(e){if(!1===this.bounces&&Ob)return!1;Ob=!0;const{scene:t,camera:r,renderer:s,material:i}=e,{target:n}=this,a=this.getVirtualCamera(r),o=this.getRenderTarget(a);s.getDrawingBufferSize(Db),this._updateResolution(o,s),Eb.setFromMatrixPosition(n.matrixWorld),wb.setFromMatrixPosition(r.matrixWorld),Cb.extractRotation(n.matrixWorld),Rb.set(0,0,1),Rb.applyMatrix4(Cb),Lb.subVectors(Eb,wb);let u=!1;if(!0===Lb.dot(Rb)>0&&!1===this.forceUpdate){if(!1===this.hasOutput)return void(Ob=!1);u=!0}Lb.reflect(Rb).negate(),Lb.add(Eb),Cb.extractRotation(r.matrixWorld),Mb.set(0,0,-1),Mb.applyMatrix4(Cb),Mb.add(wb),Pb.subVectors(Eb,Mb),Pb.reflect(Rb).negate(),Pb.add(Eb),a.coordinateSystem=r.coordinateSystem,a.position.copy(Lb),a.up.set(0,1,0),a.up.applyMatrix4(Cb),a.up.reflect(Rb),a.lookAt(Pb),a.near=r.near,a.far=r.far,a.updateMatrixWorld(),a.projectionMatrix.copy(r.projectionMatrix),Ab.setFromNormalAndCoplanarPoint(Rb,Eb),Ab.applyMatrix4(a.matrixWorldInverse),Bb.set(Ab.normal.x,Ab.normal.y,Ab.normal.z,Ab.constant);const l=a.projectionMatrix;Fb.x=(Math.sign(Bb.x)+l.elements[8])/l.elements[0],Fb.y=(Math.sign(Bb.y)+l.elements[9])/l.elements[5],Fb.z=-1,Fb.w=(1+l.elements[10])/l.elements[14],Bb.multiplyScalar(1/Bb.dot(Fb));l.elements[2]=Bb.x,l.elements[6]=Bb.y,l.elements[10]=s.coordinateSystem===h?Bb.z-0:Bb.z+1-0,l.elements[14]=Bb.w,this.textureNode.value=o.texture,!0===this.depth&&(this.textureNode.getDepthNode().value=o.depthTexture),i.visible=!1;const d=s.getRenderTarget(),c=s.getMRT(),p=s.autoClear;s.setMRT(null),s.setRenderTarget(o),s.autoClear=!0;const g=t.name;t.name=(t.name||"Scene")+" [ Reflector ]",u?(s.clear(),this.hasOutput=!1):(s.render(t,a),this.hasOutput=!0),t.name=g,s.setMRT(c),s.setRenderTarget(d),s.autoClear=p,i.visible=!0,Ob=!1,this.forceUpdate=!1}get resolution(){return v('ReflectorNode: The "resolution" property has been renamed to "resolutionScale".'),this.resolutionScale}set resolution(e){v('ReflectorNode: The "resolution" property has been renamed to "resolutionScale".'),this.resolutionScale=e}}const Gb=new xe(-1,1,1,-1,0,1);class zb extends be{constructor(e=!1){super();const t=!1===e?[0,-1,0,1,2,1]:[0,2,0,0,2,0];this.setAttribute("position",new We([-1,3,0,-1,-1,0,3,-1,0],3)),this.setAttribute("uv",new We(t,2))}}const $b=new zb;class Wb extends se{constructor(e=null){super($b,e),this.camera=Gb,this.isQuadMesh=!0}async renderAsync(e){v('QuadMesh: "renderAsync()" has been deprecated. Use "render()" and "await renderer.init();" when creating the renderer.'),await e.init(),e.render(this,Gb)}render(e){e.render(this,Gb)}}const Hb=new t;class jb extends Bl{static get type(){return"RTTNode"}constructor(e,t=null,r=null,s={type:fe}){const i=new _e(t,r,s);super(i.texture,Al()),this.isRTTNode=!0,this.node=e,this.width=t,this.height=r,this.pixelRatio=1,this.renderTarget=i,this.textureNeedsUpdate=!0,this.autoUpdate=!0,this._rttNode=null,this._quadMesh=new Wb(new Xp),this.updateBeforeType=Qs.RENDER}get autoResize(){return null===this.width}setup(e){return this._rttNode=this.node.context(e.getSharedContext()),this._quadMesh.material.name="RTT",this._quadMesh.material.needsUpdate=!0,super.setup(e)}setSize(e,t){this.width=e,this.height=t;const r=e*this.pixelRatio,s=t*this.pixelRatio;this.renderTarget.setSize(r,s),this.textureNeedsUpdate=!0}setPixelRatio(e){this.pixelRatio=e,this.setSize(this.width,this.height)}updateBefore({renderer:e}){if(!1===this.textureNeedsUpdate&&!1===this.autoUpdate)return;if(this.textureNeedsUpdate=!1,!0===this.autoResize){const t=e.getPixelRatio(),r=e.getSize(Hb),s=Math.floor(r.width*t),i=Math.floor(r.height*t);s===this.renderTarget.width&&i===this.renderTarget.height||(this.renderTarget.setSize(s,i),this.textureNeedsUpdate=!0)}let t="RTT";this.node.name&&(t=this.node.name+" [ "+t+" ]"),this._quadMesh.material.fragmentNode=this._rttNode,this._quadMesh.name=t;const r=e.getRenderTarget();e.setRenderTarget(this.renderTarget),this._quadMesh.render(e),e.setRenderTarget(r)}clone(){const e=new Bl(this.value,this.uvNode,this.levelNode);return e.sampler=this.sampler,e.referenceNode=this,e}}const qb=(e,...t)=>Yi(new jb(Yi(e),...t)),Xb=an(([e,t,r],s)=>{let i;s.renderer.coordinateSystem===h?(e=fn(e.x,e.y.oneMinus()).mul(2).sub(1),i=Sn(Tn(e,t),1)):i=Sn(Tn(e.x,e.y.oneMinus(),t).mul(2).sub(1),1);const n=Sn(r.mul(i));return n.xyz.div(n.w)}),Kb=an(([e,t])=>{const r=t.mul(Sn(e,1)),s=r.xy.div(r.w).mul(.5).add(.5).toVar();return fn(s.x,s.y.oneMinus())}),Yb=an(([e,t,r])=>{const s=El(Fl(t)),i=yn(e.mul(s)).toVar(),n=Fl(t,i).toVar(),a=Fl(t,i.sub(yn(2,0))).toVar(),o=Fl(t,i.sub(yn(1,0))).toVar(),u=Fl(t,i.add(yn(1,0))).toVar(),l=Fl(t,i.add(yn(2,0))).toVar(),d=Fl(t,i.add(yn(0,2))).toVar(),c=Fl(t,i.add(yn(0,1))).toVar(),h=Fl(t,i.sub(yn(0,1))).toVar(),p=Fl(t,i.sub(yn(0,2))).toVar(),g=wo(Ca(hn(2).mul(o).sub(a),n)).toVar(),m=wo(Ca(hn(2).mul(u).sub(l),n)).toVar(),f=wo(Ca(hn(2).mul(c).sub(d),n)).toVar(),y=wo(Ca(hn(2).mul(h).sub(p),n)).toVar(),b=Xb(e,n,r).toVar(),x=g.lessThan(m).select(b.sub(Xb(e.sub(fn(hn(1).div(s.x),0)),o,r)),b.negate().add(Xb(e.add(fn(hn(1).div(s.x),0)),u,r))),T=f.lessThan(y).select(b.sub(Xb(e.add(fn(0,hn(1).div(s.y))),c,r)),b.negate().add(Xb(e.sub(fn(0,hn(1).div(s.y))),h,r)));return To(Yo(x,T))}),Qb=an(([e])=>_o(hn(52.9829189).mul(_o(Ko(e,fn(.06711056,.00583715)))))).setLayout({name:"interleavedGradientNoise",type:"float",inputs:[{name:"position",type:"vec2"}]}),Zb=an(([e,t,r])=>{const s=hn(2.399963229728653),i=fo(hn(e).add(.5).div(hn(t))),n=hn(e).mul(s).add(r);return fn(No(n),vo(n)).mul(i)}).setLayout({name:"vogelDiskSample",type:"vec2",inputs:[{name:"sampleIndex",type:"int"},{name:"samplesCount",type:"int"},{name:"phi",type:"float"}]});class Jb extends ai{static get type(){return"SampleNode"}constructor(e,t=null){super(),this.callback=e,this.uvNode=t,this.isSampleNode=!0}setup(){return this.sample(Al())}sample(e){return this.callback(e)}}class ex extends ai{static get type(){return"EventNode"}constructor(e,t){super("void"),this.eventType=e,this.callback=t,e===ex.OBJECT?this.updateType=Qs.OBJECT:e===ex.MATERIAL?this.updateType=Qs.RENDER:e===ex.BEFORE_OBJECT?this.updateBeforeType=Qs.OBJECT:e===ex.BEFORE_MATERIAL&&(this.updateBeforeType=Qs.RENDER)}update(e){this.callback(e)}updateBefore(e){this.callback(e)}}ex.OBJECT="object",ex.MATERIAL="material",ex.BEFORE_OBJECT="beforeObject",ex.BEFORE_MATERIAL="beforeMaterial";const tx=(e,t)=>Yi(new ex(e,t)).toStack();class rx extends ${constructor(e,t,r=Float32Array){super(ArrayBuffer.isView(e)?e:new r(e*t),t),this.isStorageInstancedBufferAttribute=!0}}class sx extends Ae{constructor(e,t,r=Float32Array){super(ArrayBuffer.isView(e)?e:new r(e*t),t),this.isStorageBufferAttribute=!0}}class ix extends ai{static get type(){return"PointUVNode"}constructor(){super("vec2"),this.isPointUVNode=!0}generate(){return"vec2( gl_PointCoord.x, 1.0 - gl_PointCoord.y )"}}const nx=tn(ix),ax=new M,ox=new a;class ux extends ai{static get type(){return"SceneNode"}constructor(e=ux.BACKGROUND_BLURRINESS,t=null){super(),this.scope=e,this.scene=t}setup(e){const t=this.scope,r=null!==this.scene?this.scene:e.scene;let s;return t===ux.BACKGROUND_BLURRINESS?s=mc("backgroundBlurriness","float",r):t===ux.BACKGROUND_INTENSITY?s=mc("backgroundIntensity","float",r):t===ux.BACKGROUND_ROTATION?s=xa("mat4").setName("backgroundRotation").setGroup(fa).onRenderUpdate(()=>{const e=r.background;return null!==e&&e.isTexture&&e.mapping!==He?(ax.copy(r.backgroundRotation),ax.x*=-1,ax.y*=-1,ax.z*=-1,ox.makeRotationFromEuler(ax)):ox.identity(),ox}):o("SceneNode: Unknown scope:",t),s}}ux.BACKGROUND_BLURRINESS="backgroundBlurriness",ux.BACKGROUND_INTENSITY="backgroundIntensity",ux.BACKGROUND_ROTATION="backgroundRotation";const lx=tn(ux,ux.BACKGROUND_BLURRINESS),dx=tn(ux,ux.BACKGROUND_INTENSITY),cx=tn(ux,ux.BACKGROUND_ROTATION);class hx extends Bl{static get type(){return"StorageTextureNode"}constructor(e,t,r=null){super(e,t),this.storeNode=r,this.mipLevel=0,this.isStorageTextureNode=!0,this.access=Js.WRITE_ONLY}getInputType(){return"storageTexture"}setup(e){super.setup(e);const t=e.getNodeProperties(this);return t.storeNode=this.storeNode,t}setAccess(e){return this.access=e,this}setMipLevel(e){return this.mipLevel=e,this}generate(e,t){let r;return r=null!==this.storeNode?this.generateStore(e):super.generate(e,t),r}toReadWrite(){return this.setAccess(Js.READ_WRITE)}toReadOnly(){return this.setAccess(Js.READ_ONLY)}toWriteOnly(){return this.setAccess(Js.WRITE_ONLY)}generateStore(e){const t=e.getNodeProperties(this),{uvNode:r,storeNode:s,depthNode:i}=t,n=super.generate(e,"property"),a=r.build(e,!0===this.value.is3DTexture?"uvec3":"uvec2"),o=s.build(e,"vec4"),u=i?i.build(e,"int"):null,l=e.generateTextureStore(e,n,a,u,o);e.addLineFlowCode(l,this)}clone(){const e=super.clone();return e.storeNode=this.storeNode,e.mipLevel=this.mipLevel,e}}const px=en(hx).setParameterLength(1,3),gx=an(({texture:e,uv:t})=>{const r=1e-4,s=Tn().toVar();return ln(t.x.lessThan(r),()=>{s.assign(Tn(1,0,0))}).ElseIf(t.y.lessThan(r),()=>{s.assign(Tn(0,1,0))}).ElseIf(t.z.lessThan(r),()=>{s.assign(Tn(0,0,1))}).ElseIf(t.x.greaterThan(.9999),()=>{s.assign(Tn(-1,0,0))}).ElseIf(t.y.greaterThan(.9999),()=>{s.assign(Tn(0,-1,0))}).ElseIf(t.z.greaterThan(.9999),()=>{s.assign(Tn(0,0,-1))}).Else(()=>{const r=.01,i=e.sample(t.add(Tn(-.01,0,0))).r.sub(e.sample(t.add(Tn(r,0,0))).r),n=e.sample(t.add(Tn(0,-.01,0))).r.sub(e.sample(t.add(Tn(0,r,0))).r),a=e.sample(t.add(Tn(0,0,-.01))).r.sub(e.sample(t.add(Tn(0,0,r))).r);s.assign(Tn(i,n,a))}),s.normalize()});class mx extends Bl{static get type(){return"Texture3DNode"}constructor(e,t=null,r=null){super(e,t,r),this.isTexture3DNode=!0}getInputType(){return"texture3D"}getDefaultUV(){return Tn(.5,.5,.5)}setUpdateMatrix(){}setupUV(e,t){const r=this.value;return!e.isFlipY()||!0!==r.isRenderTargetTexture&&!0!==r.isFramebufferTexture||(t=this.sampler?t.flipY():t.setY(pn(El(this,this.levelNode).y).sub(t.y).sub(1))),t}generateUV(e,t){return t.build(e,!0===this.sampler?"vec3":"ivec3")}generateOffset(e,t){return t.build(e,"ivec3")}normal(e){return gx({texture:this,uv:e})}}const fx=en(mx).setParameterLength(1,3);class yx extends gc{static get type(){return"UserDataNode"}constructor(e,t,r=null){super(e,t,r),this.userData=r}updateReference(e){return this.reference=null!==this.userData?this.userData:e.object.userData,this.reference}}const bx=new WeakMap;class xx extends li{static get type(){return"VelocityNode"}constructor(){super("vec2"),this.projectionMatrix=null,this.updateType=Qs.OBJECT,this.updateAfterType=Qs.OBJECT,this.previousModelWorldMatrix=xa(new a),this.previousProjectionMatrix=xa(new a).setGroup(fa),this.previousCameraViewMatrix=xa(new a)}setProjectionMatrix(e){this.projectionMatrix=e}update({frameId:e,camera:t,object:r}){const s=_x(r);this.previousModelWorldMatrix.value.copy(s);const i=Tx(t);i.frameId!==e&&(i.frameId=e,void 0===i.previousProjectionMatrix?(i.previousProjectionMatrix=new a,i.previousCameraViewMatrix=new a,i.currentProjectionMatrix=new a,i.currentCameraViewMatrix=new a,i.previousProjectionMatrix.copy(this.projectionMatrix||t.projectionMatrix),i.previousCameraViewMatrix.copy(t.matrixWorldInverse)):(i.previousProjectionMatrix.copy(i.currentProjectionMatrix),i.previousCameraViewMatrix.copy(i.currentCameraViewMatrix)),i.currentProjectionMatrix.copy(this.projectionMatrix||t.projectionMatrix),i.currentCameraViewMatrix.copy(t.matrixWorldInverse),this.previousProjectionMatrix.value.copy(i.previousProjectionMatrix),this.previousCameraViewMatrix.value.copy(i.previousCameraViewMatrix))}updateAfter({object:e}){_x(e).copy(e.matrixWorld)}setup(){const e=null===this.projectionMatrix?rd:xa(this.projectionMatrix),t=this.previousCameraViewMatrix.mul(this.previousModelWorldMatrix),r=e.mul(Rd).mul(Bd),s=this.previousProjectionMatrix.mul(t).mul(Ld),i=r.xy.div(r.w),n=s.xy.div(s.w);return Ca(i,n)}}function Tx(e){let t=bx.get(e);return void 0===t&&(t={},bx.set(e,t)),t}function _x(e,t=0){const r=Tx(e);let s=r[t];return void 0===s&&(r[t]=s=new a,r[t].copy(e.matrixWorld)),s}const vx=tn(xx),Nx=an(([e])=>Ex(e.rgb)),Sx=an(([e,t=hn(1)])=>t.mix(Ex(e.rgb),e.rgb)),Ax=an(([e,t=hn(1)])=>{const r=wa(e.r,e.g,e.b).div(3),s=e.r.max(e.g.max(e.b)),i=s.sub(r).mul(t).mul(-3);return iu(e.rgb,s,i)}),Rx=an(([e,t=hn(1)])=>{const r=Tn(.57735,.57735,.57735),s=t.cos();return Tn(e.rgb.mul(s).add(r.cross(e.rgb).mul(t.sin()).add(r.mul(Ko(r,e.rgb).mul(s.oneMinus())))))}),Ex=(e,t=Tn(p.getLuminanceCoefficients(new r)))=>Ko(e,t),wx=an(([e,t=Tn(1),s=Tn(0),i=Tn(1),n=hn(1),a=Tn(p.getLuminanceCoefficients(new r,ve))])=>{const o=e.rgb.dot(Tn(a)),u=Wo(e.rgb.mul(t).add(s),0).toVar(),l=u.pow(i).toVar();return ln(u.r.greaterThan(0),()=>{u.r.assign(l.r)}),ln(u.g.greaterThan(0),()=>{u.g.assign(l.g)}),ln(u.b.greaterThan(0),()=>{u.b.assign(l.b)}),u.assign(o.add(u.sub(o).mul(n))),Sn(u.rgb,e.a)});class Cx extends li{static get type(){return"PosterizeNode"}constructor(e,t){super(),this.sourceNode=e,this.stepsNode=t}setup(){const{sourceNode:e,stepsNode:t}=this;return e.mul(t).floor().div(t)}}const Mx=en(Cx).setParameterLength(2),Bx=new t;class Lx extends Bl{static get type(){return"PassTextureNode"}constructor(e,t){super(t),this.passNode=e,this.setUpdateMatrix(!1)}setup(e){return this.passNode.build(e),super.setup(e)}clone(){return new this.constructor(this.passNode,this.value)}}class Px extends Lx{static get type(){return"PassMultipleTextureNode"}constructor(e,t,r=!1){super(e,null),this.textureName=t,this.previousTexture=r}updateTexture(){this.value=this.previousTexture?this.passNode.getPreviousTexture(this.textureName):this.passNode.getTexture(this.textureName)}setup(e){return this.updateTexture(),super.setup(e)}clone(){const e=new this.constructor(this.passNode,this.textureName,this.previousTexture);return e.uvNode=this.uvNode,e.levelNode=this.levelNode,e.biasNode=this.biasNode,e.sampler=this.sampler,e.depthNode=this.depthNode,e.compareNode=this.compareNode,e.gradNode=this.gradNode,e.offsetNode=this.offsetNode,e}}class Fx extends li{static get type(){return"PassNode"}constructor(e,t,r,s={}){super("vec4"),this.scope=e,this.scene=t,this.camera=r,this.options=s,this._pixelRatio=1,this._width=1,this._height=1;const i=new X;i.isRenderTargetTexture=!0,i.name="depth";const n=new _e(this._width*this._pixelRatio,this._height*this._pixelRatio,{type:fe,...s});n.texture.name="output",n.depthTexture=i,this.renderTarget=n,this.overrideMaterial=null,this.transparent=!0,this.opaque=!0,this.contextNode=null,this._contextNodeCache=null,this._textures={output:n.texture,depth:i},this._textureNodes={},this._linearDepthNodes={},this._viewZNodes={},this._previousTextures={},this._previousTextureNodes={},this._cameraNear=xa(0),this._cameraFar=xa(0),this._mrt=null,this._layers=null,this._resolutionScale=1,this._viewport=null,this._scissor=null,this.isPassNode=!0,this.updateBeforeType=Qs.FRAME,this.global=!0}setResolutionScale(e){return this._resolutionScale=e,this}getResolutionScale(){return this._resolutionScale}setResolution(e){return d("PassNode: .setResolution() is deprecated. Use .setResolutionScale() instead."),this.setResolutionScale(e)}getResolution(){return d("PassNode: .getResolution() is deprecated. Use .getResolutionScale() instead."),this.getResolutionScale()}setLayers(e){return this._layers=e,this}getLayers(){return this._layers}setMRT(e){return this._mrt=e,this}getMRT(){return this._mrt}getTexture(e){let t=this._textures[e];if(void 0===t){t=this.renderTarget.texture.clone(),t.name=e,this._textures[e]=t,this.renderTarget.textures.push(t)}return t}getPreviousTexture(e){let t=this._previousTextures[e];return void 0===t&&(t=this.getTexture(e).clone(),this._previousTextures[e]=t),t}toggleTexture(e){const t=this._previousTextures[e];if(void 0!==t){const r=this._textures[e],s=this.renderTarget.textures.indexOf(r);this.renderTarget.textures[s]=t,this._textures[e]=t,this._previousTextures[e]=r,this._textureNodes[e].updateTexture(),this._previousTextureNodes[e].updateTexture()}}getTextureNode(e="output"){let t=this._textureNodes[e];return void 0===t&&(t=Yi(new Px(this,e)),t.updateTexture(),this._textureNodes[e]=t),t}getPreviousTextureNode(e="output"){let t=this._previousTextureNodes[e];return void 0===t&&(void 0===this._textureNodes[e]&&this.getTextureNode(e),t=Yi(new Px(this,e,!0)),t.updateTexture(),this._previousTextureNodes[e]=t),t}getViewZNode(e="depth"){let t=this._viewZNodes[e];if(void 0===t){const r=this._cameraNear,s=this._cameraFar;this._viewZNodes[e]=t=Cp(this.getTextureNode(e),r,s)}return t}getLinearDepthNode(e="depth"){let t=this._linearDepthNodes[e];if(void 0===t){const r=this._cameraNear,s=this._cameraFar,i=this.getViewZNode(e);this._linearDepthNodes[e]=t=Ep(i,r,s)}return t}async compileAsync(e){const t=e.getRenderTarget(),r=e.getMRT();e.setRenderTarget(this.renderTarget),e.setMRT(this._mrt),await e.compileAsync(this.scene,this.camera),e.setRenderTarget(t),e.setMRT(r)}setup({renderer:e}){return this.renderTarget.samples=void 0===this.options.samples?e.samples:this.options.samples,this.renderTarget.texture.type=e.getColorBufferType(),this.scope===Fx.COLOR?this.getTextureNode():this.getLinearDepthNode()}updateBefore(e){const{renderer:t}=e,{scene:r}=this;let s,i;const n=t.getOutputRenderTarget();n&&!0===n.isXRRenderTarget?(i=1,s=t.xr.getCamera(),t.xr.updateCamera(s),Bx.set(n.width,n.height)):(s=this.camera,i=t.getPixelRatio(),t.getSize(Bx)),this._pixelRatio=i,this.setSize(Bx.width,Bx.height);const a=t.getRenderTarget(),o=t.getMRT(),u=t.autoClear,l=t.transparent,d=t.opaque,c=s.layers.mask,h=t.contextNode,p=r.overrideMaterial;this._cameraNear.value=s.near,this._cameraFar.value=s.far,null!==this._layers&&(s.layers.mask=this._layers.mask);for(const e in this._previousTextures)this.toggleTexture(e);null!==this.overrideMaterial&&(r.overrideMaterial=this.overrideMaterial),t.setRenderTarget(this.renderTarget),t.setMRT(this._mrt),t.autoClear=!0,t.transparent=this.transparent,t.opaque=this.opaque,null!==this.contextNode&&(null!==this._contextNodeCache&&this._contextNodeCache.version===this.version||(this._contextNodeCache={version:this.version,context:Tu({...t.contextNode.getFlowContextData(),...this.contextNode.getFlowContextData()})}),t.contextNode=this._contextNodeCache.context);const g=r.name;r.name=this.name?this.name:r.name,t.render(r,s),r.name=g,r.overrideMaterial=p,t.setRenderTarget(a),t.setMRT(o),t.autoClear=u,t.transparent=l,t.opaque=d,t.contextNode=h,s.layers.mask=c}setSize(e,t){this._width=e,this._height=t;const r=Math.floor(this._width*this._pixelRatio*this._resolutionScale),s=Math.floor(this._height*this._pixelRatio*this._resolutionScale);this.renderTarget.setSize(r,s),null!==this._scissor&&this.renderTarget.scissor.copy(this._scissor),null!==this._viewport&&this.renderTarget.viewport.copy(this._viewport)}setScissor(e,t,r,i){null===e?this._scissor=null:(null===this._scissor&&(this._scissor=new s),e.isVector4?this._scissor.copy(e):this._scissor.set(e,t,r,i),this._scissor.multiplyScalar(this._pixelRatio*this._resolutionScale).floor())}setViewport(e,t,r,i){null===e?this._viewport=null:(null===this._viewport&&(this._viewport=new s),e.isVector4?this._viewport.copy(e):this._viewport.set(e,t,r,i),this._viewport.multiplyScalar(this._pixelRatio*this._resolutionScale).floor())}setPixelRatio(e){this._pixelRatio=e,this.setSize(this._width,this._height)}dispose(){this.renderTarget.dispose()}}Fx.COLOR="color",Fx.DEPTH="depth";class Dx extends Fx{static get type(){return"ToonOutlinePassNode"}constructor(e,t,r,s,i){super(Fx.COLOR,e,t),this.colorNode=r,this.thicknessNode=s,this.alphaNode=i,this._materialCache=new WeakMap,this.name="Outline Pass"}updateBefore(e){const{renderer:t}=e,r=t.getRenderObjectFunction();t.setRenderObjectFunction((e,r,s,i,n,a,o,u)=>{if((n.isMeshToonMaterial||n.isMeshToonNodeMaterial)&&!1===n.wireframe){const l=this._getOutlineMaterial(n);t.renderObject(e,r,s,i,l,a,o,u)}t.renderObject(e,r,s,i,n,a,o,u)}),super.updateBefore(e),t.setRenderObjectFunction(r)}_createMaterial(){const e=new Xp;e.isMeshToonOutlineMaterial=!0,e.name="Toon_Outline",e.side=w;const t=zd.negate(),r=rd.mul(Rd),s=hn(1),i=r.mul(Sn(Bd,1)),n=r.mul(Sn(Bd.add(t),1)),a=To(i.sub(n));return e.vertexNode=i.add(a.mul(this.thicknessNode).mul(i.w).mul(s)),e.colorNode=Sn(this.colorNode,this.alphaNode),e}_getOutlineMaterial(e){let t=this._materialCache.get(e);return void 0===t&&(t=this._createMaterial(),this._materialCache.set(e,t)),t}}const Ux=an(([e,t])=>e.mul(t).clamp()).setLayout({name:"linearToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]}),Ix=an(([e,t])=>(e=e.mul(t)).div(e.add(1)).clamp()).setLayout({name:"reinhardToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]}),Ox=an(([e,t])=>{const r=(e=(e=e.mul(t)).sub(.004).max(0)).mul(e.mul(6.2).add(.5)),s=e.mul(e.mul(6.2).add(1.7)).add(.06);return r.div(s).pow(2.2)}).setLayout({name:"cineonToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]}),Vx=an(([e])=>{const t=e.mul(e.add(.0245786)).sub(90537e-9),r=e.mul(e.add(.432951).mul(.983729)).add(.238081);return t.div(r)}),kx=an(([e,t])=>{const r=Cn(.59719,.35458,.04823,.076,.90834,.01566,.0284,.13383,.83777),s=Cn(1.60475,-.53108,-.07367,-.10208,1.10813,-.00605,-.00327,-.07276,1.07602);return e=e.mul(t).div(.6),e=r.mul(e),e=Vx(e),(e=s.mul(e)).clamp()}).setLayout({name:"acesFilmicToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]}),Gx=Cn(Tn(1.6605,-.1246,-.0182),Tn(-.5876,1.1329,-.1006),Tn(-.0728,-.0083,1.1187)),zx=Cn(Tn(.6274,.0691,.0164),Tn(.3293,.9195,.088),Tn(.0433,.0113,.8956)),$x=an(([e])=>{const t=Tn(e).toVar(),r=Tn(t.mul(t)).toVar(),s=Tn(r.mul(r)).toVar();return hn(15.5).mul(s.mul(r)).sub(Ma(40.14,s.mul(t))).add(Ma(31.96,s).sub(Ma(6.868,r.mul(t))).add(Ma(.4298,r).add(Ma(.1191,t).sub(.00232))))}),Wx=an(([e,t])=>{const r=Tn(e).toVar(),s=Cn(Tn(.856627153315983,.137318972929847,.11189821299995),Tn(.0951212405381588,.761241990602591,.0767994186031903),Tn(.0482516061458583,.101439036467562,.811302368396859)),i=Cn(Tn(1.1271005818144368,-.1413297634984383,-.14132976349843826),Tn(-.11060664309660323,1.157823702216272,-.11060664309660294),Tn(-.016493938717834573,-.016493938717834257,1.2519364065950405)),n=hn(-12.47393),a=hn(4.026069);return r.mulAssign(t),r.assign(zx.mul(r)),r.assign(s.mul(r)),r.assign(Wo(r,1e-10)),r.assign(mo(r)),r.assign(r.sub(n).div(a.sub(n))),r.assign(nu(r,0,1)),r.assign($x(r)),r.assign(i.mul(r)),r.assign(Qo(Wo(Tn(0),r),Tn(2.2))),r.assign(Gx.mul(r)),r.assign(nu(r,0,1)),r}).setLayout({name:"agxToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]}),Hx=an(([e,t])=>{const r=hn(.76),s=hn(.15);e=e.mul(t);const i=$o(e.r,$o(e.g,e.b)),n=bu(i.lessThan(.08),i.sub(Ma(6.25,i.mul(i))),.04);e.subAssign(n);const a=Wo(e.r,Wo(e.g,e.b));ln(a.lessThan(r),()=>e);const o=Ca(1,r),u=Ca(1,o.mul(o).div(a.add(o.sub(r))));e.mulAssign(u.div(a));const l=Ca(1,Ba(1,s.mul(a.sub(u)).add(1)));return iu(e,Tn(u),l)}).setLayout({name:"neutralToneMapping",type:"vec3",inputs:[{name:"color",type:"vec3"},{name:"exposure",type:"float"}]});class jx extends ai{static get type(){return"CodeNode"}constructor(e="",t=[],r=""){super("code"),this.isCodeNode=!0,this.global=!0,this.code=e,this.includes=t,this.language=r}setIncludes(e){return this.includes=e,this}getIncludes(){return this.includes}generate(e){const t=this.getIncludes(e);for(const r of t)r.build(e);const r=e.getCodeFromNode(this,this.getNodeType(e));return r.code=this.code,r.code}serialize(e){super.serialize(e),e.code=this.code,e.language=this.language}deserialize(e){super.deserialize(e),this.code=e.code,this.language=e.language}}const qx=en(jx).setParameterLength(1,3);class Xx extends jx{static get type(){return"FunctionNode"}constructor(e="",t=[],r=""){super(e,t,r)}getNodeType(e){return this.getNodeFunction(e).type}getMemberType(e,t){const r=this.getNodeType(e);return e.getStructTypeNode(r).getMemberType(e,t)}getInputs(e){return this.getNodeFunction(e).inputs}getNodeFunction(e){const t=e.getDataFromNode(this);let r=t.nodeFunction;return void 0===r&&(r=e.parser.parseFunction(this.code),t.nodeFunction=r),r}generate(e,t){super.generate(e);const r=this.getNodeFunction(e),s=r.name,i=r.type,n=e.getCodeFromNode(this,i);""!==s&&(n.name=s);const a=e.getPropertyName(n),o=this.getNodeFunction(e).getCode(a);return n.code=o+"\n","property"===t?a:e.format(`${a}()`,i,t)}}const Kx=(e,t=[],r="")=>{for(let e=0;es.call(...e);return i.functionNode=s,i};class Yx extends ai{static get type(){return"ScriptableValueNode"}constructor(e=null){super(),this._value=e,this._cache=null,this.inputType=null,this.outputType=null,this.events=new u,this.isScriptableValueNode=!0}get isScriptableOutputNode(){return null!==this.outputType}set value(e){this._value!==e&&(this._cache&&"URL"===this.inputType&&this.value.value instanceof ArrayBuffer&&(URL.revokeObjectURL(this._cache),this._cache=null),this._value=e,this.events.dispatchEvent({type:"change"}),this.refresh())}get value(){return this._value}refresh(){this.events.dispatchEvent({type:"refresh"})}getValue(){const e=this.value;if(e&&null===this._cache&&"URL"===this.inputType&&e.value instanceof ArrayBuffer)this._cache=URL.createObjectURL(new Blob([e.value]));else if(e&&null!==e.value&&void 0!==e.value&&(("URL"===this.inputType||"String"===this.inputType)&&"string"==typeof e.value||"Number"===this.inputType&&"number"==typeof e.value||"Vector2"===this.inputType&&e.value.isVector2||"Vector3"===this.inputType&&e.value.isVector3||"Vector4"===this.inputType&&e.value.isVector4||"Color"===this.inputType&&e.value.isColor||"Matrix3"===this.inputType&&e.value.isMatrix3||"Matrix4"===this.inputType&&e.value.isMatrix4))return e.value;return this._cache||e}getNodeType(e){return this.value&&this.value.isNode?this.value.getNodeType(e):"float"}setup(){return this.value&&this.value.isNode?this.value:hn()}serialize(e){super.serialize(e),null!==this.value?"ArrayBuffer"===this.inputType?e.value=qs(this.value):e.value=this.value?this.value.toJSON(e.meta).uuid:null:e.value=null,e.inputType=this.inputType,e.outputType=this.outputType}deserialize(e){super.deserialize(e);let t=null;null!==e.value&&(t="ArrayBuffer"===e.inputType?Xs(e.value):"Texture"===e.inputType?e.meta.textures[e.value]:e.meta.nodes[e.value]||null),this.value=t,this.inputType=e.inputType,this.outputType=e.outputType}}const Qx=en(Yx).setParameterLength(1);class Zx extends Map{get(e,t=null,...r){if(this.has(e))return super.get(e);if(null!==t){const s=t(...r);return this.set(e,s),s}}}class Jx{constructor(e){this.scriptableNode=e}get parameters(){return this.scriptableNode.parameters}get layout(){return this.scriptableNode.getLayout()}getInputLayout(e){return this.scriptableNode.getInputLayout(e)}get(e){const t=this.parameters[e];return t?t.getValue():null}}const eT=new Zx;class tT extends ai{static get type(){return"ScriptableNode"}constructor(e=null,t={}){super(),this.codeNode=e,this.parameters=t,this._local=new Zx,this._output=Qx(null),this._outputs={},this._source=this.source,this._method=null,this._object=null,this._value=null,this._needsOutputUpdate=!0,this.onRefresh=this.onRefresh.bind(this),this.isScriptableNode=!0}get source(){return this.codeNode?this.codeNode.code:""}setLocal(e,t){return this._local.set(e,t)}getLocal(e){return this._local.get(e)}onRefresh(){this._refresh()}getInputLayout(e){for(const t of this.getLayout())if(t.inputType&&(t.id===e||t.name===e))return t}getOutputLayout(e){for(const t of this.getLayout())if(t.outputType&&(t.id===e||t.name===e))return t}setOutput(e,t){const r=this._outputs;return void 0===r[e]?r[e]=Qx(t):r[e].value=t,this}getOutput(e){return this._outputs[e]}getParameter(e){return this.parameters[e]}setParameter(e,t){const r=this.parameters;return t&&t.isScriptableNode?(this.deleteParameter(e),r[e]=t,r[e].getDefaultOutput().events.addEventListener("refresh",this.onRefresh)):t&&t.isScriptableValueNode?(this.deleteParameter(e),r[e]=t,r[e].events.addEventListener("refresh",this.onRefresh)):void 0===r[e]?(r[e]=Qx(t),r[e].events.addEventListener("refresh",this.onRefresh)):r[e].value=t,this}getValue(){return this.getDefaultOutput().getValue()}deleteParameter(e){let t=this.parameters[e];return t&&(t.isScriptableNode&&(t=t.getDefaultOutput()),t.events.removeEventListener("refresh",this.onRefresh)),this}clearParameters(){for(const e of Object.keys(this.parameters))this.deleteParameter(e);return this.needsUpdate=!0,this}call(e,...t){const r=this.getObject()[e];if("function"==typeof r)return r(...t)}async callAsync(e,...t){const r=this.getObject()[e];if("function"==typeof r)return"AsyncFunction"===r.constructor.name?await r(...t):r(...t)}getNodeType(e){return this.getDefaultOutputNode().getNodeType(e)}refresh(e=null){null!==e?this.getOutput(e).refresh():this._refresh()}getObject(){if(this.needsUpdate&&this.dispose(),null!==this._object)return this._object;const e=new Jx(this),t=eT.get("THREE"),r=eT.get("TSL"),s=this.getMethod(),i=[e,this._local,eT,()=>this.refresh(),(e,t)=>this.setOutput(e,t),t,r];this._object=s(...i);const n=this._object.layout;if(n&&(!1===n.cache&&this._local.clear(),this._output.outputType=n.outputType||null,Array.isArray(n.elements)))for(const e of n.elements){const t=e.id||e.name;e.inputType&&(void 0===this.getParameter(t)&&this.setParameter(t,null),this.getParameter(t).inputType=e.inputType),e.outputType&&(void 0===this.getOutput(t)&&this.setOutput(t,null),this.getOutput(t).outputType=e.outputType)}return this._object}deserialize(e){super.deserialize(e);for(const e in this.parameters){let t=this.parameters[e];t.isScriptableNode&&(t=t.getDefaultOutput()),t.events.addEventListener("refresh",this.onRefresh)}}getLayout(){return this.getObject().layout}getDefaultOutputNode(){const e=this.getDefaultOutput().value;return e&&e.isNode?e:hn()}getDefaultOutput(){return this._exec()._output}getMethod(){if(this.needsUpdate&&this.dispose(),null!==this._method)return this._method;const e=["layout","init","main","dispose"].join(", "),t="\nreturn { ...output, "+e+" };",r="var "+e+"; var output = {};\n"+this.codeNode.code+t;return this._method=new Function(...["parameters","local","global","refresh","setOutput","THREE","TSL"],r),this._method}dispose(){null!==this._method&&(this._object&&"function"==typeof this._object.dispose&&this._object.dispose(),this._method=null,this._object=null,this._source=null,this._value=null,this._needsOutputUpdate=!0,this._output.value=null,this._outputs={})}setup(){return this.getDefaultOutputNode()}getCacheKey(e){const t=[Fs(this.source),this.getDefaultOutputNode().getCacheKey(e)];for(const r in this.parameters)t.push(this.parameters[r].getCacheKey(e));return Ds(t)}set needsUpdate(e){!0===e&&this.dispose()}get needsUpdate(){return this.source!==this._source}_exec(){return null===this.codeNode||(!0===this._needsOutputUpdate&&(this._value=this.call("main"),this._needsOutputUpdate=!1),this._output.value=this._value),this}_refresh(){this.needsUpdate=!0,this._exec(),this._output.refresh()}}const rT=en(tT).setParameterLength(1,2);function sT(e){let t;const r=e.context.getViewZ;return void 0!==r&&(t=r(this)),(t||Dd.z).negate()}const iT=an(([e,t],r)=>{const s=sT(r);return uu(e,t,s)}),nT=an(([e],t)=>{const r=sT(t);return e.mul(e,r,r).negate().exp().oneMinus()}),aT=an(([e,t])=>Sn(t.toFloat().mix(ra.rgb,e.toVec3()),ra.a));let oT=null,uT=null;class lT extends ai{static get type(){return"RangeNode"}constructor(e=hn(),t=hn()){super(),this.minNode=e,this.maxNode=t}getVectorLength(e){const t=this.getConstNode(this.minNode),r=this.getConstNode(this.maxNode),s=e.getTypeLength(Ws(t.value)),i=e.getTypeLength(Ws(r.value));return s>i?s:i}getNodeType(e){return e.object.count>1?e.getTypeFromLength(this.getVectorLength(e)):"float"}getConstNode(e){let t=null;if(e.traverse(e=>{!0===e.isConstNode&&(t=e)}),null===t)throw new Error('THREE.TSL: No "ConstNode" found in node graph.');return t}setup(e){const t=e.object;let r=null;if(t.count>1){const i=this.getConstNode(this.minNode),n=this.getConstNode(this.maxNode),a=i.value,o=n.value,u=e.getTypeLength(Ws(a)),d=e.getTypeLength(Ws(o));oT=oT||new s,uT=uT||new s,oT.setScalar(0),uT.setScalar(0),1===u?oT.setScalar(a):a.isColor?oT.set(a.r,a.g,a.b,1):oT.set(a.x,a.y,a.z||0,a.w||0),1===d?uT.setScalar(o):o.isColor?uT.set(o.r,o.g,o.b,1):uT.set(o.x,o.y,o.z||0,o.w||0);const c=4,h=c*t.count,p=new Float32Array(h);for(let e=0;eYi(new cT(e,t)),pT=hT("numWorkgroups","uvec3"),gT=hT("workgroupId","uvec3"),mT=hT("globalId","uvec3"),fT=hT("localId","uvec3"),yT=hT("subgroupSize","uint");const bT=en(class extends ai{constructor(e){super(),this.scope=e}generate(e){const{scope:t}=this,{renderer:r}=e;!0===r.backend.isWebGLBackend?e.addFlowCode(`\t// ${t}Barrier \n`):e.addLineFlowCode(`${t}Barrier()`,this)}});class xT extends oi{constructor(e,t){super(e,t),this.isWorkgroupInfoElementNode=!0}generate(e,t){let r;const s=e.context.assign;if(r=super.generate(e),!0!==s){const s=this.getNodeType(e);r=e.format(r,s,t)}return r}}class TT extends ai{constructor(e,t,r=0){super(t),this.bufferType=t,this.bufferCount=r,this.isWorkgroupInfoNode=!0,this.elementType=t,this.scope=e,this.name=""}setName(e){return this.name=e,this}label(e){return d('TSL: "label()" has been deprecated. Use "setName()" instead.'),this.setName(e)}setScope(e){return this.scope=e,this}getElementType(){return this.elementType}getInputType(){return`${this.scope}Array`}element(e){return Yi(new xT(this,e))}generate(e){const t=""!==this.name?this.name:`${this.scope}Array_${this.id}`;return e.getScopedArray(t,this.scope.toLowerCase(),this.bufferType,this.bufferCount)}}class _T extends ai{static get type(){return"AtomicFunctionNode"}constructor(e,t,r){super("uint"),this.method=e,this.pointerNode=t,this.valueNode=r,this.parents=!0}getInputType(e){return this.pointerNode.getNodeType(e)}getNodeType(e){return this.getInputType(e)}generate(e){const t=e.getNodeProperties(this),r=t.parents,s=this.method,i=this.getNodeType(e),n=this.getInputType(e),a=this.pointerNode,o=this.valueNode,u=[];u.push(`&${a.build(e,n)}`),null!==o&&u.push(o.build(e,n));const l=`${e.getMethod(s,i)}( ${u.join(", ")} )`;if(!(!!r&&(1===r.length&&!0===r[0].isStackNode)))return void 0===t.constNode&&(t.constNode=gl(l,i).toConst()),t.constNode.build(e);e.addLineFlowCode(l,this)}}_T.ATOMIC_LOAD="atomicLoad",_T.ATOMIC_STORE="atomicStore",_T.ATOMIC_ADD="atomicAdd",_T.ATOMIC_SUB="atomicSub",_T.ATOMIC_MAX="atomicMax",_T.ATOMIC_MIN="atomicMin",_T.ATOMIC_AND="atomicAnd",_T.ATOMIC_OR="atomicOr",_T.ATOMIC_XOR="atomicXor";const vT=en(_T),NT=(e,t,r)=>vT(e,t,r).toStack();class ST extends li{static get type(){return"SubgroupFunctionNode"}constructor(e,t=null,r=null){super(),this.method=e,this.aNode=t,this.bNode=r}getInputType(e){const t=this.aNode?this.aNode.getNodeType(e):null,r=this.bNode?this.bNode.getNodeType(e):null;return(e.isMatrix(t)?0:e.getTypeLength(t))>(e.isMatrix(r)?0:e.getTypeLength(r))?t:r}getNodeType(e){const t=this.method;return t===ST.SUBGROUP_ELECT?"bool":t===ST.SUBGROUP_BALLOT?"uvec4":this.getInputType(e)}generate(e,t){const r=this.method,s=this.getNodeType(e),i=this.getInputType(e),n=this.aNode,a=this.bNode,o=[];if(r===ST.SUBGROUP_BROADCAST||r===ST.SUBGROUP_SHUFFLE||r===ST.QUAD_BROADCAST){const t=a.getNodeType(e);o.push(n.build(e,s),a.build(e,"float"===t?"int":s))}else r===ST.SUBGROUP_SHUFFLE_XOR||r===ST.SUBGROUP_SHUFFLE_DOWN||r===ST.SUBGROUP_SHUFFLE_UP?o.push(n.build(e,s),a.build(e,"uint")):(null!==n&&o.push(n.build(e,i)),null!==a&&o.push(a.build(e,i)));const u=0===o.length?"()":`( ${o.join(", ")} )`;return e.format(`${e.getMethod(r,s)}${u}`,s,t)}serialize(e){super.serialize(e),e.method=this.method}deserialize(e){super.deserialize(e),this.method=e.method}}ST.SUBGROUP_ELECT="subgroupElect",ST.SUBGROUP_BALLOT="subgroupBallot",ST.SUBGROUP_ADD="subgroupAdd",ST.SUBGROUP_INCLUSIVE_ADD="subgroupInclusiveAdd",ST.SUBGROUP_EXCLUSIVE_AND="subgroupExclusiveAdd",ST.SUBGROUP_MUL="subgroupMul",ST.SUBGROUP_INCLUSIVE_MUL="subgroupInclusiveMul",ST.SUBGROUP_EXCLUSIVE_MUL="subgroupExclusiveMul",ST.SUBGROUP_AND="subgroupAnd",ST.SUBGROUP_OR="subgroupOr",ST.SUBGROUP_XOR="subgroupXor",ST.SUBGROUP_MIN="subgroupMin",ST.SUBGROUP_MAX="subgroupMax",ST.SUBGROUP_ALL="subgroupAll",ST.SUBGROUP_ANY="subgroupAny",ST.SUBGROUP_BROADCAST_FIRST="subgroupBroadcastFirst",ST.QUAD_SWAP_X="quadSwapX",ST.QUAD_SWAP_Y="quadSwapY",ST.QUAD_SWAP_DIAGONAL="quadSwapDiagonal",ST.SUBGROUP_BROADCAST="subgroupBroadcast",ST.SUBGROUP_SHUFFLE="subgroupShuffle",ST.SUBGROUP_SHUFFLE_XOR="subgroupShuffleXor",ST.SUBGROUP_SHUFFLE_UP="subgroupShuffleUp",ST.SUBGROUP_SHUFFLE_DOWN="subgroupShuffleDown",ST.QUAD_BROADCAST="quadBroadcast";const AT=rn(ST,ST.SUBGROUP_ELECT).setParameterLength(0),RT=rn(ST,ST.SUBGROUP_BALLOT).setParameterLength(1),ET=rn(ST,ST.SUBGROUP_ADD).setParameterLength(1),wT=rn(ST,ST.SUBGROUP_INCLUSIVE_ADD).setParameterLength(1),CT=rn(ST,ST.SUBGROUP_EXCLUSIVE_AND).setParameterLength(1),MT=rn(ST,ST.SUBGROUP_MUL).setParameterLength(1),BT=rn(ST,ST.SUBGROUP_INCLUSIVE_MUL).setParameterLength(1),LT=rn(ST,ST.SUBGROUP_EXCLUSIVE_MUL).setParameterLength(1),PT=rn(ST,ST.SUBGROUP_AND).setParameterLength(1),FT=rn(ST,ST.SUBGROUP_OR).setParameterLength(1),DT=rn(ST,ST.SUBGROUP_XOR).setParameterLength(1),UT=rn(ST,ST.SUBGROUP_MIN).setParameterLength(1),IT=rn(ST,ST.SUBGROUP_MAX).setParameterLength(1),OT=rn(ST,ST.SUBGROUP_ALL).setParameterLength(0),VT=rn(ST,ST.SUBGROUP_ANY).setParameterLength(0),kT=rn(ST,ST.SUBGROUP_BROADCAST_FIRST).setParameterLength(2),GT=rn(ST,ST.QUAD_SWAP_X).setParameterLength(1),zT=rn(ST,ST.QUAD_SWAP_Y).setParameterLength(1),$T=rn(ST,ST.QUAD_SWAP_DIAGONAL).setParameterLength(1),WT=rn(ST,ST.SUBGROUP_BROADCAST).setParameterLength(2),HT=rn(ST,ST.SUBGROUP_SHUFFLE).setParameterLength(2),jT=rn(ST,ST.SUBGROUP_SHUFFLE_XOR).setParameterLength(2),qT=rn(ST,ST.SUBGROUP_SHUFFLE_UP).setParameterLength(2),XT=rn(ST,ST.SUBGROUP_SHUFFLE_DOWN).setParameterLength(2),KT=rn(ST,ST.QUAD_BROADCAST).setParameterLength(1);let YT;function QT(e){YT=YT||new WeakMap;let t=YT.get(e);return void 0===t&&YT.set(e,t={}),t}function ZT(e){const t=QT(e);return t.shadowMatrix||(t.shadowMatrix=xa("mat4").setGroup(fa).onRenderUpdate(t=>(!0===e.castShadow&&!1!==t.renderer.shadowMap.enabled||(e.shadow.camera.coordinateSystem!==t.camera.coordinateSystem&&(e.shadow.camera.coordinateSystem=t.camera.coordinateSystem,e.shadow.camera.updateProjectionMatrix()),e.shadow.updateMatrices(e)),e.shadow.matrix)))}function JT(e,t=Pd){const r=ZT(e).mul(t);return r.xyz.div(r.w)}function e_(e){const t=QT(e);return t.position||(t.position=xa(new r).setGroup(fa).onRenderUpdate((t,r)=>r.value.setFromMatrixPosition(e.matrixWorld)))}function t_(e){const t=QT(e);return t.targetPosition||(t.targetPosition=xa(new r).setGroup(fa).onRenderUpdate((t,r)=>r.value.setFromMatrixPosition(e.target.matrixWorld)))}function r_(e){const t=QT(e);return t.viewPosition||(t.viewPosition=xa(new r).setGroup(fa).onRenderUpdate(({camera:t},s)=>{s.value=s.value||new r,s.value.setFromMatrixPosition(e.matrixWorld),s.value.applyMatrix4(t.matrixWorldInverse)}))}const s_=e=>id.transformDirection(e_(e).sub(t_(e))),i_=(e,t)=>{for(const r of t)if(r.isAnalyticLightNode&&r.light.id===e)return r;return null},n_=new WeakMap,a_=[];class o_ extends ai{static get type(){return"LightsNode"}constructor(){super("vec3"),this.totalDiffuseNode=Fn("vec3","totalDiffuse"),this.totalSpecularNode=Fn("vec3","totalSpecular"),this.outgoingLightNode=Fn("vec3","outgoingLight"),this._lights=[],this._lightNodes=null,this._lightNodesHash=null,this.global=!0}customCacheKey(){const e=this._lights;for(let t=0;te.sort((e,t)=>e.id-t.id))(this._lights),i=e.renderer.library;for(const e of s)if(e.isNode)t.push(Yi(e));else{let s=null;if(null!==r&&(s=i_(e.id,r)),null===s){const r=i.getLightNodeClass(e.constructor);if(null===r){d(`LightsNode.setupNodeLights: Light node not found for ${e.constructor.name}`);continue}let s=null;n_.has(e)?s=n_.get(e):(s=Yi(new r(e)),n_.set(e,s)),t.push(s)}}this._lightNodes=t}setupDirectLight(e,t,r){const{lightingModel:s,reflectedLight:i}=e.context;s.direct({...r,lightNode:t,reflectedLight:i},e)}setupDirectRectAreaLight(e,t,r){const{lightingModel:s,reflectedLight:i}=e.context;s.directRectArea({...r,lightNode:t,reflectedLight:i},e)}setupLights(e,t){for(const r of t)r.build(e)}getLightNodes(e){return null===this._lightNodes&&this.setupLightsNode(e),this._lightNodes}setup(e){const t=e.lightsNode;e.lightsNode=this;let r=this.outgoingLightNode;const s=e.context,i=s.lightingModel,n=e.getNodeProperties(this);if(i){const{totalDiffuseNode:t,totalSpecularNode:a}=this;s.outgoingLight=r;const o=e.addStack();n.nodes=o.nodes,i.start(e);const{backdrop:u,backdropAlpha:l}=s,{directDiffuse:d,directSpecular:c,indirectDiffuse:h,indirectSpecular:p}=s.reflectedLight;let g=d.add(h);null!==u&&(g=Tn(null!==l?l.mix(g,u):u)),t.assign(g),a.assign(c.add(p)),r.assign(t.add(a)),i.finish(e),r=r.bypass(e.removeStack())}else n.nodes=[];return e.lightsNode=t,r}setLights(e){return this._lights=e,this._lightNodes=null,this._lightNodesHash=null,this}getLights(){return this._lights}get hasLights(){return this._lights.length>0}}class u_ extends ai{static get type(){return"ShadowBaseNode"}constructor(e){super(),this.light=e,this.updateBeforeType=Qs.RENDER,this.isShadowBaseNode=!0}setupShadowPosition({context:e,material:t}){l_.assign(t.receivedShadowPositionNode||e.shadowPositionWorld||Pd)}}const l_=Fn("vec3","shadowPositionWorld");function d_(t,r={}){return r.toneMapping=t.toneMapping,r.toneMappingExposure=t.toneMappingExposure,r.outputColorSpace=t.outputColorSpace,r.renderTarget=t.getRenderTarget(),r.activeCubeFace=t.getActiveCubeFace(),r.activeMipmapLevel=t.getActiveMipmapLevel(),r.renderObjectFunction=t.getRenderObjectFunction(),r.pixelRatio=t.getPixelRatio(),r.mrt=t.getMRT(),r.clearColor=t.getClearColor(r.clearColor||new e),r.clearAlpha=t.getClearAlpha(),r.autoClear=t.autoClear,r.scissorTest=t.getScissorTest(),r}function c_(e,t){return t=d_(e,t),e.setMRT(null),e.setRenderObjectFunction(null),e.setClearColor(0,1),e.autoClear=!0,t}function h_(e,t){e.toneMapping=t.toneMapping,e.toneMappingExposure=t.toneMappingExposure,e.outputColorSpace=t.outputColorSpace,e.setRenderTarget(t.renderTarget,t.activeCubeFace,t.activeMipmapLevel),e.setRenderObjectFunction(t.renderObjectFunction),e.setPixelRatio(t.pixelRatio),e.setMRT(t.mrt),e.setClearColor(t.clearColor,t.clearAlpha),e.autoClear=t.autoClear,e.setScissorTest(t.scissorTest)}function p_(e,t={}){return t.background=e.background,t.backgroundNode=e.backgroundNode,t.overrideMaterial=e.overrideMaterial,t}function g_(e,t){return t=p_(e,t),e.background=null,e.backgroundNode=null,e.overrideMaterial=null,t}function m_(e,t){e.background=t.background,e.backgroundNode=t.backgroundNode,e.overrideMaterial=t.overrideMaterial}function f_(e,t,r){return r=g_(t,r=c_(e,r))}function y_(e,t,r){h_(e,r),m_(t,r)}var b_=Object.freeze({__proto__:null,resetRendererAndSceneState:f_,resetRendererState:c_,resetSceneState:g_,restoreRendererAndSceneState:y_,restoreRendererState:h_,restoreSceneState:m_,saveRendererAndSceneState:function(e,t,r={}){return r=p_(t,r=d_(e,r))},saveRendererState:d_,saveSceneState:p_});const x_=new WeakMap,T_=an(({depthTexture:e,shadowCoord:t,depthLayer:r})=>{let s=Pl(e,t.xy).setName("t_basic");return e.isArrayTexture&&(s=s.depth(r)),s.compare(t.z)}),__=an(({depthTexture:e,shadowCoord:t,shadow:r,depthLayer:s})=>{const i=(t,r)=>{let i=Pl(e,t);return e.isArrayTexture&&(i=i.depth(s)),i.compare(r)},n=mc("mapSize","vec2",r).setGroup(fa),a=mc("radius","float",r).setGroup(fa),o=fn(1).div(n),u=a.mul(o.x),l=Qb(ql.xy).mul(6.28318530718);return wa(i(t.xy.add(Zb(0,5,l).mul(u)),t.z),i(t.xy.add(Zb(1,5,l).mul(u)),t.z),i(t.xy.add(Zb(2,5,l).mul(u)),t.z),i(t.xy.add(Zb(3,5,l).mul(u)),t.z),i(t.xy.add(Zb(4,5,l).mul(u)),t.z)).mul(.2)}),v_=an(({depthTexture:e,shadowCoord:t,shadow:r,depthLayer:s})=>{const i=(t,r)=>{let i=Pl(e,t);return e.isArrayTexture&&(i=i.depth(s)),i.compare(r)},n=mc("mapSize","vec2",r).setGroup(fa),a=fn(1).div(n),o=a.x,u=a.y,l=t.xy,d=_o(l.mul(n).add(.5));return l.subAssign(d.mul(a)),wa(i(l,t.z),i(l.add(fn(o,0)),t.z),i(l.add(fn(0,u)),t.z),i(l.add(a),t.z),iu(i(l.add(fn(o.negate(),0)),t.z),i(l.add(fn(o.mul(2),0)),t.z),d.x),iu(i(l.add(fn(o.negate(),u)),t.z),i(l.add(fn(o.mul(2),u)),t.z),d.x),iu(i(l.add(fn(0,u.negate())),t.z),i(l.add(fn(0,u.mul(2))),t.z),d.y),iu(i(l.add(fn(o,u.negate())),t.z),i(l.add(fn(o,u.mul(2))),t.z),d.y),iu(iu(i(l.add(fn(o.negate(),u.negate())),t.z),i(l.add(fn(o.mul(2),u.negate())),t.z),d.x),iu(i(l.add(fn(o.negate(),u.mul(2))),t.z),i(l.add(fn(o.mul(2),u.mul(2))),t.z),d.x),d.y)).mul(1/9)}),N_=an(({depthTexture:e,shadowCoord:t,depthLayer:r})=>{let s=Pl(e).sample(t.xy);e.isArrayTexture&&(s=s.depth(r)),s=s.rg;const i=s.x,n=Wo(1e-7,s.y.mul(s.y)),a=Ho(t.z,i);ln(a.equal(1),()=>hn(1));const o=t.z.sub(i);let u=n.div(n.add(o.mul(o)));return u=nu(Ca(u,.3).div(.65)),Wo(a,u)}),S_=an(([e,t,r])=>{let s=Pd.sub(e).length();return s=s.sub(t).div(r.sub(t)),s=s.saturate(),s}),A_=e=>{let t=x_.get(e);if(void 0===t){const r=e.isPointLight?(e=>{const t=e.shadow.camera,r=mc("near","float",t).setGroup(fa),s=mc("far","float",t).setGroup(fa),i=pd(e);return S_(i,r,s)})(e):null;t=new Xp,t.colorNode=Sn(0,0,0,1),t.depthNode=r,t.isShadowPassMaterial=!0,t.name="ShadowMaterial",t.fog=!1,x_.set(e,t)}return t},R_=new Yf,E_=[],w_=(e,t,r,s)=>{E_[0]=e,E_[1]=t;let i=R_.get(E_);return void 0!==i&&i.shadowType===r&&i.useVelocity===s||(i=(i,n,a,o,u,l,...d)=>{(!0===i.castShadow||i.receiveShadow&&r===je)&&(s&&(js(i).useVelocity=!0),i.onBeforeShadow(e,i,a,t.camera,o,n.overrideMaterial,l),e.renderObject(i,n,a,o,u,l,...d),i.onAfterShadow(e,i,a,t.camera,o,n.overrideMaterial,l))},i.shadowType=r,i.useVelocity=s,R_.set(E_,i)),E_[0]=null,E_[1]=null,i},C_=an(({samples:e,radius:t,size:r,shadowPass:s,depthLayer:i})=>{const n=hn(0).toVar("meanVertical"),a=hn(0).toVar("squareMeanVertical"),o=e.lessThanEqual(hn(1)).select(hn(0),hn(2).div(e.sub(1))),u=e.lessThanEqual(hn(1)).select(hn(0),hn(-1));op({start:pn(0),end:pn(e),type:"int",condition:"<"},({i:e})=>{const l=u.add(hn(e).mul(o));let d=s.sample(wa(ql.xy,fn(0,l).mul(t)).div(r));s.value.isArrayTexture&&(d=d.depth(i)),d=d.x,n.addAssign(d),a.addAssign(d.mul(d))}),n.divAssign(e),a.divAssign(e);const l=fo(a.sub(n.mul(n)).max(0));return fn(n,l)}),M_=an(({samples:e,radius:t,size:r,shadowPass:s,depthLayer:i})=>{const n=hn(0).toVar("meanHorizontal"),a=hn(0).toVar("squareMeanHorizontal"),o=e.lessThanEqual(hn(1)).select(hn(0),hn(2).div(e.sub(1))),u=e.lessThanEqual(hn(1)).select(hn(0),hn(-1));op({start:pn(0),end:pn(e),type:"int",condition:"<"},({i:e})=>{const l=u.add(hn(e).mul(o));let d=s.sample(wa(ql.xy,fn(l,0).mul(t)).div(r));s.value.isArrayTexture&&(d=d.depth(i)),n.addAssign(d.x),a.addAssign(wa(d.y.mul(d.y),d.x.mul(d.x)))}),n.divAssign(e),a.divAssign(e);const l=fo(a.sub(n.mul(n)).max(0));return fn(n,l)}),B_=[T_,__,v_,N_];let L_;const P_=new Wb;class F_ extends u_{static get type(){return"ShadowNode"}constructor(e,t=null){super(e),this.shadow=t||e.shadow,this.shadowMap=null,this.vsmShadowMapVertical=null,this.vsmShadowMapHorizontal=null,this.vsmMaterialVertical=null,this.vsmMaterialHorizontal=null,this._node=null,this._currentShadowType=null,this._cameraFrameId=new WeakMap,this.isShadowNode=!0,this.depthLayer=0}setupShadowFilter(e,{filterFn:t,depthTexture:r,shadowCoord:s,shadow:i,depthLayer:n}){const a=s.x.greaterThanEqual(0).and(s.x.lessThanEqual(1)).and(s.y.greaterThanEqual(0)).and(s.y.lessThanEqual(1)).and(s.z.lessThanEqual(1)),o=t({depthTexture:r,shadowCoord:s,shadow:i,depthLayer:n});return a.select(o,hn(1))}setupShadowCoord(e,t){const{shadow:r}=this,{renderer:s}=e,i=mc("bias","float",r).setGroup(fa);let n,a=t;if(r.camera.isOrthographicCamera||!0!==s.logarithmicDepthBuffer)a=a.xyz.div(a.w),n=a.z,s.coordinateSystem===h&&(n=n.mul(2).sub(1));else{const e=a.w;a=a.xy.div(e);const t=mc("near","float",r.camera).setGroup(fa),s=mc("far","float",r.camera).setGroup(fa);n=Mp(e.negate(),t,s)}return a=Tn(a.x,a.y.oneMinus(),n.add(i)),a}getShadowFilterFn(e){return B_[e]}setupRenderTarget(e,t){const r=new X(e.mapSize.width,e.mapSize.height);r.name="ShadowDepthTexture",r.compareFunction=qe;const s=t.createRenderTarget(e.mapSize.width,e.mapSize.height);return s.texture.name="ShadowMap",s.texture.type=e.mapType,s.depthTexture=r,{shadowMap:s,depthTexture:r}}setupShadow(e){const{renderer:t,camera:r}=e,{light:s,shadow:i}=this,n=t.shadowMap.type,{depthTexture:a,shadowMap:o}=this.setupRenderTarget(i,e);if(i.camera.coordinateSystem=r.coordinateSystem,i.camera.updateProjectionMatrix(),n===je&&!0!==i.isPointLightShadow){a.compareFunction=null,o.depth>1?(o._vsmShadowMapVertical||(o._vsmShadowMapVertical=e.createRenderTarget(i.mapSize.width,i.mapSize.height,{format:V,type:fe,depth:o.depth,depthBuffer:!1}),o._vsmShadowMapVertical.texture.name="VSMVertical"),this.vsmShadowMapVertical=o._vsmShadowMapVertical,o._vsmShadowMapHorizontal||(o._vsmShadowMapHorizontal=e.createRenderTarget(i.mapSize.width,i.mapSize.height,{format:V,type:fe,depth:o.depth,depthBuffer:!1}),o._vsmShadowMapHorizontal.texture.name="VSMHorizontal"),this.vsmShadowMapHorizontal=o._vsmShadowMapHorizontal):(this.vsmShadowMapVertical=e.createRenderTarget(i.mapSize.width,i.mapSize.height,{format:V,type:fe,depthBuffer:!1}),this.vsmShadowMapHorizontal=e.createRenderTarget(i.mapSize.width,i.mapSize.height,{format:V,type:fe,depthBuffer:!1}));let t=Pl(a);a.isArrayTexture&&(t=t.depth(this.depthLayer));let r=Pl(this.vsmShadowMapVertical.texture);a.isArrayTexture&&(r=r.depth(this.depthLayer));const s=mc("blurSamples","float",i).setGroup(fa),n=mc("radius","float",i).setGroup(fa),u=mc("mapSize","vec2",i).setGroup(fa);let l=this.vsmMaterialVertical||(this.vsmMaterialVertical=new Xp);l.fragmentNode=C_({samples:s,radius:n,size:u,shadowPass:t,depthLayer:this.depthLayer}).context(e.getSharedContext()),l.name="VSMVertical",l=this.vsmMaterialHorizontal||(this.vsmMaterialHorizontal=new Xp),l.fragmentNode=M_({samples:s,radius:n,size:u,shadowPass:r,depthLayer:this.depthLayer}).context(e.getSharedContext()),l.name="VSMHorizontal"}const u=mc("intensity","float",i).setGroup(fa),l=mc("normalBias","float",i).setGroup(fa),d=ZT(s).mul(l_.add(qd.mul(l))),c=this.setupShadowCoord(e,d),h=i.filterNode||this.getShadowFilterFn(t.shadowMap.type)||null;if(null===h)throw new Error("THREE.WebGPURenderer: Shadow map type not supported yet.");const p=n===je&&!0!==i.isPointLightShadow?this.vsmShadowMapHorizontal.texture:a,g=this.setupShadowFilter(e,{filterFn:h,shadowTexture:o.texture,depthTexture:p,shadowCoord:c,shadow:i,depthLayer:this.depthLayer});let m;o.texture.isCubeTexture?m=hc(o.texture,c.xyz):(m=Pl(o.texture,c),a.isArrayTexture&&(m=m.depth(this.depthLayer)));const f=iu(1,g.rgb.mix(m,1),u.mul(m.a)).toVar();this.shadowMap=o,this.shadow.map=o;const y=`${this.light.type} Shadow [ ${this.light.name||"ID: "+this.light.id} ]`;return f.toInspector(`${y} / Color`,()=>this.shadowMap.texture.isCubeTexture?hc(this.shadowMap.texture):Pl(this.shadowMap.texture)).toInspector(`${y} / Depth`,()=>this.shadowMap.texture.isCubeTexture?hc(this.shadowMap.texture).r.oneMinus():Fl(this.shadowMap.depthTexture,Al().mul(El(Pl(this.shadowMap.depthTexture)))).r.oneMinus())}setup(e){if(!1!==e.renderer.shadowMap.enabled)return an(()=>{const t=e.renderer.shadowMap.type;this._currentShadowType!==t&&(this._reset(),this._node=null);let r=this._node;return this.setupShadowPosition(e),null===r&&(this._node=r=this.setupShadow(e),this._currentShadowType=t),e.material.shadowNode&&d('NodeMaterial: ".shadowNode" is deprecated. Use ".castShadowNode" instead.'),e.material.receivedShadowNode&&(r=e.material.receivedShadowNode(r)),r})()}renderShadow(e){const{shadow:t,shadowMap:r,light:s}=this,{renderer:i,scene:n}=e;t.updateMatrices(s),r.setSize(t.mapSize.width,t.mapSize.height,r.depth);const a=n.name;n.name=`Shadow Map [ ${s.name||"ID: "+s.id} ]`,i.render(n,t.camera),n.name=a}updateShadow(e){const{shadowMap:t,light:r,shadow:s}=this,{renderer:i,scene:n,camera:a}=e,o=i.shadowMap.type,u=t.depthTexture.version;this._depthVersionCached=u;const l=s.camera.layers.mask;4294967294&s.camera.layers.mask||(s.camera.layers.mask=a.layers.mask);const d=i.getRenderObjectFunction(),c=i.getMRT(),h=!!c&&c.has("velocity");L_=f_(i,n,L_),n.overrideMaterial=A_(r),i.setRenderObjectFunction(w_(i,s,o,h)),i.setClearColor(0,0),i.setRenderTarget(t),this.renderShadow(e),i.setRenderObjectFunction(d),o===je&&!0!==s.isPointLightShadow&&this.vsmPass(i),s.camera.layers.mask=l,y_(i,n,L_)}vsmPass(e){const{shadow:t}=this,r=this.shadowMap.depth;this.vsmShadowMapVertical.setSize(t.mapSize.width,t.mapSize.height,r),this.vsmShadowMapHorizontal.setSize(t.mapSize.width,t.mapSize.height,r),e.setRenderTarget(this.vsmShadowMapVertical),P_.material=this.vsmMaterialVertical,P_.render(e),e.setRenderTarget(this.vsmShadowMapHorizontal),P_.material=this.vsmMaterialHorizontal,P_.render(e)}dispose(){this._reset(),super.dispose()}_reset(){this._currentShadowType=null,this.shadowMap&&(this.shadowMap.dispose(),this.shadowMap=null),null!==this.vsmShadowMapVertical&&(this.vsmShadowMapVertical.dispose(),this.vsmShadowMapVertical=null,this.vsmMaterialVertical.dispose(),this.vsmMaterialVertical=null),null!==this.vsmShadowMapHorizontal&&(this.vsmShadowMapHorizontal.dispose(),this.vsmShadowMapHorizontal=null,this.vsmMaterialHorizontal.dispose(),this.vsmMaterialHorizontal=null)}updateBefore(e){const{shadow:t}=this;let r=t.needsUpdate||t.autoUpdate;r&&(this._cameraFrameId[e.camera]===e.frameId&&(r=!1),this._cameraFrameId[e.camera]=e.frameId),r&&(this.updateShadow(e),this.shadowMap.depthTexture.version===this._depthVersionCached&&(t.needsUpdate=!1))}}const D_=(e,t)=>Yi(new F_(e,t)),U_=new e,I_=new a,O_=new r,V_=new r,k_=[new r(1,0,0),new r(-1,0,0),new r(0,-1,0),new r(0,1,0),new r(0,0,1),new r(0,0,-1)],G_=[new r(0,-1,0),new r(0,-1,0),new r(0,0,-1),new r(0,0,1),new r(0,-1,0),new r(0,-1,0)],z_=[new r(1,0,0),new r(-1,0,0),new r(0,1,0),new r(0,-1,0),new r(0,0,1),new r(0,0,-1)],$_=[new r(0,-1,0),new r(0,-1,0),new r(0,0,1),new r(0,0,-1),new r(0,-1,0),new r(0,-1,0)],W_=an(({depthTexture:e,bd3D:t,dp:r})=>hc(e,t).compare(r)),H_=an(({depthTexture:e,bd3D:t,dp:r,shadow:s})=>{const i=mc("radius","float",s).setGroup(fa),n=mc("mapSize","vec2",s).setGroup(fa),a=i.div(n.x),o=wo(t),u=To(Yo(t,o.x.greaterThan(o.z).select(Tn(0,1,0),Tn(1,0,0)))),l=Yo(t,u),d=Qb(ql.xy).mul(6.28318530718),c=Zb(0,5,d),h=Zb(1,5,d),p=Zb(2,5,d),g=Zb(3,5,d),m=Zb(4,5,d);return hc(e,t.add(u.mul(c.x).add(l.mul(c.y)).mul(a))).compare(r).add(hc(e,t.add(u.mul(h.x).add(l.mul(h.y)).mul(a))).compare(r)).add(hc(e,t.add(u.mul(p.x).add(l.mul(p.y)).mul(a))).compare(r)).add(hc(e,t.add(u.mul(g.x).add(l.mul(g.y)).mul(a))).compare(r)).add(hc(e,t.add(u.mul(m.x).add(l.mul(m.y)).mul(a))).compare(r)).mul(.2)}),j_=an(({filterFn:e,depthTexture:t,shadowCoord:r,shadow:s})=>{const i=r.xyz.toVar(),n=i.length(),a=xa("float").setGroup(fa).onRenderUpdate(()=>s.camera.near),o=xa("float").setGroup(fa).onRenderUpdate(()=>s.camera.far),u=mc("bias","float",s).setGroup(fa),l=hn(1).toVar();return ln(n.sub(o).lessThanEqual(0).and(n.sub(a).greaterThanEqual(0)),()=>{const r=n.sub(a).div(o.sub(a)).toVar();r.addAssign(u);const d=i.normalize();l.assign(e({depthTexture:t,bd3D:d,dp:r,shadow:s}))}),l});class q_ extends F_{static get type(){return"PointShadowNode"}constructor(e,t=null){super(e,t)}getShadowFilterFn(e){return e===Xe?W_:H_}setupShadowCoord(e,t){return t}setupShadowFilter(e,{filterFn:t,depthTexture:r,shadowCoord:s,shadow:i}){return j_({filterFn:t,depthTexture:r,shadowCoord:s,shadow:i})}setupRenderTarget(e,t){const r=new Ke(e.mapSize.width);r.name="PointShadowDepthTexture",r.compareFunction=qe;const s=t.createCubeRenderTarget(e.mapSize.width);return s.texture.name="PointShadowMap",s.depthTexture=r,{shadowMap:s,depthTexture:r}}renderShadow(e){const{shadow:t,shadowMap:r,light:s}=this,{renderer:i,scene:n}=e,a=t.camera,o=t.matrix,u=i.coordinateSystem===h,l=u?k_:z_,d=u?G_:$_;r.setSize(t.mapSize.width,t.mapSize.width);const c=i.autoClear,p=i.getClearColor(U_),g=i.getClearAlpha();i.autoClear=!1,i.setClearColor(t.clearColor,t.clearAlpha);for(let e=0;e<6;e++){i.setRenderTarget(r,e),i.clear();const u=s.distance||a.far;u!==a.far&&(a.far=u,a.updateProjectionMatrix()),O_.setFromMatrixPosition(s.matrixWorld),a.position.copy(O_),V_.copy(a.position),V_.add(l[e]),a.up.copy(d[e]),a.lookAt(V_),a.updateMatrixWorld(),o.makeTranslation(-O_.x,-O_.y,-O_.z),I_.multiplyMatrices(a.projectionMatrix,a.matrixWorldInverse),t._frustum.setFromProjectionMatrix(I_,a.coordinateSystem,a.reversedDepth);const c=n.name;n.name=`Point Light Shadow [ ${s.name||"ID: "+s.id} ] - Face ${e+1}`,i.render(n,a),n.name=c}i.autoClear=c,i.setClearColor(p,g)}}const X_=(e,t)=>Yi(new q_(e,t));class K_ extends gp{static get type(){return"AnalyticLightNode"}constructor(t=null){super(),this.light=t,this.color=new e,this.colorNode=t&&t.colorNode||xa(this.color).setGroup(fa),this.baseColorNode=null,this.shadowNode=null,this.shadowColorNode=null,this.isAnalyticLightNode=!0,this.updateType=Qs.FRAME}getHash(){return this.light.uuid}getLightVector(e){return r_(this.light).sub(e.context.positionView||Dd)}setupDirect(){}setupDirectRectArea(){}setupShadowNode(){return D_(this.light)}setupShadow(e){const{renderer:t}=e;if(!1===t.shadowMap.enabled)return;let r=this.shadowColorNode;if(null===r){const e=this.light.shadow.shadowNode;let t;t=void 0!==e?Yi(e):this.setupShadowNode(),this.shadowNode=t,this.shadowColorNode=r=this.colorNode.mul(t),this.baseColorNode=this.colorNode}e.context.getShadow&&(r=e.context.getShadow(this,e)),this.colorNode=r}setup(e){this.colorNode=this.baseColorNode||this.colorNode,this.light.castShadow?e.object.receiveShadow&&this.setupShadow(e):null!==this.shadowNode&&(this.shadowNode.dispose(),this.shadowNode=null,this.shadowColorNode=null);const t=this.setupDirect(e),r=this.setupDirectRectArea(e);t&&e.lightsNode.setupDirectLight(e,this,t),r&&e.lightsNode.setupDirectRectAreaLight(e,this,r)}update(){const{light:e}=this;this.color.copy(e.color).multiplyScalar(e.intensity)}}const Y_=an(({lightDistance:e,cutoffDistance:t,decayExponent:r})=>{const s=e.pow(r).max(.01).reciprocal();return t.greaterThan(0).select(s.mul(e.div(t).pow4().oneMinus().clamp().pow2()),s)}),Q_=({color:e,lightVector:t,cutoffDistance:r,decayExponent:s})=>{const i=t.normalize(),n=t.length(),a=Y_({lightDistance:n,cutoffDistance:r,decayExponent:s});return{lightDirection:i,lightColor:e.mul(a)}};class Z_ extends K_{static get type(){return"PointLightNode"}constructor(e=null){super(e),this.cutoffDistanceNode=xa(0).setGroup(fa),this.decayExponentNode=xa(2).setGroup(fa)}update(e){const{light:t}=this;super.update(e),this.cutoffDistanceNode.value=t.distance,this.decayExponentNode.value=t.decay}setupShadowNode(){return X_(this.light)}setupDirect(e){return Q_({color:this.colorNode,lightVector:this.getLightVector(e),cutoffDistance:this.cutoffDistanceNode,decayExponent:this.decayExponentNode})}}const J_=an(([e=Al()])=>{const t=e.mul(2),r=t.x.floor(),s=t.y.floor();return r.add(s).mod(2).sign()}),ev=an(([e=Al()],{renderer:t,material:r})=>{const s=su(e.mul(2).sub(1));let i;if(r.alphaToCoverage&&t.currentSamples>0){const e=hn(s.fwidth()).toVar();i=uu(e.oneMinus(),e.add(1),s).oneMinus()}else i=bu(s.greaterThan(1),0,1);return i}),tv=an(([e,t,r])=>{const s=hn(r).toVar(),i=hn(t).toVar(),n=mn(e).toVar();return bu(n,i,s)}).setLayout({name:"mx_select",type:"float",inputs:[{name:"b",type:"bool"},{name:"t",type:"float"},{name:"f",type:"float"}]}),rv=an(([e,t])=>{const r=mn(t).toVar(),s=hn(e).toVar();return bu(r,s.negate(),s)}).setLayout({name:"mx_negate_if",type:"float",inputs:[{name:"val",type:"float"},{name:"b",type:"bool"}]}),sv=an(([e])=>{const t=hn(e).toVar();return pn(bo(t))}).setLayout({name:"mx_floor",type:"int",inputs:[{name:"x",type:"float"}]}),iv=an(([e,t])=>{const r=hn(e).toVar();return t.assign(sv(r)),r.sub(hn(t))}),nv=gb([an(([e,t,r,s,i,n])=>{const a=hn(n).toVar(),o=hn(i).toVar(),u=hn(s).toVar(),l=hn(r).toVar(),d=hn(t).toVar(),c=hn(e).toVar(),h=hn(Ca(1,o)).toVar();return Ca(1,a).mul(c.mul(h).add(d.mul(o))).add(a.mul(l.mul(h).add(u.mul(o))))}).setLayout({name:"mx_bilerp_0",type:"float",inputs:[{name:"v0",type:"float"},{name:"v1",type:"float"},{name:"v2",type:"float"},{name:"v3",type:"float"},{name:"s",type:"float"},{name:"t",type:"float"}]}),an(([e,t,r,s,i,n])=>{const a=hn(n).toVar(),o=hn(i).toVar(),u=Tn(s).toVar(),l=Tn(r).toVar(),d=Tn(t).toVar(),c=Tn(e).toVar(),h=hn(Ca(1,o)).toVar();return Ca(1,a).mul(c.mul(h).add(d.mul(o))).add(a.mul(l.mul(h).add(u.mul(o))))}).setLayout({name:"mx_bilerp_1",type:"vec3",inputs:[{name:"v0",type:"vec3"},{name:"v1",type:"vec3"},{name:"v2",type:"vec3"},{name:"v3",type:"vec3"},{name:"s",type:"float"},{name:"t",type:"float"}]})]),av=gb([an(([e,t,r,s,i,n,a,o,u,l,d])=>{const c=hn(d).toVar(),h=hn(l).toVar(),p=hn(u).toVar(),g=hn(o).toVar(),m=hn(a).toVar(),f=hn(n).toVar(),y=hn(i).toVar(),b=hn(s).toVar(),x=hn(r).toVar(),T=hn(t).toVar(),_=hn(e).toVar(),v=hn(Ca(1,p)).toVar(),N=hn(Ca(1,h)).toVar();return hn(Ca(1,c)).toVar().mul(N.mul(_.mul(v).add(T.mul(p))).add(h.mul(x.mul(v).add(b.mul(p))))).add(c.mul(N.mul(y.mul(v).add(f.mul(p))).add(h.mul(m.mul(v).add(g.mul(p))))))}).setLayout({name:"mx_trilerp_0",type:"float",inputs:[{name:"v0",type:"float"},{name:"v1",type:"float"},{name:"v2",type:"float"},{name:"v3",type:"float"},{name:"v4",type:"float"},{name:"v5",type:"float"},{name:"v6",type:"float"},{name:"v7",type:"float"},{name:"s",type:"float"},{name:"t",type:"float"},{name:"r",type:"float"}]}),an(([e,t,r,s,i,n,a,o,u,l,d])=>{const c=hn(d).toVar(),h=hn(l).toVar(),p=hn(u).toVar(),g=Tn(o).toVar(),m=Tn(a).toVar(),f=Tn(n).toVar(),y=Tn(i).toVar(),b=Tn(s).toVar(),x=Tn(r).toVar(),T=Tn(t).toVar(),_=Tn(e).toVar(),v=hn(Ca(1,p)).toVar(),N=hn(Ca(1,h)).toVar();return hn(Ca(1,c)).toVar().mul(N.mul(_.mul(v).add(T.mul(p))).add(h.mul(x.mul(v).add(b.mul(p))))).add(c.mul(N.mul(y.mul(v).add(f.mul(p))).add(h.mul(m.mul(v).add(g.mul(p))))))}).setLayout({name:"mx_trilerp_1",type:"vec3",inputs:[{name:"v0",type:"vec3"},{name:"v1",type:"vec3"},{name:"v2",type:"vec3"},{name:"v3",type:"vec3"},{name:"v4",type:"vec3"},{name:"v5",type:"vec3"},{name:"v6",type:"vec3"},{name:"v7",type:"vec3"},{name:"s",type:"float"},{name:"t",type:"float"},{name:"r",type:"float"}]})]),ov=an(([e,t,r])=>{const s=hn(r).toVar(),i=hn(t).toVar(),n=gn(e).toVar(),a=gn(n.bitAnd(gn(7))).toVar(),o=hn(tv(a.lessThan(gn(4)),i,s)).toVar(),u=hn(Ma(2,tv(a.lessThan(gn(4)),s,i))).toVar();return rv(o,mn(a.bitAnd(gn(1)))).add(rv(u,mn(a.bitAnd(gn(2)))))}).setLayout({name:"mx_gradient_float_0",type:"float",inputs:[{name:"hash",type:"uint"},{name:"x",type:"float"},{name:"y",type:"float"}]}),uv=an(([e,t,r,s])=>{const i=hn(s).toVar(),n=hn(r).toVar(),a=hn(t).toVar(),o=gn(e).toVar(),u=gn(o.bitAnd(gn(15))).toVar(),l=hn(tv(u.lessThan(gn(8)),a,n)).toVar(),d=hn(tv(u.lessThan(gn(4)),n,tv(u.equal(gn(12)).or(u.equal(gn(14))),a,i))).toVar();return rv(l,mn(u.bitAnd(gn(1)))).add(rv(d,mn(u.bitAnd(gn(2)))))}).setLayout({name:"mx_gradient_float_1",type:"float",inputs:[{name:"hash",type:"uint"},{name:"x",type:"float"},{name:"y",type:"float"},{name:"z",type:"float"}]}),lv=gb([ov,uv]),dv=an(([e,t,r])=>{const s=hn(r).toVar(),i=hn(t).toVar(),n=vn(e).toVar();return Tn(lv(n.x,i,s),lv(n.y,i,s),lv(n.z,i,s))}).setLayout({name:"mx_gradient_vec3_0",type:"vec3",inputs:[{name:"hash",type:"uvec3"},{name:"x",type:"float"},{name:"y",type:"float"}]}),cv=an(([e,t,r,s])=>{const i=hn(s).toVar(),n=hn(r).toVar(),a=hn(t).toVar(),o=vn(e).toVar();return Tn(lv(o.x,a,n,i),lv(o.y,a,n,i),lv(o.z,a,n,i))}).setLayout({name:"mx_gradient_vec3_1",type:"vec3",inputs:[{name:"hash",type:"uvec3"},{name:"x",type:"float"},{name:"y",type:"float"},{name:"z",type:"float"}]}),hv=gb([dv,cv]),pv=an(([e])=>{const t=hn(e).toVar();return Ma(.6616,t)}).setLayout({name:"mx_gradient_scale2d_0",type:"float",inputs:[{name:"v",type:"float"}]}),gv=an(([e])=>{const t=hn(e).toVar();return Ma(.982,t)}).setLayout({name:"mx_gradient_scale3d_0",type:"float",inputs:[{name:"v",type:"float"}]}),mv=gb([pv,an(([e])=>{const t=Tn(e).toVar();return Ma(.6616,t)}).setLayout({name:"mx_gradient_scale2d_1",type:"vec3",inputs:[{name:"v",type:"vec3"}]})]),fv=gb([gv,an(([e])=>{const t=Tn(e).toVar();return Ma(.982,t)}).setLayout({name:"mx_gradient_scale3d_1",type:"vec3",inputs:[{name:"v",type:"vec3"}]})]),yv=an(([e,t])=>{const r=pn(t).toVar(),s=gn(e).toVar();return s.shiftLeft(r).bitOr(s.shiftRight(pn(32).sub(r)))}).setLayout({name:"mx_rotl32",type:"uint",inputs:[{name:"x",type:"uint"},{name:"k",type:"int"}]}),bv=an(([e,t,r])=>{e.subAssign(r),e.bitXorAssign(yv(r,pn(4))),r.addAssign(t),t.subAssign(e),t.bitXorAssign(yv(e,pn(6))),e.addAssign(r),r.subAssign(t),r.bitXorAssign(yv(t,pn(8))),t.addAssign(e),e.subAssign(r),e.bitXorAssign(yv(r,pn(16))),r.addAssign(t),t.subAssign(e),t.bitXorAssign(yv(e,pn(19))),e.addAssign(r),r.subAssign(t),r.bitXorAssign(yv(t,pn(4))),t.addAssign(e)}),xv=an(([e,t,r])=>{const s=gn(r).toVar(),i=gn(t).toVar(),n=gn(e).toVar();return s.bitXorAssign(i),s.subAssign(yv(i,pn(14))),n.bitXorAssign(s),n.subAssign(yv(s,pn(11))),i.bitXorAssign(n),i.subAssign(yv(n,pn(25))),s.bitXorAssign(i),s.subAssign(yv(i,pn(16))),n.bitXorAssign(s),n.subAssign(yv(s,pn(4))),i.bitXorAssign(n),i.subAssign(yv(n,pn(14))),s.bitXorAssign(i),s.subAssign(yv(i,pn(24))),s}).setLayout({name:"mx_bjfinal",type:"uint",inputs:[{name:"a",type:"uint"},{name:"b",type:"uint"},{name:"c",type:"uint"}]}),Tv=an(([e])=>{const t=gn(e).toVar();return hn(t).div(hn(gn(pn(4294967295))))}).setLayout({name:"mx_bits_to_01",type:"float",inputs:[{name:"bits",type:"uint"}]}),_v=an(([e])=>{const t=hn(e).toVar();return t.mul(t).mul(t).mul(t.mul(t.mul(6).sub(15)).add(10))}).setLayout({name:"mx_fade",type:"float",inputs:[{name:"t",type:"float"}]}),vv=gb([an(([e])=>{const t=pn(e).toVar(),r=gn(gn(1)).toVar(),s=gn(gn(pn(3735928559)).add(r.shiftLeft(gn(2))).add(gn(13))).toVar();return xv(s.add(gn(t)),s,s)}).setLayout({name:"mx_hash_int_0",type:"uint",inputs:[{name:"x",type:"int"}]}),an(([e,t])=>{const r=pn(t).toVar(),s=pn(e).toVar(),i=gn(gn(2)).toVar(),n=gn().toVar(),a=gn().toVar(),o=gn().toVar();return n.assign(a.assign(o.assign(gn(pn(3735928559)).add(i.shiftLeft(gn(2))).add(gn(13))))),n.addAssign(gn(s)),a.addAssign(gn(r)),xv(n,a,o)}).setLayout({name:"mx_hash_int_1",type:"uint",inputs:[{name:"x",type:"int"},{name:"y",type:"int"}]}),an(([e,t,r])=>{const s=pn(r).toVar(),i=pn(t).toVar(),n=pn(e).toVar(),a=gn(gn(3)).toVar(),o=gn().toVar(),u=gn().toVar(),l=gn().toVar();return o.assign(u.assign(l.assign(gn(pn(3735928559)).add(a.shiftLeft(gn(2))).add(gn(13))))),o.addAssign(gn(n)),u.addAssign(gn(i)),l.addAssign(gn(s)),xv(o,u,l)}).setLayout({name:"mx_hash_int_2",type:"uint",inputs:[{name:"x",type:"int"},{name:"y",type:"int"},{name:"z",type:"int"}]}),an(([e,t,r,s])=>{const i=pn(s).toVar(),n=pn(r).toVar(),a=pn(t).toVar(),o=pn(e).toVar(),u=gn(gn(4)).toVar(),l=gn().toVar(),d=gn().toVar(),c=gn().toVar();return l.assign(d.assign(c.assign(gn(pn(3735928559)).add(u.shiftLeft(gn(2))).add(gn(13))))),l.addAssign(gn(o)),d.addAssign(gn(a)),c.addAssign(gn(n)),bv(l,d,c),l.addAssign(gn(i)),xv(l,d,c)}).setLayout({name:"mx_hash_int_3",type:"uint",inputs:[{name:"x",type:"int"},{name:"y",type:"int"},{name:"z",type:"int"},{name:"xx",type:"int"}]}),an(([e,t,r,s,i])=>{const n=pn(i).toVar(),a=pn(s).toVar(),o=pn(r).toVar(),u=pn(t).toVar(),l=pn(e).toVar(),d=gn(gn(5)).toVar(),c=gn().toVar(),h=gn().toVar(),p=gn().toVar();return c.assign(h.assign(p.assign(gn(pn(3735928559)).add(d.shiftLeft(gn(2))).add(gn(13))))),c.addAssign(gn(l)),h.addAssign(gn(u)),p.addAssign(gn(o)),bv(c,h,p),c.addAssign(gn(a)),h.addAssign(gn(n)),xv(c,h,p)}).setLayout({name:"mx_hash_int_4",type:"uint",inputs:[{name:"x",type:"int"},{name:"y",type:"int"},{name:"z",type:"int"},{name:"xx",type:"int"},{name:"yy",type:"int"}]})]),Nv=gb([an(([e,t])=>{const r=pn(t).toVar(),s=pn(e).toVar(),i=gn(vv(s,r)).toVar(),n=vn().toVar();return n.x.assign(i.bitAnd(pn(255))),n.y.assign(i.shiftRight(pn(8)).bitAnd(pn(255))),n.z.assign(i.shiftRight(pn(16)).bitAnd(pn(255))),n}).setLayout({name:"mx_hash_vec3_0",type:"uvec3",inputs:[{name:"x",type:"int"},{name:"y",type:"int"}]}),an(([e,t,r])=>{const s=pn(r).toVar(),i=pn(t).toVar(),n=pn(e).toVar(),a=gn(vv(n,i,s)).toVar(),o=vn().toVar();return o.x.assign(a.bitAnd(pn(255))),o.y.assign(a.shiftRight(pn(8)).bitAnd(pn(255))),o.z.assign(a.shiftRight(pn(16)).bitAnd(pn(255))),o}).setLayout({name:"mx_hash_vec3_1",type:"uvec3",inputs:[{name:"x",type:"int"},{name:"y",type:"int"},{name:"z",type:"int"}]})]),Sv=gb([an(([e])=>{const t=fn(e).toVar(),r=pn().toVar(),s=pn().toVar(),i=hn(iv(t.x,r)).toVar(),n=hn(iv(t.y,s)).toVar(),a=hn(_v(i)).toVar(),o=hn(_v(n)).toVar(),u=hn(nv(lv(vv(r,s),i,n),lv(vv(r.add(pn(1)),s),i.sub(1),n),lv(vv(r,s.add(pn(1))),i,n.sub(1)),lv(vv(r.add(pn(1)),s.add(pn(1))),i.sub(1),n.sub(1)),a,o)).toVar();return mv(u)}).setLayout({name:"mx_perlin_noise_float_0",type:"float",inputs:[{name:"p",type:"vec2"}]}),an(([e])=>{const t=Tn(e).toVar(),r=pn().toVar(),s=pn().toVar(),i=pn().toVar(),n=hn(iv(t.x,r)).toVar(),a=hn(iv(t.y,s)).toVar(),o=hn(iv(t.z,i)).toVar(),u=hn(_v(n)).toVar(),l=hn(_v(a)).toVar(),d=hn(_v(o)).toVar(),c=hn(av(lv(vv(r,s,i),n,a,o),lv(vv(r.add(pn(1)),s,i),n.sub(1),a,o),lv(vv(r,s.add(pn(1)),i),n,a.sub(1),o),lv(vv(r.add(pn(1)),s.add(pn(1)),i),n.sub(1),a.sub(1),o),lv(vv(r,s,i.add(pn(1))),n,a,o.sub(1)),lv(vv(r.add(pn(1)),s,i.add(pn(1))),n.sub(1),a,o.sub(1)),lv(vv(r,s.add(pn(1)),i.add(pn(1))),n,a.sub(1),o.sub(1)),lv(vv(r.add(pn(1)),s.add(pn(1)),i.add(pn(1))),n.sub(1),a.sub(1),o.sub(1)),u,l,d)).toVar();return fv(c)}).setLayout({name:"mx_perlin_noise_float_1",type:"float",inputs:[{name:"p",type:"vec3"}]})]),Av=gb([an(([e])=>{const t=fn(e).toVar(),r=pn().toVar(),s=pn().toVar(),i=hn(iv(t.x,r)).toVar(),n=hn(iv(t.y,s)).toVar(),a=hn(_v(i)).toVar(),o=hn(_v(n)).toVar(),u=Tn(nv(hv(Nv(r,s),i,n),hv(Nv(r.add(pn(1)),s),i.sub(1),n),hv(Nv(r,s.add(pn(1))),i,n.sub(1)),hv(Nv(r.add(pn(1)),s.add(pn(1))),i.sub(1),n.sub(1)),a,o)).toVar();return mv(u)}).setLayout({name:"mx_perlin_noise_vec3_0",type:"vec3",inputs:[{name:"p",type:"vec2"}]}),an(([e])=>{const t=Tn(e).toVar(),r=pn().toVar(),s=pn().toVar(),i=pn().toVar(),n=hn(iv(t.x,r)).toVar(),a=hn(iv(t.y,s)).toVar(),o=hn(iv(t.z,i)).toVar(),u=hn(_v(n)).toVar(),l=hn(_v(a)).toVar(),d=hn(_v(o)).toVar(),c=Tn(av(hv(Nv(r,s,i),n,a,o),hv(Nv(r.add(pn(1)),s,i),n.sub(1),a,o),hv(Nv(r,s.add(pn(1)),i),n,a.sub(1),o),hv(Nv(r.add(pn(1)),s.add(pn(1)),i),n.sub(1),a.sub(1),o),hv(Nv(r,s,i.add(pn(1))),n,a,o.sub(1)),hv(Nv(r.add(pn(1)),s,i.add(pn(1))),n.sub(1),a,o.sub(1)),hv(Nv(r,s.add(pn(1)),i.add(pn(1))),n,a.sub(1),o.sub(1)),hv(Nv(r.add(pn(1)),s.add(pn(1)),i.add(pn(1))),n.sub(1),a.sub(1),o.sub(1)),u,l,d)).toVar();return fv(c)}).setLayout({name:"mx_perlin_noise_vec3_1",type:"vec3",inputs:[{name:"p",type:"vec3"}]})]),Rv=gb([an(([e])=>{const t=hn(e).toVar(),r=pn(sv(t)).toVar();return Tv(vv(r))}).setLayout({name:"mx_cell_noise_float_0",type:"float",inputs:[{name:"p",type:"float"}]}),an(([e])=>{const t=fn(e).toVar(),r=pn(sv(t.x)).toVar(),s=pn(sv(t.y)).toVar();return Tv(vv(r,s))}).setLayout({name:"mx_cell_noise_float_1",type:"float",inputs:[{name:"p",type:"vec2"}]}),an(([e])=>{const t=Tn(e).toVar(),r=pn(sv(t.x)).toVar(),s=pn(sv(t.y)).toVar(),i=pn(sv(t.z)).toVar();return Tv(vv(r,s,i))}).setLayout({name:"mx_cell_noise_float_2",type:"float",inputs:[{name:"p",type:"vec3"}]}),an(([e])=>{const t=Sn(e).toVar(),r=pn(sv(t.x)).toVar(),s=pn(sv(t.y)).toVar(),i=pn(sv(t.z)).toVar(),n=pn(sv(t.w)).toVar();return Tv(vv(r,s,i,n))}).setLayout({name:"mx_cell_noise_float_3",type:"float",inputs:[{name:"p",type:"vec4"}]})]),Ev=gb([an(([e])=>{const t=hn(e).toVar(),r=pn(sv(t)).toVar();return Tn(Tv(vv(r,pn(0))),Tv(vv(r,pn(1))),Tv(vv(r,pn(2))))}).setLayout({name:"mx_cell_noise_vec3_0",type:"vec3",inputs:[{name:"p",type:"float"}]}),an(([e])=>{const t=fn(e).toVar(),r=pn(sv(t.x)).toVar(),s=pn(sv(t.y)).toVar();return Tn(Tv(vv(r,s,pn(0))),Tv(vv(r,s,pn(1))),Tv(vv(r,s,pn(2))))}).setLayout({name:"mx_cell_noise_vec3_1",type:"vec3",inputs:[{name:"p",type:"vec2"}]}),an(([e])=>{const t=Tn(e).toVar(),r=pn(sv(t.x)).toVar(),s=pn(sv(t.y)).toVar(),i=pn(sv(t.z)).toVar();return Tn(Tv(vv(r,s,i,pn(0))),Tv(vv(r,s,i,pn(1))),Tv(vv(r,s,i,pn(2))))}).setLayout({name:"mx_cell_noise_vec3_2",type:"vec3",inputs:[{name:"p",type:"vec3"}]}),an(([e])=>{const t=Sn(e).toVar(),r=pn(sv(t.x)).toVar(),s=pn(sv(t.y)).toVar(),i=pn(sv(t.z)).toVar(),n=pn(sv(t.w)).toVar();return Tn(Tv(vv(r,s,i,n,pn(0))),Tv(vv(r,s,i,n,pn(1))),Tv(vv(r,s,i,n,pn(2))))}).setLayout({name:"mx_cell_noise_vec3_3",type:"vec3",inputs:[{name:"p",type:"vec4"}]})]),wv=an(([e,t,r,s])=>{const i=hn(s).toVar(),n=hn(r).toVar(),a=pn(t).toVar(),o=Tn(e).toVar(),u=hn(0).toVar(),l=hn(1).toVar();return op(a,()=>{u.addAssign(l.mul(Sv(o))),l.mulAssign(i),o.mulAssign(n)}),u}).setLayout({name:"mx_fractal_noise_float",type:"float",inputs:[{name:"p",type:"vec3"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),Cv=an(([e,t,r,s])=>{const i=hn(s).toVar(),n=hn(r).toVar(),a=pn(t).toVar(),o=Tn(e).toVar(),u=Tn(0).toVar(),l=hn(1).toVar();return op(a,()=>{u.addAssign(l.mul(Av(o))),l.mulAssign(i),o.mulAssign(n)}),u}).setLayout({name:"mx_fractal_noise_vec3",type:"vec3",inputs:[{name:"p",type:"vec3"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),Mv=an(([e,t,r,s])=>{const i=hn(s).toVar(),n=hn(r).toVar(),a=pn(t).toVar(),o=Tn(e).toVar();return fn(wv(o,a,n,i),wv(o.add(Tn(pn(19),pn(193),pn(17))),a,n,i))}).setLayout({name:"mx_fractal_noise_vec2",type:"vec2",inputs:[{name:"p",type:"vec3"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),Bv=an(([e,t,r,s])=>{const i=hn(s).toVar(),n=hn(r).toVar(),a=pn(t).toVar(),o=Tn(e).toVar(),u=Tn(Cv(o,a,n,i)).toVar(),l=hn(wv(o.add(Tn(pn(19),pn(193),pn(17))),a,n,i)).toVar();return Sn(u,l)}).setLayout({name:"mx_fractal_noise_vec4",type:"vec4",inputs:[{name:"p",type:"vec3"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),Lv=gb([an(([e,t,r,s,i,n,a])=>{const o=pn(a).toVar(),u=hn(n).toVar(),l=pn(i).toVar(),d=pn(s).toVar(),c=pn(r).toVar(),h=pn(t).toVar(),p=fn(e).toVar(),g=Tn(Ev(fn(h.add(d),c.add(l)))).toVar(),m=fn(g.x,g.y).toVar();m.subAssign(.5),m.mulAssign(u),m.addAssign(.5);const f=fn(fn(hn(h),hn(c)).add(m)).toVar(),y=fn(f.sub(p)).toVar();return ln(o.equal(pn(2)),()=>wo(y.x).add(wo(y.y))),ln(o.equal(pn(3)),()=>Wo(wo(y.x),wo(y.y))),Ko(y,y)}).setLayout({name:"mx_worley_distance_0",type:"float",inputs:[{name:"p",type:"vec2"},{name:"x",type:"int"},{name:"y",type:"int"},{name:"xoff",type:"int"},{name:"yoff",type:"int"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),an(([e,t,r,s,i,n,a,o,u])=>{const l=pn(u).toVar(),d=hn(o).toVar(),c=pn(a).toVar(),h=pn(n).toVar(),p=pn(i).toVar(),g=pn(s).toVar(),m=pn(r).toVar(),f=pn(t).toVar(),y=Tn(e).toVar(),b=Tn(Ev(Tn(f.add(p),m.add(h),g.add(c)))).toVar();b.subAssign(.5),b.mulAssign(d),b.addAssign(.5);const x=Tn(Tn(hn(f),hn(m),hn(g)).add(b)).toVar(),T=Tn(x.sub(y)).toVar();return ln(l.equal(pn(2)),()=>wo(T.x).add(wo(T.y)).add(wo(T.z))),ln(l.equal(pn(3)),()=>Wo(wo(T.x),wo(T.y),wo(T.z))),Ko(T,T)}).setLayout({name:"mx_worley_distance_1",type:"float",inputs:[{name:"p",type:"vec3"},{name:"x",type:"int"},{name:"y",type:"int"},{name:"z",type:"int"},{name:"xoff",type:"int"},{name:"yoff",type:"int"},{name:"zoff",type:"int"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]})]),Pv=an(([e,t,r])=>{const s=pn(r).toVar(),i=hn(t).toVar(),n=fn(e).toVar(),a=pn().toVar(),o=pn().toVar(),u=fn(iv(n.x,a),iv(n.y,o)).toVar(),l=hn(1e6).toVar();return op({start:-1,end:pn(1),name:"x",condition:"<="},({x:e})=>{op({start:-1,end:pn(1),name:"y",condition:"<="},({y:t})=>{const r=hn(Lv(u,e,t,a,o,i,s)).toVar();l.assign($o(l,r))})}),ln(s.equal(pn(0)),()=>{l.assign(fo(l))}),l}).setLayout({name:"mx_worley_noise_float_0",type:"float",inputs:[{name:"p",type:"vec2"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),Fv=an(([e,t,r])=>{const s=pn(r).toVar(),i=hn(t).toVar(),n=fn(e).toVar(),a=pn().toVar(),o=pn().toVar(),u=fn(iv(n.x,a),iv(n.y,o)).toVar(),l=fn(1e6,1e6).toVar();return op({start:-1,end:pn(1),name:"x",condition:"<="},({x:e})=>{op({start:-1,end:pn(1),name:"y",condition:"<="},({y:t})=>{const r=hn(Lv(u,e,t,a,o,i,s)).toVar();ln(r.lessThan(l.x),()=>{l.y.assign(l.x),l.x.assign(r)}).ElseIf(r.lessThan(l.y),()=>{l.y.assign(r)})})}),ln(s.equal(pn(0)),()=>{l.assign(fo(l))}),l}).setLayout({name:"mx_worley_noise_vec2_0",type:"vec2",inputs:[{name:"p",type:"vec2"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),Dv=an(([e,t,r])=>{const s=pn(r).toVar(),i=hn(t).toVar(),n=fn(e).toVar(),a=pn().toVar(),o=pn().toVar(),u=fn(iv(n.x,a),iv(n.y,o)).toVar(),l=Tn(1e6,1e6,1e6).toVar();return op({start:-1,end:pn(1),name:"x",condition:"<="},({x:e})=>{op({start:-1,end:pn(1),name:"y",condition:"<="},({y:t})=>{const r=hn(Lv(u,e,t,a,o,i,s)).toVar();ln(r.lessThan(l.x),()=>{l.z.assign(l.y),l.y.assign(l.x),l.x.assign(r)}).ElseIf(r.lessThan(l.y),()=>{l.z.assign(l.y),l.y.assign(r)}).ElseIf(r.lessThan(l.z),()=>{l.z.assign(r)})})}),ln(s.equal(pn(0)),()=>{l.assign(fo(l))}),l}).setLayout({name:"mx_worley_noise_vec3_0",type:"vec3",inputs:[{name:"p",type:"vec2"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]}),Uv=gb([Pv,an(([e,t,r])=>{const s=pn(r).toVar(),i=hn(t).toVar(),n=Tn(e).toVar(),a=pn().toVar(),o=pn().toVar(),u=pn().toVar(),l=Tn(iv(n.x,a),iv(n.y,o),iv(n.z,u)).toVar(),d=hn(1e6).toVar();return op({start:-1,end:pn(1),name:"x",condition:"<="},({x:e})=>{op({start:-1,end:pn(1),name:"y",condition:"<="},({y:t})=>{op({start:-1,end:pn(1),name:"z",condition:"<="},({z:r})=>{const n=hn(Lv(l,e,t,r,a,o,u,i,s)).toVar();d.assign($o(d,n))})})}),ln(s.equal(pn(0)),()=>{d.assign(fo(d))}),d}).setLayout({name:"mx_worley_noise_float_1",type:"float",inputs:[{name:"p",type:"vec3"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]})]),Iv=gb([Fv,an(([e,t,r])=>{const s=pn(r).toVar(),i=hn(t).toVar(),n=Tn(e).toVar(),a=pn().toVar(),o=pn().toVar(),u=pn().toVar(),l=Tn(iv(n.x,a),iv(n.y,o),iv(n.z,u)).toVar(),d=fn(1e6,1e6).toVar();return op({start:-1,end:pn(1),name:"x",condition:"<="},({x:e})=>{op({start:-1,end:pn(1),name:"y",condition:"<="},({y:t})=>{op({start:-1,end:pn(1),name:"z",condition:"<="},({z:r})=>{const n=hn(Lv(l,e,t,r,a,o,u,i,s)).toVar();ln(n.lessThan(d.x),()=>{d.y.assign(d.x),d.x.assign(n)}).ElseIf(n.lessThan(d.y),()=>{d.y.assign(n)})})})}),ln(s.equal(pn(0)),()=>{d.assign(fo(d))}),d}).setLayout({name:"mx_worley_noise_vec2_1",type:"vec2",inputs:[{name:"p",type:"vec3"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]})]),Ov=gb([Dv,an(([e,t,r])=>{const s=pn(r).toVar(),i=hn(t).toVar(),n=Tn(e).toVar(),a=pn().toVar(),o=pn().toVar(),u=pn().toVar(),l=Tn(iv(n.x,a),iv(n.y,o),iv(n.z,u)).toVar(),d=Tn(1e6,1e6,1e6).toVar();return op({start:-1,end:pn(1),name:"x",condition:"<="},({x:e})=>{op({start:-1,end:pn(1),name:"y",condition:"<="},({y:t})=>{op({start:-1,end:pn(1),name:"z",condition:"<="},({z:r})=>{const n=hn(Lv(l,e,t,r,a,o,u,i,s)).toVar();ln(n.lessThan(d.x),()=>{d.z.assign(d.y),d.y.assign(d.x),d.x.assign(n)}).ElseIf(n.lessThan(d.y),()=>{d.z.assign(d.y),d.y.assign(n)}).ElseIf(n.lessThan(d.z),()=>{d.z.assign(n)})})})}),ln(s.equal(pn(0)),()=>{d.assign(fo(d))}),d}).setLayout({name:"mx_worley_noise_vec3_1",type:"vec3",inputs:[{name:"p",type:"vec3"},{name:"jitter",type:"float"},{name:"metric",type:"int"}]})]),Vv=an(([e,t,r,s,i,n,a,o,u,l,d])=>{const c=pn(e).toVar(),h=fn(t).toVar(),p=fn(r).toVar(),g=fn(s).toVar(),m=hn(i).toVar(),f=hn(n).toVar(),y=hn(a).toVar(),b=mn(o).toVar(),x=pn(u).toVar(),T=hn(l).toVar(),_=hn(d).toVar(),v=h.mul(p).add(g),N=hn(0).toVar();return ln(c.equal(pn(0)),()=>{N.assign(Av(v))}),ln(c.equal(pn(1)),()=>{N.assign(Ev(v))}),ln(c.equal(pn(2)),()=>{N.assign(Ov(v,m,pn(0)))}),ln(c.equal(pn(3)),()=>{N.assign(Cv(Tn(v,0),x,T,_))}),N.assign(N.mul(y.sub(f)).add(f)),ln(b,()=>{N.assign(nu(N,f,y))}),N}).setLayout({name:"mx_unifiednoise2d",type:"float",inputs:[{name:"noiseType",type:"int"},{name:"texcoord",type:"vec2"},{name:"freq",type:"vec2"},{name:"offset",type:"vec2"},{name:"jitter",type:"float"},{name:"outmin",type:"float"},{name:"outmax",type:"float"},{name:"clampoutput",type:"bool"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),kv=an(([e,t,r,s,i,n,a,o,u,l,d])=>{const c=pn(e).toVar(),h=Tn(t).toVar(),p=Tn(r).toVar(),g=Tn(s).toVar(),m=hn(i).toVar(),f=hn(n).toVar(),y=hn(a).toVar(),b=mn(o).toVar(),x=pn(u).toVar(),T=hn(l).toVar(),_=hn(d).toVar(),v=h.mul(p).add(g),N=hn(0).toVar();return ln(c.equal(pn(0)),()=>{N.assign(Av(v))}),ln(c.equal(pn(1)),()=>{N.assign(Ev(v))}),ln(c.equal(pn(2)),()=>{N.assign(Ov(v,m,pn(0)))}),ln(c.equal(pn(3)),()=>{N.assign(Cv(v,x,T,_))}),N.assign(N.mul(y.sub(f)).add(f)),ln(b,()=>{N.assign(nu(N,f,y))}),N}).setLayout({name:"mx_unifiednoise3d",type:"float",inputs:[{name:"noiseType",type:"int"},{name:"position",type:"vec3"},{name:"freq",type:"vec3"},{name:"offset",type:"vec3"},{name:"jitter",type:"float"},{name:"outmin",type:"float"},{name:"outmax",type:"float"},{name:"clampoutput",type:"bool"},{name:"octaves",type:"int"},{name:"lacunarity",type:"float"},{name:"diminish",type:"float"}]}),Gv=an(([e])=>{const t=e.y,r=e.z,s=Tn().toVar();return ln(t.lessThan(1e-4),()=>{s.assign(Tn(r,r,r))}).Else(()=>{let i=e.x;i=i.sub(bo(i)).mul(6).toVar();const n=pn(Io(i)),a=i.sub(hn(n)),o=r.mul(t.oneMinus()),u=r.mul(t.mul(a).oneMinus()),l=r.mul(t.mul(a.oneMinus()).oneMinus());ln(n.equal(pn(0)),()=>{s.assign(Tn(r,l,o))}).ElseIf(n.equal(pn(1)),()=>{s.assign(Tn(u,r,o))}).ElseIf(n.equal(pn(2)),()=>{s.assign(Tn(o,r,l))}).ElseIf(n.equal(pn(3)),()=>{s.assign(Tn(o,u,r))}).ElseIf(n.equal(pn(4)),()=>{s.assign(Tn(l,o,r))}).Else(()=>{s.assign(Tn(r,o,u))})}),s}).setLayout({name:"mx_hsvtorgb",type:"vec3",inputs:[{name:"hsv",type:"vec3"}]}),zv=an(([e])=>{const t=Tn(e).toVar(),r=hn(t.x).toVar(),s=hn(t.y).toVar(),i=hn(t.z).toVar(),n=hn($o(r,$o(s,i))).toVar(),a=hn(Wo(r,Wo(s,i))).toVar(),o=hn(a.sub(n)).toVar(),u=hn().toVar(),l=hn().toVar(),d=hn().toVar();return d.assign(a),ln(a.greaterThan(0),()=>{l.assign(o.div(a))}).Else(()=>{l.assign(0)}),ln(l.lessThanEqual(0),()=>{u.assign(0)}).Else(()=>{ln(r.greaterThanEqual(a),()=>{u.assign(s.sub(i).div(o))}).ElseIf(s.greaterThanEqual(a),()=>{u.assign(wa(2,i.sub(r).div(o)))}).Else(()=>{u.assign(wa(4,r.sub(s).div(o)))}),u.mulAssign(1/6),ln(u.lessThan(0),()=>{u.addAssign(1)})}),Tn(u,l,d)}).setLayout({name:"mx_rgbtohsv",type:"vec3",inputs:[{name:"c",type:"vec3"}]}),$v=an(([e])=>{const t=Tn(e).toVar(),r=Nn(Ua(t,Tn(.04045))).toVar(),s=Tn(t.div(12.92)).toVar(),i=Tn(Qo(Wo(t.add(Tn(.055)),Tn(0)).div(1.055),Tn(2.4))).toVar();return iu(s,i,r)}).setLayout({name:"mx_srgb_texture_to_lin_rec709",type:"vec3",inputs:[{name:"color",type:"vec3"}]}),Wv=(e,t)=>{e=hn(e),t=hn(t);const r=fn(t.dFdx(),t.dFdy()).length().mul(.7071067811865476);return uu(e.sub(r),e.add(r),t)},Hv=(e,t,r,s)=>iu(e,t,r[s].clamp()),jv=(e,t,r,s,i)=>iu(e,t,Wv(r,s[i])),qv=an(([e,t,r])=>{const s=To(e).toVar(),i=Ca(hn(.5).mul(t.sub(r)),Pd).div(s).toVar(),n=Ca(hn(-.5).mul(t.sub(r)),Pd).div(s).toVar(),a=Tn().toVar();a.x=s.x.greaterThan(hn(0)).select(i.x,n.x),a.y=s.y.greaterThan(hn(0)).select(i.y,n.y),a.z=s.z.greaterThan(hn(0)).select(i.z,n.z);const o=$o(a.x,a.y,a.z).toVar();return Pd.add(s.mul(o)).toVar().sub(r)}),Xv=an(([e,t])=>{const r=e.x,s=e.y,i=e.z;let n=t.element(0).mul(.886227);return n=n.add(t.element(1).mul(1.023328).mul(s)),n=n.add(t.element(2).mul(1.023328).mul(i)),n=n.add(t.element(3).mul(1.023328).mul(r)),n=n.add(t.element(4).mul(.858086).mul(r).mul(s)),n=n.add(t.element(5).mul(.858086).mul(s).mul(i)),n=n.add(t.element(6).mul(i.mul(i).mul(.743125).sub(.247708))),n=n.add(t.element(7).mul(.858086).mul(r).mul(i)),n=n.add(t.element(8).mul(.429043).mul(Ma(r,r).sub(Ma(s,s)))),n});var Kv=Object.freeze({__proto__:null,BRDF_GGX:Dg,BRDF_Lambert:Tg,BasicPointShadowFilter:W_,BasicShadowFilter:T_,Break:up,Const:Cu,Continue:()=>gl("continue").toStack(),DFGLUT:Og,D_GGX:Lg,Discard:ml,EPSILON:to,F_Schlick:xg,Fn:an,HALF_PI:ao,INFINITY:ro,If:ln,Loop:op,NodeAccess:Js,NodeShaderStage:Ys,NodeType:Zs,NodeUpdateType:Qs,OnBeforeMaterialUpdate:e=>tx(ex.BEFORE_MATERIAL,e),OnBeforeObjectUpdate:e=>tx(ex.BEFORE_OBJECT,e),OnMaterialUpdate:e=>tx(ex.MATERIAL,e),OnObjectUpdate:e=>tx(ex.OBJECT,e),PCFShadowFilter:__,PCFSoftShadowFilter:v_,PI:so,PI2:io,PointShadowFilter:H_,Return:()=>gl("return").toStack(),Schlick_to_F0:Gg,ScriptableNodeResources:eT,ShaderNode:Ki,Stack:dn,Switch:(...e)=>xi.Switch(...e),TBNViewMatrix:zc,TWO_PI:no,VSMShadowFilter:N_,V_GGX_SmithCorrelated:Mg,Var:wu,VarIntent:Mu,abs:wo,acesFilmicToneMapping:kx,acos:Ro,add:wa,addMethodChaining:_i,addNodeElement:function(e){d("TSL: AddNodeElement has been removed in favor of tree-shaking. Trying add",e)},agxToneMapping:Wx,all:oo,alphaT:Xn,and:Va,anisotropy:Kn,anisotropyB:Qn,anisotropyT:Yn,any:uo,append:e=>(d("TSL: append() has been renamed to Stack()."),dn(e)),array:_a,arrayBuffer:e=>Yi(new yi(e,"ArrayBuffer")),asin:Ao,assign:Na,atan:Eo,atan2:gu,atomicAdd:(e,t)=>NT(_T.ATOMIC_ADD,e,t),atomicAnd:(e,t)=>NT(_T.ATOMIC_AND,e,t),atomicFunc:NT,atomicLoad:e=>NT(_T.ATOMIC_LOAD,e,null),atomicMax:(e,t)=>NT(_T.ATOMIC_MAX,e,t),atomicMin:(e,t)=>NT(_T.ATOMIC_MIN,e,t),atomicOr:(e,t)=>NT(_T.ATOMIC_OR,e,t),atomicStore:(e,t)=>NT(_T.ATOMIC_STORE,e,t),atomicSub:(e,t)=>NT(_T.ATOMIC_SUB,e,t),atomicXor:(e,t)=>NT(_T.ATOMIC_XOR,e,t),attenuationColor:da,attenuationDistance:la,attribute:Sl,attributeArray:(e,t="float")=>{let r,s;!0===t.isStruct?(r=t.layout.getLength(),s=ks("float")):(r=Gs(t),s=ks(t));const i=new sx(e,r,s);return $h(i,t,e)},backgroundBlurriness:lx,backgroundIntensity:dx,backgroundRotation:cx,batch:rp,bentNormalView:Wc,billboarding:Tb,bitAnd:$a,bitNot:Wa,bitOr:Ha,bitXor:ja,bitangentGeometry:Oc,bitangentLocal:Vc,bitangentView:kc,bitangentWorld:Gc,bitcast:jy,blendBurn:Gp,blendColor:Hp,blendDodge:zp,blendOverlay:Wp,blendScreen:$p,blur:Gm,bool:mn,buffer:Ul,bufferAttribute:Ju,builtin:kl,builtinAOContext:Su,builtinShadowContext:Nu,bumpMap:Zc,burn:(...e)=>(d('TSL: "burn" has been renamed. Use "blendBurn" instead.'),Gp(e)),bvec2:xn,bvec3:Nn,bvec4:En,bypass:ll,cache:ol,call:Aa,cameraFar:td,cameraIndex:Jl,cameraNear:ed,cameraNormalMatrix:ad,cameraPosition:od,cameraProjectionMatrix:rd,cameraProjectionMatrixInverse:sd,cameraViewMatrix:id,cameraViewport:ud,cameraWorldMatrix:nd,cbrt:ru,cdl:wx,ceil:xo,checker:J_,cineonToneMapping:Ox,clamp:nu,clearcoat:Gn,clearcoatNormalView:Xd,clearcoatRoughness:zn,code:qx,color:cn,colorSpaceToWorking:Gu,colorToDirection:e=>Yi(e).mul(2).sub(1),compute:il,computeKernel:sl,computeSkinning:(e,t=null)=>{const r=new ip(e);return r.positionNode=$h(new $(e.geometry.getAttribute("position").array,3),"vec3").setPBO(!0).toReadOnly().element(jh).toVar(),r.skinIndexNode=$h(new $(new Uint32Array(e.geometry.getAttribute("skinIndex").array),4),"uvec4").setPBO(!0).toReadOnly().element(jh).toVar(),r.skinWeightNode=$h(new $(e.geometry.getAttribute("skinWeight").array,4),"vec4").setPBO(!0).toReadOnly().element(jh).toVar(),r.bindMatrixNode=xa(e.bindMatrix,"mat4"),r.bindMatrixInverseNode=xa(e.bindMatrixInverse,"mat4"),r.boneMatricesNode=Ul(e.skeleton.boneMatrices,"mat4",e.skeleton.bones.length),r.toPositionNode=t,Yi(r)},context:Tu,convert:Ln,convertColorSpace:(e,t,r)=>Yi(new Vu(Yi(e),t,r)),convertToTexture:(e,...t)=>e.isSampleNode||e.isTextureNode?e:e.isPassNode?e.getTextureNode():qb(e,...t),cos:No,countLeadingZeros:Qy,countOneBits:Zy,countTrailingZeros:Yy,cross:Yo,cubeTexture:hc,cubeTextureBase:cc,dFdx:Po,dFdy:Fo,dashSize:sa,debug:xl,decrement:Za,decrementBefore:Ya,defaultBuildStages:ti,defaultShaderStages:ei,defined:qi,degrees:co,deltaTime:fb,densityFog:function(e,t){return d('TSL: "densityFog( color, density )" is deprecated. Use "fog( color, densityFogFactor( density ) )" instead.'),aT(e,nT(t))},densityFogFactor:nT,depth:Lp,depthPass:(e,t,r)=>Yi(new Fx(Fx.DEPTH,e,t,r)),determinant:ko,difference:Xo,diffuseColor:Un,diffuseContribution:In,directPointLight:Q_,directionToColor:Hc,directionToFaceDirection:kd,dispersion:ca,distance:qo,div:Ba,dodge:(...e)=>(d('TSL: "dodge" has been renamed. Use "blendDodge" instead.'),zp(e)),dot:Ko,drawIndex:Yh,dynamicBufferAttribute:(e,t=null,r=0,s=0)=>Zu(e,t,r,s,x),element:Bn,emissive:On,equal:Pa,equals:zo,equirectUV:ag,exp:ho,exp2:po,expression:gl,faceDirection:Vd,faceForward:lu,faceforward:mu,float:hn,floatBitsToInt:e=>new Hy(e,"int","float"),floatBitsToUint:qy,floor:bo,fog:aT,fract:_o,frameGroup:ma,frameId:yb,frontFacing:Od,fwidth:Oo,gain:(e,t)=>e.lessThan(.5)?eb(e.mul(2),t).div(2):Ca(1,eb(Ma(Ca(1,e),2),t).div(2)),gapSize:ia,getConstNodeType:Xi,getCurrentStack:un,getDirection:Im,getDistanceAttenuation:Y_,getGeometryRoughness:wg,getNormalFromDepth:Yb,getParallaxCorrectNormal:qv,getRoughness:Cg,getScreenPosition:Kb,getShIrradianceAt:Xv,getShadowMaterial:A_,getShadowRenderObjectFunction:w_,getTextureIndex:zy,getViewPosition:Xb,ggxConvolution:Hm,globalId:mT,glsl:(e,t)=>qx(e,t,"glsl"),glslFn:(e,t)=>Kx(e,t,"glsl"),grayscale:Nx,greaterThan:Ua,greaterThanEqual:Oa,hash:Jy,highpModelNormalViewMatrix:Cd,highpModelViewMatrix:wd,hue:Rx,increment:Qa,incrementBefore:Ka,inspector:vl,instance:Zh,instanceIndex:jh,instancedArray:(e,t="float")=>{let r,s;!0===t.isStruct?(r=t.layout.getLength(),s=ks("float")):(r=Gs(t),s=ks(t));const i=new rx(e,r,s);return $h(i,t,e)},instancedBufferAttribute:el,instancedDynamicBufferAttribute:tl,instancedMesh:ep,int:pn,intBitsToFloat:e=>new Hy(e,"float","int"),interleavedGradientNoise:Qb,inverse:Go,inverseSqrt:yo,inversesqrt:fu,invocationLocalIndex:Kh,invocationSubgroupIndex:Xh,ior:aa,iridescence:Hn,iridescenceIOR:jn,iridescenceThickness:qn,isolate:al,ivec2:yn,ivec3:_n,ivec4:An,js:(e,t)=>qx(e,t,"js"),label:Au,length:Mo,lengthSq:su,lessThan:Da,lessThanEqual:Ia,lightPosition:e_,lightProjectionUV:JT,lightShadowMatrix:ZT,lightTargetDirection:s_,lightTargetPosition:t_,lightViewPosition:r_,lightingContext:yp,lights:(e=[])=>Yi(new o_).setLights(e),linearDepth:Pp,linearToneMapping:Ux,localId:fT,log:go,log2:mo,logarithmicDepthToViewZ:(e,t,r)=>{const s=e.mul(go(r.div(t)));return hn(Math.E).pow(s).mul(t).negate()},luminance:Ex,mat2:wn,mat3:Cn,mat4:Mn,matcapUV:Mf,materialAO:Ih,materialAlphaTest:th,materialAnisotropy:Th,materialAnisotropyVector:Oh,materialAttenuationColor:wh,materialAttenuationDistance:Eh,materialClearcoat:gh,materialClearcoatNormal:fh,materialClearcoatRoughness:mh,materialColor:rh,materialDispersion:Dh,materialEmissive:ih,materialEnvIntensity:sc,materialEnvRotation:ic,materialIOR:Rh,materialIridescence:_h,materialIridescenceIOR:vh,materialIridescenceThickness:Nh,materialLightMap:Uh,materialLineDashOffset:Ph,materialLineDashSize:Mh,materialLineGapSize:Bh,materialLineScale:Ch,materialLineWidth:Lh,materialMetalness:hh,materialNormal:ph,materialOpacity:nh,materialPointSize:Fh,materialReference:bc,materialReflectivity:dh,materialRefractionRatio:rc,materialRotation:yh,materialRoughness:ch,materialSheen:bh,materialSheenRoughness:xh,materialShininess:sh,materialSpecular:ah,materialSpecularColor:uh,materialSpecularIntensity:oh,materialSpecularStrength:lh,materialThickness:Ah,materialTransmission:Sh,max:Wo,maxMipLevel:Cl,mediumpModelViewMatrix:Ed,metalness:kn,min:$o,mix:iu,mixElement:cu,mod:La,modInt:Ja,modelDirection:bd,modelNormalMatrix:Sd,modelPosition:Td,modelRadius:Nd,modelScale:_d,modelViewMatrix:Rd,modelViewPosition:vd,modelViewProjection:Vh,modelWorldMatrix:xd,modelWorldMatrixInverse:Ad,morphReference:pp,mrt:Wy,mul:Ma,mx_aastep:Wv,mx_add:(e,t=hn(0))=>wa(e,t),mx_atan2:(e=hn(0),t=hn(1))=>Eo(e,t),mx_cell_noise_float:(e=Al())=>Rv(e.convert("vec2|vec3")),mx_contrast:(e,t=1,r=.5)=>hn(e).sub(r).mul(t).add(r),mx_divide:(e,t=hn(1))=>Ba(e,t),mx_fractal_noise_float:(e=Al(),t=3,r=2,s=.5,i=1)=>wv(e,pn(t),r,s).mul(i),mx_fractal_noise_vec2:(e=Al(),t=3,r=2,s=.5,i=1)=>Mv(e,pn(t),r,s).mul(i),mx_fractal_noise_vec3:(e=Al(),t=3,r=2,s=.5,i=1)=>Cv(e,pn(t),r,s).mul(i),mx_fractal_noise_vec4:(e=Al(),t=3,r=2,s=.5,i=1)=>Bv(e,pn(t),r,s).mul(i),mx_frame:()=>yb,mx_heighttonormal:(e,t)=>(e=Tn(e),t=hn(t),Zc(e,t)),mx_hsvtorgb:Gv,mx_ifequal:(e,t,r,s)=>e.equal(t).mix(r,s),mx_ifgreater:(e,t,r,s)=>e.greaterThan(t).mix(r,s),mx_ifgreatereq:(e,t,r,s)=>e.greaterThanEqual(t).mix(r,s),mx_invert:(e,t=hn(1))=>Ca(t,e),mx_modulo:(e,t=hn(1))=>La(e,t),mx_multiply:(e,t=hn(1))=>Ma(e,t),mx_noise_float:(e=Al(),t=1,r=0)=>Sv(e.convert("vec2|vec3")).mul(t).add(r),mx_noise_vec3:(e=Al(),t=1,r=0)=>Av(e.convert("vec2|vec3")).mul(t).add(r),mx_noise_vec4:(e=Al(),t=1,r=0)=>{e=e.convert("vec2|vec3");return Sn(Av(e),Sv(e.add(fn(19,73)))).mul(t).add(r)},mx_place2d:(e,t=fn(.5,.5),r=fn(1,1),s=hn(0),i=fn(0,0))=>{let n=e;if(t&&(n=n.sub(t)),r&&(n=n.mul(r)),s){const e=s.mul(Math.PI/180),t=e.cos(),r=e.sin();n=fn(n.x.mul(t).sub(n.y.mul(r)),n.x.mul(r).add(n.y.mul(t)))}return t&&(n=n.add(t)),i&&(n=n.add(i)),n},mx_power:(e,t=hn(1))=>Qo(e,t),mx_ramp4:(e,t,r,s,i=Al())=>{const n=i.x.clamp(),a=i.y.clamp(),o=iu(e,t,n),u=iu(r,s,n);return iu(o,u,a)},mx_ramplr:(e,t,r=Al())=>Hv(e,t,r,"x"),mx_ramptb:(e,t,r=Al())=>Hv(e,t,r,"y"),mx_rgbtohsv:zv,mx_rotate2d:(e,t)=>{e=fn(e);const r=(t=hn(t)).mul(Math.PI/180);return Ff(e,r)},mx_rotate3d:(e,t,r)=>{e=Tn(e),t=hn(t),r=Tn(r);const s=t.mul(Math.PI/180),i=r.normalize(),n=s.cos(),a=s.sin(),o=hn(1).sub(n);return e.mul(n).add(i.cross(e).mul(a)).add(i.mul(i.dot(e)).mul(o))},mx_safepower:(e,t=1)=>(e=hn(e)).abs().pow(t).mul(e.sign()),mx_separate:(e,t=null)=>{if("string"==typeof t){const r={x:0,r:0,y:1,g:1,z:2,b:2,w:3,a:3},s=t.replace(/^out/,"").toLowerCase();if(void 0!==r[s])return e.element(r[s])}if("number"==typeof t)return e.element(t);if("string"==typeof t&&1===t.length){const r={x:0,r:0,y:1,g:1,z:2,b:2,w:3,a:3};if(void 0!==r[t])return e.element(r[t])}return e},mx_splitlr:(e,t,r,s=Al())=>jv(e,t,r,s,"x"),mx_splittb:(e,t,r,s=Al())=>jv(e,t,r,s,"y"),mx_srgb_texture_to_lin_rec709:$v,mx_subtract:(e,t=hn(0))=>Ca(e,t),mx_timer:()=>mb,mx_transform_uv:(e=1,t=0,r=Al())=>r.mul(e).add(t),mx_unifiednoise2d:(e,t=Al(),r=fn(1,1),s=fn(0,0),i=1,n=0,a=1,o=!1,u=1,l=2,d=.5)=>Vv(e,t.convert("vec2|vec3"),r,s,i,n,a,o,u,l,d),mx_unifiednoise3d:(e,t=Al(),r=fn(1,1),s=fn(0,0),i=1,n=0,a=1,o=!1,u=1,l=2,d=.5)=>kv(e,t.convert("vec2|vec3"),r,s,i,n,a,o,u,l,d),mx_worley_noise_float:(e=Al(),t=1)=>Uv(e.convert("vec2|vec3"),t,pn(1)),mx_worley_noise_vec2:(e=Al(),t=1)=>Iv(e.convert("vec2|vec3"),t,pn(1)),mx_worley_noise_vec3:(e=Al(),t=1)=>Ov(e.convert("vec2|vec3"),t,pn(1)),negate:Bo,neutralToneMapping:Hx,nodeArray:Ji,nodeImmutable:tn,nodeObject:Yi,nodeObjectIntent:Qi,nodeObjects:Zi,nodeProxy:en,nodeProxyIntent:rn,normalFlat:$d,normalGeometry:Gd,normalLocal:zd,normalMap:Xc,normalView:jd,normalViewGeometry:Wd,normalWorld:qd,normalWorldGeometry:Hd,normalize:To,not:Ga,notEqual:Fa,numWorkgroups:pT,objectDirection:cd,objectGroup:ya,objectPosition:pd,objectRadius:fd,objectScale:gd,objectViewPosition:md,objectWorldMatrix:hd,oneMinus:Lo,or:ka,orthographicDepthToViewZ:(e,t,r)=>t.sub(r).mul(e).sub(t),oscSawtooth:(e=mb)=>e.fract(),oscSine:(e=mb)=>e.add(.75).mul(2*Math.PI).sin().mul(.5).add(.5),oscSquare:(e=mb)=>e.fract().round(),oscTriangle:(e=mb)=>e.add(.5).fract().mul(2).sub(1).abs(),output:ra,outputStruct:Gy,overlay:(...e)=>(d('TSL: "overlay" has been renamed. Use "blendOverlay" instead.'),Wp(e)),overloadingFn:gb,packHalf2x16:ib,packSnorm2x16:rb,packUnorm2x16:sb,parabola:eb,parallaxDirection:$c,parallaxUV:(e,t)=>e.sub($c.mul(t)),parameter:(e,t)=>Yi(new Dy(e,t)),pass:(e,t,r)=>Yi(new Fx(Fx.COLOR,e,t,r)),passTexture:(e,t)=>Yi(new Lx(e,t)),pcurve:(e,t,r)=>Qo(Ba(Qo(e,t),wa(Qo(e,t),Qo(Ca(1,e),r))),1/t),perspectiveDepthToViewZ:Cp,pmremTexture:mf,pointShadow:X_,pointUV:nx,pointWidth:na,positionGeometry:Md,positionLocal:Bd,positionPrevious:Ld,positionView:Dd,positionViewDirection:Ud,positionWorld:Pd,positionWorldDirection:Fd,posterize:Mx,pow:Qo,pow2:Zo,pow3:Jo,pow4:eu,premultiplyAlpha:jp,property:Fn,quadBroadcast:KT,quadSwapDiagonal:$T,quadSwapX:GT,quadSwapY:zT,radians:lo,rand:du,range:dT,rangeFog:function(e,t,r){return d('TSL: "rangeFog( color, near, far )" is deprecated. Use "fog( color, rangeFogFactor( near, far ) )" instead.'),aT(e,iT(t,r))},rangeFogFactor:iT,reciprocal:Uo,reference:mc,referenceBuffer:fc,reflect:jo,reflectVector:oc,reflectView:nc,reflector:e=>Yi(new Vb(e)),refract:ou,refractVector:uc,refractView:ac,reinhardToneMapping:Ix,remap:cl,remapClamp:hl,renderGroup:fa,renderOutput:yl,rendererReference:Hu,replaceDefaultUV:function(e,t=null){return Tu(t,{getUV:e})},rotate:Ff,rotateUV:bb,roughness:Vn,round:Do,rtt:qb,sRGBTransferEOTF:Uu,sRGBTransferOETF:Iu,sample:(e,t=null)=>Yi(new Jb(e,Yi(t))),sampler:e=>(!0===e.isNode?e:Pl(e)).convert("sampler"),samplerComparison:e=>(!0===e.isNode?e:Pl(e)).convert("samplerComparison"),saturate:au,saturation:Sx,screen:(...e)=>(d('TSL: "screen" has been renamed. Use "blendScreen" instead.'),$p(e)),screenCoordinate:ql,screenDPR:Wl,screenSize:jl,screenUV:Hl,scriptable:rT,scriptableValue:Qx,select:bu,setCurrentStack:on,setName:vu,shaderStages:ri,shadow:D_,shadowPositionWorld:l_,shapeCircle:ev,sharedUniformGroup:ga,sheen:$n,sheenRoughness:Wn,shiftLeft:qa,shiftRight:Xa,shininess:ta,sign:Co,sin:vo,sinc:(e,t)=>vo(so.mul(t.mul(e).sub(1))).div(so.mul(t.mul(e).sub(1))),skinning:np,smoothstep:uu,smoothstepElement:hu,specularColor:Zn,specularColorBlended:Jn,specularF90:ea,spherizeUV:xb,split:(e,t)=>Yi(new hi(Yi(e),t)),spritesheetUV:Nb,sqrt:fo,stack:Iy,step:Ho,stepElement:pu,storage:$h,storageBarrier:()=>bT("storage").toStack(),storageObject:(e,t,r)=>(d('TSL: "storageObject()" is deprecated. Use "storage().setPBO( true )" instead.'),$h(e,t,r).setPBO(!0)),storageTexture:px,string:(e="")=>Yi(new yi(e,"string")),struct:(e,t=null)=>{const r=new Oy(e,t),s=(...t)=>{let s=null;if(t.length>0)if(t[0].isNode){s={};const r=Object.keys(e);for(let e=0;efx(e,t).level(r),texture3DLoad:(...e)=>fx(...e).setSampler(!1),textureBarrier:()=>bT("texture").toStack(),textureBicubic:om,textureBicubicLevel:am,textureCubeUV:Om,textureLevel:(e,t,r)=>Pl(e,t).level(r),textureLoad:Fl,textureSize:El,textureStore:(e,t,r)=>{const s=px(e,t,r);return null!==r&&s.toStack(),s},thickness:ua,time:mb,toneMapping:qu,toneMappingExposure:Xu,toonOutlinePass:(t,r,s=new e(0,0,0),i=.003,n=1)=>Yi(new Dx(t,r,Yi(s),Yi(i),Yi(n))),transformDirection:tu,transformNormal:Kd,transformNormalToView:Yd,transformedClearcoatNormalView:Jd,transformedNormalView:Qd,transformedNormalWorld:Zd,transmission:oa,transpose:Vo,triNoise3D:cb,triplanarTexture:(...e)=>Sb(...e),triplanarTextures:Sb,trunc:Io,uint:gn,uintBitsToFloat:e=>new Hy(e,"float","uint"),uniform:xa,uniformArray:Vl,uniformCubeTexture:(e=lc)=>cc(e),uniformFlow:_u,uniformGroup:pa,uniformTexture:(e=Ml)=>Pl(e),unpackHalf2x16:ub,unpackNormal:jc,unpackSnorm2x16:ab,unpackUnorm2x16:ob,unpremultiplyAlpha:qp,userData:(e,t,r)=>Yi(new yx(e,t,r)),uv:Al,uvec2:bn,uvec3:vn,uvec4:Rn,varying:Fu,varyingProperty:Dn,vec2:fn,vec3:Tn,vec4:Sn,vectorComponents:si,velocity:vx,vertexColor:kp,vertexIndex:Hh,vertexStage:Du,vibrance:Ax,viewZToLogarithmicDepth:Mp,viewZToOrthographicDepth:Ep,viewZToPerspectiveDepth:wp,viewport:Xl,viewportCoordinate:Yl,viewportDepthTexture:Ap,viewportLinearDepth:Fp,viewportMipTexture:vp,viewportResolution:Zl,viewportSafeUV:_b,viewportSharedTexture:tg,viewportSize:Kl,viewportTexture:_p,viewportUV:Ql,vogelDiskSample:Zb,wgsl:(e,t)=>qx(e,t,"wgsl"),wgslFn:(e,t)=>Kx(e,t,"wgsl"),workgroupArray:(e,t)=>Yi(new TT("Workgroup",e,t)),workgroupBarrier:()=>bT("workgroup").toStack(),workgroupId:gT,workingToColorSpace:ku,xor:za});const Yv=new Fy;class Qv extends ty{constructor(e,t){super(),this.renderer=e,this.nodes=t}update(e,t,r){const s=this.renderer,i=this.nodes.getBackgroundNode(e)||e.background;let n=!1;if(null===i)s._clearColor.getRGB(Yv),Yv.a=s._clearColor.a;else if(!0===i.isColor)i.getRGB(Yv),Yv.a=1,n=!0;else if(!0===i.isNode){const u=this.get(e),l=i;Yv.copy(s._clearColor);let d=u.backgroundMesh;if(void 0===d){const h=Sn(l).mul(dx).context({getUV:()=>cx.mul(Hd),getTextureLevel:()=>lx}),p=rd.element(3).element(3).equal(1),g=Ba(1,rd.element(1).element(1)).mul(3),m=p.select(Bd.mul(g),Bd);let f=rd.mul(Rd.mul(Sn(m,1)));f=f.setZ(f.w);const y=new Xp;function b(){i.removeEventListener("dispose",b),d.material.dispose(),d.geometry.dispose()}y.name="Background.material",y.side=w,y.depthTest=!1,y.depthWrite=!1,y.allowOverride=!1,y.fog=!1,y.lights=!1,y.vertexNode=f,y.colorNode=h,u.backgroundMeshNode=h,u.backgroundMesh=d=new se(new Ye(1,32,32),y),d.frustumCulled=!1,d.name="Background.mesh",d.onBeforeRender=function(e,t,r){this.matrixWorld.copyPosition(r.matrixWorld)},i.addEventListener("dispose",b)}const c=l.getCacheKey();u.backgroundCacheKey!==c&&(u.backgroundMeshNode.node=Sn(l).mul(dx),u.backgroundMeshNode.needsUpdate=!0,d.material.needsUpdate=!0,u.backgroundCacheKey=c),t.unshift(d,d.geometry,d.material,0,0,null,null)}else o("Renderer: Unsupported background configuration.",i);const a=s.xr.getEnvironmentBlendMode();if("additive"===a?Yv.set(0,0,0,1):"alpha-blend"===a&&Yv.set(0,0,0,0),!0===s.autoClear||!0===n){const x=r.clearColorValue;x.r=Yv.r,x.g=Yv.g,x.b=Yv.b,x.a=Yv.a,!0!==s.backend.isWebGLBackend&&!0!==s.alpha||(x.r*=x.a,x.g*=x.a,x.b*=x.a),r.depthClearValue=s._clearDepth,r.stencilClearValue=s._clearStencil,r.clearColor=!0===s.autoClearColor,r.clearDepth=!0===s.autoClearDepth,r.clearStencil=!0===s.autoClearStencil}else r.clearColor=!1,r.clearDepth=!1,r.clearStencil=!1}}let Zv=0;class Jv{constructor(e="",t=[],r=0,s=[]){this.name=e,this.bindings=t,this.index=r,this.bindingsReference=s,this.id=Zv++}}class eN{constructor(e,t,r,s,i,n,a,o,u,l=[]){this.vertexShader=e,this.fragmentShader=t,this.computeShader=r,this.transforms=l,this.nodeAttributes=s,this.bindings=i,this.updateNodes=n,this.updateBeforeNodes=a,this.updateAfterNodes=o,this.observer=u,this.usedTimes=0}createBindings(){const e=[];for(const t of this.bindings){if(!0!==t.bindings[0].groupNode.shared){const r=new Jv(t.name,[],t.index,t.bindingsReference);e.push(r);for(const e of t.bindings)r.bindings.push(e.clone())}else e.push(t)}return e}}class tN{constructor(e,t,r=null){this.isNodeAttribute=!0,this.name=e,this.type=t,this.node=r}}class rN{constructor(e,t,r){this.isNodeUniform=!0,this.name=e,this.type=t,this.node=r}get value(){return this.node.value}set value(e){this.node.value=e}get id(){return this.node.id}get groupNode(){return this.node.groupNode}}class sN{constructor(e,t,r=!1,s=null){this.isNodeVar=!0,this.name=e,this.type=t,this.readOnly=r,this.count=s}}class iN extends sN{constructor(e,t,r=null,s=null){super(e,t),this.needsInterpolation=!1,this.isNodeVarying=!0,this.interpolationType=r,this.interpolationSampling=s}}class nN{constructor(e,t,r=""){this.name=e,this.type=t,this.code=r,Object.defineProperty(this,"isNodeCode",{value:!0})}}let aN=0;class oN{constructor(e=null){this.id=aN++,this.nodesData=new WeakMap,this.parent=e}getData(e){let t=this.nodesData.get(e);return void 0===t&&null!==this.parent&&(t=this.parent.getData(e)),t}setData(e,t){this.nodesData.set(e,t)}}class uN{constructor(e,t){this.name=e,this.members=t,this.output=!1}}class lN{constructor(e,t){this.name=e,this.value=t,this.boundary=0,this.itemSize=0,this.offset=0}setValue(e){this.value=e}getValue(){return this.value}}class dN extends lN{constructor(e,t=0){super(e,t),this.isNumberUniform=!0,this.boundary=4,this.itemSize=1}}class cN extends lN{constructor(e,r=new t){super(e,r),this.isVector2Uniform=!0,this.boundary=8,this.itemSize=2}}class hN extends lN{constructor(e,t=new r){super(e,t),this.isVector3Uniform=!0,this.boundary=16,this.itemSize=3}}class pN extends lN{constructor(e,t=new s){super(e,t),this.isVector4Uniform=!0,this.boundary=16,this.itemSize=4}}class gN extends lN{constructor(t,r=new e){super(t,r),this.isColorUniform=!0,this.boundary=16,this.itemSize=3}}class mN extends lN{constructor(e,t=new i){super(e,t),this.isMatrix2Uniform=!0,this.boundary=8,this.itemSize=4}}class fN extends lN{constructor(e,t=new n){super(e,t),this.isMatrix3Uniform=!0,this.boundary=48,this.itemSize=12}}class yN extends lN{constructor(e,t=new a){super(e,t),this.isMatrix4Uniform=!0,this.boundary=64,this.itemSize=16}}class bN extends dN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class xN extends cN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class TN extends hN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class _N extends pN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class vN extends gN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class NN extends mN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class SN extends fN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}class AN extends yN{constructor(e){super(e.name,e.value),this.nodeUniform=e}getValue(){return this.nodeUniform.value}getType(){return this.nodeUniform.type}}let RN=0;const EN=new WeakMap,wN=new WeakMap,CN=new Map([[Int8Array,"int"],[Int16Array,"int"],[Int32Array,"int"],[Uint8Array,"uint"],[Uint16Array,"uint"],[Uint32Array,"uint"],[Float32Array,"float"]]),MN=e=>/e/g.test(e)?String(e).replace(/\+/g,""):(e=Number(e))+(e%1?"":".0");class BN{constructor(e,t,r){this.object=e,this.material=e&&e.material||null,this.geometry=e&&e.geometry||null,this.renderer=t,this.parser=r,this.scene=null,this.camera=null,this.nodes=[],this.sequentialNodes=[],this.updateNodes=[],this.updateBeforeNodes=[],this.updateAfterNodes=[],this.hashNodes={},this.observer=null,this.lightsNode=null,this.environmentNode=null,this.fogNode=null,this.clippingContext=null,this.vertexShader=null,this.fragmentShader=null,this.computeShader=null,this.flowNodes={vertex:[],fragment:[],compute:[]},this.flowCode={vertex:"",fragment:"",compute:""},this.uniforms={vertex:[],fragment:[],compute:[],index:0},this.structs={vertex:[],fragment:[],compute:[],index:0},this.types={vertex:[],fragment:[],compute:[],index:0},this.bindings={vertex:{},fragment:{},compute:{}},this.bindingsIndexes={},this.bindGroups=null,this.attributes=[],this.bufferAttributes=[],this.varyings=[],this.codes={},this.vars={},this.declarations={},this.flow={code:""},this.chaining=[],this.stack=Iy(),this.stacks=[],this.tab="\t",this.currentFunctionNode=null,this.context={material:this.material},this.cache=new oN,this.globalCache=this.cache,this.flowsData=new WeakMap,this.shaderStage=null,this.buildStage=null,this.subBuildLayers=[],this.activeStacks=[],this.subBuildFn=null,this.fnCall=null,Object.defineProperty(this,"id",{value:RN++})}isOpaque(){const e=this.material;return!1===e.transparent&&e.blending===Qe&&!1===e.alphaToCoverage}getBindGroupsCache(){let e=wN.get(this.renderer);return void 0===e&&(e=new Yf,wN.set(this.renderer,e)),e}createRenderTarget(e,t,r){return new _e(e,t,r)}createCubeRenderTarget(e,t){return new og(e,t)}includes(e){return this.nodes.includes(e)}getOutputStructName(){}_getBindGroup(e,t){const r=this.getBindGroupsCache(),s=[];let i,n=!0;for(const e of t)s.push(e),n=n&&!0!==e.groupNode.shared;return n?(i=r.get(s),void 0===i&&(i=new Jv(e,s,this.bindingsIndexes[e].group,s),r.set(s,i))):i=new Jv(e,s,this.bindingsIndexes[e].group,s),i}getBindGroupArray(e,t){const r=this.bindings[t];let s=r[e];return void 0===s&&(void 0===this.bindingsIndexes[e]&&(this.bindingsIndexes[e]={binding:0,group:Object.keys(this.bindingsIndexes).length}),r[e]=s=[]),s}getBindings(){let e=this.bindGroups;if(null===e){const t={},r=this.bindings;for(const e of ri)for(const s in r[e]){const i=r[e][s];(t[s]||(t[s]=[])).push(...i)}e=[];for(const r in t){const s=t[r],i=this._getBindGroup(r,s);e.push(i)}this.bindGroups=e}return e}sortBindingGroups(){const e=this.getBindings();e.sort((e,t)=>e.bindings[0].groupNode.order-t.bindings[0].groupNode.order);for(let t=0;t=0?`${Math.round(n)}u`:"0u";if("bool"===i)return n?"true":"false";if("color"===i)return`${this.getType("vec3")}( ${MN(n.r)}, ${MN(n.g)}, ${MN(n.b)} )`;const a=this.getTypeLength(i),o=this.getComponentType(i),u=e=>this.generateConst(o,e);if(2===a)return`${this.getType(i)}( ${u(n.x)}, ${u(n.y)} )`;if(3===a)return`${this.getType(i)}( ${u(n.x)}, ${u(n.y)}, ${u(n.z)} )`;if(4===a&&"mat2"!==i)return`${this.getType(i)}( ${u(n.x)}, ${u(n.y)}, ${u(n.z)}, ${u(n.w)} )`;if(a>=4&&n&&(n.isMatrix2||n.isMatrix3||n.isMatrix4))return`${this.getType(i)}( ${n.elements.map(u).join(", ")} )`;if(a>4)return`${this.getType(i)}()`;throw new Error(`NodeBuilder: Type '${i}' not found in generate constant attempt.`)}getType(e){return"color"===e?"vec3":e}hasGeometryAttribute(e){return this.geometry&&void 0!==this.geometry.getAttribute(e)}getAttribute(e,t){const r=this.attributes;for(const t of r)if(t.name===e)return t;const s=new tN(e,t);return this.registerDeclaration(s),r.push(s),s}getPropertyName(e){return e.name}isVector(e){return/vec\d/.test(e)}isMatrix(e){return/mat\d/.test(e)}isReference(e){return"void"===e||"property"===e||"sampler"===e||"samplerComparison"===e||"texture"===e||"cubeTexture"===e||"storageTexture"===e||"depthTexture"===e||"texture3D"===e}needsToWorkingColorSpace(){return!1}getComponentTypeFromTexture(e){const t=e.type;if(e.isDataTexture){if(t===A)return"int";if(t===S)return"uint"}return"float"}getElementType(e){return"mat2"===e?"vec2":"mat3"===e?"vec3":"mat4"===e?"vec4":this.getComponentType(e)}getComponentType(e){if("float"===(e=this.getVectorType(e))||"bool"===e||"int"===e||"uint"===e)return e;const t=/(b|i|u|)(vec|mat)([2-4])/.exec(e);return null===t?null:"b"===t[1]?"bool":"i"===t[1]?"int":"u"===t[1]?"uint":"float"}getVectorType(e){return"color"===e?"vec3":"texture"===e||"cubeTexture"===e||"storageTexture"===e||"texture3D"===e?"vec4":e}getTypeFromLength(e,t="float"){if(1===e)return t;let r=Vs(e);const s="float"===t?"":t[0];return!0===/mat2/.test(t)&&(r=r.replace("vec","mat")),s+r}getTypeFromArray(e){return CN.get(e.constructor)}isInteger(e){return/int|uint|(i|u)vec/.test(e)}getTypeFromAttribute(e){let t=e;e.isInterleavedBufferAttribute&&(t=e.data);const r=t.array,s=e.itemSize,i=e.normalized;let n;return e instanceof et||!0===i||(n=this.getTypeFromArray(r)),this.getTypeFromLength(s,n)}getTypeLength(e){const t=this.getVectorType(e),r=/vec([2-4])/.exec(t);return null!==r?Number(r[1]):"float"===t||"bool"===t||"int"===t||"uint"===t?1:!0===/mat2/.test(e)?4:!0===/mat3/.test(e)?9:!0===/mat4/.test(e)?16:0}getVectorFromMatrix(e){return e.replace("mat","vec")}changeComponentType(e,t){return this.getTypeFromLength(this.getTypeLength(e),t)}getIntegerType(e){const t=this.getComponentType(e);return"int"===t||"uint"===t?e:this.changeComponentType(e,"int")}setActiveStack(e){this.activeStacks.push(e)}removeActiveStack(e){if(this.activeStacks[this.activeStacks.length-1]!==e)throw new Error("NodeBuilder: Invalid active stack removal.");this.activeStacks.pop()}getActiveStack(){return this.activeStacks[this.activeStacks.length-1]}getBaseStack(){return this.activeStacks[0]}addStack(){this.stack=Iy(this.stack);const e=un();return this.stacks.push(e),on(this.stack),this.stack}removeStack(){const e=this.stack;for(const t of e.nodes){this.getDataFromNode(t).stack=e}return this.stack=e.parent,on(this.stacks.pop()),e}getDataFromNode(e,t=this.shaderStage,r=null){let s=(r=null===r?e.isGlobal(this)?this.globalCache:this.cache:r).getData(e);void 0===s&&(s={},r.setData(e,s)),void 0===s[t]&&(s[t]={});let i=s[t];const n=s.any?s.any.subBuilds:null,a=this.getClosestSubBuild(n);return a&&(void 0===i.subBuildsCache&&(i.subBuildsCache={}),i=i.subBuildsCache[a]||(i.subBuildsCache[a]={}),i.subBuilds=n),i}getNodeProperties(e,t="any"){const r=this.getDataFromNode(e,t);return r.properties||(r.properties={outputNode:null})}getBufferAttributeFromNode(e,t){const r=this.getDataFromNode(e,"vertex");let s=r.bufferAttribute;if(void 0===s){const i=this.uniforms.index++;s=new tN("nodeAttribute"+i,t,e),this.bufferAttributes.push(s),r.bufferAttribute=s}return s}getStructTypeNode(e,t=this.shaderStage){return this.types[t][e]||null}getStructTypeFromNode(e,t,r=null,s=this.shaderStage){const i=this.getDataFromNode(e,s,this.globalCache);let n=i.structType;if(void 0===n){const a=this.structs.index++;null===r&&(r="StructType"+a),n=new uN(r,t),this.structs[s].push(n),this.types[s][r]=e,i.structType=n}return n}getOutputStructTypeFromNode(e,t){const r=this.getStructTypeFromNode(e,t,"OutputType","fragment");return r.output=!0,r}getUniformFromNode(e,t,r=this.shaderStage,s=null){const i=this.getDataFromNode(e,r,this.globalCache);let n=i.uniform;if(void 0===n){const a=this.uniforms.index++;n=new rN(s||"nodeUniform"+a,t,e),this.uniforms[r].push(n),this.registerDeclaration(n),i.uniform=n}return n}getVarFromNode(e,t=null,r=e.getNodeType(this),s=this.shaderStage,i=!1){const n=this.getDataFromNode(e,s),a=this.getSubBuildProperty("variable",n.subBuilds);let o=n[a];if(void 0===o){const u=i?"_const":"_var",l=this.vars[s]||(this.vars[s]=[]),d=this.vars[u]||(this.vars[u]=0);null===t&&(t=(i?"nodeConst":"nodeVar")+d,this.vars[u]++),"variable"!==a&&(t=this.getSubBuildProperty(t,n.subBuilds));const c=e.getArrayCount(this);o=new sN(t,r,i,c),i||l.push(o),this.registerDeclaration(o),n[a]=o}return o}isDeterministic(e){if(e.isMathNode)return this.isDeterministic(e.aNode)&&(!e.bNode||this.isDeterministic(e.bNode))&&(!e.cNode||this.isDeterministic(e.cNode));if(e.isOperatorNode)return this.isDeterministic(e.aNode)&&(!e.bNode||this.isDeterministic(e.bNode));if(e.isArrayNode){if(null!==e.values)for(const t of e.values)if(!this.isDeterministic(t))return!1;return!0}return!!e.isConstNode}getVaryingFromNode(e,t=null,r=e.getNodeType(this),s=null,i=null){const n=this.getDataFromNode(e,"any"),a=this.getSubBuildProperty("varying",n.subBuilds);let o=n[a];if(void 0===o){const e=this.varyings,u=e.length;null===t&&(t="nodeVarying"+u),"varying"!==a&&(t=this.getSubBuildProperty(t,n.subBuilds)),o=new iN(t,r,s,i),e.push(o),this.registerDeclaration(o),n[a]=o}return o}registerDeclaration(e){const t=this.shaderStage,r=this.declarations[t]||(this.declarations[t]={}),s=this.getPropertyName(e);let i=1,n=s;for(;void 0!==r[n];)n=s+"_"+i++;i>1&&(e.name=n,d(`TSL: Declaration name '${s}' of '${e.type}' already in use. Renamed to '${n}'.`)),r[n]=e}getCodeFromNode(e,t,r=this.shaderStage){const s=this.getDataFromNode(e);let i=s.code;if(void 0===i){const e=this.codes[r]||(this.codes[r]=[]),n=e.length;i=new nN("nodeCode"+n,t),e.push(i),s.code=i}return i}addFlowCodeHierarchy(e,t){const{flowCodes:r,flowCodeBlock:s}=this.getDataFromNode(e);let i=!0,n=t;for(;n;){if(!0===s.get(n)){i=!1;break}n=this.getDataFromNode(n).parentNodeBlock}if(i)for(const e of r)this.addLineFlowCode(e)}addLineFlowCodeBlock(e,t,r){const s=this.getDataFromNode(e),i=s.flowCodes||(s.flowCodes=[]),n=s.flowCodeBlock||(s.flowCodeBlock=new WeakMap);i.push(t),n.set(r,!0)}addLineFlowCode(e,t=null){return""===e||(null!==t&&this.context.nodeBlock&&this.addLineFlowCodeBlock(t,e,this.context.nodeBlock),e=this.tab+e,/;\s*$/.test(e)||(e+=";\n"),this.flow.code+=e),this}addFlowCode(e){return this.flow.code+=e,this}addFlowTab(){return this.tab+="\t",this}removeFlowTab(){return this.tab=this.tab.slice(0,-1),this}getFlowData(e){return this.flowsData.get(e)}flowNode(e){const t=e.getNodeType(this),r=this.flowChildNode(e,t);return this.flowsData.set(e,r),r}addInclude(e){null!==this.currentFunctionNode&&this.currentFunctionNode.includes.push(e)}buildFunctionNode(e){const t=new Xx,r=this.currentFunctionNode;return this.currentFunctionNode=t,t.code=this.buildFunctionCode(e),this.currentFunctionNode=r,t}flowShaderNode(e){const t=e.layout,r={[Symbol.iterator](){let e=0;const t=Object.values(this);return{next:()=>({value:t[e],done:e++>=t.length})}}};for(const e of t.inputs)r[e.name]=new Dy(e.type,e.name);e.layout=null;const s=e.call(r),i=this.flowStagesNode(s,t.type);return e.layout=t,i}flowBuildStage(e,t,r=null){const s=this.getBuildStage();this.setBuildStage(t);const i=e.build(this,r);return this.setBuildStage(s),i}flowStagesNode(e,t=null){const r=this.flow,s=this.vars,i=this.declarations,n=this.cache,a=this.buildStage,o=this.stack,u={code:""};this.flow=u,this.vars={},this.declarations={},this.cache=new oN,this.stack=Iy();for(const r of ti)this.setBuildStage(r),u.result=e.build(this,t);return u.vars=this.getVars(this.shaderStage),this.flow=r,this.vars=s,this.declarations=i,this.cache=n,this.stack=o,this.setBuildStage(a),u}getFunctionOperator(){return null}buildFunctionCode(){d("Abstract function.")}flowChildNode(e,t=null){const r=this.flow,s={code:""};return this.flow=s,s.result=e.build(this,t),this.flow=r,s}flowNodeFromShaderStage(e,t,r=null,s=null){const i=this.tab,n=this.cache,a=this.shaderStage,o=this.context;this.setShaderStage(e);const u={...this.context};delete u.nodeBlock,this.cache=this.globalCache,this.tab="\t",this.context=u;let l=null;if("generate"===this.buildStage){const i=this.flowChildNode(t,r);null!==s&&(i.code+=`${this.tab+s} = ${i.result};\n`),this.flowCode[e]=this.flowCode[e]+i.code,l=i}else l=t.build(this);return this.setShaderStage(a),this.cache=n,this.tab=i,this.context=o,l}getAttributesArray(){return this.attributes.concat(this.bufferAttributes)}getAttributes(){d("Abstract function.")}getVaryings(){d("Abstract function.")}getVar(e,t,r=null){return`${null!==r?this.generateArrayDeclaration(e,r):this.getType(e)} ${t}`}getVars(e){let t="";const r=this.vars[e];if(void 0!==r)for(const e of r)t+=`${this.getVar(e.type,e.name)}; `;return t}getUniforms(){d("Abstract function.")}getCodes(e){const t=this.codes[e];let r="";if(void 0!==t)for(const e of t)r+=e.code+"\n";return r}getHash(){return this.vertexShader+this.fragmentShader+this.computeShader}setShaderStage(e){this.shaderStage=e}getShaderStage(){return this.shaderStage}setBuildStage(e){this.buildStage=e}getBuildStage(){return this.buildStage}buildCode(){d("Abstract function.")}get subBuild(){return this.subBuildLayers[this.subBuildLayers.length-1]||null}addSubBuild(e){this.subBuildLayers.push(e)}removeSubBuild(){return this.subBuildLayers.pop()}getClosestSubBuild(e){let t;if(t=e&&e.isNode?e.isShaderCallNodeInternal?e.shaderNode.subBuilds:e.isStackNode?[e.subBuild]:this.getDataFromNode(e,"any").subBuilds:e instanceof Set?[...e]:e,!t)return null;const r=this.subBuildLayers;for(let e=t.length-1;e>=0;e--){const s=t[e];if(r.includes(s))return s}return null}getSubBuildOutput(e){return this.getSubBuildProperty("outputNode",e)}getSubBuildProperty(e="",t=null){let r,s;return r=null!==t?this.getClosestSubBuild(t):this.subBuildFn,s=r?e?r+"_"+e:r:e,s}build(){const{object:e,material:t,renderer:r}=this;if(null!==t){let e=r.library.fromMaterial(t);null===e&&(o(`NodeMaterial: Material "${t.type}" is not compatible.`),e=new Xp),e.build(this)}else this.addFlow("compute",e);for(const e of ti){this.setBuildStage(e),this.context.vertex&&this.context.vertex.isNode&&this.flowNodeFromShaderStage("vertex",this.context.vertex);for(const t of ri){this.setShaderStage(t);const r=this.flowNodes[t];for(const t of r)"generate"===e?this.flowNode(t):t.build(this)}}return this.setBuildStage(null),this.setShaderStage(null),this.buildCode(),this.buildUpdateNodes(),this}getSharedDataFromNode(e){let t=EN.get(e);return void 0===t&&(t={}),t}getNodeUniform(e,t){const r=this.getSharedDataFromNode(e);let s=r.cache;if(void 0===s){if("float"===t||"int"===t||"uint"===t)s=new bN(e);else if("vec2"===t||"ivec2"===t||"uvec2"===t)s=new xN(e);else if("vec3"===t||"ivec3"===t||"uvec3"===t)s=new TN(e);else if("vec4"===t||"ivec4"===t||"uvec4"===t)s=new _N(e);else if("color"===t)s=new vN(e);else if("mat2"===t)s=new NN(e);else if("mat3"===t)s=new SN(e);else{if("mat4"!==t)throw new Error(`Uniform "${t}" not implemented.`);s=new AN(e)}r.cache=s}return s}format(e,t,r){if((t=this.getVectorType(t))===(r=this.getVectorType(r))||null===r||this.isReference(r))return e;const s=this.getTypeLength(t),i=this.getTypeLength(r);return 16===s&&9===i?`${this.getType(r)}( ${e}[ 0 ].xyz, ${e}[ 1 ].xyz, ${e}[ 2 ].xyz )`:9===s&&4===i?`${this.getType(r)}( ${e}[ 0 ].xy, ${e}[ 1 ].xy )`:s>4||i>4||0===i?e:s===i?`${this.getType(r)}( ${e} )`:s>i?(e="bool"===r?`all( ${e} )`:`${e}.${"xyz".slice(0,i)}`,this.format(e,this.getTypeFromLength(i,this.getComponentType(t)),r)):4===i&&s>1?`${this.getType(r)}( ${this.format(e,t,"vec3")}, 1.0 )`:2===s?`${this.getType(r)}( ${this.format(e,t,"vec2")}, 0.0 )`:(1===s&&i>1&&t!==this.getComponentType(r)&&(e=`${this.getType(this.getComponentType(r))}( ${e} )`),`${this.getType(r)}( ${e} )`)}getSignature(){return`// Three.js r${tt} - Node System\n`}}class LN{constructor(){this.time=0,this.deltaTime=0,this.frameId=0,this.renderId=0,this.updateMap=new WeakMap,this.updateBeforeMap=new WeakMap,this.updateAfterMap=new WeakMap,this.renderer=null,this.material=null,this.camera=null,this.object=null,this.scene=null}_getMaps(e,t){let r=e.get(t);return void 0===r&&(r={renderId:0,frameId:0},e.set(t,r)),r}updateBeforeNode(e){const t=e.getUpdateBeforeType(),r=e.updateReference(this);if(t===Qs.FRAME){const t=this._getMaps(this.updateBeforeMap,r);if(t.frameId!==this.frameId){const r=t.frameId;t.frameId=this.frameId,!1===e.updateBefore(this)&&(t.frameId=r)}}else if(t===Qs.RENDER){const t=this._getMaps(this.updateBeforeMap,r);if(t.renderId!==this.renderId){const r=t.renderId;t.renderId=this.renderId,!1===e.updateBefore(this)&&(t.renderId=r)}}else t===Qs.OBJECT&&e.updateBefore(this)}updateAfterNode(e){const t=e.getUpdateAfterType(),r=e.updateReference(this);if(t===Qs.FRAME){const t=this._getMaps(this.updateAfterMap,r);t.frameId!==this.frameId&&!1!==e.updateAfter(this)&&(t.frameId=this.frameId)}else if(t===Qs.RENDER){const t=this._getMaps(this.updateAfterMap,r);t.renderId!==this.renderId&&!1!==e.updateAfter(this)&&(t.renderId=this.renderId)}else t===Qs.OBJECT&&e.updateAfter(this)}updateNode(e){const t=e.getUpdateType(),r=e.updateReference(this);if(t===Qs.FRAME){const t=this._getMaps(this.updateMap,r);t.frameId!==this.frameId&&!1!==e.update(this)&&(t.frameId=this.frameId)}else if(t===Qs.RENDER){const t=this._getMaps(this.updateMap,r);t.renderId!==this.renderId&&!1!==e.update(this)&&(t.renderId=this.renderId)}else t===Qs.OBJECT&&e.update(this)}update(){this.frameId++,void 0===this.lastTime&&(this.lastTime=performance.now()),this.deltaTime=(performance.now()-this.lastTime)/1e3,this.lastTime=performance.now(),this.time+=this.deltaTime}}class PN{constructor(e,t,r=null,s="",i=!1){this.type=e,this.name=t,this.count=r,this.qualifier=s,this.isConst=i}}PN.isNodeFunctionInput=!0;class FN extends K_{static get type(){return"DirectionalLightNode"}constructor(e=null){super(e)}setupDirect(){const e=this.colorNode;return{lightDirection:s_(this.light),lightColor:e}}}const DN=new a,UN=new a;let IN=null;class ON extends K_{static get type(){return"RectAreaLightNode"}constructor(e=null){super(e),this.halfHeight=xa(new r).setGroup(fa),this.halfWidth=xa(new r).setGroup(fa),this.updateType=Qs.RENDER}update(e){super.update(e);const{light:t}=this,r=e.camera.matrixWorldInverse;UN.identity(),DN.copy(t.matrixWorld),DN.premultiply(r),UN.extractRotation(DN),this.halfWidth.value.set(.5*t.width,0,0),this.halfHeight.value.set(0,.5*t.height,0),this.halfWidth.value.applyMatrix4(UN),this.halfHeight.value.applyMatrix4(UN)}setupDirectRectArea(e){let t,r;e.isAvailable("float32Filterable")?(t=Pl(IN.LTC_FLOAT_1),r=Pl(IN.LTC_FLOAT_2)):(t=Pl(IN.LTC_HALF_1),r=Pl(IN.LTC_HALF_2));const{colorNode:s,light:i}=this;return{lightColor:s,lightPosition:r_(i),halfWidth:this.halfWidth,halfHeight:this.halfHeight,ltc_1:t,ltc_2:r}}static setLTC(e){IN=e}}class VN extends K_{static get type(){return"SpotLightNode"}constructor(e=null){super(e),this.coneCosNode=xa(0).setGroup(fa),this.penumbraCosNode=xa(0).setGroup(fa),this.cutoffDistanceNode=xa(0).setGroup(fa),this.decayExponentNode=xa(0).setGroup(fa),this.colorNode=xa(this.color).setGroup(fa)}update(e){super.update(e);const{light:t}=this;this.coneCosNode.value=Math.cos(t.angle),this.penumbraCosNode.value=Math.cos(t.angle*(1-t.penumbra)),this.cutoffDistanceNode.value=t.distance,this.decayExponentNode.value=t.decay}getSpotAttenuation(e,t){const{coneCosNode:r,penumbraCosNode:s}=this;return uu(r,s,t)}getLightCoord(e){const t=e.getNodeProperties(this);let r=t.projectionUV;return void 0===r&&(r=JT(this.light,e.context.positionWorld),t.projectionUV=r),r}setupDirect(e){const{colorNode:t,cutoffDistanceNode:r,decayExponentNode:s,light:i}=this,n=this.getLightVector(e),a=n.normalize(),o=a.dot(s_(i)),u=this.getSpotAttenuation(e,o),l=n.length(),d=Y_({lightDistance:l,cutoffDistance:r,decayExponent:s});let c,h,p=t.mul(u).mul(d);if(i.colorNode?(h=this.getLightCoord(e),c=i.colorNode(h)):i.map&&(h=this.getLightCoord(e),c=Pl(i.map,h.xy).onRenderUpdate(()=>i.map)),c){p=h.mul(2).sub(1).abs().lessThan(1).all().select(p.mul(c),p)}return{lightColor:p,lightDirection:a}}}class kN extends VN{static get type(){return"IESSpotLightNode"}getSpotAttenuation(e,t){const r=this.light.iesMap;let s=null;if(r&&!0===r.isTexture){const e=t.acos().mul(1/Math.PI);s=Pl(r,fn(e,0),0).r}else s=super.getSpotAttenuation(t);return s}}const GN=an(([e,t])=>{const r=e.abs().sub(t);return Mo(Wo(r,0)).add($o(Wo(r.x,r.y),0))});class zN extends VN{static get type(){return"ProjectorLightNode"}update(e){super.update(e);const t=this.light;if(this.penumbraCosNode.value=Math.min(Math.cos(t.angle*(1-t.penumbra)),.99999),null===t.aspect){let e=1;null!==t.map&&(e=t.map.width/t.map.height),t.shadow.aspect=e}else t.shadow.aspect=t.aspect}getSpotAttenuation(e){const t=hn(0),r=this.penumbraCosNode,s=ZT(this.light).mul(e.context.positionWorld||Pd);return ln(s.w.greaterThan(0),()=>{const e=s.xyz.div(s.w),i=GN(e.xy.sub(fn(.5)),fn(.5)),n=Ba(-1,Ca(1,Ro(r)).sub(1));t.assign(au(i.mul(-2).mul(n)))}),t}}class $N extends K_{static get type(){return"AmbientLightNode"}constructor(e=null){super(e)}setup({context:e}){e.irradiance.addAssign(this.colorNode)}}class WN extends K_{static get type(){return"HemisphereLightNode"}constructor(t=null){super(t),this.lightPositionNode=e_(t),this.lightDirectionNode=this.lightPositionNode.normalize(),this.groundColorNode=xa(new e).setGroup(fa)}update(e){const{light:t}=this;super.update(e),this.lightPositionNode.object3d=t,this.groundColorNode.value.copy(t.groundColor).multiplyScalar(t.intensity)}setup(e){const{colorNode:t,groundColorNode:r,lightDirectionNode:s}=this,i=qd.dot(s).mul(.5).add(.5),n=iu(r,t,i);e.context.irradiance.addAssign(n)}}class HN extends K_{static get type(){return"LightProbeNode"}constructor(e=null){super(e);const t=[];for(let e=0;e<9;e++)t.push(new r);this.lightProbe=Vl(t)}update(e){const{light:t}=this;super.update(e);for(let e=0;e<9;e++)this.lightProbe.array[e].copy(t.sh.coefficients[e]).multiplyScalar(t.intensity)}setup(e){const t=Xv(qd,this.lightProbe);e.context.irradiance.addAssign(t)}}class jN{parseFunction(){d("Abstract function.")}}class qN{constructor(e,t,r="",s=""){this.type=e,this.inputs=t,this.name=r,this.precision=s}getCode(){d("Abstract function.")}}qN.isNodeFunction=!0;const XN=/^\s*(highp|mediump|lowp)?\s*([a-z_0-9]+)\s*([a-z_0-9]+)?\s*\(([\s\S]*?)\)/i,KN=/[a-z_0-9]+/gi,YN="#pragma main";class QN extends qN{constructor(e){const{type:t,inputs:r,name:s,precision:i,inputsCode:n,blockCode:a,headerCode:o}=(e=>{const t=(e=e.trim()).indexOf(YN),r=-1!==t?e.slice(t+12):e,s=r.match(XN);if(null!==s&&5===s.length){const i=s[4],n=[];let a=null;for(;null!==(a=KN.exec(i));)n.push(a);const o=[];let u=0;for(;u{const r=this.backend.createNodeBuilder(e.object,this.renderer);return r.scene=e.scene,r.material=t,r.camera=e.camera,r.context.material=t,r.lightsNode=e.lightsNode,r.environmentNode=this.getEnvironmentNode(e.scene),r.fogNode=this.getFogNode(e.scene),r.clippingContext=e.clippingContext,this.renderer.getOutputRenderTarget()&&this.renderer.getOutputRenderTarget().multiview&&r.enableMultiview(),r};let n=t(e.material);try{n.build()}catch(e){n=t(new Xp),n.build(),o("TSL: "+e)}r=this._createNodeBuilderState(n),s.set(i,r)}r.usedTimes++,t.nodeBuilderState=r}return r}delete(e){if(e.isRenderObject){const t=this.get(e).nodeBuilderState;t.usedTimes--,0===t.usedTimes&&this.nodeBuilderCache.delete(this.getForRenderCacheKey(e))}return super.delete(e)}getForCompute(e){const t=this.get(e);let r=t.nodeBuilderState;if(void 0===r){const s=this.backend.createNodeBuilder(e,this.renderer);s.build(),r=this._createNodeBuilderState(s),t.nodeBuilderState=r}return r}_createNodeBuilderState(e){return new eN(e.vertexShader,e.fragmentShader,e.computeShader,e.getAttributesArray(),e.getBindings(),e.updateNodes,e.updateBeforeNodes,e.updateAfterNodes,e.observer,e.transforms)}getEnvironmentNode(e){this.updateEnvironment(e);let t=null;if(e.environmentNode&&e.environmentNode.isNode)t=e.environmentNode;else{const r=this.get(e);r.environmentNode&&(t=r.environmentNode)}return t}getBackgroundNode(e){this.updateBackground(e);let t=null;if(e.backgroundNode&&e.backgroundNode.isNode)t=e.backgroundNode;else{const r=this.get(e);r.backgroundNode&&(t=r.backgroundNode)}return t}getFogNode(e){return this.updateFog(e),e.fogNode||this.get(e).fogNode||null}getCacheKey(e,t){eS[0]=e,eS[1]=t;const r=this.renderer.info.calls,s=this.callHashCache.get(eS)||{};if(s.callId!==r){const i=this.getEnvironmentNode(e),n=this.getFogNode(e);t&&tS.push(t.getCacheKey(!0)),i&&tS.push(i.getCacheKey()),n&&tS.push(n.getCacheKey()),tS.push(this.renderer.getOutputRenderTarget()&&this.renderer.getOutputRenderTarget().multiview?1:0),tS.push(this.renderer.shadowMap.enabled?1:0),tS.push(this.renderer.shadowMap.type),s.callId=r,s.cacheKey=Ds(tS),this.callHashCache.set(eS,s),tS.length=0}return eS.length=0,s.cacheKey}get isToneMappingState(){return!this.renderer.getRenderTarget()}updateBackground(e){const t=this.get(e),r=e.background;if(r){const s=0===e.backgroundBlurriness&&t.backgroundBlurriness>0||e.backgroundBlurriness>0&&0===t.backgroundBlurriness;if(t.background!==r||s){const i=this.getCacheNode("background",r,()=>{if(!0===r.isCubeTexture||r.mapping===oe||r.mapping===ue||r.mapping===Se){if(e.backgroundBlurriness>0||r.mapping===Se)return mf(r);{let e;return e=!0===r.isCubeTexture?hc(r):Pl(r),hg(e)}}if(!0===r.isTexture)return Pl(r,Hl.flipY()).setUpdateMatrix(!0);!0!==r.isColor&&o("WebGPUNodes: Unsupported background configuration.",r)},s);t.backgroundNode=i,t.background=r,t.backgroundBlurriness=e.backgroundBlurriness}}else t.backgroundNode&&(delete t.backgroundNode,delete t.background)}getCacheNode(e,t,r,s=!1){const i=this.cacheLib[e]||(this.cacheLib[e]=new WeakMap);let n=i.get(t);return(void 0===n||s)&&(n=r(),i.set(t,n)),n}updateFog(e){const t=this.get(e),r=e.fog;if(r){if(t.fog!==r){const e=this.getCacheNode("fog",r,()=>{if(r.isFogExp2){const e=mc("color","color",r).setGroup(fa),t=mc("density","float",r).setGroup(fa);return aT(e,nT(t))}if(r.isFog){const e=mc("color","color",r).setGroup(fa),t=mc("near","float",r).setGroup(fa),s=mc("far","float",r).setGroup(fa);return aT(e,iT(t,s))}o("Renderer: Unsupported fog configuration.",r)});t.fogNode=e,t.fog=r}}else delete t.fogNode,delete t.fog}updateEnvironment(e){const t=this.get(e),r=e.environment;if(r){if(t.environment!==r){const e=this.getCacheNode("environment",r,()=>!0===r.isCubeTexture?hc(r):!0===r.isTexture?Pl(r):void o("Nodes: Unsupported environment configuration.",r));t.environmentNode=e,t.environment=r}}else t.environmentNode&&(delete t.environmentNode,delete t.environment)}getNodeFrame(e=this.renderer,t=null,r=null,s=null,i=null){const n=this.nodeFrame;return n.renderer=e,n.scene=t,n.object=r,n.camera=s,n.material=i,n}getNodeFrameForRender(e){return this.getNodeFrame(e.renderer,e.scene,e.object,e.camera,e.material)}getOutputCacheKey(){const e=this.renderer;return e.toneMapping+","+e.currentColorSpace+","+e.xr.isPresenting}hasOutputChange(e){return JN.get(e)!==this.getOutputCacheKey()}getOutputNode(e){const t=this.renderer,r=this.getOutputCacheKey(),s=e.isArrayTexture?fx(e,Tn(Hl,kl("gl_ViewID_OVR"))).renderOutput(t.toneMapping,t.currentColorSpace):Pl(e,Hl).renderOutput(t.toneMapping,t.currentColorSpace);return JN.set(e,r),s}updateBefore(e){const t=e.getNodeBuilderState();for(const r of t.updateBeforeNodes)this.getNodeFrameForRender(e).updateBeforeNode(r)}updateAfter(e){const t=e.getNodeBuilderState();for(const r of t.updateAfterNodes)this.getNodeFrameForRender(e).updateAfterNode(r)}updateForCompute(e){const t=this.getNodeFrame(),r=this.getForCompute(e);for(const e of r.updateNodes)t.updateNode(e)}updateForRender(e){const t=this.getNodeFrameForRender(e),r=e.getNodeBuilderState();for(const e of r.updateNodes)t.updateNode(e)}needsRefresh(e){const t=this.getNodeFrameForRender(e);return e.getMonitor().needsRefresh(e,t)}dispose(){super.dispose(),this.nodeFrame=new LN,this.nodeBuilderCache=new Map,this.cacheLib={}}}const sS=new Ge;class iS{constructor(e=null){this.version=0,this.clipIntersection=null,this.cacheKey="",this.shadowPass=!1,this.viewNormalMatrix=new n,this.clippingGroupContexts=new WeakMap,this.intersectionPlanes=[],this.unionPlanes=[],this.parentVersion=null,null!==e&&(this.viewNormalMatrix=e.viewNormalMatrix,this.clippingGroupContexts=e.clippingGroupContexts,this.shadowPass=e.shadowPass,this.viewMatrix=e.viewMatrix)}projectPlanes(e,t,r){const s=e.length;for(let i=0;i0,alpha:!0,depth:t.depth,stencil:t.stencil,framebufferScaleFactor:this.getFramebufferScaleFactor()},i=new XRWebGLLayer(e,s,r);this._glBaseLayer=i,e.updateRenderState({baseLayer:i}),t.setPixelRatio(1),t._setXRLayerSize(i.framebufferWidth,i.framebufferHeight),this._xrRenderTarget=new hS(i.framebufferWidth,i.framebufferHeight,{format:Ne,type:ke,colorSpace:t.outputColorSpace,stencilBuffer:t.stencil,resolveDepthBuffer:!1===i.ignoreDepthValues,resolveStencilBuffer:!1===i.ignoreDepthValues}),this._xrRenderTarget._isOpaqueFramebuffer=!0,this._referenceSpace=await e.requestReferenceSpace(this.getReferenceSpaceType())}this.setFoveation(this.getFoveation()),t._animation.setAnimationLoop(this._onAnimationFrame),t._animation.setContext(e),t._animation.start(),this.isPresenting=!0,this.dispatchEvent({type:"sessionstart"})}}updateCamera(e){const t=this._session;if(null===t)return;const r=e.near,s=e.far,i=this._cameraXR,n=this._cameraL,a=this._cameraR;i.near=a.near=n.near=r,i.far=a.far=n.far=s,i.isMultiViewCamera=this._useMultiview,this._currentDepthNear===i.near&&this._currentDepthFar===i.far||(t.updateRenderState({depthNear:i.near,depthFar:i.far}),this._currentDepthNear=i.near,this._currentDepthFar=i.far),i.layers.mask=6|e.layers.mask,n.layers.mask=3&i.layers.mask,a.layers.mask=5&i.layers.mask;const o=e.parent,u=i.cameras;fS(i,o);for(let e=0;e=0&&(r[n]=null,t[n].disconnect(i))}for(let s=0;s=r.length){r.push(i),n=e;break}if(null===r[e]){r[e]=i,n=e;break}}if(-1===n)break}const a=t[n];a&&a.connect(i)}}function TS(e){return"quad"===e.type?this._glBinding.createQuadLayer({transform:new XRRigidTransform(e.translation,e.quaternion),width:e.width/2,height:e.height/2,space:this._referenceSpace,viewPixelWidth:e.pixelwidth,viewPixelHeight:e.pixelheight,clearOnAccess:!1}):this._glBinding.createCylinderLayer({transform:new XRRigidTransform(e.translation,e.quaternion),radius:e.radius,centralAngle:e.centralAngle,aspectRatio:e.aspectRatio,space:this._referenceSpace,viewPixelWidth:e.pixelwidth,viewPixelHeight:e.pixelheight,clearOnAccess:!1})}function _S(e,t){if(void 0===t)return;const r=this._cameraXR,i=this._renderer,n=i.backend,a=this._glBaseLayer,o=this.getReferenceSpace(),u=t.getViewerPose(o);if(this._xrFrame=t,null!==u){const e=u.views;null!==this._glBaseLayer&&n.setXRTarget(a.framebuffer);let t=!1;e.length!==r.cameras.length&&(r.cameras.length=0,t=!0);for(let i=0;i{await this.compileAsync(e,t);const s=this._renderLists.get(e,t),i=this._renderContexts.get(e,t,this._renderTarget,this._mrt),n=e.overrideMaterial||r.material,a=this._objects.get(r,n,e,t,s.lightsNode,i,i.clippingContext),{fragmentShader:o,vertexShader:u}=a.getNodeBuilderState();return{fragmentShader:o,vertexShader:u}}}}async init(){return null!==this._initPromise||(this._initPromise=new Promise(async(e,t)=>{let r=this.backend;try{await r.init(this)}catch(e){if(null===this._getFallback)return void t(e);try{this.backend=r=this._getFallback(e),await r.init(this)}catch(e){return void t(e)}}this._nodes=new rS(this,r),this._animation=new Kf(this,this._nodes,this.info),this._attributes=new oy(r),this._background=new Qv(this,this._nodes),this._geometries=new dy(this._attributes,this.info),this._textures=new Py(this,r,this.info),this._pipelines=new yy(r,this._nodes),this._bindings=new by(r,this._nodes,this._textures,this._attributes,this._pipelines,this.info),this._objects=new ey(this,this._nodes,this._geometries,this._pipelines,this._bindings,this.info),this._renderLists=new Sy(this.lighting),this._bundles=new oS,this._renderContexts=new By,this._animation.start(),this._initialized=!0,this._inspector.init(),e(this)})),this._initPromise}get domElement(){return this._canvasTarget.domElement}get coordinateSystem(){return this.backend.coordinateSystem}async compileAsync(e,t,r=null){if(!0===this._isDeviceLost)return;!1===this._initialized&&await this.init();const s=this._nodes.nodeFrame,i=s.renderId,n=this._currentRenderContext,a=this._currentRenderObjectFunction,o=this._compilationPromises,u=!0===e.isScene?e:NS;null===r&&(r=e);const l=this._renderTarget,d=this._renderContexts.get(r,t,l,this._mrt),c=this._activeMipmapLevel,h=[];this._currentRenderContext=d,this._currentRenderObjectFunction=this.renderObject,this._handleObjectFunction=this._createObjectPipeline,this._compilationPromises=h,s.renderId++,s.update(),d.depth=this.depth,d.stencil=this.stencil,d.clippingContext||(d.clippingContext=new iS),d.clippingContext.updateGlobal(u,t),u.onBeforeRender(this,e,t,l);const p=this._renderLists.get(e,t);if(p.begin(),this._projectObject(e,t,0,p,d.clippingContext),r!==e&&r.traverseVisible(function(e){e.isLight&&e.layers.test(t.layers)&&p.pushLight(e)}),p.finish(),null!==l){this._textures.updateRenderTarget(l,c);const e=this._textures.get(l);d.textures=e.textures,d.depthTexture=e.depthTexture}else d.textures=null,d.depthTexture=null;this._background.update(u,p,d);const g=p.opaque,m=p.transparent,f=p.transparentDoublePass,y=p.lightsNode;!0===this.opaque&&g.length>0&&this._renderObjects(g,t,u,y),!0===this.transparent&&m.length>0&&this._renderTransparents(m,f,t,u,y),s.renderId=i,this._currentRenderContext=n,this._currentRenderObjectFunction=a,this._compilationPromises=o,this._handleObjectFunction=this._renderObjectDirect,await Promise.all(h)}async renderAsync(e,t){v('Renderer: "renderAsync()" has been deprecated. Use "render()" and "await renderer.init();" when creating the renderer.'),await this.init(),this.render(e,t)}async waitForGPU(){o("Renderer: waitForGPU() has been removed. Read https://github.com/mrdoob/three.js/issues/32012 for more information.")}set inspector(e){null!==this._inspector&&this._inspector.setRenderer(null),this._inspector=e,this._inspector.setRenderer(this)}get inspector(){return this._inspector}set highPrecision(e){const t=this.contextNode.value;!0===e?(t.modelViewMatrix=wd,t.modelNormalViewMatrix=Cd):this.highPrecision&&(delete t.modelViewMatrix,delete t.modelNormalViewMatrix)}get highPrecision(){const e=this.contextNode.value;return e.modelViewMatrix===wd&&e.modelNormalViewMatrix===Cd}setMRT(e){return this._mrt=e,this}getMRT(){return this._mrt}getColorBufferType(){return this._colorBufferType}_onDeviceLost(e){let t=`THREE.WebGPURenderer: ${e.api} Device Lost:\n\nMessage: ${e.message}`;e.reason&&(t+=`\nReason: ${e.reason}`),o(t),this._isDeviceLost=!0}_renderBundle(e,t,r){const{bundleGroup:s,camera:i,renderList:n}=e,a=this._currentRenderContext,o=this._bundles.get(s,i),u=this.backend.get(o);void 0===u.renderContexts&&(u.renderContexts=new Set);const l=s.version!==u.version,d=!1===u.renderContexts.has(a)||l;if(u.renderContexts.add(a),d){this.backend.beginBundle(a),(void 0===u.renderObjects||l)&&(u.renderObjects=[]),this._currentRenderBundle=o;const{transparentDoublePass:e,transparent:d,opaque:c}=n;!0===this.opaque&&c.length>0&&this._renderObjects(c,i,t,r),!0===this.transparent&&d.length>0&&this._renderTransparents(d,e,i,t,r),this._currentRenderBundle=null,this.backend.finishBundle(a,o),u.version=s.version}else{const{renderObjects:e}=u;for(let t=0,r=e.length;t>=c,p.viewportValue.height>>=c,p.viewportValue.minDepth=T,p.viewportValue.maxDepth=_,p.viewport=!1===p.viewportValue.equals(AS),p.scissorValue.copy(b).multiplyScalar(x).floor(),p.scissor=f._scissorTest&&!1===p.scissorValue.equals(AS),p.scissorValue.width>>=c,p.scissorValue.height>>=c,p.clippingContext||(p.clippingContext=new iS),p.clippingContext.updateGlobal(u,t),u.onBeforeRender(this,e,t,h);const v=t.isArrayCamera?ES:RS;t.isArrayCamera||(wS.multiplyMatrices(t.projectionMatrix,t.matrixWorldInverse),v.setFromProjectionMatrix(wS,t.coordinateSystem,t.reversedDepth));const N=this._renderLists.get(e,t);if(N.begin(),this._projectObject(e,t,0,N,p.clippingContext),N.finish(),!0===this.sortObjects&&N.sort(this._opaqueSort,this._transparentSort),null!==h){this._textures.updateRenderTarget(h,c);const e=this._textures.get(h);p.textures=e.textures,p.depthTexture=e.depthTexture,p.width=e.width,p.height=e.height,p.renderTarget=h,p.depth=h.depthBuffer,p.stencil=h.stencilBuffer}else p.textures=null,p.depthTexture=null,p.width=SS.width,p.height=SS.height,p.depth=this.depth,p.stencil=this.stencil;p.width>>=c,p.height>>=c,p.activeCubeFace=d,p.activeMipmapLevel=c,p.occlusionQueryCount=N.occlusionQueryCount,p.scissorValue.max(CS.set(0,0,0,0)),p.scissorValue.x+p.scissorValue.width>p.width&&(p.scissorValue.width=Math.max(p.width-p.scissorValue.x,0)),p.scissorValue.y+p.scissorValue.height>p.height&&(p.scissorValue.height=Math.max(p.height-p.scissorValue.y,0)),this._background.update(u,N,p),p.camera=t,this.backend.beginRender(p);const{bundles:S,lightsNode:A,transparentDoublePass:R,transparent:E,opaque:w}=N;return S.length>0&&this._renderBundles(S,u,A),!0===this.opaque&&w.length>0&&this._renderObjects(w,t,u,A),!0===this.transparent&&E.length>0&&this._renderTransparents(E,R,t,u,A),this.backend.finishRender(p),i.renderId=n,this._currentRenderContext=a,this._currentRenderObjectFunction=o,null!==s&&(this.setRenderTarget(l,d,c),this._renderOutput(h)),u.onAfterRender(this,e,t,h),this.inspector.finishRender(this.backend.getTimestampUID(p)),p}_setXRLayerSize(e,t){this._canvasTarget._width=e,this._canvasTarget._height=t,this.setViewport(0,0,e,t)}_renderOutput(e){const t=this._quad;this._nodes.hasOutputChange(e.texture)&&(t.material.fragmentNode=this._nodes.getOutputNode(e.texture),t.material.needsUpdate=!0);const r=this.autoClear,s=this.xr.enabled;this.autoClear=!1,this.xr.enabled=!1,this._renderScene(t,t.camera,!1),this.autoClear=r,this.xr.enabled=s}getMaxAnisotropy(){return this.backend.getMaxAnisotropy()}getActiveCubeFace(){return this._activeCubeFace}getActiveMipmapLevel(){return this._activeMipmapLevel}async setAnimationLoop(e){!1===this._initialized&&await this.init(),this._animation.setAnimationLoop(e)}getAnimationLoop(){return this._animation.getAnimationLoop()}async getArrayBufferAsync(e){return await this.backend.getArrayBufferAsync(e)}getContext(){return this.backend.getContext()}getPixelRatio(){return this._canvasTarget.getPixelRatio()}getDrawingBufferSize(e){return this._canvasTarget.getDrawingBufferSize(e)}getSize(e){return this._canvasTarget.getSize(e)}setPixelRatio(e=1){this._canvasTarget.setPixelRatio(e)}setDrawingBufferSize(e,t,r){this.xr&&this.xr.isPresenting||this._canvasTarget.setDrawingBufferSize(e,t,r)}setSize(e,t,r=!0){this.xr&&this.xr.isPresenting||this._canvasTarget.setSize(e,t,r)}setOpaqueSort(e){this._opaqueSort=e}setTransparentSort(e){this._transparentSort=e}getScissor(e){return this._canvasTarget.getScissor(e)}setScissor(e,t,r,s){this._canvasTarget.setScissor(e,t,r,s)}getScissorTest(){return this._canvasTarget.getScissorTest()}setScissorTest(e){this._canvasTarget.setScissorTest(e),this.backend.setScissorTest(e)}getViewport(e){return this._canvasTarget.getViewport(e)}setViewport(e,t,r,s,i=0,n=1){this._canvasTarget.setViewport(e,t,r,s,i,n)}getClearColor(e){return e.copy(this._clearColor)}setClearColor(e,t=1){this._clearColor.set(e),this._clearColor.a=t}getClearAlpha(){return this._clearColor.a}setClearAlpha(e){this._clearColor.a=e}getClearDepth(){return this._clearDepth}setClearDepth(e){this._clearDepth=e}getClearStencil(){return this._clearStencil}setClearStencil(e){this._clearStencil=e}isOccluded(e){const t=this._currentRenderContext;return t&&this.backend.isOccluded(t,e)}clear(e=!0,t=!0,r=!0){if(!1===this._initialized)throw new Error('Renderer: .clear() called before the backend is initialized. Use "await renderer.init();" before before using this method.');const s=this._renderTarget||this._getFrameBufferTarget();let i=null;if(null!==s){this._textures.updateRenderTarget(s);const e=this._textures.get(s);i=this._renderContexts.getForClear(s),i.textures=e.textures,i.depthTexture=e.depthTexture,i.width=e.width,i.height=e.height,i.renderTarget=s,i.depth=s.depthBuffer,i.stencil=s.stencilBuffer,i.clearColorValue=this.backend.getClearColor(),i.activeCubeFace=this.getActiveCubeFace(),i.activeMipmapLevel=this.getActiveMipmapLevel()}this.backend.clear(e,t,r,i),null!==s&&null===this._renderTarget&&this._renderOutput(s)}clearColor(){this.clear(!0,!1,!1)}clearDepth(){this.clear(!1,!0,!1)}clearStencil(){this.clear(!1,!1,!0)}async clearAsync(e=!0,t=!0,r=!0){v('Renderer: "clearAsync()" has been deprecated. Use "clear()" and "await renderer.init();" when creating the renderer.'),await this.init(),this.clear(e,t,r)}async clearColorAsync(){v('Renderer: "clearColorAsync()" has been deprecated. Use "clearColor()" and "await renderer.init();" when creating the renderer.'),this.clear(!0,!1,!1)}async clearDepthAsync(){v('Renderer: "clearDepthAsync()" has been deprecated. Use "clearDepth()" and "await renderer.init();" when creating the renderer.'),this.clear(!1,!0,!1)}async clearStencilAsync(){v('Renderer: "clearStencilAsync()" has been deprecated. Use "clearStencil()" and "await renderer.init();" when creating the renderer.'),this.clear(!1,!1,!0)}get needsFrameBufferTarget(){const e=this.currentToneMapping!==m,t=this.currentColorSpace!==p.workingColorSpace;return e||t}get samples(){return this._samples}get currentSamples(){let e=this._samples;return null!==this._renderTarget?e=this._renderTarget.samples:this.needsFrameBufferTarget&&(e=0),e}get currentToneMapping(){return this.isOutputTarget?this.toneMapping:m}get currentColorSpace(){return this.isOutputTarget?this.outputColorSpace:p.workingColorSpace}get isOutputTarget(){return this._renderTarget===this._outputRenderTarget||null===this._renderTarget}dispose(){!0===this._initialized&&(this.info.dispose(),this.backend.dispose(),this._animation.dispose(),this._objects.dispose(),this._geometries.dispose(),this._pipelines.dispose(),this._nodes.dispose(),this._bindings.dispose(),this._renderLists.dispose(),this._renderContexts.dispose(),this._textures.dispose(),null!==this._frameBufferTarget&&this._frameBufferTarget.dispose(),Object.values(this.backend.timestampQueryPool).forEach(e=>{null!==e&&e.dispose()})),this.setRenderTarget(null),this.setAnimationLoop(null)}setRenderTarget(e,t=0,r=0){this._renderTarget=e,this._activeCubeFace=t,this._activeMipmapLevel=r}getRenderTarget(){return this._renderTarget}setOutputRenderTarget(e){this._outputRenderTarget=e}getOutputRenderTarget(){return this._outputRenderTarget}setCanvasTarget(e){this._canvasTarget.removeEventListener("resize",this._onCanvasTargetResize),this._canvasTarget=e,this._canvasTarget.addEventListener("resize",this._onCanvasTargetResize)}getCanvasTarget(){return this._canvasTarget}_resetXRState(){this.backend.setXRTarget(null),this.setOutputRenderTarget(null),this.setRenderTarget(null),this._frameBufferTarget.dispose(),this._frameBufferTarget=null}setRenderObjectFunction(e){this._renderObjectFunction=e}getRenderObjectFunction(){return this._renderObjectFunction}compute(e,t=null){if(!0===this._isDeviceLost)return;if(!1===this._initialized)return d("Renderer: .compute() called before the backend is initialized. Try using .computeAsync() instead."),this.computeAsync(e,t);const r=this._nodes.nodeFrame,s=r.renderId;this.info.calls++,this.info.compute.calls++,this.info.compute.frameCalls++,r.renderId=this.info.calls,this.backend.updateTimeStampUID(e),this.inspector.beginCompute(this.backend.getTimestampUID(e),e);const i=this.backend,n=this._pipelines,a=this._bindings,o=this._nodes,u=Array.isArray(e)?e:[e];if(void 0===u[0]||!0!==u[0].isComputeNode)throw new Error("THREE.Renderer: .compute() expects a ComputeNode.");i.beginCompute(e);for(const r of u){if(!1===n.has(r)){const e=()=>{r.removeEventListener("dispose",e),n.delete(r),a.deleteForCompute(r),o.delete(r)};r.addEventListener("dispose",e);const t=r.onInitFunction;null!==t&&t.call(r,{renderer:this})}o.updateForCompute(r),a.updateForCompute(r);const s=a.getForCompute(r),u=n.getForCompute(r,s);i.compute(e,r,s,u,t)}i.finishCompute(e),r.renderId=s,this.inspector.finishCompute(this.backend.getTimestampUID(e))}async computeAsync(e,t=null){!1===this._initialized&&await this.init(),this.compute(e,t)}async hasFeatureAsync(e){return v('Renderer: "hasFeatureAsync()" has been deprecated. Use "hasFeature()" and "await renderer.init();" when creating the renderer.'),await this.init(),this.hasFeature(e)}async resolveTimestampsAsync(e="render"){return!1===this._initialized&&await this.init(),this.backend.resolveTimestampsAsync(e)}hasFeature(e){if(!1===this._initialized)throw new Error('Renderer: .hasFeature() called before the backend is initialized. Use "await renderer.init();" before before using this method.');return this.backend.hasFeature(e)}hasInitialized(){return this._initialized}async initTextureAsync(e){v('Renderer: "initTextureAsync()" has been deprecated. Use "initTexture()" and "await renderer.init();" when creating the renderer.'),await this.init(),this.initTexture(e)}initTexture(e){if(!1===this._initialized)throw new Error('Renderer: .initTexture() called before the backend is initialized. Use "await renderer.init();" before before using this method.');this._textures.updateTexture(e)}copyFramebufferToTexture(e,t=null){if(null!==t)if(t.isVector2)t=CS.set(t.x,t.y,e.image.width,e.image.height).floor();else{if(!t.isVector4)return void o("Renderer.copyFramebufferToTexture: Invalid rectangle.");t=CS.copy(t).floor()}else t=CS.set(0,0,e.image.width,e.image.height);let r,s=this._currentRenderContext;null!==s?r=s.renderTarget:(r=this._renderTarget||this._getFrameBufferTarget(),null!==r&&(this._textures.updateRenderTarget(r),s=this._textures.get(r))),this._textures.updateTexture(e,{renderTarget:r}),this.backend.copyFramebufferToTexture(e,s,t),this._inspector.copyFramebufferToTexture(e)}copyTextureToTexture(e,t,r=null,s=null,i=0,n=0){this._textures.updateTexture(e),this._textures.updateTexture(t),this.backend.copyTextureToTexture(e,t,r,s,i,n),this._inspector.copyTextureToTexture(e,t)}async readRenderTargetPixelsAsync(e,t,r,s,i,n=0,a=0){return this.backend.copyTextureToBuffer(e.textures[n],t,r,s,i,a)}_projectObject(e,t,r,s,i){if(!1===e.visible)return;if(e.layers.test(t.layers))if(e.isGroup)r=e.renderOrder,e.isClippingGroup&&e.enabled&&(i=i.getGroupContext(e));else if(e.isLOD)!0===e.autoUpdate&&e.update(t);else if(e.isLight)s.pushLight(e);else if(e.isSprite){const n=t.isArrayCamera?ES:RS;if(!e.frustumCulled||n.intersectsSprite(e,t)){!0===this.sortObjects&&CS.setFromMatrixPosition(e.matrixWorld).applyMatrix4(wS);const{geometry:t,material:n}=e;n.visible&&s.push(e,t,n,r,CS.z,null,i)}}else if(e.isLineLoop)o("Renderer: Objects of type THREE.LineLoop are not supported. Please use THREE.Line or THREE.LineSegments.");else if(e.isMesh||e.isLine||e.isPoints){const n=t.isArrayCamera?ES:RS;if(!e.frustumCulled||n.intersectsObject(e,t)){const{geometry:t,material:n}=e;if(!0===this.sortObjects&&(null===t.boundingSphere&&t.computeBoundingSphere(),CS.copy(t.boundingSphere.center).applyMatrix4(e.matrixWorld).applyMatrix4(wS)),Array.isArray(n)){const a=t.groups;for(let o=0,u=a.length;o0){for(const{material:e}of t)e.side=w;this._renderObjects(t,r,s,i,"backSide");for(const{material:e}of t)e.side=it;this._renderObjects(e,r,s,i);for(const{material:e}of t)e.side=C}else this._renderObjects(e,r,s,i)}_renderObjects(e,t,r,s,i=null){for(let n=0,a=e.length;n0||i.transmissionNode&&i.transmissionNode.isNode||i.backdropNode&&i.backdropNode.isNode,e.isShadowPassMaterial){const{colorNode:t,depthNode:r,positionNode:s}=this._getShadowNodes(i);e.side=null===i.shadowSide?i.side:i.shadowSide,null!==t&&(e.colorNode=t),null!==r&&(e.depthNode=r),null!==s&&(e.positionNode=s)}i=e}!0===i.transparent&&i.side===C&&!1===i.forceSinglePass?(i.side=w,this._handleObjectFunction(e,i,t,r,a,n,o,"backSide"),i.side=it,this._handleObjectFunction(e,i,t,r,a,n,o,u),i.side=C):this._handleObjectFunction(e,i,t,r,a,n,o,u),p&&(t.overrideMaterial.colorNode=l,t.overrideMaterial.depthNode=d,t.overrideMaterial.positionNode=c,t.overrideMaterial.side=h),e.onAfterRender(this,t,r,s,i,n)}_renderObjectDirect(e,t,r,s,i,n,a,o){const u=this._objects.get(e,t,r,s,i,this._currentRenderContext,a,o);u.drawRange=e.geometry.drawRange,u.group=n;const l=this._nodes.needsRefresh(u);if(l&&(this._nodes.updateBefore(u),this._geometries.updateForRender(u),this._nodes.updateForRender(u),this._bindings.updateForRender(u)),this._pipelines.updateForRender(u),null!==this._currentRenderBundle){this.backend.get(this._currentRenderBundle).renderObjects.push(u),u.bundle=this._currentRenderBundle.bundleGroup}this.backend.draw(u,this.info),l&&this._nodes.updateAfter(u)}_createObjectPipeline(e,t,r,s,i,n,a,o){const u=this._objects.get(e,t,r,s,i,this._currentRenderContext,a,o);u.drawRange=e.geometry.drawRange,u.group=n,this._nodes.updateBefore(u),this._geometries.updateForRender(u),this._nodes.updateForRender(u),this._bindings.updateForRender(u),this._pipelines.getForRender(u,this._compilationPromises),this._nodes.updateAfter(u)}_onCanvasTargetResize(){this._initialized&&this.backend.updateSize()}get compile(){return this.compileAsync}}class BS{constructor(e=""){this.name=e,this.visibility=0}setVisibility(e){this.visibility|=e}getVisibility(){return this.visibility}clone(){return Object.assign(new this.constructor,this)}}class LS extends BS{constructor(e,t=null){super(e),this.isBuffer=!0,this.bytesPerElement=Float32Array.BYTES_PER_ELEMENT,this._buffer=t,this._updateRanges=[]}get updateRanges(){return this._updateRanges}addUpdateRange(e,t){this.updateRanges.push({start:e,count:t})}clearUpdateRanges(){this.updateRanges.length=0}get byteLength(){return(e=this._buffer.byteLength)+(ay-e%ay)%ay;var e}get buffer(){return this._buffer}update(){return!0}}class PS extends LS{constructor(e,t=null){super(e,t),this.isUniformBuffer=!0}}let FS=0;class DS extends PS{constructor(e,t){super("UniformBuffer_"+FS++,e?e.value:null),this.nodeUniform=e,this.groupNode=t,this.isNodeUniformBuffer=!0}set updateRanges(e){this.nodeUniform.updateRanges=e}get updateRanges(){return this.nodeUniform.updateRanges}addUpdateRange(e,t){this.nodeUniform.addUpdateRange(e,t)}clearUpdateRanges(){this.nodeUniform.clearUpdateRanges()}get buffer(){return this.nodeUniform.value}}class US extends PS{constructor(e){super(e),this.isUniformsGroup=!0,this._values=null,this.uniforms=[]}addUniform(e){return this.uniforms.push(e),this}removeUniform(e){const t=this.uniforms.indexOf(e);return-1!==t&&this.uniforms.splice(t,1),this}get values(){return null===this._values&&(this._values=Array.from(this.buffer)),this._values}get buffer(){let e=this._buffer;if(null===e){const t=this.byteLength;e=new Float32Array(new ArrayBuffer(t)),this._buffer=e}return e}get byteLength(){const e=this.bytesPerElement;let t=0;for(let r=0,s=this.uniforms.length;r{this.generation=null,this.version=0},this.texture=t,this.version=t?t.version:0,this.generation=null,this.samplerKey="",this.isSampler=!0}set texture(e){this._texture!==e&&(this._texture&&this._texture.removeEventListener("dispose",this._onTextureDispose),this._texture=e,this.generation=null,this.version=0,this._texture&&this._texture.addEventListener("dispose",this._onTextureDispose))}get texture(){return this._texture}update(){const{texture:e,version:t}=this;return t!==e.version&&(this.version=e.version,!0)}clone(){const e=super.clone();return e._texture=null,e._onTextureDispose=()=>{e.generation=null,e.version=0},e.texture=this.texture,e}}let kS=0;class GS extends VS{constructor(e,t){super(e,t),this.id=kS++,this.store=!1,this.mipLevel=0,this.isSampledTexture=!0}}class zS extends GS{constructor(e,t,r,s=null){super(e,t?t.value:null),this.textureNode=t,this.groupNode=r,this.access=s}update(){const{textureNode:e}=this;return this.texture!==e.value?(this.texture=e.value,!0):super.update()}}class $S extends zS{constructor(e,t,r,s=null){super(e,t,r,s),this.isSampledCubeTexture=!0}}class WS extends zS{constructor(e,t,r,s=null){super(e,t,r,s),this.isSampledTexture3D=!0}}const HS={bitcast_int_uint:new jx("uint tsl_bitcast_int_to_uint ( int x ) { return floatBitsToUint( intBitsToFloat ( x ) ); }"),bitcast_uint_int:new jx("uint tsl_bitcast_uint_to_int ( uint x ) { return floatBitsToInt( uintBitsToFloat ( x ) ); }")},jS={textureDimensions:"textureSize",equals:"equal",bitcast_float_int:"floatBitsToInt",bitcast_int_float:"intBitsToFloat",bitcast_uint_float:"uintBitsToFloat",bitcast_float_uint:"floatBitsToUint",bitcast_uint_int:"tsl_bitcast_uint_to_int",bitcast_int_uint:"tsl_bitcast_int_to_uint",floatpack_snorm_2x16:"packSnorm2x16",floatpack_unorm_2x16:"packUnorm2x16",floatpack_float16_2x16:"packHalf2x16",floatunpack_snorm_2x16:"unpackSnorm2x16",floatunpack_unorm_2x16:"unpackUnorm2x16",floatunpack_float16_2x16:"unpackHalf2x16"},qS={low:"lowp",medium:"mediump",high:"highp"},XS={swizzleAssign:!0,storageBuffer:!1},KS={perspective:"smooth",linear:"noperspective"},YS={centroid:"centroid"},QS="\nprecision highp float;\nprecision highp int;\nprecision highp sampler2D;\nprecision highp sampler3D;\nprecision highp samplerCube;\nprecision highp sampler2DArray;\n\nprecision highp usampler2D;\nprecision highp usampler3D;\nprecision highp usamplerCube;\nprecision highp usampler2DArray;\n\nprecision highp isampler2D;\nprecision highp isampler3D;\nprecision highp isamplerCube;\nprecision highp isampler2DArray;\n\nprecision lowp sampler2DShadow;\nprecision lowp sampler2DArrayShadow;\nprecision lowp samplerCubeShadow;\n";class ZS extends BN{constructor(e,t){super(e,t,new ZN),this.uniformGroups={},this.transforms=[],this.extensions={},this.builtins={vertex:[],fragment:[],compute:[]}}needsToWorkingColorSpace(e){return!0===e.isVideoTexture&&e.colorSpace!==T}_include(e){const t=HS[e];return t.build(this),this.addInclude(t),t}getMethod(e){return void 0!==HS[e]&&this._include(e),jS[e]||e}getBitcastMethod(e,t){return this.getMethod(`bitcast_${t}_${e}`)}getFloatPackingMethod(e){return this.getMethod(`floatpack_${e}_2x16`)}getFloatUnpackingMethod(e){return this.getMethod(`floatunpack_${e}_2x16`)}getTernary(e,t,r){return`${e} ? ${t} : ${r}`}getOutputStructName(){return""}buildFunctionCode(e){const t=e.layout,r=this.flowShaderNode(e),s=[];for(const e of t.inputs)s.push(this.getType(e.type)+" "+e.name);return`${this.getType(t.type)} ${t.name}( ${s.join(", ")} ) {\n\n\t${r.vars}\n\n${r.code}\n\treturn ${r.result};\n\n}`}setupPBO(e){const t=e.value;if(void 0===t.pbo){const e=t.array,r=t.count*t.itemSize,{itemSize:s}=t,i=t.array.constructor.name.toLowerCase().includes("int");let n=i?mt:ft;2===s?n=i?Tt:V:3===s?n=i?_t:vt:4===s&&(n=i?Nt:Ne);const a={Float32Array:H,Uint8Array:ke,Uint16Array:xt,Uint32Array:S,Int8Array:bt,Int16Array:yt,Int32Array:A,Uint8ClampedArray:ke},o=Math.pow(2,Math.ceil(Math.log2(Math.sqrt(r/s))));let u=Math.ceil(r/s/o);o*u*s0?s:"";t=`${e.name} {\n\t${r} ${i.name}[${n}];\n};\n`}else{t=`${this.getVectorType(i.type)} ${this.getPropertyName(i,e)};`,n=!0}const a=i.node.precision;if(null!==a&&(t=qS[a]+" "+t),n){t="\t"+t;const e=i.groupNode.name;(s[e]||(s[e]=[])).push(t)}else t="uniform "+t,r.push(t)}let i="";for(const t in s){const r=s[t];i+=this._getGLSLUniformStruct(e+"_"+t,r.join("\n"))+"\n"}return i+=r.join("\n"),i}getTypeFromAttribute(e){let t=super.getTypeFromAttribute(e);if(/^[iu]/.test(t)&&e.gpuType!==A){let r=e;e.isInterleavedBufferAttribute&&(r=e.data);const s=r.array;!1==(s instanceof Uint32Array||s instanceof Int32Array)&&(t=t.slice(1))}return t}getAttributes(e){let t="";if("vertex"===e||"compute"===e){const e=this.getAttributesArray();let r=0;for(const s of e)t+=`layout( location = ${r++} ) in ${s.type} ${s.name};\n`}return t}getStructMembers(e){const t=[];for(const r of e.members)t.push(`\t${r.type} ${r.name};`);return t.join("\n")}getStructs(e){const t=[],r=this.structs[e],s=[];for(const e of r)if(e.output)for(const t of e.members)s.push(`layout( location = ${t.index} ) out ${t.type} ${t.name};`);else{let r="struct "+e.name+" {\n";r+=this.getStructMembers(e),r+="\n};\n",t.push(r)}return 0===s.length&&s.push("layout( location = 0 ) out vec4 fragColor;"),"\n"+s.join("\n")+"\n\n"+t.join("\n")}getVaryings(e){let t="";const r=this.varyings;if("vertex"===e||"compute"===e)for(const s of r){"compute"===e&&(s.needsInterpolation=!0);const r=this.getType(s.type);if(s.needsInterpolation)if(s.interpolationType){t+=`${KS[s.interpolationType]||s.interpolationType} ${YS[s.interpolationSampling]||""} out ${r} ${s.name};\n`}else{t+=`${r.includes("int")||r.includes("uv")||r.includes("iv")?"flat ":""}out ${r} ${s.name};\n`}else t+=`${r} ${s.name};\n`}else if("fragment"===e)for(const e of r)if(e.needsInterpolation){const r=this.getType(e.type);if(e.interpolationType){t+=`${KS[e.interpolationType]||e.interpolationType} ${YS[e.interpolationSampling]||""} in ${r} ${e.name};\n`}else{t+=`${r.includes("int")||r.includes("uv")||r.includes("iv")?"flat ":""}in ${r} ${e.name};\n`}}for(const r of this.builtins[e])t+=`${r};\n`;return t}getVertexIndex(){return"uint( gl_VertexID )"}getInstanceIndex(){return"uint( gl_InstanceID )"}getInvocationLocalIndex(){return`uint( gl_InstanceID ) % ${this.object.workgroupSize.reduce((e,t)=>e*t,1)}u`}getSubgroupSize(){o("GLSLNodeBuilder: WebGLBackend does not support the subgroupSize node")}getInvocationSubgroupIndex(){o("GLSLNodeBuilder: WebGLBackend does not support the invocationSubgroupIndex node")}getSubgroupIndex(){o("GLSLNodeBuilder: WebGLBackend does not support the subgroupIndex node")}getDrawIndex(){return this.renderer.backend.extensions.has("WEBGL_multi_draw")?"uint( gl_DrawID )":null}getFrontFacing(){return"gl_FrontFacing"}getFragCoord(){return"gl_FragCoord.xy"}getFragDepth(){return"gl_FragDepth"}enableExtension(e,t,r=this.shaderStage){const s=this.extensions[r]||(this.extensions[r]=new Map);!1===s.has(e)&&s.set(e,{name:e,behavior:t})}getExtensions(e){const t=[];if("vertex"===e){const t=this.renderer.backend.extensions;this.object.isBatchedMesh&&t.has("WEBGL_multi_draw")&&this.enableExtension("GL_ANGLE_multi_draw","require",e)}const r=this.extensions[e];if(void 0!==r)for(const{name:e,behavior:s}of r.values())t.push(`#extension ${e} : ${s}`);return t.join("\n")}getClipDistance(){return"gl_ClipDistance"}isAvailable(e){let t=XS[e];if(void 0===t){let r;switch(t=!1,e){case"float32Filterable":r="OES_texture_float_linear";break;case"clipDistance":r="WEBGL_clip_cull_distance"}if(void 0!==r){const e=this.renderer.backend.extensions;e.has(r)&&(e.get(r),t=!0)}XS[e]=t}return t}isFlipY(){return!0}enableHardwareClipping(e){this.enableExtension("GL_ANGLE_clip_cull_distance","require"),this.builtins.vertex.push(`out float gl_ClipDistance[ ${e} ]`)}enableMultiview(){this.enableExtension("GL_OVR_multiview2","require","fragment"),this.enableExtension("GL_OVR_multiview2","require","vertex"),this.builtins.vertex.push("layout(num_views = 2) in")}registerTransform(e,t){this.transforms.push({varyingName:e,attributeNode:t})}getTransforms(){const e=this.transforms;let t="";for(let r=0;r0&&(r+="\n"),r+=`\t// flow -> ${n}\n\t`),r+=`${s.code}\n\t`,e===i&&"compute"!==t&&(r+="// result\n\t","vertex"===t?(r+="gl_Position = ",r+=`${s.result};`):"fragment"===t&&(e.outputNode.isOutputStructNode||(r+="fragColor = ",r+=`${s.result};`)))}const n=e[t];n.extensions=this.getExtensions(t),n.uniforms=this.getUniforms(t),n.attributes=this.getAttributes(t),n.varyings=this.getVaryings(t),n.vars=this.getVars(t),n.structs=this.getStructs(t),n.codes=this.getCodes(t),n.transforms=this.getTransforms(t),n.flow=r}null!==this.material?(this.vertexShader=this._getGLSLVertexCode(e.vertex),this.fragmentShader=this._getGLSLFragmentCode(e.fragment)):this.computeShader=this._getGLSLVertexCode(e.compute)}getUniformFromNode(e,t,r,s=null){const i=super.getUniformFromNode(e,t,r,s),n=this.getDataFromNode(e,r,this.globalCache);let a=n.uniformGPU;if(void 0===a){const s=e.groupNode,o=s.name,u=this.getBindGroupArray(o,r);if("texture"===t)a=new zS(i.name,i.node,s),u.push(a);else if("cubeTexture"===t||"cubeDepthTexture"===t)a=new $S(i.name,i.node,s),u.push(a);else if("texture3D"===t)a=new WS(i.name,i.node,s),u.push(a);else if("buffer"===t){i.name=`buffer${e.id}`;const t=this.getSharedDataFromNode(e);let r=t.buffer;void 0===r&&(e.name=`NodeBuffer_${e.id}`,r=new DS(e,s),r.name=e.name,t.buffer=r),u.push(r),a=r}else{const e=this.uniformGroups[r]||(this.uniformGroups[r]={});let n=e[o];void 0===n&&(n=new OS(r+"_"+o,s),e[o]=n,u.push(n)),a=this.getNodeUniform(i,t),n.addUniform(a)}n.uniformGPU=a}return i}}let JS=null,eA=null;class tA{constructor(e={}){this.parameters=Object.assign({},e),this.data=new WeakMap,this.renderer=null,this.domElement=null,this.timestampQueryPool={[St.RENDER]:null,[St.COMPUTE]:null},this.trackTimestamp=!0===e.trackTimestamp}async init(e){this.renderer=e}get coordinateSystem(){}beginRender(){}finishRender(){}beginCompute(){}finishCompute(){}draw(){}compute(){}createProgram(){}destroyProgram(){}createBindings(){}updateBindings(){}updateBinding(){}createRenderPipeline(){}createComputePipeline(){}needsRenderUpdate(){}getRenderCacheKey(){}createNodeBuilder(){}updateSampler(){}createDefaultTexture(){}createTexture(){}updateTexture(){}generateMipmaps(){}destroyTexture(){}async copyTextureToBuffer(){}copyTextureToTexture(){}copyFramebufferToTexture(){}createAttribute(){}createIndexAttribute(){}createStorageAttribute(){}updateAttribute(){}destroyAttribute(){}getContext(){}updateSize(){}updateViewport(){}updateTimeStampUID(e){const t=this.get(e),r=this.renderer.info.frame;let s;s=!0===e.isComputeNode?"c:"+this.renderer.info.compute.frameCalls:"r:"+this.renderer.info.render.frameCalls,t.timestampUID=s+":"+e.id+":f"+r}getTimestampUID(e){return this.get(e).timestampUID}getTimestampFrames(e){const t=this.timestampQueryPool[e];return t?t.getTimestampFrames():[]}_getQueryPool(e){const t=e.startsWith("c:")?St.COMPUTE:St.RENDER;return this.timestampQueryPool[t]}getTimestamp(e){return this._getQueryPool(e).getTimestamp(e)}hasTimestamp(e){return this._getQueryPool(e).hasTimestamp(e)}isOccluded(){}async resolveTimestampsAsync(e="render"){if(!this.trackTimestamp)return void v("WebGPURenderer: Timestamp tracking is disabled.");const t=this.timestampQueryPool[e];if(!t)return;const r=await t.resolveQueriesAsync();return this.renderer.info[e].timestamp=r,r}async getArrayBufferAsync(){}async hasFeatureAsync(){}hasFeature(){}getMaxAnisotropy(){}getDrawingBufferSize(){return JS=JS||new t,this.renderer.getDrawingBufferSize(JS)}setScissorTest(){}getClearColor(){const e=this.renderer;return eA=eA||new Fy,e.getClearColor(eA),eA.getRGB(eA),eA}getDomElement(){let e=this.domElement;return null===e&&(e=void 0!==this.parameters.canvas?this.parameters.canvas:At(),"setAttribute"in e&&e.setAttribute("data-engine",`three.js r${tt} webgpu`),this.domElement=e),e}set(e,t){this.data.set(e,t)}get(e){let t=this.data.get(e);return void 0===t&&(t={},this.data.set(e,t)),t}has(e){return this.data.has(e)}deleteBindGroupData(){}delete(e){this.data.delete(e)}dispose(){}}let rA,sA,iA=0;class nA{constructor(e,t){this.buffers=[e.bufferGPU,t],this.type=e.type,this.bufferType=e.bufferType,this.pbo=e.pbo,this.byteLength=e.byteLength,this.bytesPerElement=e.BYTES_PER_ELEMENT,this.version=e.version,this.isInteger=e.isInteger,this.activeBufferIndex=0,this.baseId=e.id}get id(){return`${this.baseId}|${this.activeBufferIndex}`}get bufferGPU(){return this.buffers[this.activeBufferIndex]}get transformBuffer(){return this.buffers[1^this.activeBufferIndex]}switchBuffers(){this.activeBufferIndex^=1}}class aA{constructor(e){this.backend=e}createAttribute(e,t){const r=this.backend,{gl:s}=r,i=e.array,n=e.usage||s.STATIC_DRAW,a=e.isInterleavedBufferAttribute?e.data:e,o=r.get(a);let u,l=o.bufferGPU;if(void 0===l&&(l=this._createBuffer(s,t,i,n),o.bufferGPU=l,o.bufferType=t,o.version=a.version),i instanceof Float32Array)u=s.FLOAT;else if("undefined"!=typeof Float16Array&&i instanceof Float16Array)u=s.HALF_FLOAT;else if(i instanceof Uint16Array)u=e.isFloat16BufferAttribute?s.HALF_FLOAT:s.UNSIGNED_SHORT;else if(i instanceof Int16Array)u=s.SHORT;else if(i instanceof Uint32Array)u=s.UNSIGNED_INT;else if(i instanceof Int32Array)u=s.INT;else if(i instanceof Int8Array)u=s.BYTE;else if(i instanceof Uint8Array)u=s.UNSIGNED_BYTE;else{if(!(i instanceof Uint8ClampedArray))throw new Error("THREE.WebGLBackend: Unsupported buffer data format: "+i);u=s.UNSIGNED_BYTE}let d={bufferGPU:l,bufferType:t,type:u,byteLength:i.byteLength,bytesPerElement:i.BYTES_PER_ELEMENT,version:e.version,pbo:e.pbo,isInteger:u===s.INT||u===s.UNSIGNED_INT||e.gpuType===A,id:iA++};if(e.isStorageBufferAttribute||e.isStorageInstancedBufferAttribute){const e=this._createBuffer(s,t,i,n);d=new nA(d,e)}r.set(e,d)}updateAttribute(e){const t=this.backend,{gl:r}=t,s=e.array,i=e.isInterleavedBufferAttribute?e.data:e,n=t.get(i),a=n.bufferType,o=e.isInterleavedBufferAttribute?e.data.updateRanges:e.updateRanges;if(r.bindBuffer(a,n.bufferGPU),0===o.length)r.bufferSubData(a,0,s);else{for(let e=0,t=o.length;e0?this.enable(s.SAMPLE_ALPHA_TO_COVERAGE):this.disable(s.SAMPLE_ALPHA_TO_COVERAGE),r>0&&this.currentClippingPlanes!==r){const e=12288;for(let t=0;t<8;t++)t{!function i(){const n=e.clientWaitSync(t,e.SYNC_FLUSH_COMMANDS_BIT,0);if(n===e.WAIT_FAILED)return e.deleteSync(t),void s();n!==e.TIMEOUT_EXPIRED?(e.deleteSync(t),r()):requestAnimationFrame(i)}()})}}let lA,dA,cA,hA=!1;class pA{constructor(e){this.backend=e,this.gl=e.gl,this.extensions=e.extensions,this.defaultTextures={},this._srcFramebuffer=null,this._dstFramebuffer=null,!1===hA&&(this._init(),hA=!0)}_init(){const e=this.gl;lA={[Ur]:e.REPEAT,[ye]:e.CLAMP_TO_EDGE,[Dr]:e.MIRRORED_REPEAT},dA={[R]:e.NEAREST,[Ir]:e.NEAREST_MIPMAP_NEAREST,[Je]:e.NEAREST_MIPMAP_LINEAR,[ne]:e.LINEAR,[Ze]:e.LINEAR_MIPMAP_NEAREST,[q]:e.LINEAR_MIPMAP_LINEAR},cA={[Wr]:e.NEVER,[$r]:e.ALWAYS,[qe]:e.LESS,[zr]:e.LEQUAL,[Gr]:e.EQUAL,[kr]:e.GEQUAL,[Vr]:e.GREATER,[Or]:e.NOTEQUAL}}getGLTextureType(e){const{gl:t}=this;let r;return r=!0===e.isCubeTexture?t.TEXTURE_CUBE_MAP:!0===e.isArrayTexture||!0===e.isDataArrayTexture||!0===e.isCompressedArrayTexture?t.TEXTURE_2D_ARRAY:!0===e.isData3DTexture?t.TEXTURE_3D:t.TEXTURE_2D,r}getInternalFormat(e,t,r,s,i=!1){const{gl:n,extensions:a}=this;if(null!==e){if(void 0!==n[e])return n[e];d("WebGLBackend: Attempt to use non-existing WebGL internal format '"+e+"'")}let o=t;if(t===n.RED&&(r===n.FLOAT&&(o=n.R32F),r===n.HALF_FLOAT&&(o=n.R16F),r===n.UNSIGNED_BYTE&&(o=n.R8),r===n.UNSIGNED_SHORT&&(o=n.R16),r===n.UNSIGNED_INT&&(o=n.R32UI),r===n.BYTE&&(o=n.R8I),r===n.SHORT&&(o=n.R16I),r===n.INT&&(o=n.R32I)),t===n.RED_INTEGER&&(r===n.UNSIGNED_BYTE&&(o=n.R8UI),r===n.UNSIGNED_SHORT&&(o=n.R16UI),r===n.UNSIGNED_INT&&(o=n.R32UI),r===n.BYTE&&(o=n.R8I),r===n.SHORT&&(o=n.R16I),r===n.INT&&(o=n.R32I)),t===n.RG&&(r===n.FLOAT&&(o=n.RG32F),r===n.HALF_FLOAT&&(o=n.RG16F),r===n.UNSIGNED_BYTE&&(o=n.RG8),r===n.UNSIGNED_SHORT&&(o=n.RG16),r===n.UNSIGNED_INT&&(o=n.RG32UI),r===n.BYTE&&(o=n.RG8I),r===n.SHORT&&(o=n.RG16I),r===n.INT&&(o=n.RG32I)),t===n.RG_INTEGER&&(r===n.UNSIGNED_BYTE&&(o=n.RG8UI),r===n.UNSIGNED_SHORT&&(o=n.RG16UI),r===n.UNSIGNED_INT&&(o=n.RG32UI),r===n.BYTE&&(o=n.RG8I),r===n.SHORT&&(o=n.RG16I),r===n.INT&&(o=n.RG32I)),t===n.RGB){const e=i?Hr:p.getTransfer(s);r===n.FLOAT&&(o=n.RGB32F),r===n.HALF_FLOAT&&(o=n.RGB16F),r===n.UNSIGNED_BYTE&&(o=n.RGB8),r===n.UNSIGNED_SHORT&&(o=n.RGB16),r===n.UNSIGNED_INT&&(o=n.RGB32UI),r===n.BYTE&&(o=n.RGB8I),r===n.SHORT&&(o=n.RGB16I),r===n.INT&&(o=n.RGB32I),r===n.UNSIGNED_BYTE&&(o=e===g?n.SRGB8:n.RGB8),r===n.UNSIGNED_SHORT_5_6_5&&(o=n.RGB565),r===n.UNSIGNED_SHORT_5_5_5_1&&(o=n.RGB5_A1),r===n.UNSIGNED_SHORT_4_4_4_4&&(o=n.RGB4),r===n.UNSIGNED_INT_5_9_9_9_REV&&(o=n.RGB9_E5),r===n.UNSIGNED_INT_10F_11F_11F_REV&&(o=n.R11F_G11F_B10F)}if(t===n.RGB_INTEGER&&(r===n.UNSIGNED_BYTE&&(o=n.RGB8UI),r===n.UNSIGNED_SHORT&&(o=n.RGB16UI),r===n.UNSIGNED_INT&&(o=n.RGB32UI),r===n.BYTE&&(o=n.RGB8I),r===n.SHORT&&(o=n.RGB16I),r===n.INT&&(o=n.RGB32I)),t===n.RGBA){const e=i?Hr:p.getTransfer(s);r===n.FLOAT&&(o=n.RGBA32F),r===n.HALF_FLOAT&&(o=n.RGBA16F),r===n.UNSIGNED_BYTE&&(o=n.RGBA8),r===n.UNSIGNED_SHORT&&(o=n.RGBA16),r===n.UNSIGNED_INT&&(o=n.RGBA32UI),r===n.BYTE&&(o=n.RGBA8I),r===n.SHORT&&(o=n.RGBA16I),r===n.INT&&(o=n.RGBA32I),r===n.UNSIGNED_BYTE&&(o=e===g?n.SRGB8_ALPHA8:n.RGBA8),r===n.UNSIGNED_SHORT_4_4_4_4&&(o=n.RGBA4),r===n.UNSIGNED_SHORT_5_5_5_1&&(o=n.RGB5_A1)}return t===n.RGBA_INTEGER&&(r===n.UNSIGNED_BYTE&&(o=n.RGBA8UI),r===n.UNSIGNED_SHORT&&(o=n.RGBA16UI),r===n.UNSIGNED_INT&&(o=n.RGBA32UI),r===n.BYTE&&(o=n.RGBA8I),r===n.SHORT&&(o=n.RGBA16I),r===n.INT&&(o=n.RGBA32I)),t===n.DEPTH_COMPONENT&&(r===n.UNSIGNED_SHORT&&(o=n.DEPTH_COMPONENT16),r===n.UNSIGNED_INT&&(o=n.DEPTH_COMPONENT24),r===n.FLOAT&&(o=n.DEPTH_COMPONENT32F)),t===n.DEPTH_STENCIL&&r===n.UNSIGNED_INT_24_8&&(o=n.DEPTH24_STENCIL8),o!==n.R16F&&o!==n.R32F&&o!==n.RG16F&&o!==n.RG32F&&o!==n.RGBA16F&&o!==n.RGBA32F||a.get("EXT_color_buffer_float"),o}setTextureParameters(e,t){const{gl:r,extensions:s,backend:i}=this,n=p.getPrimaries(p.workingColorSpace),a=t.colorSpace===T?null:p.getPrimaries(t.colorSpace),o=t.colorSpace===T||n===a?r.NONE:r.BROWSER_DEFAULT_WEBGL;r.pixelStorei(r.UNPACK_FLIP_Y_WEBGL,t.flipY),r.pixelStorei(r.UNPACK_PREMULTIPLY_ALPHA_WEBGL,t.premultiplyAlpha),r.pixelStorei(r.UNPACK_ALIGNMENT,t.unpackAlignment),r.pixelStorei(r.UNPACK_COLORSPACE_CONVERSION_WEBGL,o),r.texParameteri(e,r.TEXTURE_WRAP_S,lA[t.wrapS]),r.texParameteri(e,r.TEXTURE_WRAP_T,lA[t.wrapT]),e!==r.TEXTURE_3D&&e!==r.TEXTURE_2D_ARRAY||t.isArrayTexture||r.texParameteri(e,r.TEXTURE_WRAP_R,lA[t.wrapR]),r.texParameteri(e,r.TEXTURE_MAG_FILTER,dA[t.magFilter]);const u=void 0!==t.mipmaps&&t.mipmaps.length>0,l=t.minFilter===ne&&u?q:t.minFilter;if(r.texParameteri(e,r.TEXTURE_MIN_FILTER,dA[l]),t.compareFunction&&(r.texParameteri(e,r.TEXTURE_COMPARE_MODE,r.COMPARE_REF_TO_TEXTURE),r.texParameteri(e,r.TEXTURE_COMPARE_FUNC,cA[t.compareFunction])),!0===s.has("EXT_texture_filter_anisotropic")){if(t.magFilter===R)return;if(t.minFilter!==Je&&t.minFilter!==q)return;if(t.type===H&&!1===s.has("OES_texture_float_linear"))return;if(t.anisotropy>1){const n=s.get("EXT_texture_filter_anisotropic");r.texParameterf(e,n.TEXTURE_MAX_ANISOTROPY_EXT,Math.min(t.anisotropy,i.getMaxAnisotropy()))}}}createDefaultTexture(e){const{gl:t,backend:r,defaultTextures:s}=this,i=this.getGLTextureType(e);let n=s[i];void 0===n&&(n=t.createTexture(),r.state.bindTexture(i,n),t.texParameteri(i,t.TEXTURE_MIN_FILTER,t.NEAREST),t.texParameteri(i,t.TEXTURE_MAG_FILTER,t.NEAREST),s[i]=n),r.set(e,{textureGPU:n,glTextureType:i})}createTexture(e,t){const{gl:r,backend:s}=this,{levels:i,width:n,height:a,depth:o}=t,u=s.utils.convert(e.format,e.colorSpace),l=s.utils.convert(e.type),d=this.getInternalFormat(e.internalFormat,u,l,e.colorSpace,e.isVideoTexture),c=r.createTexture(),h=this.getGLTextureType(e);s.state.bindTexture(h,c),this.setTextureParameters(h,e),e.isArrayTexture||e.isDataArrayTexture||e.isCompressedArrayTexture?r.texStorage3D(r.TEXTURE_2D_ARRAY,i,d,n,a,o):e.isData3DTexture?r.texStorage3D(r.TEXTURE_3D,i,d,n,a,o):e.isVideoTexture||r.texStorage2D(h,i,d,n,a),s.set(e,{textureGPU:c,glTextureType:h,glFormat:u,glType:l,glInternalFormat:d})}copyBufferToTexture(e,t){const{gl:r,backend:s}=this,{textureGPU:i,glTextureType:n,glFormat:a,glType:o}=s.get(t),{width:u,height:l}=t.source.data;r.bindBuffer(r.PIXEL_UNPACK_BUFFER,e),s.state.bindTexture(n,i),r.pixelStorei(r.UNPACK_FLIP_Y_WEBGL,!1),r.pixelStorei(r.UNPACK_PREMULTIPLY_ALPHA_WEBGL,!1),r.texSubImage2D(n,0,0,0,u,l,a,o,0),r.bindBuffer(r.PIXEL_UNPACK_BUFFER,null),s.state.unbindTexture()}updateTexture(e,t){const{gl:r}=this,{width:s,height:i}=t,{textureGPU:n,glTextureType:a,glFormat:o,glType:u,glInternalFormat:l}=this.backend.get(e);if(!e.isRenderTargetTexture&&void 0!==n)if(this.backend.state.bindTexture(a,n),this.setTextureParameters(a,e),e.isCompressedTexture){const s=e.mipmaps,i=t.image;for(let t=0;t0){const t=jr(s.width,s.height,e.format,e.type);for(const i of e.layerUpdates){const e=s.data.subarray(i*t/s.data.BYTES_PER_ELEMENT,(i+1)*t/s.data.BYTES_PER_ELEMENT);r.texSubImage3D(r.TEXTURE_2D_ARRAY,0,0,0,i,s.width,s.height,1,o,u,e)}e.clearLayerUpdates()}else r.texSubImage3D(r.TEXTURE_2D_ARRAY,0,0,0,0,s.width,s.height,s.depth,o,u,s.data)}else if(e.isData3DTexture){const e=t.image;r.texSubImage3D(r.TEXTURE_3D,0,0,0,0,e.width,e.height,e.depth,o,u,e.data)}else if(e.isVideoTexture)e.update(),r.texImage2D(a,0,l,o,u,t.image);else{const n=e.mipmaps;if(n.length>0)for(let e=0,t=n.length;e0,c=t.renderTarget?t.renderTarget.height:this.backend.getDrawingBufferSize().y;if(d){const r=0!==a||0!==o;let d,h;if(!0===e.isDepthTexture?(d=s.DEPTH_BUFFER_BIT,h=s.DEPTH_ATTACHMENT,t.stencil&&(d|=s.STENCIL_BUFFER_BIT)):(d=s.COLOR_BUFFER_BIT,h=s.COLOR_ATTACHMENT0),r){const e=this.backend.get(t.renderTarget),r=e.framebuffers[t.getCacheKey()],h=e.msaaFrameBuffer;i.bindFramebuffer(s.DRAW_FRAMEBUFFER,r),i.bindFramebuffer(s.READ_FRAMEBUFFER,h);const p=c-o-l;s.blitFramebuffer(a,p,a+u,p+l,a,p,a+u,p+l,d,s.NEAREST),i.bindFramebuffer(s.READ_FRAMEBUFFER,r),i.bindTexture(s.TEXTURE_2D,n),s.copyTexSubImage2D(s.TEXTURE_2D,0,0,0,a,p,u,l),i.unbindTexture()}else{const e=s.createFramebuffer();i.bindFramebuffer(s.DRAW_FRAMEBUFFER,e),s.framebufferTexture2D(s.DRAW_FRAMEBUFFER,h,s.TEXTURE_2D,n,0),s.blitFramebuffer(0,0,u,l,0,0,u,l,d,s.NEAREST),s.deleteFramebuffer(e)}}else i.bindTexture(s.TEXTURE_2D,n),s.copyTexSubImage2D(s.TEXTURE_2D,0,0,0,a,c-l-o,u,l),i.unbindTexture();e.generateMipmaps&&this.generateMipmaps(e),this.backend._setFramebuffer(t)}setupRenderBufferStorage(e,t,r,s=!1){const{gl:i}=this,n=t.renderTarget,{depthTexture:a,depthBuffer:o,stencilBuffer:u,width:l,height:d}=n;if(i.bindRenderbuffer(i.RENDERBUFFER,e),o&&!u){let t=i.DEPTH_COMPONENT24;if(!0===s){this.extensions.get("WEBGL_multisampled_render_to_texture").renderbufferStorageMultisampleEXT(i.RENDERBUFFER,n.samples,t,l,d)}else r>0?(a&&a.isDepthTexture&&a.type===i.FLOAT&&(t=i.DEPTH_COMPONENT32F),i.renderbufferStorageMultisample(i.RENDERBUFFER,r,t,l,d)):i.renderbufferStorage(i.RENDERBUFFER,t,l,d);i.framebufferRenderbuffer(i.FRAMEBUFFER,i.DEPTH_ATTACHMENT,i.RENDERBUFFER,e)}else o&&u&&(r>0?i.renderbufferStorageMultisample(i.RENDERBUFFER,r,i.DEPTH24_STENCIL8,l,d):i.renderbufferStorage(i.RENDERBUFFER,i.DEPTH_STENCIL,l,d),i.framebufferRenderbuffer(i.FRAMEBUFFER,i.DEPTH_STENCIL_ATTACHMENT,i.RENDERBUFFER,e));i.bindRenderbuffer(i.RENDERBUFFER,null)}async copyTextureToBuffer(e,t,r,s,i,n){const{backend:a,gl:o}=this,{textureGPU:u,glFormat:l,glType:d}=this.backend.get(e),c=o.createFramebuffer();o.bindFramebuffer(o.READ_FRAMEBUFFER,c);const h=e.isCubeTexture?o.TEXTURE_CUBE_MAP_POSITIVE_X+n:o.TEXTURE_2D;o.framebufferTexture2D(o.READ_FRAMEBUFFER,o.COLOR_ATTACHMENT0,h,u,0);const p=this._getTypedArrayType(d),g=s*i*this._getBytesPerTexel(d,l),m=o.createBuffer();o.bindBuffer(o.PIXEL_PACK_BUFFER,m),o.bufferData(o.PIXEL_PACK_BUFFER,g,o.STREAM_READ),o.readPixels(t,r,s,i,l,d,0),o.bindBuffer(o.PIXEL_PACK_BUFFER,null),await a.utils._clientWaitAsync();const f=new p(g/p.BYTES_PER_ELEMENT);return o.bindBuffer(o.PIXEL_PACK_BUFFER,m),o.getBufferSubData(o.PIXEL_PACK_BUFFER,0,f),o.bindBuffer(o.PIXEL_PACK_BUFFER,null),o.deleteFramebuffer(c),f}_getTypedArrayType(e){const{gl:t}=this;if(e===t.UNSIGNED_BYTE)return Uint8Array;if(e===t.UNSIGNED_SHORT_4_4_4_4)return Uint16Array;if(e===t.UNSIGNED_SHORT_5_5_5_1)return Uint16Array;if(e===t.UNSIGNED_SHORT_5_6_5)return Uint16Array;if(e===t.UNSIGNED_SHORT)return Uint16Array;if(e===t.UNSIGNED_INT)return Uint32Array;if(e===t.HALF_FLOAT)return Uint16Array;if(e===t.FLOAT)return Float32Array;throw new Error(`Unsupported WebGL type: ${e}`)}_getBytesPerTexel(e,t){const{gl:r}=this;let s=0;return e===r.UNSIGNED_BYTE&&(s=1),e!==r.UNSIGNED_SHORT_4_4_4_4&&e!==r.UNSIGNED_SHORT_5_5_5_1&&e!==r.UNSIGNED_SHORT_5_6_5&&e!==r.UNSIGNED_SHORT&&e!==r.HALF_FLOAT||(s=2),e!==r.UNSIGNED_INT&&e!==r.FLOAT||(s=4),t===r.RGBA?4*s:t===r.RGB?3*s:t===r.ALPHA?s:void 0}dispose(){const{gl:e}=this;null!==this._srcFramebuffer&&e.deleteFramebuffer(this._srcFramebuffer),null!==this._dstFramebuffer&&e.deleteFramebuffer(this._dstFramebuffer)}}function gA(e){return e.isDataTexture?e.image.data:"undefined"!=typeof HTMLImageElement&&e instanceof HTMLImageElement||"undefined"!=typeof HTMLCanvasElement&&e instanceof HTMLCanvasElement||"undefined"!=typeof ImageBitmap&&e instanceof ImageBitmap||"undefined"!=typeof OffscreenCanvas&&e instanceof OffscreenCanvas?e:e.data}class mA{constructor(e){this.backend=e,this.gl=this.backend.gl,this.availableExtensions=this.gl.getSupportedExtensions(),this.extensions={}}get(e){let t=this.extensions[e];return void 0===t&&(t=this.gl.getExtension(e),this.extensions[e]=t),t}has(e){return this.availableExtensions.includes(e)}}class fA{constructor(e){this.backend=e,this.maxAnisotropy=null}getMaxAnisotropy(){if(null!==this.maxAnisotropy)return this.maxAnisotropy;const e=this.backend.gl,t=this.backend.extensions;if(!0===t.has("EXT_texture_filter_anisotropic")){const r=t.get("EXT_texture_filter_anisotropic");this.maxAnisotropy=e.getParameter(r.MAX_TEXTURE_MAX_ANISOTROPY_EXT)}else this.maxAnisotropy=0;return this.maxAnisotropy}}const yA={WEBGL_multi_draw:"WEBGL_multi_draw",WEBGL_compressed_texture_astc:"texture-compression-astc",WEBGL_compressed_texture_etc:"texture-compression-etc2",WEBGL_compressed_texture_etc1:"texture-compression-etc1",WEBGL_compressed_texture_pvrtc:"texture-compression-pvrtc",WEBGL_compressed_texture_s3tc:"texture-compression-s3tc",EXT_texture_compression_bptc:"texture-compression-bc",EXT_disjoint_timer_query_webgl2:"timestamp-query",OVR_multiview2:"OVR_multiview2"};class bA{constructor(e){this.gl=e.gl,this.extensions=e.extensions,this.info=e.renderer.info,this.mode=null,this.index=0,this.type=null,this.object=null}render(e,t){const{gl:r,mode:s,object:i,type:n,info:a,index:o}=this;0!==o?r.drawElements(s,t,n,e):r.drawArrays(s,e,t),a.update(i,t,1)}renderInstances(e,t,r){const{gl:s,mode:i,type:n,index:a,object:o,info:u}=this;0!==r&&(0!==a?s.drawElementsInstanced(i,t,n,e,r):s.drawArraysInstanced(i,e,t,r),u.update(o,t,r))}renderMultiDraw(e,t,r){const{extensions:s,mode:i,object:n,info:a}=this;if(0===r)return;const o=s.get("WEBGL_multi_draw");if(null===o)for(let s=0;sthis.maxQueries)return v(`WebGPUTimestampQueryPool [${this.type}]: Maximum number of queries exceeded, when using trackTimestamp it is necessary to resolves the queries via renderer.resolveTimestampsAsync( THREE.TimestampQuery.${this.type.toUpperCase()} ).`),null;const t=this.currentQueryIndex;return this.currentQueryIndex+=2,this.queryStates.set(t,"inactive"),this.queryOffsets.set(e,t),t}beginQuery(e){if(!this.trackTimestamp||this.isDisposed)return;const t=this.queryOffsets.get(e);if(null==t)return;if(null!==this.activeQuery)return;const r=this.queries[t];if(r)try{"inactive"===this.queryStates.get(t)&&(this.gl.beginQuery(this.ext.TIME_ELAPSED_EXT,r),this.activeQuery=t,this.queryStates.set(t,"started"))}catch(e){o("Error in beginQuery:",e),this.activeQuery=null,this.queryStates.set(t,"inactive")}}endQuery(e){if(!this.trackTimestamp||this.isDisposed)return;const t=this.queryOffsets.get(e);if(null!=t&&this.activeQuery===t)try{this.gl.endQuery(this.ext.TIME_ELAPSED_EXT),this.queryStates.set(t,"ended"),this.activeQuery=null}catch(e){o("Error in endQuery:",e),this.queryStates.set(t,"inactive"),this.activeQuery=null}}async resolveQueriesAsync(){if(!this.trackTimestamp||this.pendingResolve)return this.lastValue;this.pendingResolve=!0;try{const e=new Map;for(const[t,r]of this.queryOffsets){if("ended"===this.queryStates.get(r)){const s=this.queries[r];e.set(t,this.resolveQuery(s))}}if(0===e.size)return this.lastValue;const t={},r=[];for(const[s,i]of e){const e=s.match(/^(.*):f(\d+)$/),n=parseInt(e[2]);!1===r.includes(n)&&r.push(n),void 0===t[n]&&(t[n]=0);const a=await i;this.timestamps.set(s,a),t[n]+=a}const s=t[r[r.length-1]];return this.lastValue=s,this.frames=r,this.currentQueryIndex=0,this.queryOffsets.clear(),this.queryStates.clear(),this.activeQuery=null,s}catch(e){return o("Error resolving queries:",e),this.lastValue}finally{this.pendingResolve=!1}}async resolveQuery(e){return new Promise(t=>{if(this.isDisposed)return void t(this.lastValue);let r,s=!1;const i=e=>{s||(s=!0,r&&(clearTimeout(r),r=null),t(e))},n=()=>{if(this.isDisposed)i(this.lastValue);else try{if(this.gl.getParameter(this.ext.GPU_DISJOINT_EXT))return void i(this.lastValue);if(!this.gl.getQueryParameter(e,this.gl.QUERY_RESULT_AVAILABLE))return void(r=setTimeout(n,1));const s=this.gl.getQueryParameter(e,this.gl.QUERY_RESULT);t(Number(s)/1e6)}catch(e){o("Error checking query:",e),t(this.lastValue)}};n()})}dispose(){if(!this.isDisposed&&(this.isDisposed=!0,this.trackTimestamp)){for(const e of this.queries)this.gl.deleteQuery(e);this.queries=[],this.queryStates.clear(),this.queryOffsets.clear(),this.lastValue=0,this.activeQuery=null}}}class _A extends tA{constructor(e={}){super(e),this.isWebGLBackend=!0,this.attributeUtils=null,this.extensions=null,this.capabilities=null,this.textureUtils=null,this.bufferRenderer=null,this.gl=null,this.state=null,this.utils=null,this.vaoCache={},this.transformFeedbackCache={},this.discard=!1,this.disjoint=null,this.parallel=null,this._currentContext=null,this._knownBindings=new WeakSet,this._supportsInvalidateFramebuffer="undefined"!=typeof navigator&&/OculusBrowser/g.test(navigator.userAgent),this._xrFramebuffer=null}init(e){super.init(e);const t=this.parameters,r={antialias:e.currentSamples>0,alpha:!0,depth:e.depth,stencil:e.stencil},s=void 0!==t.context?t.context:e.domElement.getContext("webgl2",r);function i(t){t.preventDefault();const r={api:"WebGL",message:t.statusMessage||"Unknown reason",reason:null,originalEvent:t};e.onDeviceLost(r)}this._onContextLost=i,e.domElement.addEventListener("webglcontextlost",i,!1),this.gl=s,this.extensions=new mA(this),this.capabilities=new fA(this),this.attributeUtils=new aA(this),this.textureUtils=new pA(this),this.bufferRenderer=new bA(this),this.state=new oA(this),this.utils=new uA(this),this.extensions.get("EXT_color_buffer_float"),this.extensions.get("WEBGL_clip_cull_distance"),this.extensions.get("OES_texture_float_linear"),this.extensions.get("EXT_color_buffer_half_float"),this.extensions.get("WEBGL_multisampled_render_to_texture"),this.extensions.get("WEBGL_render_shared_exponent"),this.extensions.get("WEBGL_multi_draw"),this.extensions.get("OVR_multiview2"),this.disjoint=this.extensions.get("EXT_disjoint_timer_query_webgl2"),this.parallel=this.extensions.get("KHR_parallel_shader_compile"),this.drawBuffersIndexedExt=this.extensions.get("OES_draw_buffers_indexed")}get coordinateSystem(){return c}async getArrayBufferAsync(e){return await this.attributeUtils.getArrayBufferAsync(e)}async makeXRCompatible(){!0!==this.gl.getContextAttributes().xrCompatible&&await this.gl.makeXRCompatible()}setXRTarget(e){this._xrFramebuffer=e}setXRRenderTargetTextures(e,t,r=null){const s=this.gl;if(this.set(e.texture,{textureGPU:t,glInternalFormat:s.RGBA8}),null!==r){const t=e.stencilBuffer?s.DEPTH24_STENCIL8:s.DEPTH_COMPONENT24;this.set(e.depthTexture,{textureGPU:r,glInternalFormat:t}),!0===this.extensions.has("WEBGL_multisampled_render_to_texture")&&!0===e._autoAllocateDepthBuffer&&!1===e.multiview&&d("WebGLBackend: Render-to-texture extension was disabled because an external texture was provided"),e._autoAllocateDepthBuffer=!1}}initTimestampQuery(e,t){if(!this.disjoint||!this.trackTimestamp)return;this.timestampQueryPool[e]||(this.timestampQueryPool[e]=new TA(this.gl,e,2048));const r=this.timestampQueryPool[e];null!==r.allocateQueriesForContext(t)&&r.beginQuery(t)}prepareTimestampBuffer(e,t){if(!this.disjoint||!this.trackTimestamp)return;this.timestampQueryPool[e].endQuery(t)}getContext(){return this.gl}beginRender(e){const{state:t}=this,r=this.get(e);if(e.viewport)this.updateViewport(e);else{const{width:e,height:r}=this.getDrawingBufferSize();t.viewport(0,0,e,r)}if(e.scissor){const{x:r,y:s,width:i,height:n}=e.scissorValue;t.scissor(r,e.height-n-s,i,n)}this.initTimestampQuery(St.RENDER,this.getTimestampUID(e)),r.previousContext=this._currentContext,this._currentContext=e,this._setFramebuffer(e),this.clear(e.clearColor,e.clearDepth,e.clearStencil,e,!1);const s=e.occlusionQueryCount;s>0&&(r.currentOcclusionQueries=r.occlusionQueries,r.currentOcclusionQueryObjects=r.occlusionQueryObjects,r.lastOcclusionObject=null,r.occlusionQueries=new Array(s),r.occlusionQueryObjects=new Array(s),r.occlusionQueryIndex=0)}finishRender(e){const{gl:t,state:r}=this,s=this.get(e),i=s.previousContext;r.resetVertexState();const n=e.occlusionQueryCount;n>0&&(n>s.occlusionQueryIndex&&t.endQuery(t.ANY_SAMPLES_PASSED),this.resolveOccludedAsync(e));const a=e.textures;if(null!==a)for(let e=0;e{let a=0;for(let t=0;t1&&u.setMRTBlending(i.textures),u.useProgram(a);const h=e.getAttributes(),p=this.get(h);let g=p.vaoGPU;if(void 0===g){const e=this._getVaoKey(h);g=this.vaoCache[e],void 0===g&&(g=this._createVao(h),this.vaoCache[e]=g,p.vaoGPU=g)}const m=e.getIndex(),f=null!==m?this.get(m).bufferGPU:null;u.setVertexState(g,f);const y=l.lastOcclusionObject;if(y!==t&&void 0!==y){if(null!==y&&!0===y.occlusionTest&&(o.endQuery(o.ANY_SAMPLES_PASSED),l.occlusionQueryIndex++),!0===t.occlusionTest){const e=o.createQuery();o.beginQuery(o.ANY_SAMPLES_PASSED,e),l.occlusionQueries[l.occlusionQueryIndex]=e,l.occlusionQueryObjects[l.occlusionQueryIndex]=t}l.lastOcclusionObject=t}const b=this.bufferRenderer;t.isPoints?b.mode=o.POINTS:t.isLineSegments?b.mode=o.LINES:t.isLine?b.mode=o.LINE_STRIP:t.isLineLoop?b.mode=o.LINE_LOOP:!0===s.wireframe?(u.setLineWidth(s.wireframeLinewidth*this.renderer.getPixelRatio()),b.mode=o.LINES):b.mode=o.TRIANGLES;const{vertexCount:x,instanceCount:T}=d;let{firstVertex:_}=d;if(b.object=t,null!==m){_*=m.array.BYTES_PER_ELEMENT;const e=this.get(m);b.index=m.count,b.type=e.type}else b.index=0;const N=()=>{t.isBatchedMesh?null!==t._multiDrawInstances?(v("WebGLBackend: renderMultiDrawInstances has been deprecated and will be removed in r184. Append to renderMultiDraw arguments and use indirection."),b.renderMultiDrawInstances(t._multiDrawStarts,t._multiDrawCounts,t._multiDrawCount,t._multiDrawInstances)):this.hasFeature("WEBGL_multi_draw")?b.renderMultiDraw(t._multiDrawStarts,t._multiDrawCounts,t._multiDrawCount):v("WebGLBackend: WEBGL_multi_draw not supported."):T>1?b.renderInstances(_,x,T):b.render(_,x)};if(!0===e.camera.isArrayCamera&&e.camera.cameras.length>0&&!1===e.camera.isMultiViewCamera){const r=this.get(e.camera),s=e.camera.cameras,i=e.getBindingGroup("cameraIndex").bindings[0];if(void 0===r.indexesGPU||r.indexesGPU.length!==s.length){const e=new Uint32Array([0,0,0,0]),t=[];for(let r=0,i=s.length;r{const i=this.parallel,n=()=>{r.getProgramParameter(a,i.COMPLETION_STATUS_KHR)?(this._completeCompile(e,s),t()):requestAnimationFrame(n)};n()});return void t.push(i)}this._completeCompile(e,s)}_handleSource(e,t){const r=e.split("\n"),s=[],i=Math.max(t-6,0),n=Math.min(t+6,r.length);for(let e=i;e":" "} ${i}: ${r[e]}`)}return s.join("\n")}_getShaderErrors(e,t,r){const s=e.getShaderParameter(t,e.COMPILE_STATUS),i=(e.getShaderInfoLog(t)||"").trim();if(s&&""===i)return"";const n=/ERROR: 0:(\d+)/.exec(i);if(n){const s=parseInt(n[1]);return r.toUpperCase()+"\n\n"+i+"\n\n"+this._handleSource(e.getShaderSource(t),s)}return i}_logProgramError(e,t,r){if(this.renderer.debug.checkShaderErrors){const s=this.gl,i=(s.getProgramInfoLog(e)||"").trim();if(!1===s.getProgramParameter(e,s.LINK_STATUS))if("function"==typeof this.renderer.debug.onShaderError)this.renderer.debug.onShaderError(s,e,r,t);else{const n=this._getShaderErrors(s,r,"vertex"),a=this._getShaderErrors(s,t,"fragment");o("THREE.WebGLProgram: Shader Error "+s.getError()+" - VALIDATE_STATUS "+s.getProgramParameter(e,s.VALIDATE_STATUS)+"\n\nProgram Info Log: "+i+"\n"+n+"\n"+a)}else""!==i&&d("WebGLProgram: Program Info Log:",i)}}_completeCompile(e,t){const{state:r,gl:s}=this,i=this.get(t),{programGPU:n,fragmentShader:a,vertexShader:o}=i;!1===s.getProgramParameter(n,s.LINK_STATUS)&&this._logProgramError(n,a,o),r.useProgram(n);const u=e.getBindings();this._setupBindings(u,n),this.set(t,{programGPU:n})}createComputePipeline(e,t){const{state:r,gl:s}=this,i={stage:"fragment",code:"#version 300 es\nprecision highp float;\nvoid main() {}"};this.createProgram(i);const{computeProgram:n}=e,a=s.createProgram(),o=this.get(i).shaderGPU,u=this.get(n).shaderGPU,l=n.transforms,d=[],c=[];for(let e=0;eyA[t]===e),r=this.extensions;for(let e=0;e1,h=!0===i.isXRRenderTarget,p=!0===h&&!0===i._hasExternalTextures;let g=n.msaaFrameBuffer,m=n.depthRenderbuffer;const f=this.extensions.get("WEBGL_multisampled_render_to_texture"),y=this.extensions.get("OVR_multiview2"),b=this._useMultisampledExtension(i),x=Ey(e);let T;if(l?(n.cubeFramebuffers||(n.cubeFramebuffers={}),T=n.cubeFramebuffers[x]):h&&!1===p?T=this._xrFramebuffer:(n.framebuffers||(n.framebuffers={}),T=n.framebuffers[x]),void 0===T){T=t.createFramebuffer(),r.bindFramebuffer(t.FRAMEBUFFER,T);const s=e.textures,o=[];if(l){n.cubeFramebuffers[x]=T;const{textureGPU:e}=this.get(s[0]),r=this.renderer._activeCubeFace,i=this.renderer._activeMipmapLevel;t.framebufferTexture2D(t.FRAMEBUFFER,t.COLOR_ATTACHMENT0,t.TEXTURE_CUBE_MAP_POSITIVE_X+r,e,i)}else{n.framebuffers[x]=T;for(let r=0;r0&&!1===b&&!i.multiview){if(void 0===g){const s=[];g=t.createFramebuffer(),r.bindFramebuffer(t.FRAMEBUFFER,g);const i=[],l=e.textures;for(let r=0;r0&&!1===this._useMultisampledExtension(s)){const n=i.framebuffers[e.getCacheKey()];let a=t.COLOR_BUFFER_BIT;s.resolveDepthBuffer&&(s.depthBuffer&&(a|=t.DEPTH_BUFFER_BIT),s.stencilBuffer&&s.resolveStencilBuffer&&(a|=t.STENCIL_BUFFER_BIT));const o=i.msaaFrameBuffer,u=i.msaaRenderbuffers,l=e.textures,d=l.length>1;if(r.bindFramebuffer(t.READ_FRAMEBUFFER,o),r.bindFramebuffer(t.DRAW_FRAMEBUFFER,n),d)for(let e=0;e0&&!0===this.extensions.has("WEBGL_multisampled_render_to_texture")&&!1!==e._autoAllocateDepthBuffer}dispose(){null!==this.textureUtils&&this.textureUtils.dispose();const e=this.extensions.get("WEBGL_lose_context");e&&e.loseContext(),this.renderer.domElement.removeEventListener("webglcontextlost",this._onContextLost)}}const vA="point-list",NA="line-list",SA="line-strip",AA="triangle-list",RA="triangle-strip",EA="undefined"!=typeof self?self.GPUShaderStage:{VERTEX:1,FRAGMENT:2,COMPUTE:4},wA="never",CA="less",MA="equal",BA="less-equal",LA="greater",PA="not-equal",FA="greater-equal",DA="always",UA="store",IA="load",OA="clear",VA="ccw",kA="cw",GA="none",zA="back",$A="uint16",WA="uint32",HA="r8unorm",jA="r8snorm",qA="r8uint",XA="r8sint",KA="r16uint",YA="r16sint",QA="r16float",ZA="rg8unorm",JA="rg8snorm",eR="rg8uint",tR="rg8sint",rR="r32uint",sR="r32sint",iR="r32float",nR="rg16uint",aR="rg16sint",oR="rg16float",uR="rgba8unorm",lR="rgba8unorm-srgb",dR="rgba8snorm",cR="rgba8uint",hR="rgba8sint",pR="bgra8unorm",gR="bgra8unorm-srgb",mR="rgb9e5ufloat",fR="rgb10a2unorm",yR="rg11b10ufloat",bR="rg32uint",xR="rg32sint",TR="rg32float",_R="rgba16uint",vR="rgba16sint",NR="rgba16float",SR="rgba32uint",AR="rgba32sint",RR="rgba32float",ER="depth16unorm",wR="depth24plus",CR="depth24plus-stencil8",MR="depth32float",BR="depth32float-stencil8",LR="bc1-rgba-unorm",PR="bc1-rgba-unorm-srgb",FR="bc2-rgba-unorm",DR="bc2-rgba-unorm-srgb",UR="bc3-rgba-unorm",IR="bc3-rgba-unorm-srgb",OR="bc4-r-unorm",VR="bc4-r-snorm",kR="bc5-rg-unorm",GR="bc5-rg-snorm",zR="bc6h-rgb-ufloat",$R="bc6h-rgb-float",WR="bc7-rgba-unorm",HR="bc7-rgba-unorm-srgb",jR="etc2-rgb8unorm",qR="etc2-rgb8unorm-srgb",XR="etc2-rgb8a1unorm",KR="etc2-rgb8a1unorm-srgb",YR="etc2-rgba8unorm",QR="etc2-rgba8unorm-srgb",ZR="eac-r11unorm",JR="eac-r11snorm",eE="eac-rg11unorm",tE="eac-rg11snorm",rE="astc-4x4-unorm",sE="astc-4x4-unorm-srgb",iE="astc-5x4-unorm",nE="astc-5x4-unorm-srgb",aE="astc-5x5-unorm",oE="astc-5x5-unorm-srgb",uE="astc-6x5-unorm",lE="astc-6x5-unorm-srgb",dE="astc-6x6-unorm",cE="astc-6x6-unorm-srgb",hE="astc-8x5-unorm",pE="astc-8x5-unorm-srgb",gE="astc-8x6-unorm",mE="astc-8x6-unorm-srgb",fE="astc-8x8-unorm",yE="astc-8x8-unorm-srgb",bE="astc-10x5-unorm",xE="astc-10x5-unorm-srgb",TE="astc-10x6-unorm",_E="astc-10x6-unorm-srgb",vE="astc-10x8-unorm",NE="astc-10x8-unorm-srgb",SE="astc-10x10-unorm",AE="astc-10x10-unorm-srgb",RE="astc-12x10-unorm",EE="astc-12x10-unorm-srgb",wE="astc-12x12-unorm",CE="astc-12x12-unorm-srgb",ME="clamp-to-edge",BE="repeat",LE="mirror-repeat",PE="linear",FE="nearest",DE="zero",UE="one",IE="src",OE="one-minus-src",VE="src-alpha",kE="one-minus-src-alpha",GE="dst",zE="one-minus-dst",$E="dst-alpha",WE="one-minus-dst-alpha",HE="src-alpha-saturated",jE="constant",qE="one-minus-constant",XE="add",KE="subtract",YE="reverse-subtract",QE="min",ZE="max",JE=0,ew=15,tw="keep",rw="zero",sw="replace",iw="invert",nw="increment-clamp",aw="decrement-clamp",ow="increment-wrap",uw="decrement-wrap",lw="storage",dw="read-only-storage",cw="write-only",hw="read-only",pw="read-write",gw="non-filtering",mw="comparison",fw="float",yw="unfilterable-float",bw="depth",xw="sint",Tw="uint",_w="2d",vw="3d",Nw="2d",Sw="2d-array",Aw="cube",Rw="3d",Ew="all",ww="vertex",Cw="instance",Mw={CoreFeaturesAndLimits:"core-features-and-limits",DepthClipControl:"depth-clip-control",Depth32FloatStencil8:"depth32float-stencil8",TextureCompressionBC:"texture-compression-bc",TextureCompressionBCSliced3D:"texture-compression-bc-sliced-3d",TextureCompressionETC2:"texture-compression-etc2",TextureCompressionASTC:"texture-compression-astc",TextureCompressionASTCSliced3D:"texture-compression-astc-sliced-3d",TimestampQuery:"timestamp-query",IndirectFirstInstance:"indirect-first-instance",ShaderF16:"shader-f16",RG11B10UFloat:"rg11b10ufloat-renderable",BGRA8UNormStorage:"bgra8unorm-storage",Float32Filterable:"float32-filterable",Float32Blendable:"float32-blendable",ClipDistances:"clip-distances",DualSourceBlending:"dual-source-blending",Subgroups:"subgroups",TextureFormatsTier1:"texture-formats-tier1",TextureFormatsTier2:"texture-formats-tier2"},Bw={"texture-compression-s3tc":"texture-compression-bc","texture-compression-etc1":"texture-compression-etc2"};class Lw extends VS{constructor(e,t,r){super(e,t?t.value:null),this.textureNode=t,this.groupNode=r}update(){const{textureNode:e}=this;return this.texture!==e.value?(this.texture=e.value,!0):super.update()}}class Pw extends LS{constructor(e,t){super(e,t?t.array:null),this.attribute=t,this.isStorageBuffer=!0}}let Fw=0;class Dw extends Pw{constructor(e,t){super("StorageBuffer_"+Fw++,e?e.value:null),this.nodeUniform=e,this.access=e?e.access:Js.READ_WRITE,this.groupNode=t}get buffer(){return this.nodeUniform.value}}class Uw extends ty{constructor(e){super(),this.device=e;this.mipmapSampler=e.createSampler({minFilter:PE}),this.flipYSampler=e.createSampler({minFilter:FE}),this.transferPipelines={},this.flipYPipelines={},this.mipmapVertexShaderModule=e.createShaderModule({label:"mipmapVertex",code:"\nstruct VarysStruct {\n\t@builtin( position ) Position: vec4,\n\t@location( 0 ) vTex : vec2\n};\n\n@vertex\nfn main( @builtin( vertex_index ) vertexIndex : u32 ) -> VarysStruct {\n\n\tvar Varys : VarysStruct;\n\n\tvar pos = array< vec2, 4 >(\n\t\tvec2( -1.0, 1.0 ),\n\t\tvec2( 1.0, 1.0 ),\n\t\tvec2( -1.0, -1.0 ),\n\t\tvec2( 1.0, -1.0 )\n\t);\n\n\tvar tex = array< vec2, 4 >(\n\t\tvec2( 0.0, 0.0 ),\n\t\tvec2( 1.0, 0.0 ),\n\t\tvec2( 0.0, 1.0 ),\n\t\tvec2( 1.0, 1.0 )\n\t);\n\n\tVarys.vTex = tex[ vertexIndex ];\n\tVarys.Position = vec4( pos[ vertexIndex ], 0.0, 1.0 );\n\n\treturn Varys;\n\n}\n"}),this.mipmapFragmentShaderModule=e.createShaderModule({label:"mipmapFragment",code:"\n@group( 0 ) @binding( 0 )\nvar imgSampler : sampler;\n\n@group( 0 ) @binding( 1 )\nvar img : texture_2d;\n\n@fragment\nfn main( @location( 0 ) vTex : vec2 ) -> @location( 0 ) vec4 {\n\n\treturn textureSample( img, imgSampler, vTex );\n\n}\n"}),this.flipYFragmentShaderModule=e.createShaderModule({label:"flipYFragment",code:"\n@group( 0 ) @binding( 0 )\nvar imgSampler : sampler;\n\n@group( 0 ) @binding( 1 )\nvar img : texture_2d;\n\n@fragment\nfn main( @location( 0 ) vTex : vec2 ) -> @location( 0 ) vec4 {\n\n\treturn textureSample( img, imgSampler, vec2( vTex.x, 1.0 - vTex.y ) );\n\n}\n"})}getTransferPipeline(e){let t=this.transferPipelines[e];return void 0===t&&(t=this.device.createRenderPipeline({label:`mipmap-${e}`,vertex:{module:this.mipmapVertexShaderModule,entryPoint:"main"},fragment:{module:this.mipmapFragmentShaderModule,entryPoint:"main",targets:[{format:e}]},primitive:{topology:RA,stripIndexFormat:WA},layout:"auto"}),this.transferPipelines[e]=t),t}getFlipYPipeline(e){let t=this.flipYPipelines[e];return void 0===t&&(t=this.device.createRenderPipeline({label:`flipY-${e}`,vertex:{module:this.mipmapVertexShaderModule,entryPoint:"main"},fragment:{module:this.flipYFragmentShaderModule,entryPoint:"main",targets:[{format:e}]},primitive:{topology:RA,stripIndexFormat:WA},layout:"auto"}),this.flipYPipelines[e]=t),t}flipY(e,t,r=0){const s=t.format,{width:i,height:n}=t.size,a=this.getTransferPipeline(s),o=this.getFlipYPipeline(s),u=this.device.createTexture({size:{width:i,height:n,depthOrArrayLayers:1},format:s,usage:GPUTextureUsage.RENDER_ATTACHMENT|GPUTextureUsage.TEXTURE_BINDING}),l=e.createView({baseMipLevel:0,mipLevelCount:1,dimension:Nw,baseArrayLayer:r}),d=u.createView({baseMipLevel:0,mipLevelCount:1,dimension:Nw,baseArrayLayer:0}),c=this.device.createCommandEncoder({}),h=(e,t,r)=>{const s=e.getBindGroupLayout(0),i=this.device.createBindGroup({layout:s,entries:[{binding:0,resource:this.flipYSampler},{binding:1,resource:t}]}),n=c.beginRenderPass({colorAttachments:[{view:r,loadOp:OA,storeOp:UA,clearValue:[0,0,0,0]}]});n.setPipeline(e),n.setBindGroup(0,i),n.draw(4,1,0,0),n.end()};h(a,l,d),h(o,d,l),this.device.queue.submit([c.finish()]),u.destroy()}generateMipmaps(e,t,r=0,s=null){const i=this.get(e);void 0===i.layers&&(i.layers=[]);const n=i.layers[r]||this._mipmapCreateBundles(e,t,r),a=s||this.device.createCommandEncoder({label:"mipmapEncoder"});this._mipmapRunBundles(a,n),null===s&&this.device.queue.submit([a.finish()]),i.layers[r]=n}_mipmapCreateBundles(e,t,r){const s=this.getTransferPipeline(t.format),i=s.getBindGroupLayout(0);let n=e.createView({baseMipLevel:0,mipLevelCount:1,dimension:Nw,baseArrayLayer:r});const a=[];for(let o=1;o0)for(let t=0,n=s.length;t0)for(let t=0,n=s.length;t0?e.width:r.size.width,l=a>0?e.height:r.size.height;o.queue.copyExternalImageToTexture({source:e,flipY:i},{texture:t,mipLevel:a,origin:{x:0,y:0,z:s},premultipliedAlpha:n},{width:u,height:l,depthOrArrayLayers:1})}_getPassUtils(){let e=this._passUtils;return null===e&&(this._passUtils=e=new Uw(this.backend.device)),e}_generateMipmaps(e,t,r=0,s=null){this._getPassUtils().generateMipmaps(e,t,r,s)}_flipY(e,t,r=0){this._getPassUtils().flipY(e,t,r)}_copyBufferToTexture(e,t,r,s,i,n=0,a=0){const o=this.backend.device,u=e.data,l=this._getBytesPerTexel(r.format),d=e.width*l;o.queue.writeTexture({texture:t,mipLevel:a,origin:{x:0,y:0,z:s}},u,{offset:e.width*e.height*l*n,bytesPerRow:d},{width:e.width,height:e.height,depthOrArrayLayers:1}),!0===i&&this._flipY(t,r,s)}_copyCompressedBufferToTexture(e,t,r){const s=this.backend.device,i=this._getBlockData(r.format),n=r.size.depthOrArrayLayers>1;for(let a=0;a]*\s*([a-z_0-9]+(?:<[\s\S]+?>)?)/i,zw=/([a-z_0-9]+)\s*:\s*([a-z_0-9]+(?:<[\s\S]+?>)?)/gi,$w={f32:"float",i32:"int",u32:"uint",bool:"bool","vec2":"vec2","vec2":"ivec2","vec2":"uvec2","vec2":"bvec2",vec2f:"vec2",vec2i:"ivec2",vec2u:"uvec2",vec2b:"bvec2","vec3":"vec3","vec3":"ivec3","vec3":"uvec3","vec3":"bvec3",vec3f:"vec3",vec3i:"ivec3",vec3u:"uvec3",vec3b:"bvec3","vec4":"vec4","vec4":"ivec4","vec4":"uvec4","vec4":"bvec4",vec4f:"vec4",vec4i:"ivec4",vec4u:"uvec4",vec4b:"bvec4","mat2x2":"mat2",mat2x2f:"mat2","mat3x3":"mat3",mat3x3f:"mat3","mat4x4":"mat4",mat4x4f:"mat4",sampler:"sampler",texture_1d:"texture",texture_2d:"texture",texture_2d_array:"texture",texture_multisampled_2d:"cubeTexture",texture_depth_2d:"depthTexture",texture_depth_2d_array:"depthTexture",texture_depth_multisampled_2d:"depthTexture",texture_depth_cube:"depthTexture",texture_depth_cube_array:"depthTexture",texture_3d:"texture3D",texture_cube:"cubeTexture",texture_cube_array:"cubeTexture",texture_storage_1d:"storageTexture",texture_storage_2d:"storageTexture",texture_storage_2d_array:"storageTexture",texture_storage_3d:"storageTexture"};class Ww extends qN{constructor(e){const{type:t,inputs:r,name:s,inputsCode:i,blockCode:n,outputType:a}=(e=>{const t=(e=e.trim()).match(Gw);if(null!==t&&4===t.length){const r=t[2],s=[];let i=null;for(;null!==(i=zw.exec(r));)s.push({name:i[1],type:i[2]});const n=[];for(let e=0;e "+this.outputType:"";return`fn ${e} ( ${this.inputsCode.trim()} ) ${t}`+this.blockCode}}class Hw extends jN{parseFunction(e){return new Ww(e)}}const jw={[Js.READ_ONLY]:"read",[Js.WRITE_ONLY]:"write",[Js.READ_WRITE]:"read_write"},qw={[Ur]:"repeat",[ye]:"clamp",[Dr]:"mirror"},Xw={vertex:EA.VERTEX,fragment:EA.FRAGMENT,compute:EA.COMPUTE},Kw={instance:!0,swizzleAssign:!1,storageBuffer:!0},Yw={"^^":"tsl_xor"},Qw={float:"f32",int:"i32",uint:"u32",bool:"bool",color:"vec3",vec2:"vec2",ivec2:"vec2",uvec2:"vec2",bvec2:"vec2",vec3:"vec3",ivec3:"vec3",uvec3:"vec3",bvec3:"vec3",vec4:"vec4",ivec4:"vec4",uvec4:"vec4",bvec4:"vec4",mat2:"mat2x2",mat3:"mat3x3",mat4:"mat4x4"},Zw={},Jw={tsl_xor:new jx("fn tsl_xor( a : bool, b : bool ) -> bool { return ( a || b ) && !( a && b ); }"),mod_float:new jx("fn tsl_mod_float( x : f32, y : f32 ) -> f32 { return x - y * floor( x / y ); }"),mod_vec2:new jx("fn tsl_mod_vec2( x : vec2f, y : vec2f ) -> vec2f { return x - y * floor( x / y ); }"),mod_vec3:new jx("fn tsl_mod_vec3( x : vec3f, y : vec3f ) -> vec3f { return x - y * floor( x / y ); }"),mod_vec4:new jx("fn tsl_mod_vec4( x : vec4f, y : vec4f ) -> vec4f { return x - y * floor( x / y ); }"),equals_bool:new jx("fn tsl_equals_bool( a : bool, b : bool ) -> bool { return a == b; }"),equals_bvec2:new jx("fn tsl_equals_bvec2( a : vec2f, b : vec2f ) -> vec2 { return vec2( a.x == b.x, a.y == b.y ); }"),equals_bvec3:new jx("fn tsl_equals_bvec3( a : vec3f, b : vec3f ) -> vec3 { return vec3( a.x == b.x, a.y == b.y, a.z == b.z ); }"),equals_bvec4:new jx("fn tsl_equals_bvec4( a : vec4f, b : vec4f ) -> vec4 { return vec4( a.x == b.x, a.y == b.y, a.z == b.z, a.w == b.w ); }"),repeatWrapping_float:new jx("fn tsl_repeatWrapping_float( coord: f32 ) -> f32 { return fract( coord ); }"),mirrorWrapping_float:new jx("fn tsl_mirrorWrapping_float( coord: f32 ) -> f32 { let mirrored = fract( coord * 0.5 ) * 2.0; return 1.0 - abs( 1.0 - mirrored ); }"),clampWrapping_float:new jx("fn tsl_clampWrapping_float( coord: f32 ) -> f32 { return clamp( coord, 0.0, 1.0 ); }"),biquadraticTexture:new jx("\nfn tsl_biquadraticTexture( map : texture_2d, coord : vec2f, iRes : vec2u, level : u32 ) -> vec4f {\n\n\tlet res = vec2f( iRes );\n\n\tlet uvScaled = coord * res;\n\tlet uvWrapping = ( ( uvScaled % res ) + res ) % res;\n\n\t// https://www.shadertoy.com/view/WtyXRy\n\n\tlet uv = uvWrapping - 0.5;\n\tlet iuv = floor( uv );\n\tlet f = fract( uv );\n\n\tlet rg1 = textureLoad( map, vec2u( iuv + vec2( 0.5, 0.5 ) ) % iRes, level );\n\tlet rg2 = textureLoad( map, vec2u( iuv + vec2( 1.5, 0.5 ) ) % iRes, level );\n\tlet rg3 = textureLoad( map, vec2u( iuv + vec2( 0.5, 1.5 ) ) % iRes, level );\n\tlet rg4 = textureLoad( map, vec2u( iuv + vec2( 1.5, 1.5 ) ) % iRes, level );\n\n\treturn mix( mix( rg1, rg2, f.x ), mix( rg3, rg4, f.x ), f.y );\n\n}\n")},eC={dFdx:"dpdx",dFdy:"- dpdy",mod_float:"tsl_mod_float",mod_vec2:"tsl_mod_vec2",mod_vec3:"tsl_mod_vec3",mod_vec4:"tsl_mod_vec4",equals_bool:"tsl_equals_bool",equals_bvec2:"tsl_equals_bvec2",equals_bvec3:"tsl_equals_bvec3",equals_bvec4:"tsl_equals_bvec4",inversesqrt:"inverseSqrt",bitcast:"bitcast",floatpack_snorm_2x16:"pack2x16snorm",floatpack_unorm_2x16:"pack2x16unorm",floatpack_float16_2x16:"pack2x16float",floatunpack_snorm_2x16:"unpack2x16snorm",floatunpack_unorm_2x16:"unpack2x16unorm",floatunpack_float16_2x16:"unpack2x16float"};let tC="";!0!==("undefined"!=typeof navigator&&/Firefox|Deno/g.test(navigator.userAgent))&&(tC+="diagnostic( off, derivative_uniformity );\n");class rC extends BN{constructor(e,t){super(e,t,new Hw),this.uniformGroups={},this.builtins={},this.directives={},this.scopedArrays=new Map}_generateTextureSample(e,t,r,s,i,n=this.shaderStage){return"fragment"===n?s?i?`textureSample( ${t}, ${t}_sampler, ${r}, ${s}, ${i} )`:`textureSample( ${t}, ${t}_sampler, ${r}, ${s} )`:i?`textureSample( ${t}, ${t}_sampler, ${r}, ${i} )`:`textureSample( ${t}, ${t}_sampler, ${r} )`:this.generateTextureSampleLevel(e,t,r,"0",s)}generateTextureSampleLevel(e,t,r,s,i,n){return!1===this.isUnfilterable(e)?n?`textureSampleLevel( ${t}, ${t}_sampler, ${r}, ${s}, ${n} )`:`textureSampleLevel( ${t}, ${t}_sampler, ${r}, ${s} )`:this.isFilteredTexture(e)?this.generateFilteredTexture(e,t,r,n,s):this.generateTextureLod(e,t,r,i,n,s)}generateWrapFunction(e){const t=`tsl_coord_${qw[e.wrapS]}S_${qw[e.wrapT]}_${e.is3DTexture||e.isData3DTexture?"3d":"2d"}T`;let r=Zw[t];if(void 0===r){const s=[],i=e.is3DTexture||e.isData3DTexture?"vec3f":"vec2f";let n=`fn ${t}( coord : ${i} ) -> ${i} {\n\n\treturn ${i}(\n`;const a=(e,t)=>{e===Ur?(s.push(Jw.repeatWrapping_float),n+=`\t\ttsl_repeatWrapping_float( coord.${t} )`):e===ye?(s.push(Jw.clampWrapping_float),n+=`\t\ttsl_clampWrapping_float( coord.${t} )`):e===Dr?(s.push(Jw.mirrorWrapping_float),n+=`\t\ttsl_mirrorWrapping_float( coord.${t} )`):(n+=`\t\tcoord.${t}`,d(`WebGPURenderer: Unsupported texture wrap type "${e}" for vertex shader.`))};a(e.wrapS,"x"),n+=",\n",a(e.wrapT,"y"),(e.is3DTexture||e.isData3DTexture)&&(n+=",\n",a(e.wrapR,"z")),n+="\n\t);\n\n}\n",Zw[t]=r=new jx(n,s)}return r.build(this),t}generateArrayDeclaration(e,t){return`array< ${this.getType(e)}, ${t} >`}generateTextureDimension(e,t,r){const s=this.getDataFromNode(e,this.shaderStage,this.globalCache);void 0===s.dimensionsSnippet&&(s.dimensionsSnippet={});let i=s.dimensionsSnippet[r];if(void 0===s.dimensionsSnippet[r]){let n,a;const{primarySamples:o}=this.renderer.backend.utils.getTextureSampleData(e),u=o>1;a=e.is3DTexture||e.isData3DTexture?"vec3":"vec2",n=u||e.isStorageTexture?t:`${t}${r?`, u32( ${r} )`:""}`,i=new Ru(new pl(`textureDimensions( ${n} )`,a)),s.dimensionsSnippet[r]=i,(e.isArrayTexture||e.isDataArrayTexture||e.is3DTexture||e.isData3DTexture)&&(s.arrayLayerCount=new Ru(new pl(`textureNumLayers(${t})`,"u32"))),e.isTextureCube&&(s.cubeFaceCount=new Ru(new pl("6u","u32")))}return i.build(this)}generateFilteredTexture(e,t,r,s,i="0u"){this._include("biquadraticTexture");const n=this.generateWrapFunction(e),a=this.generateTextureDimension(e,t,i);return s&&(r=`${r} + vec2(${s}) / ${a}`),`tsl_biquadraticTexture( ${t}, ${n}( ${r} ), ${a}, u32( ${i} ) )`}generateTextureLod(e,t,r,s,i,n="0u"){const a=this.generateWrapFunction(e),o=this.generateTextureDimension(e,t,n),u=e.is3DTexture||e.isData3DTexture?"vec3":"vec2";i&&(r=`${r} + ${u}(${i}) / ${u}( ${o} )`);const l=`${u}( ${a}( ${r} ) * ${u}( ${o} ) )`;return this.generateTextureLoad(e,t,l,n,s,null)}generateTextureLoad(e,t,r,s,i,n){let a;return null===s&&(s="0u"),n&&(r=`${r} + ${n}`),i?a=`textureLoad( ${t}, ${r}, ${i}, u32( ${s} ) )`:(a=`textureLoad( ${t}, ${r}, u32( ${s} ) )`,this.renderer.backend.compatibilityMode&&e.isDepthTexture&&(a+=".x")),a}generateTextureStore(e,t,r,s,i){let n;return n=s?`textureStore( ${t}, ${r}, ${s}, ${i} )`:`textureStore( ${t}, ${r}, ${i} )`,n}isSampleCompare(e){return!0===e.isDepthTexture&&null!==e.compareFunction}isUnfilterable(e){return"float"!==this.getComponentTypeFromTexture(e)||!this.isAvailable("float32Filterable")&&!0===e.isDataTexture&&e.type===H||!1===this.isSampleCompare(e)&&e.minFilter===R&&e.magFilter===R||this.renderer.backend.utils.getTextureSampleData(e).primarySamples>1}generateTexture(e,t,r,s,i,n=this.shaderStage){let a=null;return a=this.isUnfilterable(e)?this.generateTextureLod(e,t,r,s,i,"0",n):this._generateTextureSample(e,t,r,s,i,n),a}generateTextureGrad(e,t,r,s,i,n,a=this.shaderStage){if("fragment"===a)return n?`textureSampleGrad( ${t}, ${t}_sampler, ${r}, ${s[0]}, ${s[1]}, ${n} )`:`textureSampleGrad( ${t}, ${t}_sampler, ${r}, ${s[0]}, ${s[1]} )`;o(`WebGPURenderer: THREE.TextureNode.gradient() does not support ${a} shader.`)}generateTextureCompare(e,t,r,s,i,n,a=this.shaderStage){if("fragment"===a)return!0===e.isDepthTexture&&!0===e.isArrayTexture?n?`textureSampleCompare( ${t}, ${t}_sampler, ${r}, ${i}, ${s}, ${n} )`:`textureSampleCompare( ${t}, ${t}_sampler, ${r}, ${i}, ${s} )`:n?`textureSampleCompare( ${t}, ${t}_sampler, ${r}, ${s}, ${n} )`:`textureSampleCompare( ${t}, ${t}_sampler, ${r}, ${s} )`;o(`WebGPURenderer: THREE.DepthTexture.compareFunction() does not support ${a} shader.`)}generateTextureLevel(e,t,r,s,i,n){return!1===this.isUnfilterable(e)?n?`textureSampleLevel( ${t}, ${t}_sampler, ${r}, ${s}, ${n} )`:`textureSampleLevel( ${t}, ${t}_sampler, ${r}, ${s} )`:this.isFilteredTexture(e)?this.generateFilteredTexture(e,t,r,n,s):this.generateTextureLod(e,t,r,i,n,s)}generateTextureBias(e,t,r,s,i,n,a=this.shaderStage){if("fragment"===a)return n?`textureSampleBias( ${t}, ${t}_sampler, ${r}, ${s}, ${n} )`:`textureSampleBias( ${t}, ${t}_sampler, ${r}, ${s} )`;o(`WebGPURenderer: THREE.TextureNode.biasNode does not support ${a} shader.`)}getPropertyName(e,t=this.shaderStage){if(!0===e.isNodeVarying&&!0===e.needsInterpolation){if("vertex"===t)return`varyings.${e.name}`}else if(!0===e.isNodeUniform){const t=e.name,r=e.type;return"texture"===r||"cubeTexture"===r||"cubeDepthTexture"===r||"storageTexture"===r||"texture3D"===r?t:"buffer"===r||"storageBuffer"===r||"indirectStorageBuffer"===r?this.isCustomStruct(e)?t:t+".value":e.groupNode.name+"."+t}return super.getPropertyName(e)}getOutputStructName(){return"output"}getFunctionOperator(e){const t=Yw[e];return void 0!==t?(this._include(t),t):null}getNodeAccess(e,t){return"compute"!==t?!0===e.isAtomic?(d("WebGPURenderer: Atomic operations are only supported in compute shaders."),Js.READ_WRITE):Js.READ_ONLY:e.access}getStorageAccess(e,t){return jw[this.getNodeAccess(e,t)]}getUniformFromNode(e,t,r,s=null){const i=super.getUniformFromNode(e,t,r,s),n=this.getDataFromNode(e,r,this.globalCache);if(void 0===n.uniformGPU){let a;const o=e.groupNode,u=o.name,l=this.getBindGroupArray(u,r);if("texture"===t||"cubeTexture"===t||"cubeDepthTexture"===t||"storageTexture"===t||"texture3D"===t){let s=null;const n=this.getNodeAccess(e,r);if("texture"===t||"storageTexture"===t?s=!0===e.value.is3DTexture?new WS(i.name,i.node,o,n):new zS(i.name,i.node,o,n):"cubeTexture"===t||"cubeDepthTexture"===t?s=new $S(i.name,i.node,o,n):"texture3D"===t&&(s=new WS(i.name,i.node,o,n)),s.store=!0===e.isStorageTextureNode,s.mipLevel=s.store?e.mipLevel:0,s.setVisibility(Xw[r]),!1===this.isUnfilterable(e.value)&&!1===s.store){const e=new Lw(`${i.name}_sampler`,i.node,o);e.setVisibility(Xw[r]),l.push(e,s),a=[e,s]}else l.push(s),a=[s]}else if("buffer"===t||"storageBuffer"===t||"indirectStorageBuffer"===t){const n=this.getSharedDataFromNode(e);let u=n.buffer;if(void 0===u){u=new("buffer"===t?DS:Dw)(e,o),n.buffer=u}u.setVisibility(u.getVisibility()|Xw[r]),l.push(u),a=u,i.name=s||"NodeBuffer_"+i.id}else{const e=this.uniformGroups[r]||(this.uniformGroups[r]={});let s=e[u];void 0===s&&(s=new OS(u,o),s.setVisibility(Xw[r]),e[u]=s,l.push(s)),a=this.getNodeUniform(i,t),s.addUniform(a)}n.uniformGPU=a}return i}getBuiltin(e,t,r,s=this.shaderStage){const i=this.builtins[s]||(this.builtins[s]=new Map);return!1===i.has(e)&&i.set(e,{name:e,property:t,type:r}),t}hasBuiltin(e,t=this.shaderStage){return void 0!==this.builtins[t]&&this.builtins[t].has(e)}getVertexIndex(){return"vertex"===this.shaderStage?this.getBuiltin("vertex_index","vertexIndex","u32","attribute"):"vertexIndex"}buildFunctionCode(e){const t=e.layout,r=this.flowShaderNode(e),s=[];for(const e of t.inputs)s.push(e.name+" : "+this.getType(e.type));let i=`fn ${t.name}( ${s.join(", ")} ) -> ${this.getType(t.type)} {\n${r.vars}\n${r.code}\n`;return r.result&&(i+=`\treturn ${r.result};\n`),i+="\n}\n",i}getInstanceIndex(){return"vertex"===this.shaderStage?this.getBuiltin("instance_index","instanceIndex","u32","attribute"):"instanceIndex"}getInvocationLocalIndex(){return this.getBuiltin("local_invocation_index","invocationLocalIndex","u32","attribute")}getSubgroupSize(){return this.enableSubGroups(),this.getBuiltin("subgroup_size","subgroupSize","u32","attribute")}getInvocationSubgroupIndex(){return this.enableSubGroups(),this.getBuiltin("subgroup_invocation_id","invocationSubgroupIndex","u32","attribute")}getSubgroupIndex(){return this.enableSubGroups(),this.getBuiltin("subgroup_id","subgroupIndex","u32","attribute")}getDrawIndex(){return null}getFrontFacing(){return this.getBuiltin("front_facing","isFront","bool")}getFragCoord(){return this.getBuiltin("position","fragCoord","vec4")+".xy"}getFragDepth(){return"output."+this.getBuiltin("frag_depth","depth","f32","output")}getClipDistance(){return"varyings.hw_clip_distances"}isFlipY(){return!1}enableDirective(e,t=this.shaderStage){(this.directives[t]||(this.directives[t]=new Set)).add(e)}getDirectives(e){const t=[],r=this.directives[e];if(void 0!==r)for(const e of r)t.push(`enable ${e};`);return t.join("\n")}enableSubGroups(){this.enableDirective("subgroups")}enableSubgroupsF16(){this.enableDirective("subgroups-f16")}enableClipDistances(){this.enableDirective("clip_distances")}enableShaderF16(){this.enableDirective("f16")}enableDualSourceBlending(){this.enableDirective("dual_source_blending")}enableHardwareClipping(e){this.enableClipDistances(),this.getBuiltin("clip_distances","hw_clip_distances",`array`,"vertex")}getBuiltins(e){const t=[],r=this.builtins[e];if(void 0!==r)for(const{name:e,property:s,type:i}of r.values())t.push(`@builtin( ${e} ) ${s} : ${i}`);return t.join(",\n\t")}getScopedArray(e,t,r,s){return!1===this.scopedArrays.has(e)&&this.scopedArrays.set(e,{name:e,scope:t,bufferType:r,bufferCount:s}),e}getScopedArrays(e){if("compute"!==e)return;const t=[];for(const{name:e,scope:r,bufferType:s,bufferCount:i}of this.scopedArrays.values()){const n=this.getType(s);t.push(`var<${r}> ${e}: array< ${n}, ${i} >;`)}return t.join("\n")}getAttributes(e){const t=[];if("compute"===e&&(this.getBuiltin("global_invocation_id","globalId","vec3","attribute"),this.getBuiltin("workgroup_id","workgroupId","vec3","attribute"),this.getBuiltin("local_invocation_id","localId","vec3","attribute"),this.getBuiltin("num_workgroups","numWorkgroups","vec3","attribute"),this.renderer.hasFeature("subgroups")&&(this.enableDirective("subgroups",e),this.getBuiltin("subgroup_size","subgroupSize","u32","attribute"))),"vertex"===e||"compute"===e){const e=this.getBuiltins("attribute");e&&t.push(e);const r=this.getAttributesArray();for(let e=0,s=r.length;e"),t.push(`\t${s+r.name} : ${i}`)}return e.output&&t.push(`\t${this.getBuiltins("output")}`),t.join(",\n")}getStructs(e){let t="";const r=this.structs[e];if(r.length>0){const e=[];for(const t of r){let r=`struct ${t.name} {\n`;r+=this.getStructMembers(t),r+="\n};",e.push(r)}t="\n"+e.join("\n\n")+"\n"}return t}getVar(e,t,r=null){let s=`var ${t} : `;return s+=null!==r?this.generateArrayDeclaration(e,r):this.getType(e),s}getVars(e){const t=[],r=this.vars[e];if(void 0!==r)for(const e of r)t.push(`\t${this.getVar(e.type,e.name,e.count)};`);return`\n${t.join("\n")}\n`}getVaryings(e){const t=[];if("vertex"===e&&this.getBuiltin("position","Vertex","vec4","vertex"),"vertex"===e||"fragment"===e){const r=this.varyings,s=this.vars[e];for(let i=0;ir.value.itemSize;return s&&!i}getUniforms(e){const t=this.uniforms[e],r=[],s=[],i=[],n={};for(const i of t){const t=i.groupNode.name,a=this.bindingsIndexes[t];if("texture"===i.type||"cubeTexture"===i.type||"cubeDepthTexture"===i.type||"storageTexture"===i.type||"texture3D"===i.type){const t=i.node.value;let s;!1===this.isUnfilterable(t)&&!0!==i.node.isStorageTextureNode&&(this.isSampleCompare(t)?r.push(`@binding( ${a.binding++} ) @group( ${a.group} ) var ${i.name}_sampler : sampler_comparison;`):r.push(`@binding( ${a.binding++} ) @group( ${a.group} ) var ${i.name}_sampler : sampler;`));let n="";const{primarySamples:o}=this.renderer.backend.utils.getTextureSampleData(t);if(o>1&&(n="_multisampled"),!0===t.isCubeTexture&&!0===t.isDepthTexture)s="texture_depth_cube";else if(!0===t.isCubeTexture)s="texture_cube";else if(!0===t.isDepthTexture)s=this.renderer.backend.compatibilityMode&&null===t.compareFunction?`texture${n}_2d`:`texture_depth${n}_2d${!0===t.isArrayTexture?"_array":""}`;else if(!0===i.node.isStorageTextureNode){const r=kw(t),n=this.getStorageAccess(i.node,e),a=i.node.value.is3DTexture,o=i.node.value.isArrayTexture;s=`texture_storage_${a?"3d":"2d"+(o?"_array":"")}<${r}, ${n}>`}else if(!0===t.isArrayTexture||!0===t.isDataArrayTexture||!0===t.isCompressedArrayTexture)s="texture_2d_array";else if(!0===t.is3DTexture||!0===t.isData3DTexture)s="texture_3d";else{s=`texture${n}_2d<${this.getComponentTypeFromTexture(t).charAt(0)}32>`}r.push(`@binding( ${a.binding++} ) @group( ${a.group} ) var ${i.name} : ${s};`)}else if("buffer"===i.type||"storageBuffer"===i.type||"indirectStorageBuffer"===i.type){const t=i.node,r=this.getType(t.getNodeType(this)),n=t.bufferCount,o=n>0&&"buffer"===i.type?", "+n:"",u=t.isStorageBufferNode?`storage, ${this.getStorageAccess(t,e)}`:"uniform";if(this.isCustomStruct(i))s.push(`@binding( ${a.binding++} ) @group( ${a.group} ) var<${u}> ${i.name} : ${r};`);else{const e=`\tvalue : array< ${t.isAtomic?`atomic<${r}>`:`${r}`}${o} >`;s.push(this._getWGSLStructBinding(i.name,e,u,a.binding++,a.group))}}else{const e=this.getType(this.getVectorType(i.type)),t=i.groupNode.name;(n[t]||(n[t]={index:a.binding++,id:a.group,snippets:[]})).snippets.push(`\t${i.name} : ${e}`)}}for(const e in n){const t=n[e];i.push(this._getWGSLStructBinding(e,t.snippets.join(",\n"),"uniform",t.index,t.id))}let a=r.join("\n");return a+=s.join("\n"),a+=i.join("\n"),a}buildCode(){const e=null!==this.material?{fragment:{},vertex:{}}:{compute:{}};this.sortBindingGroups();for(const t in e){this.shaderStage=t;const r=e[t];r.uniforms=this.getUniforms(t),r.attributes=this.getAttributes(t),r.varyings=this.getVaryings(t),r.structs=this.getStructs(t),r.vars=this.getVars(t),r.codes=this.getCodes(t),r.directives=this.getDirectives(t),r.scopedArrays=this.getScopedArrays(t);let s="// code\n\n";s+=this.flowCode[t];const i=this.flowNodes[t],n=i[i.length-1],a=n.outputNode,o=void 0!==a&&!0===a.isOutputStructNode;for(const e of i){const i=this.getFlowData(e),u=e.name;if(u&&(s.length>0&&(s+="\n"),s+=`\t// flow -> ${u}\n`),s+=`${i.code}\n\t`,e===n&&"compute"!==t)if(s+="// result\n\n\t","vertex"===t)s+=`varyings.Vertex = ${i.result};`;else if("fragment"===t)if(o)r.returnType=a.getNodeType(this),r.structs+="var output : "+r.returnType+";",s+=`return ${i.result};`;else{let e="\t@location(0) color: vec4";const t=this.getBuiltins("output");t&&(e+=",\n\t"+t),r.returnType="OutputStruct",r.structs+=this._getWGSLStruct("OutputStruct",e),r.structs+="\nvar output : OutputStruct;",s+=`output.color = ${i.result};\n\n\treturn output;`}}r.flow=s}if(this.shaderStage=null,null!==this.material)this.vertexShader=this._getWGSLVertexCode(e.vertex),this.fragmentShader=this._getWGSLFragmentCode(e.fragment);else{const t=this.object.workgroupSize;this.computeShader=this._getWGSLComputeCode(e.compute,t)}}getMethod(e,t=null){let r;return null!==t&&(r=this._getWGSLMethod(e+"_"+t)),void 0===r&&(r=this._getWGSLMethod(e)),r||e}getBitcastMethod(e){return`bitcast<${this.getType(e)}>`}getFloatPackingMethod(e){return this.getMethod(`floatpack_${e}_2x16`)}getFloatUnpackingMethod(e){return this.getMethod(`floatunpack_${e}_2x16`)}getTernary(e,t,r){return`select( ${r}, ${t}, ${e} )`}getType(e){return Qw[e]||e}isAvailable(e){let t=Kw[e];return void 0===t&&("float32Filterable"===e?t=this.renderer.hasFeature("float32-filterable"):"clipDistance"===e&&(t=this.renderer.hasFeature("clip-distances")),Kw[e]=t),t}_getWGSLMethod(e){return void 0!==Jw[e]&&this._include(e),eC[e]}_include(e){const t=Jw[e];return t.build(this),this.addInclude(t),t}_getWGSLVertexCode(e){return`${this.getSignature()}\n// directives\n${e.directives}\n\n// structs\n${e.structs}\n\n// uniforms\n${e.uniforms}\n\n// varyings\n${e.varyings}\nvar varyings : VaryingsStruct;\n\n// codes\n${e.codes}\n\n@vertex\nfn main( ${e.attributes} ) -> VaryingsStruct {\n\n\t// vars\n\t${e.vars}\n\n\t// flow\n\t${e.flow}\n\n\treturn varyings;\n\n}\n`}_getWGSLFragmentCode(e){return`${this.getSignature()}\n// global\n${tC}\n\n// structs\n${e.structs}\n\n// uniforms\n${e.uniforms}\n\n// codes\n${e.codes}\n\n@fragment\nfn main( ${e.varyings} ) -> ${e.returnType} {\n\n\t// vars\n\t${e.vars}\n\n\t// flow\n\t${e.flow}\n\n}\n`}_getWGSLComputeCode(e,t){const[r,s,i]=t;return`${this.getSignature()}\n// directives\n${e.directives}\n\n// system\nvar instanceIndex : u32;\n\n// locals\n${e.scopedArrays}\n\n// structs\n${e.structs}\n\n// uniforms\n${e.uniforms}\n\n// codes\n${e.codes}\n\n@compute @workgroup_size( ${r}, ${s}, ${i} )\nfn main( ${e.attributes} ) {\n\n\t// system\n\tinstanceIndex = globalId.x\n\t\t+ globalId.y * ( ${r} * numWorkgroups.x )\n\t\t+ globalId.z * ( ${r} * numWorkgroups.x ) * ( ${s} * numWorkgroups.y );\n\n\t// vars\n\t${e.vars}\n\n\t// flow\n\t${e.flow}\n\n}\n`}_getWGSLStruct(e,t){return`\nstruct ${e} {\n${t}\n};`}_getWGSLStructBinding(e,t,r,s=0,i=0){const n=e+"Struct";return`${this._getWGSLStruct(n,t)}\n@binding( ${s} ) @group( ${i} )\nvar<${r}> ${e} : ${n};`}}class sC{constructor(e){this.backend=e}getCurrentDepthStencilFormat(e){let t;return null!==e.depthTexture?t=this.getTextureFormatGPU(e.depthTexture):e.depth&&e.stencil?t=CR:e.depth&&(t=wR),t}getTextureFormatGPU(e){return this.backend.get(e).format}getTextureSampleData(e){let t;if(e.isFramebufferTexture)t=1;else if(e.isDepthTexture&&!e.renderTarget){const e=this.backend.renderer,r=e.getRenderTarget();t=r?r.samples:e.currentSamples}else e.renderTarget&&(t=e.renderTarget.samples);t=t||1;const r=t>1&&null!==e.renderTarget&&!0!==e.isDepthTexture&&!0!==e.isFramebufferTexture;return{samples:t,primarySamples:r?1:t,isMSAA:r}}getCurrentColorFormat(e){let t;return t=null!==e.textures?this.getTextureFormatGPU(e.textures[0]):this.getPreferredCanvasFormat(),t}getCurrentColorFormats(e){return null!==e.textures?e.textures.map(e=>this.getTextureFormatGPU(e)):[this.getPreferredCanvasFormat()]}getCurrentColorSpace(e){return null!==e.textures?e.textures[0].colorSpace:this.backend.renderer.outputColorSpace}getPrimitiveTopology(e,t){return e.isPoints?vA:e.isLineSegments||e.isMesh&&!0===t.wireframe?NA:e.isLine?SA:e.isMesh?AA:void 0}getSampleCount(e){return e>=4?4:1}getSampleCountRenderContext(e){return null!==e.textures?this.getSampleCount(e.sampleCount):this.getSampleCount(this.backend.renderer.currentSamples)}getPreferredCanvasFormat(){const e=this.backend.parameters.outputType;if(void 0===e)return navigator.gpu.getPreferredCanvasFormat();if(e===ke)return pR;if(e===fe)return NR;throw new Error("Unsupported outputType")}}const iC=new Map([[Int8Array,["sint8","snorm8"]],[Uint8Array,["uint8","unorm8"]],[Int16Array,["sint16","snorm16"]],[Uint16Array,["uint16","unorm16"]],[Int32Array,["sint32","snorm32"]],[Uint32Array,["uint32","unorm32"]],[Float32Array,["float32"]]]);"undefined"!=typeof Float16Array&&iC.set(Float16Array,["float16"]);const nC=new Map([[et,["float16"]]]),aC=new Map([[Int32Array,"sint32"],[Int16Array,"sint32"],[Uint32Array,"uint32"],[Uint16Array,"uint32"],[Float32Array,"float32"]]);class oC{constructor(e){this.backend=e}createAttribute(e,t){const r=this._getBufferAttribute(e),s=this.backend,i=s.get(r);let n=i.buffer;if(void 0===n){const a=s.device;let o=r.array;if(!1===e.normalized)if(o.constructor===Int16Array||o.constructor===Int8Array)o=new Int32Array(o);else if((o.constructor===Uint16Array||o.constructor===Uint8Array)&&(o=new Uint32Array(o),t&GPUBufferUsage.INDEX))for(let e=0;e0&&(void 0===n.groups&&(n.groups=[],n.versions=[]),n.versions[r]===s&&(o=n.groups[r])),void 0===o&&(o=this.createBindGroup(e,a),r>0&&(n.groups[r]=o,n.versions[r]=s)),n.group=o}updateBinding(e){const t=this.backend,r=t.device,s=e.buffer,i=t.get(e).buffer,n=e.updateRanges;if(0===n.length)r.queue.writeBuffer(i,0,s,0);else{const t=qr(s),a=t?1:s.BYTES_PER_ELEMENT;for(let e=0,o=n.length;e1&&(i+=`-${e.texture.depthOrArrayLayers}`),i+=`-${r}-${s}`,a=e[i],void 0===a){const n=Ew;let o;o=t.isSampledCubeTexture?Aw:t.isSampledTexture3D?Rw:t.texture.isArrayTexture||t.texture.isDataArrayTexture||t.texture.isCompressedArrayTexture?Sw:Nw,a=e[i]=e.texture.createView({aspect:n,dimension:o,mipLevelCount:r,baseMipLevel:s})}}n.push({binding:i,resource:a})}else if(t.isSampler){const e=r.get(t.texture);n.push({binding:i,resource:e.sampler})}i++}return s.createBindGroup({label:"bindGroup_"+e.name,layout:t,entries:n})}_createBindingLayoutEntry(e,t){const r=this.backend,s={binding:t,visibility:e.visibility};if(e.isUniformBuffer||e.isStorageBuffer){const t={};e.isStorageBuffer&&(e.visibility&EA.COMPUTE&&(e.access===Js.READ_WRITE||e.access===Js.WRITE_ONLY)?t.type=lw:t.type=dw),s.buffer=t}else if(e.isSampledTexture&&e.store){const t={};t.format=this.backend.get(e.texture).texture.format;const r=e.access;t.access=r===Js.READ_WRITE?pw:r===Js.WRITE_ONLY?cw:hw,e.texture.isArrayTexture?t.viewDimension=Sw:e.texture.is3DTexture&&(t.viewDimension=Rw),s.storageTexture=t}else if(e.isSampledTexture){const t={},{primarySamples:i}=r.utils.getTextureSampleData(e.texture);if(i>1&&(t.multisampled=!0,e.texture.isDepthTexture||(t.sampleType=yw)),e.texture.isDepthTexture)r.compatibilityMode&&null===e.texture.compareFunction?t.sampleType=yw:t.sampleType=bw;else if(e.texture.isDataTexture||e.texture.isDataArrayTexture||e.texture.isData3DTexture){const r=e.texture.type;r===A?t.sampleType=xw:r===S?t.sampleType=Tw:r===H&&(this.backend.hasFeature("float32-filterable")?t.sampleType=fw:t.sampleType=yw)}e.isSampledCubeTexture?t.viewDimension=Aw:e.texture.isArrayTexture||e.texture.isDataArrayTexture||e.texture.isCompressedArrayTexture?t.viewDimension=Sw:e.isSampledTexture3D&&(t.viewDimension=Rw),s.texture=t}else if(e.isSampler){const t={};e.texture.isDepthTexture&&(null!==e.texture.compareFunction?t.type=mw:r.compatibilityMode&&(t.type=gw)),s.sampler=t}else o(`WebGPUBindingUtils: Unsupported binding "${e}".`);return s}_createBindingsLayoutEntries(e){const t=[];let r=0;for(const s of e.bindings)t.push(this._createBindingLayoutEntry(s,r)),r++;return t}deleteBindGroupData(e){const{backend:t}=this,r=t.get(e);r.layout.usedTimes--,0===r.layout.usedTimes&&this.bindGroupLayoutCache.delete(r.layoutKey),r.layout=null}dispose(){this.bindGroupLayoutCache.clear()}}class dC{constructor(e){this.backend=e,this._activePipelines=new WeakMap}setPipeline(e,t){this._activePipelines.get(e)!==t&&(e.setPipeline(t),this._activePipelines.set(e,t))}_getSampleCount(e){return this.backend.utils.getSampleCountRenderContext(e)}createRenderPipeline(e,t){const{object:r,material:s,geometry:i,pipeline:n}=e,{vertexProgram:a,fragmentProgram:u}=n,l=this.backend,d=l.device,c=l.utils,h=l.get(n),p=[];for(const t of e.getBindings()){const e=l.get(t),{layoutGPU:r}=e.layout;p.push(r)}const g=l.attributeUtils.createShaderVertexBuffers(e);let m;s.blending===Z||s.blending===Qe&&!1===s.transparent||(m=this._getBlending(s));let f={};!0===s.stencilWrite&&(f={compare:this._getStencilCompare(s),failOp:this._getStencilOperation(s.stencilFail),depthFailOp:this._getStencilOperation(s.stencilZFail),passOp:this._getStencilOperation(s.stencilZPass)});const y=this._getColorWriteMask(s),b=[];if(null!==e.context.textures){const t=e.context.textures;for(let e=0;e1},layout:d.createPipelineLayout({bindGroupLayouts:p})},R={},E=e.context.depth,w=e.context.stencil;if(!0!==E&&!0!==w||(!0===E&&(R.format=N,R.depthWriteEnabled=s.depthWrite,R.depthCompare=v),!0===w&&(R.stencilFront=f,R.stencilBack={},R.stencilReadMask=s.stencilFuncMask,R.stencilWriteMask=s.stencilWriteMask),!0===s.polygonOffset&&(R.depthBias=s.polygonOffsetUnits,R.depthBiasSlopeScale=s.polygonOffsetFactor,R.depthBiasClamp=0),A.depthStencil=R),d.pushErrorScope("validation"),null===t)h.pipeline=d.createRenderPipeline(A),d.popErrorScope().then(e=>{null!==e&&(h.error=!0,o(e.message))});else{const e=new Promise(async e=>{try{h.pipeline=await d.createRenderPipelineAsync(A)}catch(e){}const t=await d.popErrorScope();null!==t&&(h.error=!0,o(t.message)),e()});t.push(e)}}createBundleEncoder(e,t="renderBundleEncoder"){const r=this.backend,{utils:s,device:i}=r,n=s.getCurrentDepthStencilFormat(e),a={label:t,colorFormats:s.getCurrentColorFormats(e),depthStencilFormat:n,sampleCount:this._getSampleCount(e)};return i.createRenderBundleEncoder(a)}createComputePipeline(e,t){const r=this.backend,s=r.device,i=r.get(e.computeProgram).module,n=r.get(e),a=[];for(const e of t){const t=r.get(e),{layoutGPU:s}=t.layout;a.push(s)}n.pipeline=s.createComputePipeline({compute:i,layout:s.createPipelineLayout({bindGroupLayouts:a})})}_getBlending(e){let t,r;const s=e.blending,i=e.blendSrc,n=e.blendDst,a=e.blendEquation;if(s===nt){const s=null!==e.blendSrcAlpha?e.blendSrcAlpha:i,o=null!==e.blendDstAlpha?e.blendDstAlpha:n,u=null!==e.blendEquationAlpha?e.blendEquationAlpha:a;t={srcFactor:this._getBlendFactor(i),dstFactor:this._getBlendFactor(n),operation:this._getBlendOperation(a)},r={srcFactor:this._getBlendFactor(s),dstFactor:this._getBlendFactor(o),operation:this._getBlendOperation(u)}}else{const i=(e,s,i,n)=>{t={srcFactor:e,dstFactor:s,operation:XE},r={srcFactor:i,dstFactor:n,operation:XE}};if(e.premultipliedAlpha)switch(s){case Qe:i(UE,kE,UE,kE);break;case $t:i(UE,UE,UE,UE);break;case zt:i(DE,OE,DE,UE);break;case Gt:i(GE,kE,DE,UE)}else switch(s){case Qe:i(VE,kE,UE,kE);break;case $t:i(VE,UE,UE,UE);break;case zt:o("WebGPURenderer: SubtractiveBlending requires material.premultipliedAlpha = true");break;case Gt:o("WebGPURenderer: MultiplyBlending requires material.premultipliedAlpha = true")}}if(void 0!==t&&void 0!==r)return{color:t,alpha:r};o("WebGPURenderer: Invalid blending: ",s)}_getBlendFactor(e){let t;switch(e){case ot:t=DE;break;case It:t=UE;break;case Ut:t=IE;break;case Bt:t=OE;break;case Dt:t=VE;break;case Mt:t=kE;break;case Pt:t=GE;break;case Ct:t=zE;break;case Lt:t=$E;break;case wt:t=WE;break;case Ft:t=HE;break;case 211:t=jE;break;case 212:t=qE;break;default:o("WebGPURenderer: Blend factor not supported.",e)}return t}_getStencilCompare(e){let t;const r=e.stencilFunc;switch(r){case ts:t=wA;break;case es:t=DA;break;case Jr:t=CA;break;case Zr:t=BA;break;case Qr:t=MA;break;case Yr:t=FA;break;case Kr:t=LA;break;case Xr:t=PA;break;default:o("WebGPURenderer: Invalid stencil function.",r)}return t}_getStencilOperation(e){let t;switch(e){case ls:t=tw;break;case us:t=rw;break;case os:t=sw;break;case as:t=iw;break;case ns:t=nw;break;case is:t=aw;break;case ss:t=ow;break;case rs:t=uw;break;default:o("WebGPURenderer: Invalid stencil operation.",t)}return t}_getBlendOperation(e){let t;switch(e){case at:t=XE;break;case Et:t=KE;break;case Rt:t=YE;break;case cs:t=QE;break;case ds:t=ZE;break;default:o("WebGPUPipelineUtils: Blend equation not supported.",e)}return t}_getPrimitiveState(e,t,r){const s={},i=this.backend.utils;s.topology=i.getPrimitiveTopology(e,r),null!==t.index&&!0===e.isLine&&!0!==e.isLineSegments&&(s.stripIndexFormat=t.index.array instanceof Uint16Array?$A:WA);let n=r.side===w;return e.isMesh&&e.matrixWorld.determinant()<0&&(n=!n),s.frontFace=!0===n?kA:VA,s.cullMode=r.side===C?GA:zA,s}_getColorWriteMask(e){return!0===e.colorWrite?ew:JE}_getDepthCompare(e){let t;if(!1===e.depthTest)t=DA;else{const r=e.depthFunc;switch(r){case Qt:t=wA;break;case Yt:t=DA;break;case Kt:t=CA;break;case Xt:t=BA;break;case qt:t=MA;break;case jt:t=FA;break;case Ht:t=LA;break;case Wt:t=PA;break;default:o("WebGPUPipelineUtils: Invalid depth function.",r)}}return t}}class cC extends xA{constructor(e,t,r=2048){super(r),this.device=e,this.type=t,this.querySet=this.device.createQuerySet({type:"timestamp",count:this.maxQueries,label:`queryset_global_timestamp_${t}`});const s=8*this.maxQueries;this.resolveBuffer=this.device.createBuffer({label:`buffer_timestamp_resolve_${t}`,size:s,usage:GPUBufferUsage.QUERY_RESOLVE|GPUBufferUsage.COPY_SRC}),this.resultBuffer=this.device.createBuffer({label:`buffer_timestamp_result_${t}`,size:s,usage:GPUBufferUsage.COPY_DST|GPUBufferUsage.MAP_READ})}allocateQueriesForContext(e){if(!this.trackTimestamp||this.isDisposed)return null;if(this.currentQueryIndex+2>this.maxQueries)return v(`WebGPUTimestampQueryPool [${this.type}]: Maximum number of queries exceeded, when using trackTimestamp it is necessary to resolves the queries via renderer.resolveTimestampsAsync( THREE.TimestampQuery.${this.type.toUpperCase()} ).`),null;const t=this.currentQueryIndex;return this.currentQueryIndex+=2,this.queryOffsets.set(e,t),t}async resolveQueriesAsync(){if(!this.trackTimestamp||0===this.currentQueryIndex||this.isDisposed)return this.lastValue;if(this.pendingResolve)return this.pendingResolve;this.pendingResolve=this._resolveQueries();try{return await this.pendingResolve}finally{this.pendingResolve=null}}async _resolveQueries(){if(this.isDisposed)return this.lastValue;try{if("unmapped"!==this.resultBuffer.mapState)return this.lastValue;const e=new Map(this.queryOffsets),t=this.currentQueryIndex,r=8*t;this.currentQueryIndex=0,this.queryOffsets.clear();const s=this.device.createCommandEncoder();s.resolveQuerySet(this.querySet,0,t,this.resolveBuffer,0),s.copyBufferToBuffer(this.resolveBuffer,0,this.resultBuffer,0,r);const i=s.finish();if(this.device.queue.submit([i]),"unmapped"!==this.resultBuffer.mapState)return this.lastValue;if(await this.resultBuffer.mapAsync(GPUMapMode.READ,0,r),this.isDisposed)return"mapped"===this.resultBuffer.mapState&&this.resultBuffer.unmap(),this.lastValue;const n=new BigUint64Array(this.resultBuffer.getMappedRange(0,r)),a={},o=[];for(const[t,r]of e){const e=t.match(/^(.*):f(\d+)$/),s=parseInt(e[2]);!1===o.includes(s)&&o.push(s),void 0===a[s]&&(a[s]=0);const i=n[r],u=n[r+1],l=Number(u-i)/1e6;this.timestamps.set(t,l),a[s]+=l}const u=a[o[o.length-1]];return this.resultBuffer.unmap(),this.lastValue=u,this.frames=o,u}catch(e){return o("Error resolving queries:",e),"mapped"===this.resultBuffer.mapState&&this.resultBuffer.unmap(),this.lastValue}}async dispose(){if(!this.isDisposed){if(this.isDisposed=!0,this.pendingResolve)try{await this.pendingResolve}catch(e){o("Error waiting for pending resolve:",e)}if(this.resultBuffer&&"mapped"===this.resultBuffer.mapState)try{this.resultBuffer.unmap()}catch(e){o("Error unmapping buffer:",e)}this.querySet&&(this.querySet.destroy(),this.querySet=null),this.resolveBuffer&&(this.resolveBuffer.destroy(),this.resolveBuffer=null),this.resultBuffer&&(this.resultBuffer.destroy(),this.resultBuffer=null),this.queryOffsets.clear(),this.pendingResolve=null}}}class hC extends tA{constructor(e={}){super(e),this.isWebGPUBackend=!0,this.parameters.alpha=void 0===e.alpha||e.alpha,this.parameters.compatibilityMode=void 0!==e.compatibilityMode&&e.compatibilityMode,this.parameters.requiredLimits=void 0===e.requiredLimits?{}:e.requiredLimits,this.compatibilityMode=this.parameters.compatibilityMode,this.device=null,this.defaultRenderPassdescriptor=null,this.utils=new sC(this),this.attributeUtils=new oC(this),this.bindingUtils=new lC(this),this.pipelineUtils=new dC(this),this.textureUtils=new Vw(this),this.occludedResolveCache=new Map}async init(e){await super.init(e);const t=this.parameters;let r;if(void 0===t.device){const e={powerPreference:t.powerPreference,featureLevel:t.compatibilityMode?"compatibility":void 0},s="undefined"!=typeof navigator?await navigator.gpu.requestAdapter(e):null;if(null===s)throw new Error("WebGPUBackend: Unable to create WebGPU adapter.");const i=Object.values(Mw),n=[];for(const e of i)s.features.has(e)&&n.push(e);const a={requiredFeatures:n,requiredLimits:t.requiredLimits};r=await s.requestDevice(a)}else r=t.device;r.lost.then(t=>{const r={api:"WebGPU",message:t.message||"Unknown reason",reason:t.reason||null,originalEvent:t};e.onDeviceLost(r)}),this.device=r,this.trackTimestamp=this.trackTimestamp&&this.hasFeature(Mw.TimestampQuery),this.updateSize()}get context(){const e=this.renderer.getCanvasTarget(),t=this.get(e);let r=t.context;if(void 0===r){const s=this.parameters;r=!0===e.isDefaultCanvasTarget&&void 0!==s.context?s.context:e.domElement.getContext("webgpu"),"setAttribute"in e.domElement&&e.domElement.setAttribute("data-engine",`three.js r${tt} webgpu`);const i=s.alpha?"premultiplied":"opaque",n=s.outputType===fe?"extended":"standard";r.configure({device:this.device,format:this.utils.getPreferredCanvasFormat(),usage:GPUTextureUsage.RENDER_ATTACHMENT|GPUTextureUsage.COPY_SRC,alphaMode:i,toneMapping:{mode:n}}),t.context=r}return r}get coordinateSystem(){return h}async getArrayBufferAsync(e){return await this.attributeUtils.getArrayBufferAsync(e)}getContext(){return this.context}_getDefaultRenderPassDescriptor(){const e=this.renderer,t=e.getCanvasTarget(),r=this.get(t),s=e.currentSamples;let i=r.descriptor;if(void 0===i||r.samples!==s){i={colorAttachments:[{view:null}]},!0!==e.depth&&!0!==e.stencil||(i.depthStencilAttachment={view:this.textureUtils.getDepthBuffer(e.depth,e.stencil).createView()});const t=i.colorAttachments[0];s>0?t.view=this.textureUtils.getColorBuffer().createView():t.resolveTarget=void 0,r.descriptor=i,r.samples=s}const n=i.colorAttachments[0];return s>0?n.resolveTarget=this.context.getCurrentTexture().createView():n.view=this.context.getCurrentTexture().createView(),i}_isRenderCameraDepthArray(e){return e.depthTexture&&e.depthTexture.image.depth>1&&e.camera.isArrayCamera}_getRenderPassDescriptor(e,t={}){const r=e.renderTarget,s=this.get(r);let i=s.descriptors;void 0!==i&&s.width===r.width&&s.height===r.height&&s.samples===r.samples||(i={},s.descriptors=i);const n=e.getCacheKey();let a=i[n];if(void 0===a){const t=e.textures,o=[];let u;const l=this._isRenderCameraDepthArray(e);for(let s=0;s1)if(!0===l){const t=e.camera.cameras;for(let e=0;e0&&(t.currentOcclusionQuerySet&&t.currentOcclusionQuerySet.destroy(),t.currentOcclusionQueryBuffer&&t.currentOcclusionQueryBuffer.destroy(),t.currentOcclusionQuerySet=t.occlusionQuerySet,t.currentOcclusionQueryBuffer=t.occlusionQueryBuffer,t.currentOcclusionQueryObjects=t.occlusionQueryObjects,i=r.createQuerySet({type:"occlusion",count:s,label:`occlusionQuerySet_${e.id}`}),t.occlusionQuerySet=i,t.occlusionQueryIndex=0,t.occlusionQueryObjects=new Array(s),t.lastOcclusionObject=null),n=null===e.textures?this._getDefaultRenderPassDescriptor():this._getRenderPassDescriptor(e,{loadOp:IA}),this.initTimestampQuery(St.RENDER,this.getTimestampUID(e),n),n.occlusionQuerySet=i;const a=n.depthStencilAttachment;if(null!==e.textures){const t=n.colorAttachments;for(let r=0;r0&&t.currentPass.executeBundles(t.renderBundles),r>t.occlusionQueryIndex&&t.currentPass.endOcclusionQuery();const s=t.encoder;if(!0===this._isRenderCameraDepthArray(e)){const r=[];for(let e=0;e0){const s=8*r;let i=this.occludedResolveCache.get(s);void 0===i&&(i=this.device.createBuffer({size:s,usage:GPUBufferUsage.QUERY_RESOLVE|GPUBufferUsage.COPY_SRC}),this.occludedResolveCache.set(s,i));const n=this.device.createBuffer({size:s,usage:GPUBufferUsage.COPY_DST|GPUBufferUsage.MAP_READ});t.encoder.resolveQuerySet(t.occlusionQuerySet,0,r,i,0),t.encoder.copyBufferToBuffer(i,0,n,0,s),t.occlusionQueryBuffer=n,this.resolveOccludedAsync(e)}if(this.device.queue.submit([t.encoder.finish()]),null!==e.textures){const t=e.textures;for(let e=0;eo&&(i[0]=Math.min(a,o),i[1]=Math.ceil(a/o)),n.dispatchSize=i}i=n.dispatchSize}a.dispatchWorkgroups(i[0],i[1]||1,i[2]||1)}finishCompute(e){const t=this.get(e);t.passEncoderGPU.end(),this.device.queue.submit([t.cmdEncoderGPU.finish()])}draw(e,t){const{object:r,material:s,context:i,pipeline:n}=e,a=e.getBindings(),o=this.get(i),u=this.get(n),l=u.pipeline;if(!0===u.error)return;const d=e.getIndex(),c=null!==d,h=e.getDrawParameters();if(null===h)return;const p=(t,r)=>{this.pipelineUtils.setPipeline(t,l),r.pipeline=l;const n=r.bindingGroups;for(let e=0,r=a.length;e{if(p(s,i),!0===r.isBatchedMesh){const e=r._multiDrawStarts,i=r._multiDrawCounts,n=r._multiDrawCount,a=r._multiDrawInstances;null!==a&&v("WebGPUBackend: renderMultiDrawInstances has been deprecated and will be removed in r184. Append to renderMultiDraw arguments and use indirection.");for(let o=0;o1?0:o;!0===c?s.drawIndexed(i[o],n,e[o]/d.array.BYTES_PER_ELEMENT,0,u):s.draw(i[o],n,e[o],u),t.update(r,i[o],n)}}else if(!0===c){const{vertexCount:i,instanceCount:n,firstVertex:a}=h,o=e.getIndirect();if(null!==o){const t=this.get(o).buffer,r=e.getIndirectOffset(),i=Array.isArray(r)?r:[r];for(let e=0;e0){const t=this.get(e.camera),s=e.camera.cameras,n=e.getBindingGroup("cameraIndex");if(void 0===t.indexesGPU||t.indexesGPU.length!==s.length){const e=this.get(n),r=[],i=new Uint32Array([0,0,0,0]);for(let t=0,n=s.length;t(d("WebGPURenderer: WebGPU is not available, running under WebGL2 backend."),new _A(e)));super(new t(e),e),this.library=new mC,this.isWebGPURenderer=!0}}class yC extends As{constructor(){super(),this.isBundleGroup=!0,this.type="BundleGroup",this.static=!0,this.version=0}set needsUpdate(e){!0===e&&this.version++}}class bC{constructor(e,t=Sn(0,0,1,1)){this.renderer=e,this.outputNode=t,this.outputColorTransform=!0,this.needsUpdate=!0;const r=new Xp;r.name="PostProcessing",this._quadMesh=new Wb(r),this._quadMesh.name="Post-Processing",this._context=null}render(){const e=this.renderer;this._update(),null!==this._context.onBeforePostProcessing&&this._context.onBeforePostProcessing();const t=e.toneMapping,r=e.outputColorSpace;e.toneMapping=m,e.outputColorSpace=p.workingColorSpace;const s=e.xr.enabled;e.xr.enabled=!1,this._quadMesh.render(e),e.xr.enabled=s,e.toneMapping=t,e.outputColorSpace=r,null!==this._context.onAfterPostProcessing&&this._context.onAfterPostProcessing()}get context(){return this._context}dispose(){this._quadMesh.material.dispose()}_update(){if(!0===this.needsUpdate){const e=this.renderer,t=e.toneMapping,r=e.outputColorSpace,s={postProcessing:this,onBeforePostProcessing:null,onAfterPostProcessing:null};let i=this.outputNode;!0===this.outputColorTransform?(i=i.context(s),i=yl(i,t,r)):(s.toneMapping=t,s.outputColorSpace=r,i=i.context(s)),this._context=s,this._quadMesh.material.fragmentNode=i,this._quadMesh.material.needsUpdate=!0,this.needsUpdate=!1}}async renderAsync(){v('PostProcessing: "renderAsync()" has been deprecated. Use "render()" and "await renderer.init();" when creating the renderer.'),await this.renderer.init(),this.render()}}class xC extends N{constructor(e=1,t=1){super(),this.image={width:e,height:t},this.magFilter=ne,this.minFilter=ne,this.isStorageTexture=!0,this.mipmapsAutoUpdate=!0}setSize(e,t){this.image.width===e&&this.image.height===t||(this.image.width=e,this.image.height=t,this.dispose())}}class TC extends sx{constructor(e,t){super(e,t,Uint32Array),this.isIndirectStorageBufferAttribute=!0}}class _C extends Rs{constructor(e){super(e),this.textures={},this.nodes={}}load(e,t,r,s){const i=new Es(this.manager);i.setPath(this.path),i.setRequestHeader(this.requestHeader),i.setWithCredentials(this.withCredentials),i.load(e,r=>{try{t(this.parse(JSON.parse(r)))}catch(t){s?s(t):o(t),this.manager.itemError(e)}},r,s)}parseNodes(e){const t={};if(void 0!==e){for(const r of e){const{uuid:e,type:s}=r;t[e]=this.createNodeFromType(s),t[e].uuid=e}const r={nodes:t,textures:this.textures};for(const s of e){s.meta=r;t[s.uuid].deserialize(s),delete s.meta}}return t}parse(e){const t=this.createNodeFromType(e.type);t.uuid=e.uuid;const r={nodes:this.parseNodes(e.nodes),textures:this.textures};return e.meta=r,t.deserialize(e),delete e.meta,t}setTextures(e){return this.textures=e,this}setNodes(e){return this.nodes=e,this}createNodeFromType(e){return void 0===this.nodes[e]?(o("NodeLoader: Node type not found:",e),hn()):Yi(new this.nodes[e])}}class vC extends ws{constructor(e){super(e),this.nodes={},this.nodeMaterials={}}parse(e){const t=super.parse(e),r=this.nodes,s=e.inputNodes;for(const e in s){const i=s[e];t[e]=r[i]}return t}setNodes(e){return this.nodes=e,this}setNodeMaterials(e){return this.nodeMaterials=e,this}createMaterialFromType(e){const t=this.nodeMaterials[e];return void 0!==t?new t:super.createMaterialFromType(e)}}class NC extends Cs{constructor(e){super(e),this.nodes={},this.nodeMaterials={},this._nodesJSON=null}setNodes(e){return this.nodes=e,this}setNodeMaterials(e){return this.nodeMaterials=e,this}parse(e,t){this._nodesJSON=e.nodes;const r=super.parse(e,t);return this._nodesJSON=null,r}parseNodes(e,t){if(void 0!==e){const r=new _C;return r.setNodes(this.nodes),r.setTextures(t),r.parseNodes(e)}return{}}parseMaterials(e,t){const r={};if(void 0!==e){const s=this.parseNodes(this._nodesJSON,t),i=new vC;i.setTextures(t),i.setNodes(s),i.setNodeMaterials(this.nodeMaterials);for(let t=0,s=e.length;t Date: Mon, 1 Dec 2025 11:42:07 +0100 Subject: [PATCH 6/6] Revert "WebGPUBindingUtils: Improve Bind Group Layout cache system." (#32437) --- src/renderers/common/Backend.js | 8 - src/renderers/common/Bindings.js | 2 - src/renderers/webgpu/WebGPUBackend.js | 16 +- .../webgpu/utils/WebGPUBindingUtils.js | 475 +++++++----------- .../webgpu/utils/WebGPUPipelineUtils.js | 6 +- 5 files changed, 187 insertions(+), 320 deletions(-) diff --git a/src/renderers/common/Backend.js b/src/renderers/common/Backend.js index 2ba911e6e78ba4..ff616efe8e7fc3 100644 --- a/src/renderers/common/Backend.js +++ b/src/renderers/common/Backend.js @@ -725,14 +725,6 @@ class Backend { } - /** - * Delete GPU data associated with a bind group. - * - * @abstract - * @param {BindGroup} bindGroup - The bind group. - */ - deleteBindGroupData( /*bindGroup*/ ) { } - /** * Deletes an object from the internal data structure. * diff --git a/src/renderers/common/Bindings.js b/src/renderers/common/Bindings.js index f7675a18046e38..89339b20f078f5 100644 --- a/src/renderers/common/Bindings.js +++ b/src/renderers/common/Bindings.js @@ -164,7 +164,6 @@ class Bindings extends DataMap { for ( const bindGroup of bindings ) { - this.backend.deleteBindGroupData( bindGroup ); this.delete( bindGroup ); } @@ -182,7 +181,6 @@ class Bindings extends DataMap { for ( const bindGroup of bindings ) { - this.backend.deleteBindGroupData( bindGroup ); this.delete( bindGroup ); } diff --git a/src/renderers/webgpu/WebGPUBackend.js b/src/renderers/webgpu/WebGPUBackend.js index 28a25798205d0d..07ff008e9a127e 100644 --- a/src/renderers/webgpu/WebGPUBackend.js +++ b/src/renderers/webgpu/WebGPUBackend.js @@ -1665,9 +1665,7 @@ class WebGPUBackend extends Backend { data[ 0 ] = i; - const { layoutGPU } = bindingsData.layout; - - const bindGroupIndex = this.bindingUtils.createBindGroupIndex( data, layoutGPU ); + const bindGroupIndex = this.bindingUtils.createBindGroupIndex( data, bindingsData.layout ); indexesGPU.push( bindGroupIndex ); @@ -2134,17 +2132,6 @@ class WebGPUBackend extends Backend { } - /** - * Delete data associated with the current bind group. - * - * @param {BindGroup} bindGroup - The bind group. - */ - deleteBindGroupData( bindGroup ) { - - this.bindingUtils.deleteBindGroupData( bindGroup ); - - } - /** * Updates the given bind group definition. * @@ -2500,7 +2487,6 @@ class WebGPUBackend extends Backend { dispose() { this.textureUtils.dispose(); - this.bindingUtils.dispose(); } diff --git a/src/renderers/webgpu/utils/WebGPUBindingUtils.js b/src/renderers/webgpu/utils/WebGPUBindingUtils.js index 8a72f09df009e2..cfe8db92f7f2bf 100644 --- a/src/renderers/webgpu/utils/WebGPUBindingUtils.js +++ b/src/renderers/webgpu/utils/WebGPUBindingUtils.js @@ -7,37 +7,6 @@ import { FloatType, IntType, UnsignedIntType } from '../../../constants.js'; import { NodeAccess } from '../../../nodes/core/constants.js'; import { isTypedArray, error } from '../../../utils.js'; -/** -* Class representing a WebGPU bind group layout. -* -*/ -class BindGroupLayout { - - /** - * Constructs a new BindGroupLayout. - * - * @param {GPUBindGroupLayout} layoutGPU - A GPU Bind Group Layout. - */ - constructor( layoutGPU ) { - - /** - * The current GPUBindGroupLayout - * - * @type {GPUBindGroupLayout} - */ - this.layoutGPU = layoutGPU; - - /** - * The number of bind groups that use the current GPUBindGroupLayout - * - * @type {number} - */ - this.usedTimes = 0; - - } - -} - /** * A WebGPU backend utility module for managing bindings. * @@ -65,11 +34,11 @@ class WebGPUBindingUtils { this.backend = backend; /** - * A cache that maps combinations of layout entries to existing bind group layouts. + * A cache for managing bind group layouts. * - * @type {Map} + * @type {WeakMap,GPUBindGroupLayout>} */ - this.bindGroupLayoutCache = new Map(); + this.bindGroupLayoutCache = new WeakMap(); } @@ -84,33 +53,185 @@ class WebGPUBindingUtils { const backend = this.backend; const device = backend.device; - const bindingsData = backend.get( bindGroup ); + const entries = []; - // When current bind group has already been assigned a layout - if ( bindingsData.bindGroupLayout !== undefined ) { + let index = 0; - return bindingsData.bindGroupLayout.layoutGPU; + for ( const binding of bindGroup.bindings ) { - } + const bindingGPU = { + binding: index ++, + visibility: binding.visibility + }; - const entries = this._createBindingsLayoutEntries( bindGroup ); + if ( binding.isUniformBuffer || binding.isStorageBuffer ) { - const bindGroupLayoutKey = JSON.stringify( entries ); + const buffer = {}; // GPUBufferBindingLayout - let bindGroupLayout = this.bindGroupLayoutCache.get( bindGroupLayoutKey ); + if ( binding.isStorageBuffer ) { - if ( bindGroupLayout === undefined ) { + if ( binding.visibility & GPUShaderStage.COMPUTE ) { - bindGroupLayout = new BindGroupLayout( device.createBindGroupLayout( { entries } ) ); - this.bindGroupLayoutCache.set( bindGroupLayoutKey, bindGroupLayout ); + // compute - } + if ( binding.access === NodeAccess.READ_WRITE || binding.access === NodeAccess.WRITE_ONLY ) { + + buffer.type = GPUBufferBindingType.Storage; + + } else { + + buffer.type = GPUBufferBindingType.ReadOnlyStorage; + + } + + } else { + + buffer.type = GPUBufferBindingType.ReadOnlyStorage; + + } + + } + + bindingGPU.buffer = buffer; + + } else if ( binding.isSampledTexture && binding.store ) { + + const storageTexture = {}; // GPUStorageTextureBindingLayout + storageTexture.format = this.backend.get( binding.texture ).texture.format; + + const access = binding.access; + + if ( access === NodeAccess.READ_WRITE ) { + + storageTexture.access = GPUStorageTextureAccess.ReadWrite; + + } else if ( access === NodeAccess.WRITE_ONLY ) { + + storageTexture.access = GPUStorageTextureAccess.WriteOnly; + + } else { + + storageTexture.access = GPUStorageTextureAccess.ReadOnly; + + } + + if ( binding.texture.isArrayTexture ) { + + storageTexture.viewDimension = GPUTextureViewDimension.TwoDArray; + + } else if ( binding.texture.is3DTexture ) { + + storageTexture.viewDimension = GPUTextureViewDimension.ThreeD; + + } + + bindingGPU.storageTexture = storageTexture; + + } else if ( binding.isSampledTexture ) { + + const texture = {}; // GPUTextureBindingLayout + + const { primarySamples } = backend.utils.getTextureSampleData( binding.texture ); + + if ( primarySamples > 1 ) { + + texture.multisampled = true; + + if ( ! binding.texture.isDepthTexture ) { + + texture.sampleType = GPUTextureSampleType.UnfilterableFloat; + + } + + } + + if ( binding.texture.isDepthTexture ) { + + if ( backend.compatibilityMode && binding.texture.compareFunction === null ) { + + texture.sampleType = GPUTextureSampleType.UnfilterableFloat; + + } else { + + texture.sampleType = GPUTextureSampleType.Depth; + + } + + } else if ( binding.texture.isDataTexture || binding.texture.isDataArrayTexture || binding.texture.isData3DTexture ) { + + const type = binding.texture.type; + + if ( type === IntType ) { + + texture.sampleType = GPUTextureSampleType.SInt; + + } else if ( type === UnsignedIntType ) { + + texture.sampleType = GPUTextureSampleType.UInt; + + } else if ( type === FloatType ) { + + if ( this.backend.hasFeature( 'float32-filterable' ) ) { - bindingsData.layout = bindGroupLayout; - bindingsData.layout.usedTimes ++; - bindingsData.layoutKey = bindGroupLayoutKey; + texture.sampleType = GPUTextureSampleType.Float; - return bindGroupLayout.layoutGPU; + } else { + + texture.sampleType = GPUTextureSampleType.UnfilterableFloat; + + } + + } + + } + + if ( binding.isSampledCubeTexture ) { + + texture.viewDimension = GPUTextureViewDimension.Cube; + + } else if ( binding.texture.isArrayTexture || binding.texture.isDataArrayTexture || binding.texture.isCompressedArrayTexture ) { + + texture.viewDimension = GPUTextureViewDimension.TwoDArray; + + } else if ( binding.isSampledTexture3D ) { + + texture.viewDimension = GPUTextureViewDimension.ThreeD; + + } + + bindingGPU.texture = texture; + + } else if ( binding.isSampler ) { + + const sampler = {}; // GPUSamplerBindingLayout + + if ( binding.texture.isDepthTexture ) { + + if ( binding.texture.compareFunction !== null ) { + + sampler.type = GPUSamplerBindingType.Comparison; + + } else if ( backend.compatibilityMode ) { + + sampler.type = GPUSamplerBindingType.NonFiltering; + + } + + } + + bindingGPU.sampler = sampler; + + } else { + + error( `WebGPUBindingUtils: Unsupported binding "${ binding }".` ); + + } + + entries.push( bindingGPU ); + + } + + return device.createBindGroupLayout( { entries } ); } @@ -124,12 +245,19 @@ class WebGPUBindingUtils { */ createBindings( bindGroup, bindings, cacheIndex, version = 0 ) { - const { backend } = this; + const { backend, bindGroupLayoutCache } = this; const bindingsData = backend.get( bindGroup ); // setup (static) binding layout and (dynamic) binding group - const bindLayoutGPU = this.createBindingsLayout( bindGroup ); + let bindLayoutGPU = bindGroupLayoutCache.get( bindGroup.bindingsReference ); + + if ( bindLayoutGPU === undefined ) { + + bindLayoutGPU = this.createBindingsLayout( bindGroup ); + bindGroupLayoutCache.set( bindGroup.bindingsReference, bindLayoutGPU ); + + } let bindGroupGPU; @@ -164,6 +292,7 @@ class WebGPUBindingUtils { } bindingsData.group = bindGroupGPU; + bindingsData.layout = bindLayoutGPU; } @@ -225,10 +354,10 @@ class WebGPUBindingUtils { * Creates a GPU bind group for the camera index. * * @param {Uint32Array} data - The index data. - * @param {GPUBindGroupLayout} layoutGPU - The GPU bind group layout. + * @param {GPUBindGroupLayout} layout - The GPU bind group layout. * @return {GPUBindGroup} The GPU bind group. */ - createBindGroupIndex( data, layoutGPU ) { + createBindGroupIndex( data, layout ) { const backend = this.backend; const device = backend.device; @@ -248,7 +377,7 @@ class WebGPUBindingUtils { return device.createBindGroup( { label: 'bindGroupCameraIndex_' + index, - layout: layoutGPU, + layout, entries } ); @@ -409,242 +538,6 @@ class WebGPUBindingUtils { } - /** - * Creates a bind group layout entry for the given binding. - * - * @param {Binding} binding - The binding. - * @param {number} index - The index of the bind group layout entry in the bind group layout. - * @return {GPUBindGroupLayoutEntry} The bind group layout entry. - */ - _createBindingLayoutEntry( binding, index ) { - - const backend = this.backend; - - const bindingGPU = { - binding: index, - visibility: binding.visibility - }; - - if ( binding.isUniformBuffer || binding.isStorageBuffer ) { - - const buffer = {}; // GPUBufferBindingLayout - - if ( binding.isStorageBuffer ) { - - if ( binding.visibility & GPUShaderStage.COMPUTE ) { - - // compute - - if ( binding.access === NodeAccess.READ_WRITE || binding.access === NodeAccess.WRITE_ONLY ) { - - buffer.type = GPUBufferBindingType.Storage; - - } else { - - buffer.type = GPUBufferBindingType.ReadOnlyStorage; - - } - - } else { - - buffer.type = GPUBufferBindingType.ReadOnlyStorage; - - } - - } - - bindingGPU.buffer = buffer; - - } else if ( binding.isSampledTexture && binding.store ) { - - const storageTexture = {}; // GPUStorageTextureBindingLayout - storageTexture.format = this.backend.get( binding.texture ).texture.format; - - const access = binding.access; - - if ( access === NodeAccess.READ_WRITE ) { - - storageTexture.access = GPUStorageTextureAccess.ReadWrite; - - } else if ( access === NodeAccess.WRITE_ONLY ) { - - storageTexture.access = GPUStorageTextureAccess.WriteOnly; - - } else { - - storageTexture.access = GPUStorageTextureAccess.ReadOnly; - - } - - if ( binding.texture.isArrayTexture ) { - - storageTexture.viewDimension = GPUTextureViewDimension.TwoDArray; - - } else if ( binding.texture.is3DTexture ) { - - storageTexture.viewDimension = GPUTextureViewDimension.ThreeD; - - } - - bindingGPU.storageTexture = storageTexture; - - } else if ( binding.isSampledTexture ) { - - const texture = {}; // GPUTextureBindingLayout - - const { primarySamples } = backend.utils.getTextureSampleData( binding.texture ); - - if ( primarySamples > 1 ) { - - texture.multisampled = true; - - if ( ! binding.texture.isDepthTexture ) { - - texture.sampleType = GPUTextureSampleType.UnfilterableFloat; - - } - - } - - if ( binding.texture.isDepthTexture ) { - - if ( backend.compatibilityMode && binding.texture.compareFunction === null ) { - - texture.sampleType = GPUTextureSampleType.UnfilterableFloat; - - } else { - - texture.sampleType = GPUTextureSampleType.Depth; - - } - - } else if ( binding.texture.isDataTexture || binding.texture.isDataArrayTexture || binding.texture.isData3DTexture ) { - - const type = binding.texture.type; - - if ( type === IntType ) { - - texture.sampleType = GPUTextureSampleType.SInt; - - } else if ( type === UnsignedIntType ) { - - texture.sampleType = GPUTextureSampleType.UInt; - - } else if ( type === FloatType ) { - - if ( this.backend.hasFeature( 'float32-filterable' ) ) { - - texture.sampleType = GPUTextureSampleType.Float; - - } else { - - texture.sampleType = GPUTextureSampleType.UnfilterableFloat; - - } - - } - - } - - if ( binding.isSampledCubeTexture ) { - - texture.viewDimension = GPUTextureViewDimension.Cube; - - } else if ( binding.texture.isArrayTexture || binding.texture.isDataArrayTexture || binding.texture.isCompressedArrayTexture ) { - - texture.viewDimension = GPUTextureViewDimension.TwoDArray; - - } else if ( binding.isSampledTexture3D ) { - - texture.viewDimension = GPUTextureViewDimension.ThreeD; - - } - - bindingGPU.texture = texture; - - } else if ( binding.isSampler ) { - - const sampler = {}; // GPUSamplerBindingLayout - - if ( binding.texture.isDepthTexture ) { - - if ( binding.texture.compareFunction !== null ) { - - sampler.type = GPUSamplerBindingType.Comparison; - - } else if ( backend.compatibilityMode ) { - - sampler.type = GPUSamplerBindingType.NonFiltering; - - } - - } - - bindingGPU.sampler = sampler; - - } else { - - error( `WebGPUBindingUtils: Unsupported binding "${ binding }".` ); - - } - - return bindingGPU; - - } - - /** - * Creates a GPU bind group layout entries for the given bind group. - * - * @param {BindGroup} bindGroup - The bind group. - * @return {Array} The GPU bind group layout entries. - */ - _createBindingsLayoutEntries( bindGroup ) { - - const entries = []; - let index = 0; - - for ( const binding of bindGroup.bindings ) { - - entries.push( this._createBindingLayoutEntry( binding, index ) ); - index ++; - - } - - return entries; - - } - - /** - * Delete the data associated with a bind group. - * - * @param {BindGroup} bindGroup - The bind group. - */ - deleteBindGroupData( bindGroup ) { - - const { backend } = this; - - const bindingsData = backend.get( bindGroup ); - - // Decrement the layout reference's usedTimes attribute - bindingsData.layout.usedTimes --; - - // Remove reference from map - if ( bindingsData.layout.usedTimes === 0 ) { - - this.bindGroupLayoutCache.delete( bindingsData.layoutKey ); - - } - - bindingsData.layout = null; - - } - - dispose() { - - this.bindGroupLayoutCache.clear(); - - } - } export default WebGPUBindingUtils; diff --git a/src/renderers/webgpu/utils/WebGPUPipelineUtils.js b/src/renderers/webgpu/utils/WebGPUPipelineUtils.js index 5b1a2e4c4da2ad..330d48cfb15545 100644 --- a/src/renderers/webgpu/utils/WebGPUPipelineUtils.js +++ b/src/renderers/webgpu/utils/WebGPUPipelineUtils.js @@ -106,9 +106,8 @@ class WebGPUPipelineUtils { for ( const bindGroup of renderObject.getBindings() ) { const bindingsData = backend.get( bindGroup ); - const { layoutGPU } = bindingsData.layout; - bindGroupLayouts.push( layoutGPU ); + bindGroupLayouts.push( bindingsData.layout ); } @@ -342,9 +341,8 @@ class WebGPUPipelineUtils { for ( const bindingsGroup of bindings ) { const bindingsData = backend.get( bindingsGroup ); - const { layoutGPU } = bindingsData.layout; - bindGroupLayouts.push( layoutGPU ); + bindGroupLayouts.push( bindingsData.layout ); }