SunFS.js 299 B

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