ShadowVolumeFS.js 348 B

123456789101112131415
  1. //This file is automatically rebuilt by the Cesium build process.
  2. export default "#ifdef VECTOR_TILE\n\
  3. uniform vec4 u_highlightColor;\n\
  4. #endif\n\
  5. \n\
  6. void main(void)\n\
  7. {\n\
  8. #ifdef VECTOR_TILE\n\
  9. out_FragColor = czm_gammaCorrect(u_highlightColor);\n\
  10. #else\n\
  11. out_FragColor = vec4(1.0);\n\
  12. #endif\n\
  13. czm_writeDepthClamp();\n\
  14. }\n\
  15. ";