UNPKG

@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.

17 lines (16 loc) 773 B
import type { FrameGraph, FrameGraphRenderPass, Camera, FrameGraphTextureHandle } from "../../../index.js"; import { FrameGraphPostProcessTask } from "./postProcessTask.js"; import { ThinSSRPostProcess } from "../../../PostProcesses/thinSSRPostProcess.js"; /** * @internal */ export declare class FrameGraphSSRTask extends FrameGraphPostProcessTask { normalTexture: FrameGraphTextureHandle; depthTexture: FrameGraphTextureHandle; reflectivityTexture: FrameGraphTextureHandle; backDepthTexture?: FrameGraphTextureHandle; camera: Camera; readonly postProcess: ThinSSRPostProcess; constructor(name: string, frameGraph: FrameGraph, thinPostProcess?: ThinSSRPostProcess); record(skipCreationOfDisabledPasses?: boolean): FrameGraphRenderPass; }