@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) • 565 B
TypeScript
/** This file must only contain pure code and pure imports */
import { type TextureSize } from "../../Materials/Textures/textureCreationOptions.js";
/**
* Type used to define a texture size (either with a number or with a rect width and height)
* @deprecated please use TextureSize instead
*/
export type RenderTargetTextureSize = TextureSize;
/**
* Register side effects for enginesExtensionsEngineRenderTarget.
* Safe to call multiple times; only the first call has an effect.
*/
export declare function RegisterEnginesExtensionsEngineRenderTarget(): void;