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

18 lines
326 B
TypeScript
Raw Normal View History

2025-12-08 16:31:30 +00:00
/**
* Sepia tone shader
* based on glfx.js sepia shader
* https://github.com/evanw/glfx.js
*/
export declare const SepiaShader: {
uniforms: {
tDiffuse: {
value: null;
};
amount: {
value: number;
};
};
vertexShader: string;
fragmentShader: string;
};