Initial project import
This commit is contained in:
12
node_modules/three-stdlib/shaders/GammaCorrectionShader.d.ts
generated
vendored
Normal file
12
node_modules/three-stdlib/shaders/GammaCorrectionShader.d.ts
generated
vendored
Normal file
@@ -0,0 +1,12 @@
|
||||
/**
|
||||
* 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;
|
||||
Reference in New Issue
Block a user