brdfTextureTools.d.ts 693 B

12345678910111213141516171819
  1. import type { BaseTexture } from "../Materials/Textures/baseTexture";
  2. import type { Scene } from "../scene";
  3. /**
  4. * Gets a default environment BRDF for MS-BRDF Height Correlated BRDF
  5. * @param scene defines the hosting scene
  6. * @returns the environment BRDF texture
  7. */
  8. export declare const GetEnvironmentBRDFTexture: (scene: Scene) => BaseTexture;
  9. /**
  10. * Class used to host texture specific utilities
  11. */
  12. export declare const BRDFTextureTools: {
  13. /**
  14. * Gets a default environment BRDF for MS-BRDF Height Correlated BRDF
  15. * @param scene defines the hosting scene
  16. * @returns the environment BRDF texture
  17. */
  18. GetEnvironmentBRDFTexture: (scene: Scene) => BaseTexture;
  19. };