opal-js_wrap-three 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/Gemfile.lock +4 -4
- data/lib/opal/js_wrap/three/version.rb +1 -1
- data/lib-opal/js_wrap/three/WebGL.js +102 -0
- data/lib-opal/js_wrap/three/animation/AnimationClipCreator.js +116 -0
- data/lib-opal/js_wrap/three/animation/CCDIKSolver.js +436 -0
- data/lib-opal/js_wrap/three/animation/MMDAnimationHelper.js +941 -0
- data/lib-opal/js_wrap/three/animation/MMDPhysics.js +1183 -0
- data/lib-opal/js_wrap/three/cameras/CinematicCamera.js +204 -0
- data/lib-opal/js_wrap/three/controls/ArcballControls.js +2649 -0
- data/lib-opal/js_wrap/three/controls/DragControls.js +234 -0
- data/lib-opal/js_wrap/three/controls/FirstPersonControls.js +301 -0
- data/lib-opal/js_wrap/three/controls/FlyControls.js +357 -0
- data/lib-opal/js_wrap/three/controls/OrbitControls.js +908 -0
- data/lib-opal/js_wrap/three/controls/PointerLockControls.js +173 -0
- data/lib-opal/js_wrap/three/controls/TrackballControls.js +666 -0
- data/lib-opal/js_wrap/three/controls/TransformControls.js +1210 -0
- data/lib-opal/js_wrap/three/controls/experimental/CameraControls.js +860 -0
- data/lib-opal/js_wrap/three/csm/CSM.js +346 -0
- data/lib-opal/js_wrap/three/csm/CSMFrustum.js +123 -0
- data/lib-opal/js_wrap/three/csm/CSMHelper.js +197 -0
- data/lib-opal/js_wrap/three/csm/CSMShader.js +29 -0
- data/lib-opal/js_wrap/three/curves/CurveExtras.js +544 -0
- data/lib-opal/js_wrap/three/curves/NURBSCurve.js +122 -0
- data/lib-opal/js_wrap/three/curves/NURBSSurface.js +78 -0
- data/lib-opal/js_wrap/three/curves/NURBSUtils.js +413 -0
- data/lib-opal/js_wrap/three/deprecated/Geometry.js +1373 -0
- data/lib-opal/js_wrap/three/effects/AnaglyphEffect.js +113 -0
- data/lib-opal/js_wrap/three/effects/AsciiEffect.js +267 -0
- data/lib-opal/js_wrap/three/effects/OutlineEffect.js +400 -0
- data/lib-opal/js_wrap/three/effects/ParallaxBarrierEffect.js +90 -0
- data/lib-opal/js_wrap/three/effects/PeppersGhostEffect.js +160 -0
- data/lib-opal/js_wrap/three/effects/StereoEffect.js +63 -0
- data/lib-opal/js_wrap/three/environments/DebugEnvironment.js +107 -0
- data/lib-opal/js_wrap/three/environments/RoomEnvironment.js +166 -0
- data/lib-opal/js_wrap/three/exporters/ColladaExporter.js +442 -0
- data/lib-opal/js_wrap/three/exporters/DRACOExporter.js +205 -0
- data/lib-opal/js_wrap/three/exporters/GLTFExporter.js +2042 -0
- data/lib-opal/js_wrap/three/exporters/MMDExporter.js +189 -0
- data/lib-opal/js_wrap/three/exporters/OBJExporter.js +241 -0
- data/lib-opal/js_wrap/three/exporters/PLYExporter.js +370 -0
- data/lib-opal/js_wrap/three/exporters/STLExporter.js +186 -0
- data/lib-opal/js_wrap/three/exporters/USDZExporter.js +402 -0
- data/lib-opal/js_wrap/three/geometries/BoxLineGeometry.js +106 -0
- data/lib-opal/js_wrap/three/geometries/ConvexGeometry.js +88 -0
- data/lib-opal/js_wrap/three/geometries/DecalGeometry.js +302 -0
- data/lib-opal/js_wrap/three/geometries/LightningStrike.js +817 -0
- data/lib-opal/js_wrap/three/geometries/ParametricGeometries.js +280 -0
- data/lib-opal/js_wrap/three/geometries/ParametricGeometry.js +146 -0
- data/lib-opal/js_wrap/three/geometries/RoundedBoxGeometry.js +183 -0
- data/lib-opal/js_wrap/three/geometries/TeapotGeometry.js +352 -0
- data/lib-opal/js_wrap/three/geometries/TextGeometry.js +76 -0
- data/lib-opal/js_wrap/three/helpers/LightProbeHelper.js +95 -0
- data/lib-opal/js_wrap/three/helpers/PositionalAudioHelper.js +138 -0
- data/lib-opal/js_wrap/three/helpers/RectAreaLightHelper.js +115 -0
- data/lib-opal/js_wrap/three/helpers/VertexNormalsHelper.js +131 -0
- data/lib-opal/js_wrap/three/helpers/VertexTangentsHelper.js +118 -0
- data/lib-opal/js_wrap/three/interactive/HTMLMesh.js +307 -0
- data/lib-opal/js_wrap/three/interactive/InteractiveGroup.js +138 -0
- data/lib-opal/js_wrap/three/interactive/SelectionBox.js +264 -0
- data/lib-opal/js_wrap/three/interactive/SelectionHelper.js +88 -0
- data/lib-opal/js_wrap/three/libs/OimoPhysics/OimoPhysics.js +46059 -0
- data/lib-opal/js_wrap/three/libs/OimoPhysics/index.js +92 -0
- data/lib-opal/js_wrap/three/libs/chevrotain.module.min.js +6947 -0
- data/lib-opal/js_wrap/three/libs/ecsy.module.js +1999 -0
- data/lib-opal/js_wrap/three/libs/fflate.module.js +3002 -0
- data/lib-opal/js_wrap/three/libs/flow.module.js +3033 -0
- data/lib-opal/js_wrap/three/libs/ktx-parse.module.js +392 -0
- data/lib-opal/js_wrap/three/libs/lil-gui.module.min.js +821 -0
- data/lib-opal/js_wrap/three/libs/meshopt_decoder.module.js +136 -0
- data/lib-opal/js_wrap/three/libs/mmdparser.module.js +11022 -0
- data/lib-opal/js_wrap/three/libs/motion-controllers.module.js +589 -0
- data/lib-opal/js_wrap/three/libs/opentype.module.min.js +6132 -0
- data/lib-opal/js_wrap/three/libs/potpack.module.js +171 -0
- data/lib-opal/js_wrap/three/libs/rhino3dm/rhino3dm.js +6781 -0
- data/lib-opal/js_wrap/three/libs/rhino3dm/rhino3dm.module.js +6783 -0
- data/lib-opal/js_wrap/three/libs/stats.module.js +139 -0
- data/lib-opal/js_wrap/three/libs/tween.module.min.js +349 -0
- data/lib-opal/js_wrap/three/lights/LightProbeGenerator.js +233 -0
- data/lib-opal/js_wrap/three/lights/RectAreaLightUniformsLib.js +75 -0
- data/lib-opal/js_wrap/three/lines/Line2.js +66 -0
- data/lib-opal/js_wrap/three/lines/LineGeometry.js +122 -0
- data/lib-opal/js_wrap/three/lines/LineMaterial.js +227 -0
- data/lib-opal/js_wrap/three/lines/LineSegments2.js +312 -0
- data/lib-opal/js_wrap/three/lines/LineSegmentsGeometry.js +238 -0
- data/lib-opal/js_wrap/three/lines/Wireframe.js +98 -0
- data/lib-opal/js_wrap/three/lines/WireframeGeometry2.js +65 -0
- data/lib-opal/js_wrap/three/loaders/3DMLoader.js +1230 -0
- data/lib-opal/js_wrap/three/loaders/3MFLoader.js +1123 -0
- data/lib-opal/js_wrap/three/loaders/AMFLoader.js +445 -0
- data/lib-opal/js_wrap/three/loaders/BVHLoader.js +365 -0
- data/lib-opal/js_wrap/three/loaders/BasisTextureLoader.js +692 -0
- data/lib-opal/js_wrap/three/loaders/ColladaLoader.js +3046 -0
- data/lib-opal/js_wrap/three/loaders/DDSLoader.js +264 -0
- data/lib-opal/js_wrap/three/loaders/DRACOLoader.js +531 -0
- data/lib-opal/js_wrap/three/loaders/EXRLoader.js +1834 -0
- data/lib-opal/js_wrap/three/loaders/FBXLoader.js +3125 -0
- data/lib-opal/js_wrap/three/loaders/FontLoader.js +201 -0
- data/lib-opal/js_wrap/three/loaders/GCodeLoader.js +248 -0
- data/lib-opal/js_wrap/three/loaders/GLTFLoader.js +3334 -0
- data/lib-opal/js_wrap/three/loaders/HDRCubeTextureLoader.js +144 -0
- data/lib-opal/js_wrap/three/loaders/IFCLoader.js +2395 -0
- data/lib-opal/js_wrap/three/loaders/KMZLoader.js +142 -0
- data/lib-opal/js_wrap/three/loaders/KTX2Loader.js +535 -0
- data/lib-opal/js_wrap/three/loaders/KTXLoader.js +202 -0
- data/lib-opal/js_wrap/three/loaders/LDrawLoader.js +1737 -0
- data/lib-opal/js_wrap/three/loaders/LUT3dlLoader.js +163 -0
- data/lib-opal/js_wrap/three/loaders/LUTCubeLoader.js +171 -0
- data/lib-opal/js_wrap/three/loaders/LWOLoader.js +831 -0
- data/lib-opal/js_wrap/three/loaders/LogLuvLoader.js +713 -0
- data/lib-opal/js_wrap/three/loaders/LottieLoader.js +103 -0
- data/lib-opal/js_wrap/three/loaders/MD2Loader.js +258 -0
- data/lib-opal/js_wrap/three/loaders/MDDLoader.js +116 -0
- data/lib-opal/js_wrap/three/loaders/MMDLoader.js +1687 -0
- data/lib-opal/js_wrap/three/loaders/MTLLoader.js +465 -0
- data/lib-opal/js_wrap/three/loaders/NRRDLoader.js +554 -0
- data/lib-opal/js_wrap/three/loaders/NodeMaterialLoader.js +248 -0
- data/lib-opal/js_wrap/three/loaders/OBJLoader.js +673 -0
- data/lib-opal/js_wrap/three/loaders/PCDLoader.js +322 -0
- data/lib-opal/js_wrap/three/loaders/PDBLoader.js +318 -0
- data/lib-opal/js_wrap/three/loaders/PLYLoader.js +489 -0
- data/lib-opal/js_wrap/three/loaders/PRWMLoader.js +247 -0
- data/lib-opal/js_wrap/three/loaders/PVRLoader.js +240 -0
- data/lib-opal/js_wrap/three/loaders/RGBELoader.js +462 -0
- data/lib-opal/js_wrap/three/loaders/RGBMLoader.js +1169 -0
- data/lib-opal/js_wrap/three/loaders/STLLoader.js +345 -0
- data/lib-opal/js_wrap/three/loaders/SVGLoader.js +2162 -0
- data/lib-opal/js_wrap/three/loaders/TDSLoader.js +982 -0
- data/lib-opal/js_wrap/three/loaders/TGALoader.js +444 -0
- data/lib-opal/js_wrap/three/loaders/TTFLoader.js +210 -0
- data/lib-opal/js_wrap/three/loaders/TiltLoader.js +391 -0
- data/lib-opal/js_wrap/three/loaders/VOXLoader.js +272 -0
- data/lib-opal/js_wrap/three/loaders/VRMLLoader.js +2685 -0
- data/lib-opal/js_wrap/three/loaders/VRMLoader.js +103 -0
- data/lib-opal/js_wrap/three/loaders/VTKLoader.js +894 -0
- data/lib-opal/js_wrap/three/loaders/XYZLoader.js +136 -0
- data/lib-opal/js_wrap/three/loaders/ifc/web-ifc-api.js +60504 -0
- data/lib-opal/js_wrap/three/loaders/lwo/IFFParser.js +931 -0
- data/lib-opal/js_wrap/three/loaders/lwo/LWO2Parser.js +450 -0
- data/lib-opal/js_wrap/three/loaders/lwo/LWO3Parser.js +406 -0
- data/lib-opal/js_wrap/three/math/Capsule.js +133 -0
- data/lib-opal/js_wrap/three/math/ColorConverter.js +104 -0
- data/lib-opal/js_wrap/three/math/ConvexHull.js +924 -0
- data/lib-opal/js_wrap/three/math/ImprovedNoise.js +86 -0
- data/lib-opal/js_wrap/three/math/Lut.js +170 -0
- data/lib-opal/js_wrap/three/math/MeshSurfaceSampler.js +187 -0
- data/lib-opal/js_wrap/three/math/OBB.js +345 -0
- data/lib-opal/js_wrap/three/math/Octree.js +409 -0
- data/lib-opal/js_wrap/three/math/SimplexNoise.js +425 -0
- data/lib-opal/js_wrap/three/misc/ConvexObjectBreaker.js +447 -0
- data/lib-opal/js_wrap/three/misc/GPUComputationRenderer.js +322 -0
- data/lib-opal/js_wrap/three/misc/Gyroscope.js +94 -0
- data/lib-opal/js_wrap/three/misc/MD2Character.js +225 -0
- data/lib-opal/js_wrap/three/misc/MD2CharacterComplex.js +424 -0
- data/lib-opal/js_wrap/three/misc/MorphAnimMesh.js +109 -0
- data/lib-opal/js_wrap/three/misc/MorphBlendMesh.js +283 -0
- data/lib-opal/js_wrap/three/misc/ProgressiveLightMap.js +324 -0
- data/lib-opal/js_wrap/three/misc/RollerCoaster.js +489 -0
- data/lib-opal/js_wrap/three/misc/TubePainter.js +158 -0
- data/lib-opal/js_wrap/three/misc/Volume.js +427 -0
- data/lib-opal/js_wrap/three/misc/VolumeSlice.js +210 -0
- data/lib-opal/js_wrap/three/modifiers/CurveModifier.js +291 -0
- data/lib-opal/js_wrap/three/modifiers/EdgeSplitModifier.js +308 -0
- data/lib-opal/js_wrap/three/modifiers/SimplifyModifier.js +435 -0
- data/lib-opal/js_wrap/three/modifiers/TessellateModifier.js +264 -0
- data/lib-opal/js_wrap/three/node-editor/NodeEditor.js +402 -0
- data/lib-opal/js_wrap/three/node-editor/accessors/NormalEditor.js +80 -0
- data/lib-opal/js_wrap/three/node-editor/accessors/PositionEditor.js +80 -0
- data/lib-opal/js_wrap/three/node-editor/accessors/UVEditor.js +71 -0
- data/lib-opal/js_wrap/three/node-editor/display/BlendEditor.js +78 -0
- data/lib-opal/js_wrap/three/node-editor/inputs/ColorEditor.js +111 -0
- data/lib-opal/js_wrap/three/node-editor/inputs/FloatEditor.js +69 -0
- data/lib-opal/js_wrap/three/node-editor/inputs/SliderEditor.js +97 -0
- data/lib-opal/js_wrap/three/node-editor/inputs/Vector2Editor.js +73 -0
- data/lib-opal/js_wrap/three/node-editor/inputs/Vector3Editor.js +75 -0
- data/lib-opal/js_wrap/three/node-editor/inputs/Vector4Editor.js +77 -0
- data/lib-opal/js_wrap/three/node-editor/materials/StandardMaterialEditor.js +121 -0
- data/lib-opal/js_wrap/three/node-editor/math/DotEditor.js +76 -0
- data/lib-opal/js_wrap/three/node-editor/math/InvertEditor.js +80 -0
- data/lib-opal/js_wrap/three/node-editor/math/LimiterEditor.js +85 -0
- data/lib-opal/js_wrap/three/node-editor/math/NormalizeEditor.js +69 -0
- data/lib-opal/js_wrap/three/node-editor/math/OperatorEditor.js +91 -0
- data/lib-opal/js_wrap/three/node-editor/math/PowerEditor.js +73 -0
- data/lib-opal/js_wrap/three/node-editor/math/TrigonometryEditor.js +83 -0
- data/lib-opal/js_wrap/three/node-editor/procedural/CheckerEditor.js +69 -0
- data/lib-opal/js_wrap/three/node-editor/utils/OscillatorEditor.js +87 -0
- data/lib-opal/js_wrap/three/node-editor/utils/TimerEditor.js +89 -0
- data/lib-opal/js_wrap/three/nodes/Nodes.js +481 -0
- data/lib-opal/js_wrap/three/nodes/accessors/CameraNode.js +222 -0
- data/lib-opal/js_wrap/three/nodes/accessors/ColorsNode.js +99 -0
- data/lib-opal/js_wrap/three/nodes/accessors/LightNode.js +100 -0
- data/lib-opal/js_wrap/three/nodes/accessors/NormalNode.js +152 -0
- data/lib-opal/js_wrap/three/nodes/accessors/PositionNode.js +163 -0
- data/lib-opal/js_wrap/three/nodes/accessors/ReflectNode.js +161 -0
- data/lib-opal/js_wrap/three/nodes/accessors/ResolutionNode.js +99 -0
- data/lib-opal/js_wrap/three/nodes/accessors/ScreenUVNode.js +101 -0
- data/lib-opal/js_wrap/three/nodes/accessors/UVNode.js +105 -0
- data/lib-opal/js_wrap/three/nodes/core/AttributeNode.js +106 -0
- data/lib-opal/js_wrap/three/nodes/core/ConstNode.js +149 -0
- data/lib-opal/js_wrap/three/nodes/core/ExpressionNode.js +57 -0
- data/lib-opal/js_wrap/three/nodes/core/FunctionCallNode.js +138 -0
- data/lib-opal/js_wrap/three/nodes/core/FunctionNode.js +259 -0
- data/lib-opal/js_wrap/three/nodes/core/InputNode.js +124 -0
- data/lib-opal/js_wrap/three/nodes/core/Node.js +193 -0
- data/lib-opal/js_wrap/three/nodes/core/NodeBuilder.js +782 -0
- data/lib-opal/js_wrap/three/nodes/core/NodeFrame.js +69 -0
- data/lib-opal/js_wrap/three/nodes/core/NodeLib.js +56 -0
- data/lib-opal/js_wrap/three/nodes/core/NodeUniform.js +53 -0
- data/lib-opal/js_wrap/three/nodes/core/NodeUtils.js +60 -0
- data/lib-opal/js_wrap/three/nodes/core/StructNode.js +131 -0
- data/lib-opal/js_wrap/three/nodes/core/TempNode.js +160 -0
- data/lib-opal/js_wrap/three/nodes/core/VarNode.js +105 -0
- data/lib-opal/js_wrap/three/nodes/effects/BlurNode.js +160 -0
- data/lib-opal/js_wrap/three/nodes/effects/ColorAdjustmentNode.js +139 -0
- data/lib-opal/js_wrap/three/nodes/effects/LuminanceNode.js +106 -0
- data/lib-opal/js_wrap/three/nodes/inputs/BoolNode.js +95 -0
- data/lib-opal/js_wrap/three/nodes/inputs/ColorNode.js +99 -0
- data/lib-opal/js_wrap/three/nodes/inputs/CubeTextureNode.js +136 -0
- data/lib-opal/js_wrap/three/nodes/inputs/FloatNode.js +95 -0
- data/lib-opal/js_wrap/three/nodes/inputs/IntNode.js +95 -0
- data/lib-opal/js_wrap/three/nodes/inputs/Matrix3Node.js +102 -0
- data/lib-opal/js_wrap/three/nodes/inputs/Matrix4Node.js +102 -0
- data/lib-opal/js_wrap/three/nodes/inputs/PropertyNode.js +85 -0
- data/lib-opal/js_wrap/three/nodes/inputs/RTTNode.js +164 -0
- data/lib-opal/js_wrap/three/nodes/inputs/ReflectorNode.js +111 -0
- data/lib-opal/js_wrap/three/nodes/inputs/ScreenNode.js +69 -0
- data/lib-opal/js_wrap/three/nodes/inputs/TextureNode.js +140 -0
- data/lib-opal/js_wrap/three/nodes/inputs/Vector2Node.js +98 -0
- data/lib-opal/js_wrap/three/nodes/inputs/Vector3Node.js +99 -0
- data/lib-opal/js_wrap/three/nodes/inputs/Vector4Node.js +100 -0
- data/lib-opal/js_wrap/three/nodes/materials/BasicNodeMaterial.js +63 -0
- data/lib-opal/js_wrap/three/nodes/materials/MeshStandardNodeMaterial.js +63 -0
- data/lib-opal/js_wrap/three/nodes/materials/NodeMaterial.js +202 -0
- data/lib-opal/js_wrap/three/nodes/materials/PhongNodeMaterial.js +63 -0
- data/lib-opal/js_wrap/three/nodes/materials/SpriteNodeMaterial.js +63 -0
- data/lib-opal/js_wrap/three/nodes/materials/StandardNodeMaterial.js +63 -0
- data/lib-opal/js_wrap/three/nodes/materials/nodes/BasicNode.js +146 -0
- data/lib-opal/js_wrap/three/nodes/materials/nodes/MeshStandardNode.js +133 -0
- data/lib-opal/js_wrap/three/nodes/materials/nodes/PhongNode.js +273 -0
- data/lib-opal/js_wrap/three/nodes/materials/nodes/RawNode.js +101 -0
- data/lib-opal/js_wrap/three/nodes/materials/nodes/SpriteNode.js +176 -0
- data/lib-opal/js_wrap/three/nodes/materials/nodes/StandardNode.js +397 -0
- data/lib-opal/js_wrap/three/nodes/math/CondNode.js +151 -0
- data/lib-opal/js_wrap/three/nodes/math/MathNode.js +266 -0
- data/lib-opal/js_wrap/three/nodes/math/OperatorNode.js +120 -0
- data/lib-opal/js_wrap/three/nodes/misc/BumpMapNode.js +139 -0
- data/lib-opal/js_wrap/three/nodes/misc/NormalMapNode.js +122 -0
- data/lib-opal/js_wrap/three/nodes/misc/TextureCubeNode.js +107 -0
- data/lib-opal/js_wrap/three/nodes/misc/TextureCubeUVNode.js +191 -0
- data/lib-opal/js_wrap/three/nodes/postprocessing/NodePass.js +117 -0
- data/lib-opal/js_wrap/three/nodes/postprocessing/NodePostProcessing.js +128 -0
- data/lib-opal/js_wrap/three/nodes/procedural/CheckerNode.js +104 -0
- data/lib-opal/js_wrap/three/nodes/procedural/Fractal3DNode.js +121 -0
- data/lib-opal/js_wrap/three/nodes/procedural/Noise2DNode.js +115 -0
- data/lib-opal/js_wrap/three/nodes/procedural/Noise3DNode.js +112 -0
- data/lib-opal/js_wrap/three/nodes/utils/BypassNode.js +115 -0
- data/lib-opal/js_wrap/three/nodes/utils/ColorSpaceNode.js +214 -0
- data/lib-opal/js_wrap/three/nodes/utils/JoinNode.js +138 -0
- data/lib-opal/js_wrap/three/nodes/utils/MaxMIPLevelNode.js +88 -0
- data/lib-opal/js_wrap/three/nodes/utils/RemapNode.js +117 -0
- data/lib-opal/js_wrap/three/nodes/utils/SpecularMIPLevelNode.js +121 -0
- data/lib-opal/js_wrap/three/nodes/utils/SubSlotNode.js +112 -0
- data/lib-opal/js_wrap/three/nodes/utils/SwitchNode.js +129 -0
- data/lib-opal/js_wrap/three/nodes/utils/TimerNode.js +126 -0
- data/lib-opal/js_wrap/three/nodes/utils/UVTransformNode.js +104 -0
- data/lib-opal/js_wrap/three/nodes/utils/VelocityNode.js +181 -0
- data/lib-opal/js_wrap/three/objects/Lensflare.js +285 -0
- data/lib-opal/js_wrap/three/objects/LightningStorm.js +238 -0
- data/lib-opal/js_wrap/three/objects/MarchingCubes.js +667 -0
- data/lib-opal/js_wrap/three/objects/Reflector.js +205 -0
- data/lib-opal/js_wrap/three/objects/ReflectorForSSRPass.js +288 -0
- data/lib-opal/js_wrap/three/objects/ReflectorRTT.js +63 -0
- data/lib-opal/js_wrap/three/objects/Refractor.js +243 -0
- data/lib-opal/js_wrap/three/objects/ShadowMesh.js +100 -0
- data/lib-opal/js_wrap/three/objects/Sky.js +107 -0
- data/lib-opal/js_wrap/three/objects/Water.js +246 -0
- data/lib-opal/js_wrap/three/objects/Water2.js +238 -0
- data/lib-opal/js_wrap/three/offscreen/jank.js +51 -0
- data/lib-opal/js_wrap/three/offscreen/offscreen.js +24 -0
- data/lib-opal/js_wrap/three/offscreen/scene.js +99 -0
- data/lib-opal/js_wrap/three/physics/AmmoPhysics.js +266 -0
- data/lib-opal/js_wrap/three/physics/OimoPhysics.js +214 -0
- data/lib-opal/js_wrap/three/postprocessing/AdaptiveToneMappingPass.js +307 -0
- data/lib-opal/js_wrap/three/postprocessing/AfterimagePass.js +116 -0
- data/lib-opal/js_wrap/three/postprocessing/BloomPass.js +132 -0
- data/lib-opal/js_wrap/three/postprocessing/BokehPass.js +143 -0
- data/lib-opal/js_wrap/three/postprocessing/ClearPass.js +85 -0
- data/lib-opal/js_wrap/three/postprocessing/CubeTexturePass.js +104 -0
- data/lib-opal/js_wrap/three/postprocessing/DotScreenPass.js +90 -0
- data/lib-opal/js_wrap/three/postprocessing/EffectComposer.js +272 -0
- data/lib-opal/js_wrap/three/postprocessing/FilmPass.js +91 -0
- data/lib-opal/js_wrap/three/postprocessing/GlitchPass.js +140 -0
- data/lib-opal/js_wrap/three/postprocessing/HalftonePass.js +108 -0
- data/lib-opal/js_wrap/three/postprocessing/LUTPass.js +132 -0
- data/lib-opal/js_wrap/three/postprocessing/MaskPass.js +142 -0
- data/lib-opal/js_wrap/three/postprocessing/OutlinePass.js +480 -0
- data/lib-opal/js_wrap/three/postprocessing/Pass.js +101 -0
- data/lib-opal/js_wrap/three/postprocessing/RenderPass.js +109 -0
- data/lib-opal/js_wrap/three/postprocessing/SAOPass.js +384 -0
- data/lib-opal/js_wrap/three/postprocessing/SMAAPass.js +199 -0
- data/lib-opal/js_wrap/three/postprocessing/SSAARenderPass.js +186 -0
- data/lib-opal/js_wrap/three/postprocessing/SSAOPass.js +388 -0
- data/lib-opal/js_wrap/three/postprocessing/SSRPass.js +537 -0
- data/lib-opal/js_wrap/three/postprocessing/SSRrPass.js +481 -0
- data/lib-opal/js_wrap/three/postprocessing/SavePass.js +96 -0
- data/lib-opal/js_wrap/three/postprocessing/ShaderPass.js +98 -0
- data/lib-opal/js_wrap/three/postprocessing/TAARenderPass.js +159 -0
- data/lib-opal/js_wrap/three/postprocessing/TexturePass.js +91 -0
- data/lib-opal/js_wrap/three/postprocessing/UnrealBloomPass.js +335 -0
- data/lib-opal/js_wrap/three/renderers/CSS2DRenderer.js +213 -0
- data/lib-opal/js_wrap/three/renderers/CSS3DRenderer.js +277 -0
- data/lib-opal/js_wrap/three/renderers/Projector.js +733 -0
- data/lib-opal/js_wrap/three/renderers/SVGRenderer.js +470 -0
- data/lib-opal/js_wrap/three/renderers/nodes/Nodes.js +531 -0
- data/lib-opal/js_wrap/three/renderers/nodes/ShaderNode.js +386 -0
- data/lib-opal/js_wrap/three/renderers/nodes/accessors/CameraNode.js +114 -0
- data/lib-opal/js_wrap/three/renderers/nodes/accessors/MaterialNode.js +140 -0
- data/lib-opal/js_wrap/three/renderers/nodes/accessors/MaterialReferenceNode.js +79 -0
- data/lib-opal/js_wrap/three/renderers/nodes/accessors/ModelNode.js +62 -0
- data/lib-opal/js_wrap/three/renderers/nodes/accessors/ModelViewProjectionNode.js +80 -0
- data/lib-opal/js_wrap/three/renderers/nodes/accessors/NormalNode.js +113 -0
- data/lib-opal/js_wrap/three/renderers/nodes/accessors/Object3DNode.js +136 -0
- data/lib-opal/js_wrap/three/renderers/nodes/accessors/PointUVNode.js +70 -0
- data/lib-opal/js_wrap/three/renderers/nodes/accessors/PositionNode.js +117 -0
- data/lib-opal/js_wrap/three/renderers/nodes/accessors/ReferenceNode.js +124 -0
- data/lib-opal/js_wrap/three/renderers/nodes/accessors/SkinningNode.js +129 -0
- data/lib-opal/js_wrap/three/renderers/nodes/accessors/UVNode.js +77 -0
- data/lib-opal/js_wrap/three/renderers/nodes/core/ArrayInputNode.js +74 -0
- data/lib-opal/js_wrap/three/renderers/nodes/core/AttributeNode.js +97 -0
- data/lib-opal/js_wrap/three/renderers/nodes/core/BypassNode.js +84 -0
- data/lib-opal/js_wrap/three/renderers/nodes/core/CodeNode.js +131 -0
- data/lib-opal/js_wrap/three/renderers/nodes/core/ContextNode.js +84 -0
- data/lib-opal/js_wrap/three/renderers/nodes/core/ExpressionNode.js +81 -0
- data/lib-opal/js_wrap/three/renderers/nodes/core/FunctionCallNode.js +123 -0
- data/lib-opal/js_wrap/three/renderers/nodes/core/FunctionNode.js +126 -0
- data/lib-opal/js_wrap/three/renderers/nodes/core/InputNode.js +103 -0
- data/lib-opal/js_wrap/three/renderers/nodes/core/Node.js +120 -0
- data/lib-opal/js_wrap/three/renderers/nodes/core/NodeAttribute.js +37 -0
- data/lib-opal/js_wrap/three/renderers/nodes/core/NodeBuilder.js +650 -0
- data/lib-opal/js_wrap/three/renderers/nodes/core/NodeCode.js +42 -0
- data/lib-opal/js_wrap/three/renderers/nodes/core/NodeFrame.js +70 -0
- data/lib-opal/js_wrap/three/renderers/nodes/core/NodeFunction.js +55 -0
- data/lib-opal/js_wrap/three/renderers/nodes/core/NodeFunctionInput.js +44 -0
- data/lib-opal/js_wrap/three/renderers/nodes/core/NodeKeywords.js +117 -0
- data/lib-opal/js_wrap/three/renderers/nodes/core/NodeParser.js +46 -0
- data/lib-opal/js_wrap/three/renderers/nodes/core/NodeUniform.js +55 -0
- data/lib-opal/js_wrap/three/renderers/nodes/core/NodeVar.js +37 -0
- data/lib-opal/js_wrap/three/renderers/nodes/core/NodeVary.js +37 -0
- data/lib-opal/js_wrap/three/renderers/nodes/core/PropertyNode.js +90 -0
- data/lib-opal/js_wrap/three/renderers/nodes/core/TempNode.js +89 -0
- data/lib-opal/js_wrap/three/renderers/nodes/core/VarNode.js +101 -0
- data/lib-opal/js_wrap/three/renderers/nodes/core/VaryNode.js +101 -0
- data/lib-opal/js_wrap/three/renderers/nodes/core/constants.js +42 -0
- data/lib-opal/js_wrap/three/renderers/nodes/display/ColorSpaceNode.js +165 -0
- data/lib-opal/js_wrap/three/renderers/nodes/display/NormalMapNode.js +120 -0
- data/lib-opal/js_wrap/three/renderers/nodes/functions/BSDFs.js +133 -0
- data/lib-opal/js_wrap/three/renderers/nodes/inputs/BufferNode.js +78 -0
- data/lib-opal/js_wrap/three/renderers/nodes/inputs/ColorNode.js +67 -0
- data/lib-opal/js_wrap/three/renderers/nodes/inputs/FloatNode.js +67 -0
- data/lib-opal/js_wrap/three/renderers/nodes/inputs/IntNode.js +67 -0
- data/lib-opal/js_wrap/three/renderers/nodes/inputs/Matrix3Node.js +67 -0
- data/lib-opal/js_wrap/three/renderers/nodes/inputs/Matrix4Node.js +67 -0
- data/lib-opal/js_wrap/three/renderers/nodes/inputs/TextureNode.js +120 -0
- data/lib-opal/js_wrap/three/renderers/nodes/inputs/Vector2Node.js +67 -0
- data/lib-opal/js_wrap/three/renderers/nodes/inputs/Vector3Node.js +67 -0
- data/lib-opal/js_wrap/three/renderers/nodes/inputs/Vector4Node.js +67 -0
- data/lib-opal/js_wrap/three/renderers/nodes/lights/LightContextNode.js +103 -0
- data/lib-opal/js_wrap/three/renderers/nodes/lights/LightNode.js +115 -0
- data/lib-opal/js_wrap/three/renderers/nodes/lights/LightsNode.js +117 -0
- data/lib-opal/js_wrap/three/renderers/nodes/materials/LineBasicNodeMaterial.js +82 -0
- data/lib-opal/js_wrap/three/renderers/nodes/materials/Materials.js +49 -0
- data/lib-opal/js_wrap/three/renderers/nodes/materials/MeshBasicNodeMaterial.js +82 -0
- data/lib-opal/js_wrap/three/renderers/nodes/materials/MeshStandardNodeMaterial.js +96 -0
- data/lib-opal/js_wrap/three/renderers/nodes/materials/PointsNodeMaterial.js +84 -0
- data/lib-opal/js_wrap/three/renderers/nodes/math/CondNode.js +98 -0
- data/lib-opal/js_wrap/three/renderers/nodes/math/MathNode.js +255 -0
- data/lib-opal/js_wrap/three/renderers/nodes/math/OperatorNode.js +163 -0
- data/lib-opal/js_wrap/three/renderers/nodes/parsers/GLSLNodeFunction.js +158 -0
- data/lib-opal/js_wrap/three/renderers/nodes/parsers/GLSLNodeParser.js +68 -0
- data/lib-opal/js_wrap/three/renderers/nodes/parsers/WGSLNodeFunction.js +126 -0
- data/lib-opal/js_wrap/three/renderers/nodes/parsers/WGSLNodeParser.js +68 -0
- data/lib-opal/js_wrap/three/renderers/nodes/procedural/CheckerNode.js +84 -0
- data/lib-opal/js_wrap/three/renderers/nodes/utils/ArrayElementNode.js +79 -0
- data/lib-opal/js_wrap/three/renderers/nodes/utils/ConvertNode.js +82 -0
- data/lib-opal/js_wrap/three/renderers/nodes/utils/JoinNode.js +88 -0
- data/lib-opal/js_wrap/three/renderers/nodes/utils/OscNode.js +105 -0
- data/lib-opal/js_wrap/three/renderers/nodes/utils/SplitNode.js +96 -0
- data/lib-opal/js_wrap/three/renderers/nodes/utils/SpriteSheetUVNode.js +98 -0
- data/lib-opal/js_wrap/three/renderers/nodes/utils/TimerNode.js +93 -0
- data/lib-opal/js_wrap/three/renderers/webgl/nodes/SlotNode.js +72 -0
- data/lib-opal/js_wrap/three/renderers/webgl/nodes/WebGLNodeBuilder.js +463 -0
- data/lib-opal/js_wrap/three/renderers/webgl/nodes/WebGLNodes.js +62 -0
- data/lib-opal/js_wrap/three/renderers/webgl/nodes/WebGLPhysicalContextNode.js +95 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/WebGPU.js +62 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUAttributes.js +118 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUBackground.js +109 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUBinding.js +52 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUBindings.js +254 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUBufferUtils.js +39 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUComputePipelines.js +82 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUGeometries.js +84 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUInfo.js +86 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUObjects.js +64 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUProgrammableStage.js +46 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUProperties.js +63 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/WebGPURenderLists.js +180 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/WebGPURenderPipeline.js +662 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/WebGPURenderPipelines.js +275 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/WebGPURenderer.js +883 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUSampledTexture.js +139 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUSampler.js +76 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUStorageBuffer.js +69 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUTextureRenderer.js +64 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUTextureUtils.js +125 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUTextures.js +681 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUUniform.js +237 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUUniformBuffer.js +90 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/WebGPUUniformsGroup.js +294 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/constants.js +263 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/nodes/WebGPUNodeBuilder.js +619 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/nodes/WebGPUNodeSampledTexture.js +67 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/nodes/WebGPUNodeSampler.js +71 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/nodes/WebGPUNodeUniform.js +229 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/nodes/WebGPUNodeUniformsGroup.js +68 -0
- data/lib-opal/js_wrap/three/renderers/webgpu/nodes/WebGPUNodes.js +106 -0
- data/lib-opal/js_wrap/three/shaders/ACESFilmicToneMappingShader.js +45 -0
- data/lib-opal/js_wrap/three/shaders/AfterimageShader.js +46 -0
- data/lib-opal/js_wrap/three/shaders/BasicShader.js +34 -0
- data/lib-opal/js_wrap/three/shaders/BleachBypassShader.js +43 -0
- data/lib-opal/js_wrap/three/shaders/BlendShader.js +47 -0
- data/lib-opal/js_wrap/three/shaders/BokehShader.js +65 -0
- data/lib-opal/js_wrap/three/shaders/BokehShader2.js +125 -0
- data/lib-opal/js_wrap/three/shaders/BrightnessContrastShader.js +47 -0
- data/lib-opal/js_wrap/three/shaders/ColorCorrectionShader.js +47 -0
- data/lib-opal/js_wrap/three/shaders/ColorifyShader.js +41 -0
- data/lib-opal/js_wrap/three/shaders/ConvolutionShader.js +75 -0
- data/lib-opal/js_wrap/three/shaders/CopyShader.js +41 -0
- data/lib-opal/js_wrap/three/shaders/DOFMipMapShader.js +49 -0
- data/lib-opal/js_wrap/three/shaders/DepthLimitedBlurShader.js +95 -0
- data/lib-opal/js_wrap/three/shaders/DigitalGlitch.js +79 -0
- data/lib-opal/js_wrap/three/shaders/DotScreenShader.js +52 -0
- data/lib-opal/js_wrap/three/shaders/FXAAShader.js +78 -0
- data/lib-opal/js_wrap/three/shaders/FilmShader.js +69 -0
- data/lib-opal/js_wrap/three/shaders/FocusShader.js +52 -0
- data/lib-opal/js_wrap/three/shaders/FreiChenShader.js +44 -0
- data/lib-opal/js_wrap/three/shaders/GammaCorrectionShader.js +39 -0
- data/lib-opal/js_wrap/three/shaders/GodRaysShader.js +140 -0
- data/lib-opal/js_wrap/three/shaders/HalftoneShader.js +77 -0
- data/lib-opal/js_wrap/three/shaders/HorizontalBlurShader.js +47 -0
- data/lib-opal/js_wrap/three/shaders/HorizontalTiltShiftShader.js +49 -0
- data/lib-opal/js_wrap/three/shaders/HueSaturationShader.js +47 -0
- data/lib-opal/js_wrap/three/shaders/KaleidoShader.js +50 -0
- data/lib-opal/js_wrap/three/shaders/LuminosityHighPassShader.js +52 -0
- data/lib-opal/js_wrap/three/shaders/LuminosityShader.js +39 -0
- data/lib-opal/js_wrap/three/shaders/MMDToonShader.js +48 -0
- data/lib-opal/js_wrap/three/shaders/MirrorShader.js +44 -0
- data/lib-opal/js_wrap/three/shaders/NormalMapShader.js +48 -0
- data/lib-opal/js_wrap/three/shaders/PixelShader.js +44 -0
- data/lib-opal/js_wrap/three/shaders/RGBShiftShader.js +50 -0
- data/lib-opal/js_wrap/three/shaders/SAOShader.js +85 -0
- data/lib-opal/js_wrap/three/shaders/SMAAShader.js +95 -0
- data/lib-opal/js_wrap/three/shaders/SSAOShader.js +113 -0
- data/lib-opal/js_wrap/three/shaders/SSRShader.js +126 -0
- data/lib-opal/js_wrap/three/shaders/SSRrShader.js +106 -0
- data/lib-opal/js_wrap/three/shaders/SepiaShader.js +43 -0
- data/lib-opal/js_wrap/three/shaders/SobelOperatorShader.js +44 -0
- data/lib-opal/js_wrap/three/shaders/SubsurfaceScatteringShader.js +64 -0
- data/lib-opal/js_wrap/three/shaders/TechnicolorShader.js +41 -0
- data/lib-opal/js_wrap/three/shaders/ToneMapShader.js +53 -0
- data/lib-opal/js_wrap/three/shaders/ToonShader.js +148 -0
- data/lib-opal/js_wrap/three/shaders/TriangleBlurShader.js +47 -0
- data/lib-opal/js_wrap/three/shaders/UnpackDepthRGBAShader.js +42 -0
- data/lib-opal/js_wrap/three/shaders/VerticalBlurShader.js +47 -0
- data/lib-opal/js_wrap/three/shaders/VerticalTiltShiftShader.js +49 -0
- data/lib-opal/js_wrap/three/shaders/VignetteShader.js +46 -0
- data/lib-opal/js_wrap/three/shaders/VolumeShader.js +55 -0
- data/lib-opal/js_wrap/three/shaders/WaterRefractionShader.js +46 -0
- data/lib-opal/js_wrap/three/textures/FlakesTexture.js +61 -0
- data/lib-opal/js_wrap/three/utils/BufferGeometryUtils.js +683 -0
- data/lib-opal/js_wrap/three/utils/CameraUtils.js +97 -0
- data/lib-opal/js_wrap/three/utils/GPUStatsPanel.js +154 -0
- data/lib-opal/js_wrap/three/utils/GeometryCompressionUtils.js +468 -0
- data/lib-opal/js_wrap/three/utils/GeometryUtils.js +192 -0
- data/lib-opal/js_wrap/three/utils/PackedPhongMaterial.js +77 -0
- data/lib-opal/js_wrap/three/utils/RoughnessMipmapper.js +169 -0
- data/lib-opal/js_wrap/three/utils/SceneUtils.js +62 -0
- data/lib-opal/js_wrap/three/utils/ShadowMapViewer.js +182 -0
- data/lib-opal/js_wrap/three/utils/SkeletonUtils.js +400 -0
- data/lib-opal/js_wrap/three/utils/UVsDebug.js +132 -0
- data/lib-opal/js_wrap/three/utils/WorkerPool.js +130 -0
- data/lib-opal/js_wrap/three/webxr/ARButton.js +203 -0
- data/lib-opal/js_wrap/three/webxr/OculusHandModel.js +131 -0
- data/lib-opal/js_wrap/three/webxr/OculusHandPointerModel.js +328 -0
- data/lib-opal/js_wrap/three/webxr/Text2D.js +54 -0
- data/lib-opal/js_wrap/three/webxr/VRButton.js +181 -0
- data/lib-opal/js_wrap/three/webxr/XRControllerModelFactory.js +266 -0
- data/lib-opal/js_wrap/three/webxr/XREstimatedLight.js +221 -0
- data/lib-opal/js_wrap/three/webxr/XRHandMeshModel.js +93 -0
- data/lib-opal/js_wrap/three/webxr/XRHandModelFactory.js +127 -0
- data/lib-opal/js_wrap/three/webxr/XRHandPrimitiveModel.js +85 -0
- data/opal-js_wrap-three.gemspec +4 -4
- metadata +502 -5
@@ -0,0 +1,692 @@
|
|
1
|
+
(function (global, factory) {
|
2
|
+
if (typeof define === "function" && define.amd) {
|
3
|
+
define(["exports", "three"], factory);
|
4
|
+
} else if (typeof exports !== "undefined") {
|
5
|
+
factory(exports, require("three"));
|
6
|
+
} else {
|
7
|
+
var mod = {
|
8
|
+
exports: {}
|
9
|
+
};
|
10
|
+
factory(mod.exports, global.three);
|
11
|
+
global.BasisTextureLoader = mod.exports;
|
12
|
+
}
|
13
|
+
})(typeof globalThis !== "undefined" ? globalThis : typeof self !== "undefined" ? self : this, function (_exports, _three) {
|
14
|
+
"use strict";
|
15
|
+
|
16
|
+
Object.defineProperty(_exports, "__esModule", {
|
17
|
+
value: true
|
18
|
+
});
|
19
|
+
_exports.BasisTextureLoader = void 0;
|
20
|
+
|
21
|
+
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
|
22
|
+
|
23
|
+
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
|
24
|
+
|
25
|
+
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
|
26
|
+
|
27
|
+
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) { arr2[i] = arr[i]; } return arr2; }
|
28
|
+
|
29
|
+
function _iterableToArrayLimit(arr, i) { var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]; if (_i == null) return; var _arr = []; var _n = true; var _d = false; var _s, _e; try { for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i["return"] != null) _i["return"](); } finally { if (_d) throw _e; } } return _arr; }
|
30
|
+
|
31
|
+
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
|
32
|
+
|
33
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
34
|
+
|
35
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
36
|
+
|
37
|
+
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
38
|
+
|
39
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
40
|
+
|
41
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
42
|
+
|
43
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
44
|
+
|
45
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } Object.defineProperty(subClass, "prototype", { value: Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }), writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
46
|
+
|
47
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
48
|
+
|
49
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
50
|
+
|
51
|
+
function _possibleConstructorReturn(self, call) { if (call && (typeof call === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
52
|
+
|
53
|
+
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
54
|
+
|
55
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
56
|
+
|
57
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
|
58
|
+
|
59
|
+
/**
|
60
|
+
* Loader for Basis Universal GPU Texture Codec.
|
61
|
+
*
|
62
|
+
* Basis Universal is a "supercompressed" GPU texture and texture video
|
63
|
+
* compression system that outputs a highly compressed intermediate file format
|
64
|
+
* (.basis) that can be quickly transcoded to a wide variety of GPU texture
|
65
|
+
* compression formats.
|
66
|
+
*
|
67
|
+
* This loader parallelizes the transcoding process across a configurable number
|
68
|
+
* of web workers, before transferring the transcoded compressed texture back
|
69
|
+
* to the main thread.
|
70
|
+
*/
|
71
|
+
var _taskCache = new WeakMap();
|
72
|
+
|
73
|
+
var BasisTextureLoader = /*#__PURE__*/function (_Loader) {
|
74
|
+
_inherits(BasisTextureLoader, _Loader);
|
75
|
+
|
76
|
+
var _super = _createSuper(BasisTextureLoader);
|
77
|
+
|
78
|
+
function BasisTextureLoader(manager) {
|
79
|
+
var _this;
|
80
|
+
|
81
|
+
_classCallCheck(this, BasisTextureLoader);
|
82
|
+
|
83
|
+
_this = _super.call(this, manager);
|
84
|
+
_this.transcoderPath = '';
|
85
|
+
_this.transcoderBinary = null;
|
86
|
+
_this.transcoderPending = null;
|
87
|
+
_this.workerLimit = 4;
|
88
|
+
_this.workerPool = [];
|
89
|
+
_this.workerNextTaskID = 1;
|
90
|
+
_this.workerSourceURL = '';
|
91
|
+
_this.workerConfig = null;
|
92
|
+
return _this;
|
93
|
+
}
|
94
|
+
|
95
|
+
_createClass(BasisTextureLoader, [{
|
96
|
+
key: "setTranscoderPath",
|
97
|
+
value: function setTranscoderPath(path) {
|
98
|
+
this.transcoderPath = path;
|
99
|
+
return this;
|
100
|
+
}
|
101
|
+
}, {
|
102
|
+
key: "setWorkerLimit",
|
103
|
+
value: function setWorkerLimit(workerLimit) {
|
104
|
+
this.workerLimit = workerLimit;
|
105
|
+
return this;
|
106
|
+
}
|
107
|
+
}, {
|
108
|
+
key: "detectSupport",
|
109
|
+
value: function detectSupport(renderer) {
|
110
|
+
this.workerConfig = {
|
111
|
+
astcSupported: renderer.extensions.has('WEBGL_compressed_texture_astc'),
|
112
|
+
etc1Supported: renderer.extensions.has('WEBGL_compressed_texture_etc1'),
|
113
|
+
etc2Supported: renderer.extensions.has('WEBGL_compressed_texture_etc'),
|
114
|
+
dxtSupported: renderer.extensions.has('WEBGL_compressed_texture_s3tc'),
|
115
|
+
bptcSupported: renderer.extensions.has('EXT_texture_compression_bptc'),
|
116
|
+
pvrtcSupported: renderer.extensions.has('WEBGL_compressed_texture_pvrtc') || renderer.extensions.has('WEBKIT_WEBGL_compressed_texture_pvrtc')
|
117
|
+
};
|
118
|
+
return this;
|
119
|
+
}
|
120
|
+
}, {
|
121
|
+
key: "load",
|
122
|
+
value: function load(url, onLoad, onProgress, onError) {
|
123
|
+
var _this2 = this;
|
124
|
+
|
125
|
+
var loader = new _three.FileLoader(this.manager);
|
126
|
+
loader.setResponseType('arraybuffer');
|
127
|
+
loader.setWithCredentials(this.withCredentials);
|
128
|
+
var texture = new _three.CompressedTexture();
|
129
|
+
loader.load(url, function (buffer) {
|
130
|
+
// Check for an existing task using this buffer. A transferred buffer cannot be transferred
|
131
|
+
// again from this thread.
|
132
|
+
if (_taskCache.has(buffer)) {
|
133
|
+
var cachedTask = _taskCache.get(buffer);
|
134
|
+
|
135
|
+
return cachedTask.promise.then(onLoad).catch(onError);
|
136
|
+
}
|
137
|
+
|
138
|
+
_this2._createTexture([buffer]).then(function (_texture) {
|
139
|
+
texture.copy(_texture);
|
140
|
+
texture.needsUpdate = true;
|
141
|
+
if (onLoad) onLoad(texture);
|
142
|
+
}).catch(onError);
|
143
|
+
}, onProgress, onError);
|
144
|
+
return texture;
|
145
|
+
}
|
146
|
+
/** Low-level transcoding API, exposed for use by KTX2Loader. */
|
147
|
+
|
148
|
+
}, {
|
149
|
+
key: "parseInternalAsync",
|
150
|
+
value: function parseInternalAsync(options) {
|
151
|
+
var levels = options.levels;
|
152
|
+
var buffers = new Set();
|
153
|
+
|
154
|
+
for (var i = 0; i < levels.length; i++) {
|
155
|
+
buffers.add(levels[i].data.buffer);
|
156
|
+
}
|
157
|
+
|
158
|
+
return this._createTexture(Array.from(buffers), _objectSpread(_objectSpread({}, options), {}, {
|
159
|
+
lowLevel: true
|
160
|
+
}));
|
161
|
+
}
|
162
|
+
/**
|
163
|
+
* @param {ArrayBuffer[]} buffers
|
164
|
+
* @param {object?} config
|
165
|
+
* @return {Promise<CompressedTexture>}
|
166
|
+
*/
|
167
|
+
|
168
|
+
}, {
|
169
|
+
key: "_createTexture",
|
170
|
+
value: function _createTexture(buffers) {
|
171
|
+
var _this3 = this;
|
172
|
+
|
173
|
+
var config = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
174
|
+
var worker;
|
175
|
+
var taskID;
|
176
|
+
var taskConfig = config;
|
177
|
+
var taskCost = 0;
|
178
|
+
|
179
|
+
for (var i = 0; i < buffers.length; i++) {
|
180
|
+
taskCost += buffers[i].byteLength;
|
181
|
+
}
|
182
|
+
|
183
|
+
var texturePending = this._allocateWorker(taskCost).then(function (_worker) {
|
184
|
+
worker = _worker;
|
185
|
+
taskID = _this3.workerNextTaskID++;
|
186
|
+
return new Promise(function (resolve, reject) {
|
187
|
+
worker._callbacks[taskID] = {
|
188
|
+
resolve: resolve,
|
189
|
+
reject: reject
|
190
|
+
};
|
191
|
+
worker.postMessage({
|
192
|
+
type: 'transcode',
|
193
|
+
id: taskID,
|
194
|
+
buffers: buffers,
|
195
|
+
taskConfig: taskConfig
|
196
|
+
}, buffers);
|
197
|
+
});
|
198
|
+
}).then(function (message) {
|
199
|
+
var mipmaps = message.mipmaps,
|
200
|
+
width = message.width,
|
201
|
+
height = message.height,
|
202
|
+
format = message.format;
|
203
|
+
var texture = new _three.CompressedTexture(mipmaps, width, height, format, _three.UnsignedByteType);
|
204
|
+
texture.minFilter = mipmaps.length === 1 ? _three.LinearFilter : _three.LinearMipmapLinearFilter;
|
205
|
+
texture.magFilter = _three.LinearFilter;
|
206
|
+
texture.generateMipmaps = false;
|
207
|
+
texture.needsUpdate = true;
|
208
|
+
return texture;
|
209
|
+
}); // Note: replaced '.finally()' with '.catch().then()' block - iOS 11 support (#19416)
|
210
|
+
|
211
|
+
|
212
|
+
texturePending.catch(function () {
|
213
|
+
return true;
|
214
|
+
}).then(function () {
|
215
|
+
if (worker && taskID) {
|
216
|
+
worker._taskLoad -= taskCost;
|
217
|
+
delete worker._callbacks[taskID];
|
218
|
+
}
|
219
|
+
}); // Cache the task result.
|
220
|
+
|
221
|
+
_taskCache.set(buffers[0], {
|
222
|
+
promise: texturePending
|
223
|
+
});
|
224
|
+
|
225
|
+
return texturePending;
|
226
|
+
}
|
227
|
+
}, {
|
228
|
+
key: "_initTranscoder",
|
229
|
+
value: function _initTranscoder() {
|
230
|
+
var _this4 = this;
|
231
|
+
|
232
|
+
if (!this.transcoderPending) {
|
233
|
+
// Load transcoder wrapper.
|
234
|
+
var jsLoader = new _three.FileLoader(this.manager);
|
235
|
+
jsLoader.setPath(this.transcoderPath);
|
236
|
+
jsLoader.setWithCredentials(this.withCredentials);
|
237
|
+
var jsContent = new Promise(function (resolve, reject) {
|
238
|
+
jsLoader.load('basis_transcoder.js', resolve, undefined, reject);
|
239
|
+
}); // Load transcoder WASM binary.
|
240
|
+
|
241
|
+
var binaryLoader = new _three.FileLoader(this.manager);
|
242
|
+
binaryLoader.setPath(this.transcoderPath);
|
243
|
+
binaryLoader.setResponseType('arraybuffer');
|
244
|
+
binaryLoader.setWithCredentials(this.withCredentials);
|
245
|
+
var binaryContent = new Promise(function (resolve, reject) {
|
246
|
+
binaryLoader.load('basis_transcoder.wasm', resolve, undefined, reject);
|
247
|
+
});
|
248
|
+
this.transcoderPending = Promise.all([jsContent, binaryContent]).then(function (_ref) {
|
249
|
+
var _ref2 = _slicedToArray(_ref, 2),
|
250
|
+
jsContent = _ref2[0],
|
251
|
+
binaryContent = _ref2[1];
|
252
|
+
|
253
|
+
var fn = BasisTextureLoader.BasisWorker.toString();
|
254
|
+
var body = ['/* constants */', 'let _EngineFormat = ' + JSON.stringify(BasisTextureLoader.EngineFormat), 'let _TranscoderFormat = ' + JSON.stringify(BasisTextureLoader.TranscoderFormat), 'let _BasisFormat = ' + JSON.stringify(BasisTextureLoader.BasisFormat), '/* basis_transcoder.js */', jsContent, '/* worker */', fn.substring(fn.indexOf('{') + 1, fn.lastIndexOf('}'))].join('\n');
|
255
|
+
_this4.workerSourceURL = URL.createObjectURL(new Blob([body]));
|
256
|
+
_this4.transcoderBinary = binaryContent;
|
257
|
+
});
|
258
|
+
}
|
259
|
+
|
260
|
+
return this.transcoderPending;
|
261
|
+
}
|
262
|
+
}, {
|
263
|
+
key: "_allocateWorker",
|
264
|
+
value: function _allocateWorker(taskCost) {
|
265
|
+
var _this5 = this;
|
266
|
+
|
267
|
+
return this._initTranscoder().then(function () {
|
268
|
+
if (_this5.workerPool.length < _this5.workerLimit) {
|
269
|
+
var _worker2 = new Worker(_this5.workerSourceURL);
|
270
|
+
|
271
|
+
_worker2._callbacks = {};
|
272
|
+
_worker2._taskLoad = 0;
|
273
|
+
|
274
|
+
_worker2.postMessage({
|
275
|
+
type: 'init',
|
276
|
+
config: _this5.workerConfig,
|
277
|
+
transcoderBinary: _this5.transcoderBinary
|
278
|
+
});
|
279
|
+
|
280
|
+
_worker2.onmessage = function (e) {
|
281
|
+
var message = e.data;
|
282
|
+
|
283
|
+
switch (message.type) {
|
284
|
+
case 'transcode':
|
285
|
+
_worker2._callbacks[message.id].resolve(message);
|
286
|
+
|
287
|
+
break;
|
288
|
+
|
289
|
+
case 'error':
|
290
|
+
_worker2._callbacks[message.id].reject(message);
|
291
|
+
|
292
|
+
break;
|
293
|
+
|
294
|
+
default:
|
295
|
+
console.error('THREE.BasisTextureLoader: Unexpected message, "' + message.type + '"');
|
296
|
+
}
|
297
|
+
};
|
298
|
+
|
299
|
+
_this5.workerPool.push(_worker2);
|
300
|
+
} else {
|
301
|
+
_this5.workerPool.sort(function (a, b) {
|
302
|
+
return a._taskLoad > b._taskLoad ? -1 : 1;
|
303
|
+
});
|
304
|
+
}
|
305
|
+
|
306
|
+
var worker = _this5.workerPool[_this5.workerPool.length - 1];
|
307
|
+
worker._taskLoad += taskCost;
|
308
|
+
return worker;
|
309
|
+
});
|
310
|
+
}
|
311
|
+
}, {
|
312
|
+
key: "dispose",
|
313
|
+
value: function dispose() {
|
314
|
+
for (var i = 0; i < this.workerPool.length; i++) {
|
315
|
+
this.workerPool[i].terminate();
|
316
|
+
}
|
317
|
+
|
318
|
+
this.workerPool.length = 0;
|
319
|
+
return this;
|
320
|
+
}
|
321
|
+
}]);
|
322
|
+
|
323
|
+
return BasisTextureLoader;
|
324
|
+
}(_three.Loader);
|
325
|
+
/* CONSTANTS */
|
326
|
+
|
327
|
+
|
328
|
+
_exports.BasisTextureLoader = BasisTextureLoader;
|
329
|
+
BasisTextureLoader.BasisFormat = {
|
330
|
+
ETC1S: 0,
|
331
|
+
UASTC_4x4: 1
|
332
|
+
};
|
333
|
+
BasisTextureLoader.TranscoderFormat = {
|
334
|
+
ETC1: 0,
|
335
|
+
ETC2: 1,
|
336
|
+
BC1: 2,
|
337
|
+
BC3: 3,
|
338
|
+
BC4: 4,
|
339
|
+
BC5: 5,
|
340
|
+
BC7_M6_OPAQUE_ONLY: 6,
|
341
|
+
BC7_M5: 7,
|
342
|
+
PVRTC1_4_RGB: 8,
|
343
|
+
PVRTC1_4_RGBA: 9,
|
344
|
+
ASTC_4x4: 10,
|
345
|
+
ATC_RGB: 11,
|
346
|
+
ATC_RGBA_INTERPOLATED_ALPHA: 12,
|
347
|
+
RGBA32: 13,
|
348
|
+
RGB565: 14,
|
349
|
+
BGR565: 15,
|
350
|
+
RGBA4444: 16
|
351
|
+
};
|
352
|
+
BasisTextureLoader.EngineFormat = {
|
353
|
+
RGBAFormat: _three.RGBAFormat,
|
354
|
+
RGBA_ASTC_4x4_Format: _three.RGBA_ASTC_4x4_Format,
|
355
|
+
RGBA_BPTC_Format: _three.RGBA_BPTC_Format,
|
356
|
+
RGBA_ETC2_EAC_Format: _three.RGBA_ETC2_EAC_Format,
|
357
|
+
RGBA_PVRTC_4BPPV1_Format: _three.RGBA_PVRTC_4BPPV1_Format,
|
358
|
+
RGBA_S3TC_DXT5_Format: _three.RGBA_S3TC_DXT5_Format,
|
359
|
+
RGB_ETC1_Format: _three.RGB_ETC1_Format,
|
360
|
+
RGB_ETC2_Format: _three.RGB_ETC2_Format,
|
361
|
+
RGB_PVRTC_4BPPV1_Format: _three.RGB_PVRTC_4BPPV1_Format,
|
362
|
+
RGB_S3TC_DXT1_Format: _three.RGB_S3TC_DXT1_Format
|
363
|
+
};
|
364
|
+
/* WEB WORKER */
|
365
|
+
|
366
|
+
BasisTextureLoader.BasisWorker = function () {
|
367
|
+
var config;
|
368
|
+
var transcoderPending;
|
369
|
+
var BasisModule;
|
370
|
+
var EngineFormat = _EngineFormat; // eslint-disable-line no-undef
|
371
|
+
|
372
|
+
var TranscoderFormat = _TranscoderFormat; // eslint-disable-line no-undef
|
373
|
+
|
374
|
+
var BasisFormat = _BasisFormat; // eslint-disable-line no-undef
|
375
|
+
|
376
|
+
onmessage = function onmessage(e) {
|
377
|
+
var message = e.data;
|
378
|
+
|
379
|
+
switch (message.type) {
|
380
|
+
case 'init':
|
381
|
+
config = message.config;
|
382
|
+
init(message.transcoderBinary);
|
383
|
+
break;
|
384
|
+
|
385
|
+
case 'transcode':
|
386
|
+
transcoderPending.then(function () {
|
387
|
+
try {
|
388
|
+
var _ref3 = message.taskConfig.lowLevel ? transcodeLowLevel(message.taskConfig) : transcode(message.buffers[0]),
|
389
|
+
width = _ref3.width,
|
390
|
+
height = _ref3.height,
|
391
|
+
hasAlpha = _ref3.hasAlpha,
|
392
|
+
mipmaps = _ref3.mipmaps,
|
393
|
+
format = _ref3.format;
|
394
|
+
|
395
|
+
var buffers = [];
|
396
|
+
|
397
|
+
for (var i = 0; i < mipmaps.length; ++i) {
|
398
|
+
buffers.push(mipmaps[i].data.buffer);
|
399
|
+
}
|
400
|
+
|
401
|
+
self.postMessage({
|
402
|
+
type: 'transcode',
|
403
|
+
id: message.id,
|
404
|
+
width: width,
|
405
|
+
height: height,
|
406
|
+
hasAlpha: hasAlpha,
|
407
|
+
mipmaps: mipmaps,
|
408
|
+
format: format
|
409
|
+
}, buffers);
|
410
|
+
} catch (error) {
|
411
|
+
console.error(error);
|
412
|
+
self.postMessage({
|
413
|
+
type: 'error',
|
414
|
+
id: message.id,
|
415
|
+
error: error.message
|
416
|
+
});
|
417
|
+
}
|
418
|
+
});
|
419
|
+
break;
|
420
|
+
}
|
421
|
+
};
|
422
|
+
|
423
|
+
function init(wasmBinary) {
|
424
|
+
transcoderPending = new Promise(function (resolve) {
|
425
|
+
BasisModule = {
|
426
|
+
wasmBinary: wasmBinary,
|
427
|
+
onRuntimeInitialized: resolve
|
428
|
+
};
|
429
|
+
BASIS(BasisModule); // eslint-disable-line no-undef
|
430
|
+
}).then(function () {
|
431
|
+
BasisModule.initializeBasis();
|
432
|
+
});
|
433
|
+
}
|
434
|
+
|
435
|
+
function transcodeLowLevel(taskConfig) {
|
436
|
+
var basisFormat = taskConfig.basisFormat,
|
437
|
+
width = taskConfig.width,
|
438
|
+
height = taskConfig.height,
|
439
|
+
hasAlpha = taskConfig.hasAlpha;
|
440
|
+
|
441
|
+
var _getTranscoderFormat = getTranscoderFormat(basisFormat, width, height, hasAlpha),
|
442
|
+
transcoderFormat = _getTranscoderFormat.transcoderFormat,
|
443
|
+
engineFormat = _getTranscoderFormat.engineFormat;
|
444
|
+
|
445
|
+
var blockByteLength = BasisModule.getBytesPerBlockOrPixel(transcoderFormat);
|
446
|
+
assert(BasisModule.isFormatSupported(transcoderFormat), 'THREE.BasisTextureLoader: Unsupported format.');
|
447
|
+
var mipmaps = [];
|
448
|
+
|
449
|
+
if (basisFormat === BasisFormat.ETC1S) {
|
450
|
+
var transcoder = new BasisModule.LowLevelETC1SImageTranscoder();
|
451
|
+
var _taskConfig$globalDat = taskConfig.globalData,
|
452
|
+
endpointCount = _taskConfig$globalDat.endpointCount,
|
453
|
+
endpointsData = _taskConfig$globalDat.endpointsData,
|
454
|
+
selectorCount = _taskConfig$globalDat.selectorCount,
|
455
|
+
selectorsData = _taskConfig$globalDat.selectorsData,
|
456
|
+
tablesData = _taskConfig$globalDat.tablesData;
|
457
|
+
|
458
|
+
try {
|
459
|
+
var ok;
|
460
|
+
ok = transcoder.decodePalettes(endpointCount, endpointsData, selectorCount, selectorsData);
|
461
|
+
assert(ok, 'THREE.BasisTextureLoader: decodePalettes() failed.');
|
462
|
+
ok = transcoder.decodeTables(tablesData);
|
463
|
+
assert(ok, 'THREE.BasisTextureLoader: decodeTables() failed.');
|
464
|
+
|
465
|
+
for (var i = 0; i < taskConfig.levels.length; i++) {
|
466
|
+
var level = taskConfig.levels[i];
|
467
|
+
var imageDesc = taskConfig.globalData.imageDescs[i];
|
468
|
+
var dstByteLength = getTranscodedImageByteLength(transcoderFormat, level.width, level.height);
|
469
|
+
var dst = new Uint8Array(dstByteLength);
|
470
|
+
ok = transcoder.transcodeImage(transcoderFormat, dst, dstByteLength / blockByteLength, level.data, getWidthInBlocks(transcoderFormat, level.width), getHeightInBlocks(transcoderFormat, level.height), level.width, level.height, level.index, imageDesc.rgbSliceByteOffset, imageDesc.rgbSliceByteLength, imageDesc.alphaSliceByteOffset, imageDesc.alphaSliceByteLength, imageDesc.imageFlags, hasAlpha, false, 0, 0);
|
471
|
+
assert(ok, 'THREE.BasisTextureLoader: transcodeImage() failed for level ' + level.index + '.');
|
472
|
+
mipmaps.push({
|
473
|
+
data: dst,
|
474
|
+
width: level.width,
|
475
|
+
height: level.height
|
476
|
+
});
|
477
|
+
}
|
478
|
+
} finally {
|
479
|
+
transcoder.delete();
|
480
|
+
}
|
481
|
+
} else {
|
482
|
+
for (var _i2 = 0; _i2 < taskConfig.levels.length; _i2++) {
|
483
|
+
var _level = taskConfig.levels[_i2];
|
484
|
+
|
485
|
+
var _dstByteLength = getTranscodedImageByteLength(transcoderFormat, _level.width, _level.height);
|
486
|
+
|
487
|
+
var _dst = new Uint8Array(_dstByteLength);
|
488
|
+
|
489
|
+
var _ok = BasisModule.transcodeUASTCImage(transcoderFormat, _dst, _dstByteLength / blockByteLength, _level.data, getWidthInBlocks(transcoderFormat, _level.width), getHeightInBlocks(transcoderFormat, _level.height), _level.width, _level.height, _level.index, 0, _level.data.byteLength, 0, hasAlpha, false, 0, 0, -1, -1);
|
490
|
+
|
491
|
+
assert(_ok, 'THREE.BasisTextureLoader: transcodeUASTCImage() failed for level ' + _level.index + '.');
|
492
|
+
mipmaps.push({
|
493
|
+
data: _dst,
|
494
|
+
width: _level.width,
|
495
|
+
height: _level.height
|
496
|
+
});
|
497
|
+
}
|
498
|
+
}
|
499
|
+
|
500
|
+
return {
|
501
|
+
width: width,
|
502
|
+
height: height,
|
503
|
+
hasAlpha: hasAlpha,
|
504
|
+
mipmaps: mipmaps,
|
505
|
+
format: engineFormat
|
506
|
+
};
|
507
|
+
}
|
508
|
+
|
509
|
+
function transcode(buffer) {
|
510
|
+
var basisFile = new BasisModule.BasisFile(new Uint8Array(buffer));
|
511
|
+
var basisFormat = basisFile.isUASTC() ? BasisFormat.UASTC_4x4 : BasisFormat.ETC1S;
|
512
|
+
var width = basisFile.getImageWidth(0, 0);
|
513
|
+
var height = basisFile.getImageHeight(0, 0);
|
514
|
+
var levels = basisFile.getNumLevels(0);
|
515
|
+
var hasAlpha = basisFile.getHasAlpha();
|
516
|
+
|
517
|
+
function cleanup() {
|
518
|
+
basisFile.close();
|
519
|
+
basisFile.delete();
|
520
|
+
}
|
521
|
+
|
522
|
+
var _getTranscoderFormat2 = getTranscoderFormat(basisFormat, width, height, hasAlpha),
|
523
|
+
transcoderFormat = _getTranscoderFormat2.transcoderFormat,
|
524
|
+
engineFormat = _getTranscoderFormat2.engineFormat;
|
525
|
+
|
526
|
+
if (!width || !height || !levels) {
|
527
|
+
cleanup();
|
528
|
+
throw new Error('THREE.BasisTextureLoader: Invalid texture');
|
529
|
+
}
|
530
|
+
|
531
|
+
if (!basisFile.startTranscoding()) {
|
532
|
+
cleanup();
|
533
|
+
throw new Error('THREE.BasisTextureLoader: .startTranscoding failed');
|
534
|
+
}
|
535
|
+
|
536
|
+
var mipmaps = [];
|
537
|
+
|
538
|
+
for (var mip = 0; mip < levels; mip++) {
|
539
|
+
var mipWidth = basisFile.getImageWidth(0, mip);
|
540
|
+
var mipHeight = basisFile.getImageHeight(0, mip);
|
541
|
+
var dst = new Uint8Array(basisFile.getImageTranscodedSizeInBytes(0, mip, transcoderFormat));
|
542
|
+
var status = basisFile.transcodeImage(dst, 0, mip, transcoderFormat, 0, hasAlpha);
|
543
|
+
|
544
|
+
if (!status) {
|
545
|
+
cleanup();
|
546
|
+
throw new Error('THREE.BasisTextureLoader: .transcodeImage failed.');
|
547
|
+
}
|
548
|
+
|
549
|
+
mipmaps.push({
|
550
|
+
data: dst,
|
551
|
+
width: mipWidth,
|
552
|
+
height: mipHeight
|
553
|
+
});
|
554
|
+
}
|
555
|
+
|
556
|
+
cleanup();
|
557
|
+
return {
|
558
|
+
width: width,
|
559
|
+
height: height,
|
560
|
+
hasAlpha: hasAlpha,
|
561
|
+
mipmaps: mipmaps,
|
562
|
+
format: engineFormat
|
563
|
+
};
|
564
|
+
} //
|
565
|
+
// Optimal choice of a transcoder target format depends on the Basis format (ETC1S or UASTC),
|
566
|
+
// device capabilities, and texture dimensions. The list below ranks the formats separately
|
567
|
+
// for ETC1S and UASTC.
|
568
|
+
//
|
569
|
+
// In some cases, transcoding UASTC to RGBA32 might be preferred for higher quality (at
|
570
|
+
// significant memory cost) compared to ETC1/2, BC1/3, and PVRTC. The transcoder currently
|
571
|
+
// chooses RGBA32 only as a last resort and does not expose that option to the caller.
|
572
|
+
|
573
|
+
|
574
|
+
var FORMAT_OPTIONS = [{
|
575
|
+
if: 'astcSupported',
|
576
|
+
basisFormat: [BasisFormat.UASTC_4x4],
|
577
|
+
transcoderFormat: [TranscoderFormat.ASTC_4x4, TranscoderFormat.ASTC_4x4],
|
578
|
+
engineFormat: [EngineFormat.RGBA_ASTC_4x4_Format, EngineFormat.RGBA_ASTC_4x4_Format],
|
579
|
+
priorityETC1S: Infinity,
|
580
|
+
priorityUASTC: 1,
|
581
|
+
needsPowerOfTwo: false
|
582
|
+
}, {
|
583
|
+
if: 'bptcSupported',
|
584
|
+
basisFormat: [BasisFormat.ETC1S, BasisFormat.UASTC_4x4],
|
585
|
+
transcoderFormat: [TranscoderFormat.BC7_M5, TranscoderFormat.BC7_M5],
|
586
|
+
engineFormat: [EngineFormat.RGBA_BPTC_Format, EngineFormat.RGBA_BPTC_Format],
|
587
|
+
priorityETC1S: 3,
|
588
|
+
priorityUASTC: 2,
|
589
|
+
needsPowerOfTwo: false
|
590
|
+
}, {
|
591
|
+
if: 'dxtSupported',
|
592
|
+
basisFormat: [BasisFormat.ETC1S, BasisFormat.UASTC_4x4],
|
593
|
+
transcoderFormat: [TranscoderFormat.BC1, TranscoderFormat.BC3],
|
594
|
+
engineFormat: [EngineFormat.RGB_S3TC_DXT1_Format, EngineFormat.RGBA_S3TC_DXT5_Format],
|
595
|
+
priorityETC1S: 4,
|
596
|
+
priorityUASTC: 5,
|
597
|
+
needsPowerOfTwo: false
|
598
|
+
}, {
|
599
|
+
if: 'etc2Supported',
|
600
|
+
basisFormat: [BasisFormat.ETC1S, BasisFormat.UASTC_4x4],
|
601
|
+
transcoderFormat: [TranscoderFormat.ETC1, TranscoderFormat.ETC2],
|
602
|
+
engineFormat: [EngineFormat.RGB_ETC2_Format, EngineFormat.RGBA_ETC2_EAC_Format],
|
603
|
+
priorityETC1S: 1,
|
604
|
+
priorityUASTC: 3,
|
605
|
+
needsPowerOfTwo: false
|
606
|
+
}, {
|
607
|
+
if: 'etc1Supported',
|
608
|
+
basisFormat: [BasisFormat.ETC1S, BasisFormat.UASTC_4x4],
|
609
|
+
transcoderFormat: [TranscoderFormat.ETC1, TranscoderFormat.ETC1],
|
610
|
+
engineFormat: [EngineFormat.RGB_ETC1_Format, EngineFormat.RGB_ETC1_Format],
|
611
|
+
priorityETC1S: 2,
|
612
|
+
priorityUASTC: 4,
|
613
|
+
needsPowerOfTwo: false
|
614
|
+
}, {
|
615
|
+
if: 'pvrtcSupported',
|
616
|
+
basisFormat: [BasisFormat.ETC1S, BasisFormat.UASTC_4x4],
|
617
|
+
transcoderFormat: [TranscoderFormat.PVRTC1_4_RGB, TranscoderFormat.PVRTC1_4_RGBA],
|
618
|
+
engineFormat: [EngineFormat.RGB_PVRTC_4BPPV1_Format, EngineFormat.RGBA_PVRTC_4BPPV1_Format],
|
619
|
+
priorityETC1S: 5,
|
620
|
+
priorityUASTC: 6,
|
621
|
+
needsPowerOfTwo: true
|
622
|
+
}];
|
623
|
+
var ETC1S_OPTIONS = FORMAT_OPTIONS.sort(function (a, b) {
|
624
|
+
return a.priorityETC1S - b.priorityETC1S;
|
625
|
+
});
|
626
|
+
var UASTC_OPTIONS = FORMAT_OPTIONS.sort(function (a, b) {
|
627
|
+
return a.priorityUASTC - b.priorityUASTC;
|
628
|
+
});
|
629
|
+
|
630
|
+
function getTranscoderFormat(basisFormat, width, height, hasAlpha) {
|
631
|
+
var transcoderFormat;
|
632
|
+
var engineFormat;
|
633
|
+
var options = basisFormat === BasisFormat.ETC1S ? ETC1S_OPTIONS : UASTC_OPTIONS;
|
634
|
+
|
635
|
+
for (var i = 0; i < options.length; i++) {
|
636
|
+
var opt = options[i];
|
637
|
+
if (!config[opt.if]) continue;
|
638
|
+
if (!opt.basisFormat.includes(basisFormat)) continue;
|
639
|
+
if (opt.needsPowerOfTwo && !(isPowerOfTwo(width) && isPowerOfTwo(height))) continue;
|
640
|
+
transcoderFormat = opt.transcoderFormat[hasAlpha ? 1 : 0];
|
641
|
+
engineFormat = opt.engineFormat[hasAlpha ? 1 : 0];
|
642
|
+
return {
|
643
|
+
transcoderFormat: transcoderFormat,
|
644
|
+
engineFormat: engineFormat
|
645
|
+
};
|
646
|
+
}
|
647
|
+
|
648
|
+
console.warn('THREE.BasisTextureLoader: No suitable compressed texture format found. Decoding to RGBA32.');
|
649
|
+
transcoderFormat = TranscoderFormat.RGBA32;
|
650
|
+
engineFormat = EngineFormat.RGBAFormat;
|
651
|
+
return {
|
652
|
+
transcoderFormat: transcoderFormat,
|
653
|
+
engineFormat: engineFormat
|
654
|
+
};
|
655
|
+
}
|
656
|
+
|
657
|
+
function assert(ok, message) {
|
658
|
+
if (!ok) throw new Error(message);
|
659
|
+
}
|
660
|
+
|
661
|
+
function getWidthInBlocks(transcoderFormat, width) {
|
662
|
+
return Math.ceil(width / BasisModule.getFormatBlockWidth(transcoderFormat));
|
663
|
+
}
|
664
|
+
|
665
|
+
function getHeightInBlocks(transcoderFormat, height) {
|
666
|
+
return Math.ceil(height / BasisModule.getFormatBlockHeight(transcoderFormat));
|
667
|
+
}
|
668
|
+
|
669
|
+
function getTranscodedImageByteLength(transcoderFormat, width, height) {
|
670
|
+
var blockByteLength = BasisModule.getBytesPerBlockOrPixel(transcoderFormat);
|
671
|
+
|
672
|
+
if (BasisModule.formatIsUncompressed(transcoderFormat)) {
|
673
|
+
return width * height * blockByteLength;
|
674
|
+
}
|
675
|
+
|
676
|
+
if (transcoderFormat === TranscoderFormat.PVRTC1_4_RGB || transcoderFormat === TranscoderFormat.PVRTC1_4_RGBA) {
|
677
|
+
// GL requires extra padding for very small textures:
|
678
|
+
// https://www.khronos.org/registry/OpenGL/extensions/IMG/IMG_texture_compression_pvrtc.txt
|
679
|
+
var paddedWidth = width + 3 & ~3;
|
680
|
+
var paddedHeight = height + 3 & ~3;
|
681
|
+
return (Math.max(8, paddedWidth) * Math.max(8, paddedHeight) * 4 + 7) / 8;
|
682
|
+
}
|
683
|
+
|
684
|
+
return getWidthInBlocks(transcoderFormat, width) * getHeightInBlocks(transcoderFormat, height) * blockByteLength;
|
685
|
+
}
|
686
|
+
|
687
|
+
function isPowerOfTwo(value) {
|
688
|
+
if (value <= 2) return true;
|
689
|
+
return (value & value - 1) === 0 && value !== 0;
|
690
|
+
}
|
691
|
+
};
|
692
|
+
});
|