SunFS.js 283 B

123456789
  1. //This file is automatically rebuilt by the Cesium build process.
  2. export default "uniform sampler2D u_texture;\n\
  3. varying vec2 v_textureCoordinates;\n\
  4. void main()\n\
  5. {\n\
  6. vec4 color = texture2D(u_texture, v_textureCoordinates);\n\
  7. gl_FragColor = czm_gammaCorrect(color);\n\
  8. }\n\
  9. ";