mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 18:29:39 +02:00
16 lines
305 B
TypeScript
16 lines
305 B
TypeScript
import {
|
|
Uniform
|
|
} from '../../../src/Three';
|
|
|
|
export const LuminosityHighPassShader: {
|
|
shaderID: string;
|
|
uniforms: {
|
|
tDiffuse: Uniform;
|
|
luminosityThreshold: Uniform;
|
|
smoothWidth: Uniform;
|
|
defaultColor: Uniform;
|
|
defaultOpacity: Uniform;
|
|
};
|
|
vertexShader: string;
|
|
fragmentShader: string;
|
|
};
|