Favivon - Correção

This commit is contained in:
2026-05-30 19:59:39 -03:00
parent 76ddaa815d
commit d7dfd221f0
32859 changed files with 5459654 additions and 404 deletions
+23
View File
@@ -0,0 +1,23 @@
import { Mesh, Scene, WebGLRenderTarget, WebGLRenderer, Camera } from 'three';
import { ConvolutionMaterial } from './ConvolutionMaterial';
export interface BlurPassProps {
gl: WebGLRenderer;
resolution: number;
width?: number;
height?: number;
minDepthThreshold?: number;
maxDepthThreshold?: number;
depthScale?: number;
depthToBlurRatioBias?: number;
}
export declare class BlurPass {
readonly renderTargetA: WebGLRenderTarget;
readonly renderTargetB: WebGLRenderTarget;
readonly convolutionMaterial: ConvolutionMaterial;
readonly scene: Scene;
readonly camera: Camera;
readonly screen: Mesh;
renderToScreen: boolean;
constructor({ gl, resolution, width, height, minDepthThreshold, maxDepthThreshold, depthScale, depthToBlurRatioBias, }: BlurPassProps);
render(renderer: any, inputBuffer: any, outputBuffer: any): void;
}