GlobeVSDepth.js 333 B

1234567891011121314
  1. //This file is automatically rebuilt by the Cesium build process.
  2. /*global define*/
  3. define(function() {
  4. "use strict";
  5. return "attribute vec4 position;\n\
  6. \n\
  7. varying vec4 positionEC;\n\
  8. \n\
  9. void main()\n\
  10. {\n\
  11. positionEC = czm_modelView * position;\n\
  12. gl_Position = czm_projection * positionEC;\n\
  13. }";
  14. });