createShadowMapInstancingPS.glsl 138 B

12345678910
  1. #version 330
  2. precision highp float;
  3. layout(location = 0) out float fragmentdepth;
  4. void main(void)
  5. {
  6. fragmentdepth = gl_FragCoord.z;
  7. }