@itwin/core-frontend
Version:
iTwin.js frontend components
21 lines • 1.05 kB
JavaScript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
* See LICENSE.md in the project root for license terms and full copyright notice.
*--------------------------------------------------------------------------------------------*/
/** @packageDocumentation
* @module Rendering
*/
/** Used for debugging purposes, to toggle display of instanced or batched primitives.
* @see [[RenderTargetDebugControl]].
* @internal
*/
export var PrimitiveVisibility;
(function (PrimitiveVisibility) {
/** Draw all primitives. */
PrimitiveVisibility[PrimitiveVisibility["All"] = 0] = "All";
/** Only draw instanced primitives. */
PrimitiveVisibility[PrimitiveVisibility["Instanced"] = 1] = "Instanced";
/** Only draw un-instanced primitives. */
PrimitiveVisibility[PrimitiveVisibility["Uninstanced"] = 2] = "Uninstanced";
})(PrimitiveVisibility || (PrimitiveVisibility = {}));
//# sourceMappingURL=RenderTargetDebugControl.js.map