cascadeMatrix.js 371 B

12345678910
  1. //This file is automatically rebuilt by the Cesium build process.
  2. export default "uniform mat4 shadowMap_cascadeMatrices[4];\n\
  3. mat4 czm_cascadeMatrix(vec4 weights)\n\
  4. {\n\
  5. return shadowMap_cascadeMatrices[0] * weights.x +\n\
  6. shadowMap_cascadeMatrices[1] * weights.y +\n\
  7. shadowMap_cascadeMatrices[2] * weights.z +\n\
  8. shadowMap_cascadeMatrices[3] * weights.w;\n\
  9. }\n\
  10. ";