logDepthDeclaration.js 411 B

123456789101112
  1. // Do not edit.
  2. import { ShaderStore } from "../../Engines/shaderStore.js";
  3. const name = "logDepthDeclaration";
  4. const shader = `#ifdef LOGARITHMICDEPTH
  5. uniform float logarithmicDepthConstant;varying float vFragmentDepth;
  6. #endif
  7. `;
  8. // Sideeffect
  9. ShaderStore.IncludesShadersStore[name] = shader;
  10. /** @internal */
  11. export const logDepthDeclaration = { name, shader };
  12. //# sourceMappingURL=logDepthDeclaration.js.map