/** * Gamma Correction Shader * http://en.wikipedia.org/wiki/gamma_correction */ import type { IUniform, Texture } from 'three'; import type { IShader } from './types'; export type GammaCorrectionShaderUniforms = { tDiffuse: IUniform; }; export interface IGammaCorrectionShader extends IShader { } export declare const GammaCorrectionShader: IGammaCorrectionShader;