mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 18:29:39 +02:00
15 lines
264 B
TypeScript
15 lines
264 B
TypeScript
import {
|
|
Uniform
|
|
} from '../../../src/Three';
|
|
|
|
export const FocusShader: {
|
|
uniforms: {
|
|
tDiffuse: Uniform;
|
|
screenWidth: Uniform;
|
|
screenHeight: Uniform;
|
|
sampleDistance: Uniform;
|
|
waveFactor: Uniform;
|
|
};
|
|
vertexShader: string;
|
|
fragmentShader: string;
|
|
};
|