UNPKG

three-stdlib

Version:

stand-alone library of threejs examples

28 lines (27 loc) 612 B
/** * Full-screen tone-mapping shader based on http://www.cis.rit.edu/people/faculty/ferwerda/publications/sig02_paper.pdf */ export declare const ToneMapShader: { uniforms: { tDiffuse: { value: null; }; averageLuminance: { value: number; }; luminanceMap: { value: null; }; maxLuminance: { value: number; }; minLuminance: { value: number; }; middleGrey: { value: number; }; }; vertexShader: string; fragmentShader: string; };