@babylonjs/core
Version:
Getting started? Play directly with the Babylon.js API using our [playground](https://playground.babylonjs.com/). It also contains a lot of samples to learn how to use it.
13 lines (12 loc) • 643 B
TypeScript
import type { FrameGraph, FrameGraphTextureHandle, FrameGraphRenderPass } from "../../../index.js";
import { FrameGraphBlurTask } from "./blurTask.js";
import { ThinDepthOfFieldBlurPostProcess } from "../../../PostProcesses/thinDepthOfFieldBlurPostProcess.js";
/**
* @internal
*/
export declare class FrameGraphDepthOfFieldBlurTask extends FrameGraphBlurTask {
circleOfConfusionTexture: FrameGraphTextureHandle;
circleOfConfusionSamplingMode: number;
constructor(name: string, frameGraph: FrameGraph, thinPostProcess?: ThinDepthOfFieldBlurPostProcess);
record(skipCreationOfDisabledPasses?: boolean): FrameGraphRenderPass;
}