mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-05 02:39:46 +02:00
12 lines
189 B
TypeScript
12 lines
189 B
TypeScript
import {
|
|
Uniform
|
|
} from '../../../src/Three';
|
|
|
|
export const TriangleBlurShader: {
|
|
uniforms: {
|
|
texture: Uniform;
|
|
delta: Uniform;
|
|
};
|
|
vertexShader: string;
|
|
fragmentShader: string;
|
|
};
|