modern-canvas 0.12.20 → 0.12.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7,7 +7,7 @@ export interface Batchable2D {
7
7
  vertices: Float32Array;
8
8
  indices: Float32Array;
9
9
  uvs?: Float32Array;
10
- dimension?: Float32Array;
10
+ size?: Float32Array;
11
11
  texture?: WebGLTexture;
12
12
  backgroundColor?: number[];
13
13
  modulate?: number[];
@@ -3,6 +3,7 @@ import type { WebGLRenderer } from '../WebGLRenderer';
3
3
  import { WebGLModule } from './WebGLModule';
4
4
  export declare class WebGLTextureModule extends WebGLModule {
5
5
  install(renderer: WebGLRenderer): void;
6
+ maxTextureSize: number;
6
7
  maxUnits: number;
7
8
  boundLocation: WebGLTextureLocation;
8
9
  boundTarget: WebGLTextureTarget;