sceneFragmentDeclaration.js 478 B

1234567891011121314
  1. // Do not edit.
  2. import { ShaderStore } from "../../Engines/shaderStore.js";
  3. const name = "sceneFragmentDeclaration";
  4. const shader = `uniform mat4 viewProjection;
  5. #ifdef MULTIVIEW
  6. uniform mat4 viewProjectionR;
  7. #endif
  8. uniform mat4 view;uniform mat4 projection;uniform vec4 vEyePosition;
  9. `;
  10. // Sideeffect
  11. ShaderStore.IncludesShadersStore[name] = shader;
  12. /** @internal */
  13. export const sceneFragmentDeclaration = { name, shader };
  14. //# sourceMappingURL=sceneFragmentDeclaration.js.map