IDrawContext.d.ts 141 B

1234567
  1. /** @internal */
  2. export interface IDrawContext {
  3. uniqueId: number;
  4. useInstancing: boolean;
  5. reset(): void;
  6. dispose(): void;
  7. }