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.

11 lines (10 loc) 530 B
/** This file must only contain pure code and pure imports */ import { type Scene } from "../scene.js"; import { type Effect } from "./effect.js"; /** * Binds the logarithmic depth information from the scene to the effect for the given defines. * @param defines The generated defines used in the effect * @param effect The effect we are binding the data to * @param scene The scene we are willing to render with logarithmic scale for */ export declare function BindLogDepth(defines: any, effect: Effect, scene: Scene): void;