@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.
14 lines (13 loc) • 596 B
TypeScript
import type { AbstractEngine } from "../../Engines/abstractEngine.js";
import type { RenderTargetWrapper } from "../../Engines/renderTargetWrapper.js";
import type { InternalTexture } from "../../Materials/Textures/internalTexture.js";
/** @internal */
export declare class FluidRenderingDepthTextureCopy {
private _engine;
private _depthRTWrapper;
private _copyTextureToTexture;
get depthRTWrapper(): RenderTargetWrapper;
constructor(engine: AbstractEngine, width: number, height: number, samples?: number);
copy(source: InternalTexture): boolean;
dispose(): void;
}