@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) • 712 B
TypeScript
import type { Effect } from "./effect.js";
import type { IClipPlanesHolder } from "../Misc/interfaces/iClipPlanesHolder.js";
/** @internal */
export declare function addClipPlaneUniforms(uniforms: string[]): void;
/** @internal */
export declare function prepareStringDefinesForClipPlanes(primaryHolder: IClipPlanesHolder, secondaryHolder: IClipPlanesHolder, defines: string[]): void;
/** @internal */
export declare function prepareDefinesForClipPlanes(primaryHolder: IClipPlanesHolder, secondaryHolder: IClipPlanesHolder, defines: Record<string, any>): boolean;
/** @internal */
export declare function bindClipPlane(effect: Effect, primaryHolder: IClipPlanesHolder, secondaryHolder: IClipPlanesHolder): void;