mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 18:29:39 +02:00
19 lines
451 B
TypeScript
19 lines
451 B
TypeScript
import {
|
|
WebGLRenderTarget,
|
|
ShaderMaterial
|
|
} from '../../../src/Three';
|
|
|
|
import { Pass } from './Pass';
|
|
|
|
export class BloomPass extends Pass {
|
|
|
|
constructor( strength?: number, kernelSize?: number, sigma?: number, resolution?: number );
|
|
renderTargetX: WebGLRenderTarget;
|
|
renderTargetY: WebGLRenderTarget;
|
|
copyUniforms: object;
|
|
materialCopy: ShaderMaterial;
|
|
convolutionUniforms: object;
|
|
materialConvolution: ShaderMaterial;
|
|
fsQuad: object;
|
|
|
|
}
|