imageProcessingConfiguration.functions.d.ts 772 B

12345678910111213
  1. import type { IImageProcessingConfigurationDefines } from "./imageProcessingConfiguration.defines";
  2. /**
  3. * Prepare the list of uniforms associated with the Image Processing effects.
  4. * @param uniforms The list of uniforms used in the effect
  5. * @param defines the list of defines currently in use
  6. */
  7. export declare function PrepareUniformsForImageProcessing(uniforms: string[], defines: IImageProcessingConfigurationDefines): void;
  8. /**
  9. * Prepare the list of samplers associated with the Image Processing effects.
  10. * @param samplersList The list of uniforms used in the effect
  11. * @param defines the list of defines currently in use
  12. */
  13. export declare function PrepareSamplersForImageProcessing(samplersList: string[], defines: IImageProcessingConfigurationDefines): void;