VectorTileVS.js 309 B

123456789
  1. //This file is automatically rebuilt by the Cesium build process.
  2. export default "attribute vec3 position;\n\
  3. attribute float a_batchId;\n\
  4. uniform mat4 u_modifiedModelViewProjection;\n\
  5. void main()\n\
  6. {\n\
  7. gl_Position = czm_depthClampFarPlane(u_modifiedModelViewProjection * vec4(position, 1.0));\n\
  8. }\n\
  9. ";