pixi.js
Version:
<p align="center"> <a href="https://pixijs.com" target="_blank" rel="noopener noreferrer"> <img height="150" src="https://files.pixijs.download/branding/pixijs-logo-transparent-dark.svg?v=1" alt="PixiJS logo"> </a> </p> <br/> <p align="center">
16 lines (15 loc) • 536 B
TypeScript
import type { ShapeBuildCommand } from '../buildCommands/ShapeBuildCommand';
import type { GraphicsContext } from '../GraphicsContext';
import type { GpuGraphicsContext } from '../GraphicsContextSystem';
/**
* A record of shape builders, keyed by shape type.
* @category scene
* @advanced
*/
export declare const shapeBuilders: Record<string, ShapeBuildCommand>;
/**
* @param context
* @param gpuContext
* @internal
*/
export declare function buildContextBatches(context: GraphicsContext, gpuContext: GpuGraphicsContext): void;