SunFS.js 293 B

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