ViewportQuadVS.js 304 B

123456789101112
  1. //This file is automatically rebuilt by the Cesium build process.
  2. export default "attribute vec4 position;\n\
  3. attribute vec2 textureCoordinates;\n\
  4. \n\
  5. varying vec2 v_textureCoordinates;\n\
  6. \n\
  7. void main() \n\
  8. {\n\
  9. gl_Position = position;\n\
  10. v_textureCoordinates = textureCoordinates;\n\
  11. }\n\
  12. ";