ViewportQuadVS.js 286 B

123456789101112
  1. //This file is automatically rebuilt by the Cesium build process.
  2. export default "in vec4 position;\n\
  3. in vec2 textureCoordinates;\n\
  4. \n\
  5. out 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. ";