DepthPlaneVS.js 292 B

12345678910111213
  1. //This file is automatically rebuilt by the Cesium build process.
  2. export default "in vec4 position;\n\
  3. \n\
  4. out vec4 positionEC;\n\
  5. \n\
  6. void main()\n\
  7. {\n\
  8. positionEC = czm_modelView * position;\n\
  9. gl_Position = czm_projection * positionEC;\n\
  10. \n\
  11. czm_vertexLogDepth();\n\
  12. }\n\
  13. ";