1 |
- {"ast":null,"code":"/** @internal */\nexport function addClipPlaneUniforms(uniforms) {\n if (uniforms.indexOf(\"vClipPlane\") === -1) {\n uniforms.push(\"vClipPlane\");\n }\n if (uniforms.indexOf(\"vClipPlane2\") === -1) {\n uniforms.push(\"vClipPlane2\");\n }\n if (uniforms.indexOf(\"vClipPlane3\") === -1) {\n uniforms.push(\"vClipPlane3\");\n }\n if (uniforms.indexOf(\"vClipPlane4\") === -1) {\n uniforms.push(\"vClipPlane4\");\n }\n if (uniforms.indexOf(\"vClipPlane5\") === -1) {\n uniforms.push(\"vClipPlane5\");\n }\n if (uniforms.indexOf(\"vClipPlane6\") === -1) {\n uniforms.push(\"vClipPlane6\");\n }\n}\n/** @internal */\nexport function prepareStringDefinesForClipPlanes(primaryHolder, secondaryHolder, defines) {\n var _primaryHolder$clipPl, _primaryHolder$clipPl2, _primaryHolder$clipPl3, _primaryHolder$clipPl4, _primaryHolder$clipPl5, _primaryHolder$clipPl6;\n const clipPlane = !!((_primaryHolder$clipPl = primaryHolder.clipPlane) !== null && _primaryHolder$clipPl !== void 0 ? _primaryHolder$clipPl : secondaryHolder.clipPlane);\n const clipPlane2 = !!((_primaryHolder$clipPl2 = primaryHolder.clipPlane2) !== null && _primaryHolder$clipPl2 !== void 0 ? _primaryHolder$clipPl2 : secondaryHolder.clipPlane2);\n const clipPlane3 = !!((_primaryHolder$clipPl3 = primaryHolder.clipPlane3) !== null && _primaryHolder$clipPl3 !== void 0 ? _primaryHolder$clipPl3 : secondaryHolder.clipPlane3);\n const clipPlane4 = !!((_primaryHolder$clipPl4 = primaryHolder.clipPlane4) !== null && _primaryHolder$clipPl4 !== void 0 ? _primaryHolder$clipPl4 : secondaryHolder.clipPlane4);\n const clipPlane5 = !!((_primaryHolder$clipPl5 = primaryHolder.clipPlane5) !== null && _primaryHolder$clipPl5 !== void 0 ? _primaryHolder$clipPl5 : secondaryHolder.clipPlane5);\n const clipPlane6 = !!((_primaryHolder$clipPl6 = primaryHolder.clipPlane6) !== null && _primaryHolder$clipPl6 !== void 0 ? _primaryHolder$clipPl6 : secondaryHolder.clipPlane6);\n if (clipPlane) defines.push(\"#define CLIPPLANE\");\n if (clipPlane2) defines.push(\"#define CLIPPLANE2\");\n if (clipPlane3) defines.push(\"#define CLIPPLANE3\");\n if (clipPlane4) defines.push(\"#define CLIPPLANE4\");\n if (clipPlane5) defines.push(\"#define CLIPPLANE5\");\n if (clipPlane6) defines.push(\"#define CLIPPLANE6\");\n}\n/** @internal */\nexport function prepareDefinesForClipPlanes(primaryHolder, secondaryHolder, defines) {\n var _primaryHolder$clipPl7, _primaryHolder$clipPl8, _primaryHolder$clipPl9, _primaryHolder$clipPl10, _primaryHolder$clipPl11, _primaryHolder$clipPl12;\n let changed = false;\n const clipPlane = !!((_primaryHolder$clipPl7 = primaryHolder.clipPlane) !== null && _primaryHolder$clipPl7 !== void 0 ? _primaryHolder$clipPl7 : secondaryHolder.clipPlane);\n const clipPlane2 = !!((_primaryHolder$clipPl8 = primaryHolder.clipPlane2) !== null && _primaryHolder$clipPl8 !== void 0 ? _primaryHolder$clipPl8 : secondaryHolder.clipPlane2);\n const clipPlane3 = !!((_primaryHolder$clipPl9 = primaryHolder.clipPlane3) !== null && _primaryHolder$clipPl9 !== void 0 ? _primaryHolder$clipPl9 : secondaryHolder.clipPlane3);\n const clipPlane4 = !!((_primaryHolder$clipPl10 = primaryHolder.clipPlane4) !== null && _primaryHolder$clipPl10 !== void 0 ? _primaryHolder$clipPl10 : secondaryHolder.clipPlane4);\n const clipPlane5 = !!((_primaryHolder$clipPl11 = primaryHolder.clipPlane5) !== null && _primaryHolder$clipPl11 !== void 0 ? _primaryHolder$clipPl11 : secondaryHolder.clipPlane5);\n const clipPlane6 = !!((_primaryHolder$clipPl12 = primaryHolder.clipPlane6) !== null && _primaryHolder$clipPl12 !== void 0 ? _primaryHolder$clipPl12 : secondaryHolder.clipPlane6);\n // Do not factorize this code, it breaks browsers optimizations.\n if (defines[\"CLIPPLANE\"] !== clipPlane) {\n defines[\"CLIPPLANE\"] = clipPlane;\n changed = true;\n }\n if (defines[\"CLIPPLANE2\"] !== clipPlane2) {\n defines[\"CLIPPLANE2\"] = clipPlane2;\n changed = true;\n }\n if (defines[\"CLIPPLANE3\"] !== clipPlane3) {\n defines[\"CLIPPLANE3\"] = clipPlane3;\n changed = true;\n }\n if (defines[\"CLIPPLANE4\"] !== clipPlane4) {\n defines[\"CLIPPLANE4\"] = clipPlane4;\n changed = true;\n }\n if (defines[\"CLIPPLANE5\"] !== clipPlane5) {\n defines[\"CLIPPLANE5\"] = clipPlane5;\n changed = true;\n }\n if (defines[\"CLIPPLANE6\"] !== clipPlane6) {\n defines[\"CLIPPLANE6\"] = clipPlane6;\n changed = true;\n }\n return changed;\n}\n/** @internal */\nexport function bindClipPlane(effect, primaryHolder, secondaryHolder) {\n var _primaryHolder$clipPl13, _primaryHolder$clipPl14, _primaryHolder$clipPl15, _primaryHolder$clipPl16, _primaryHolder$clipPl17, _primaryHolder$clipPl18;\n let clipPlane = (_primaryHolder$clipPl13 = primaryHolder.clipPlane) !== null && _primaryHolder$clipPl13 !== void 0 ? _primaryHolder$clipPl13 : secondaryHolder.clipPlane;\n setClipPlane(effect, \"vClipPlane\", clipPlane);\n clipPlane = (_primaryHolder$clipPl14 = primaryHolder.clipPlane2) !== null && _primaryHolder$clipPl14 !== void 0 ? _primaryHolder$clipPl14 : secondaryHolder.clipPlane2;\n setClipPlane(effect, \"vClipPlane2\", clipPlane);\n clipPlane = (_primaryHolder$clipPl15 = primaryHolder.clipPlane3) !== null && _primaryHolder$clipPl15 !== void 0 ? _primaryHolder$clipPl15 : secondaryHolder.clipPlane3;\n setClipPlane(effect, \"vClipPlane3\", clipPlane);\n clipPlane = (_primaryHolder$clipPl16 = primaryHolder.clipPlane4) !== null && _primaryHolder$clipPl16 !== void 0 ? _primaryHolder$clipPl16 : secondaryHolder.clipPlane4;\n setClipPlane(effect, \"vClipPlane4\", clipPlane);\n clipPlane = (_primaryHolder$clipPl17 = primaryHolder.clipPlane5) !== null && _primaryHolder$clipPl17 !== void 0 ? _primaryHolder$clipPl17 : secondaryHolder.clipPlane5;\n setClipPlane(effect, \"vClipPlane5\", clipPlane);\n clipPlane = (_primaryHolder$clipPl18 = primaryHolder.clipPlane6) !== null && _primaryHolder$clipPl18 !== void 0 ? _primaryHolder$clipPl18 : secondaryHolder.clipPlane6;\n setClipPlane(effect, \"vClipPlane6\", clipPlane);\n}\nfunction setClipPlane(effect, uniformName, clipPlane) {\n if (clipPlane) {\n effect.setFloat4(uniformName, clipPlane.normal.x, clipPlane.normal.y, clipPlane.normal.z, clipPlane.d);\n }\n}","map":{"version":3,"names":["addClipPlaneUniforms","uniforms","indexOf","push","prepareStringDefinesForClipPlanes","primaryHolder","secondaryHolder","defines","_primaryHolder$clipPl","_primaryHolder$clipPl2","_primaryHolder$clipPl3","_primaryHolder$clipPl4","_primaryHolder$clipPl5","_primaryHolder$clipPl6","clipPlane","clipPlane2","clipPlane3","clipPlane4","clipPlane5","clipPlane6","prepareDefinesForClipPlanes","_primaryHolder$clipPl7","_primaryHolder$clipPl8","_primaryHolder$clipPl9","_primaryHolder$clipPl10","_primaryHolder$clipPl11","_primaryHolder$clipPl12","changed","bindClipPlane","effect","_primaryHolder$clipPl13","_primaryHolder$clipPl14","_primaryHolder$clipPl15","_primaryHolder$clipPl16","_primaryHolder$clipPl17","_primaryHolder$clipPl18","setClipPlane","uniformName","setFloat4","normal","x","y","z","d"],"sources":["F:/workspace/202226701027/huinongbao-app/node_modules/@babylonjs/core/Materials/clipPlaneMaterialHelper.js"],"sourcesContent":["/** @internal */\nexport function addClipPlaneUniforms(uniforms) {\n if (uniforms.indexOf(\"vClipPlane\") === -1) {\n uniforms.push(\"vClipPlane\");\n }\n if (uniforms.indexOf(\"vClipPlane2\") === -1) {\n uniforms.push(\"vClipPlane2\");\n }\n if (uniforms.indexOf(\"vClipPlane3\") === -1) {\n uniforms.push(\"vClipPlane3\");\n }\n if (uniforms.indexOf(\"vClipPlane4\") === -1) {\n uniforms.push(\"vClipPlane4\");\n }\n if (uniforms.indexOf(\"vClipPlane5\") === -1) {\n uniforms.push(\"vClipPlane5\");\n }\n if (uniforms.indexOf(\"vClipPlane6\") === -1) {\n uniforms.push(\"vClipPlane6\");\n }\n}\n/** @internal */\nexport function prepareStringDefinesForClipPlanes(primaryHolder, secondaryHolder, defines) {\n const clipPlane = !!(primaryHolder.clipPlane ?? secondaryHolder.clipPlane);\n const clipPlane2 = !!(primaryHolder.clipPlane2 ?? secondaryHolder.clipPlane2);\n const clipPlane3 = !!(primaryHolder.clipPlane3 ?? secondaryHolder.clipPlane3);\n const clipPlane4 = !!(primaryHolder.clipPlane4 ?? secondaryHolder.clipPlane4);\n const clipPlane5 = !!(primaryHolder.clipPlane5 ?? secondaryHolder.clipPlane5);\n const clipPlane6 = !!(primaryHolder.clipPlane6 ?? secondaryHolder.clipPlane6);\n if (clipPlane)\n defines.push(\"#define CLIPPLANE\");\n if (clipPlane2)\n defines.push(\"#define CLIPPLANE2\");\n if (clipPlane3)\n defines.push(\"#define CLIPPLANE3\");\n if (clipPlane4)\n defines.push(\"#define CLIPPLANE4\");\n if (clipPlane5)\n defines.push(\"#define CLIPPLANE5\");\n if (clipPlane6)\n defines.push(\"#define CLIPPLANE6\");\n}\n/** @internal */\nexport function prepareDefinesForClipPlanes(primaryHolder, secondaryHolder, defines) {\n let changed = false;\n const clipPlane = !!(primaryHolder.clipPlane ?? secondaryHolder.clipPlane);\n const clipPlane2 = !!(primaryHolder.clipPlane2 ?? secondaryHolder.clipPlane2);\n const clipPlane3 = !!(primaryHolder.clipPlane3 ?? secondaryHolder.clipPlane3);\n const clipPlane4 = !!(primaryHolder.clipPlane4 ?? secondaryHolder.clipPlane4);\n const clipPlane5 = !!(primaryHolder.clipPlane5 ?? secondaryHolder.clipPlane5);\n const clipPlane6 = !!(primaryHolder.clipPlane6 ?? secondaryHolder.clipPlane6);\n // Do not factorize this code, it breaks browsers optimizations.\n if (defines[\"CLIPPLANE\"] !== clipPlane) {\n defines[\"CLIPPLANE\"] = clipPlane;\n changed = true;\n }\n if (defines[\"CLIPPLANE2\"] !== clipPlane2) {\n defines[\"CLIPPLANE2\"] = clipPlane2;\n changed = true;\n }\n if (defines[\"CLIPPLANE3\"] !== clipPlane3) {\n defines[\"CLIPPLANE3\"] = clipPlane3;\n changed = true;\n }\n if (defines[\"CLIPPLANE4\"] !== clipPlane4) {\n defines[\"CLIPPLANE4\"] = clipPlane4;\n changed = true;\n }\n if (defines[\"CLIPPLANE5\"] !== clipPlane5) {\n defines[\"CLIPPLANE5\"] = clipPlane5;\n changed = true;\n }\n if (defines[\"CLIPPLANE6\"] !== clipPlane6) {\n defines[\"CLIPPLANE6\"] = clipPlane6;\n changed = true;\n }\n return changed;\n}\n/** @internal */\nexport function bindClipPlane(effect, primaryHolder, secondaryHolder) {\n let clipPlane = primaryHolder.clipPlane ?? secondaryHolder.clipPlane;\n setClipPlane(effect, \"vClipPlane\", clipPlane);\n clipPlane = primaryHolder.clipPlane2 ?? secondaryHolder.clipPlane2;\n setClipPlane(effect, \"vClipPlane2\", clipPlane);\n clipPlane = primaryHolder.clipPlane3 ?? secondaryHolder.clipPlane3;\n setClipPlane(effect, \"vClipPlane3\", clipPlane);\n clipPlane = primaryHolder.clipPlane4 ?? secondaryHolder.clipPlane4;\n setClipPlane(effect, \"vClipPlane4\", clipPlane);\n clipPlane = primaryHolder.clipPlane5 ?? secondaryHolder.clipPlane5;\n setClipPlane(effect, \"vClipPlane5\", clipPlane);\n clipPlane = primaryHolder.clipPlane6 ?? secondaryHolder.clipPlane6;\n setClipPlane(effect, \"vClipPlane6\", clipPlane);\n}\nfunction setClipPlane(effect, uniformName, clipPlane) {\n if (clipPlane) {\n effect.setFloat4(uniformName, clipPlane.normal.x, clipPlane.normal.y, clipPlane.normal.z, clipPlane.d);\n }\n}\n"],"mappings":"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","ignoreList":[]},"metadata":{},"sourceType":"module","externalDependencies":[]}
|