summit/frontend/node_modules/three-stdlib/shaders/GammaCorrectionShader.d.ts

13 lines
420 B
TypeScript
Raw Normal View History

2025-12-08 16:31:30 +00:00
/**
* 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<Texture | null>;
};
export interface IGammaCorrectionShader extends IShader<GammaCorrectionShaderUniforms> {
}
export declare const GammaCorrectionShader: IGammaCorrectionShader;