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.

28 lines (27 loc) 836 B
/** This file must only contain pure code and pure imports */ /** @internal */ export type OcclusionQuery = WebGLQuery | number; /** @internal */ export declare class _OcclusionDataStorage { /** @internal */ occlusionInternalRetryCounter: number; /** @internal */ isOcclusionQueryInProgress: boolean; /** @internal */ isOccluded: boolean; /** @internal */ occlusionRetryCount: number; /** @internal */ occlusionType: number; /** @internal */ occlusionQueryAlgorithmType: number; /** @internal */ forceRenderingWhenOccluded: boolean; /** @internal */ occlusionForRenderPassId: number; } /** * Register side effects for abstractEngineQuery. * Safe to call multiple times; only the first call has an effect. */ export declare function RegisterAbstractEngineQuery(): void;