clipPlaneFragmentDeclaration2.js 639 B

123456789101112131415161718192021222324252627
  1. // Do not edit.
  2. import { ShaderStore } from "../../Engines/shaderStore.js";
  3. const name = "clipPlaneFragmentDeclaration2";
  4. const shader = `#ifdef CLIPPLANE
  5. in float fClipDistance;
  6. #endif
  7. #ifdef CLIPPLANE2
  8. in float fClipDistance2;
  9. #endif
  10. #ifdef CLIPPLANE3
  11. in float fClipDistance3;
  12. #endif
  13. #ifdef CLIPPLANE4
  14. in float fClipDistance4;
  15. #endif
  16. #ifdef CLIPPLANE5
  17. in float fClipDistance5;
  18. #endif
  19. #ifdef CLIPPLANE6
  20. in float fClipDistance6;
  21. #endif
  22. `;
  23. // Sideeffect
  24. ShaderStore.IncludesShadersStore[name] = shader;
  25. /** @internal */
  26. export const clipPlaneFragmentDeclaration2 = { name, shader };
  27. //# sourceMappingURL=clipPlaneFragmentDeclaration2.js.map