ViewportQuadVS.js 367 B

123456789101112131415
  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. attribute vec2 textureCoordinates;\n\
  7. \n\
  8. varying vec2 v_textureCoordinates;\n\
  9. \n\
  10. void main() \n\
  11. {\n\
  12. gl_Position = position;\n\
  13. v_textureCoordinates = textureCoordinates;\n\
  14. }";
  15. });