/** * Gamma Correction Shader * http://en.wikipedia.org/wiki/gamma_correction */ declare const GammaCorrectionShader: { name: string; uniforms: { tDiffuse: { value: any; }; }; vertexShader: string; fragmentShader: string; }; export default GammaCorrectionShader;