1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-04 18:29:39 +02:00
Oinktube/node_modules/three/examples/jsm/shaders/SMAAShader.d.ts
2023-12-11 11:59:56 -03:00

42 lines
740 B
TypeScript

import {
Uniform
} from '../../../src/Three';
export const SMAAEdgesShader: {
defines: {
SMAA_THRESHOLD: string;
},
uniforms: {
tDiffuse: Uniform;
resolution: Uniform;
};
vertexShader: string;
fragmentShader: string;
};
export const SMAAWeightsShader: {
defines: {
SMAA_MAX_SEARCH_STEPS: string;
SMAA_AREATEX_MAX_DISTANCE: string;
SMAA_AREATEX_PIXEL_SIZE: string;
SMAA_AREATEX_SUBTEX_SIZE: string;
},
uniforms: {
tDiffuse: Uniform;
tArea: Uniform;
tSearch: Uniform;
resolution: Uniform;
};
vertexShader: string;
fragmentShader: string;
};
export const SMAABlendShader: {
uniforms: {
tDiffuse: Uniform;
tColor: Uniform;
resolution: Uniform;
};
vertexShader: string;
fragmentShader: string;
};