@babylonjs/core
Version:
Getting started? Play directly with the Babylon.js API using our [playground](https://playground.babylonjs.com/). It also contains a lot of samples to learn how to use it.
26 lines • 846 B
JavaScript
import { MaterialDefines } from "./materialDefines.js";
/**
* @internal
*/
export class ImageProcessingConfigurationDefines extends MaterialDefines {
constructor() {
super();
this.IMAGEPROCESSING = false;
this.VIGNETTE = false;
this.VIGNETTEBLENDMODEMULTIPLY = false;
this.VIGNETTEBLENDMODEOPAQUE = false;
this.TONEMAPPING = 0;
this.CONTRAST = false;
this.COLORCURVES = false;
this.COLORGRADING = false;
this.COLORGRADING3D = false;
this.SAMPLER3DGREENDEPTH = false;
this.SAMPLER3DBGRMAP = false;
this.DITHER = false;
this.IMAGEPROCESSINGPOSTPROCESS = false;
this.EXPOSURE = false;
this.SKIPFINALCOLORCLAMP = false;
this.rebuild();
}
}
//# sourceMappingURL=imageProcessingConfiguration.defines.js.map