UNPKG

pixi-stats

Version:

WebGL stats for pixi.js or/and three.js

15 lines 486 B
export type Stub = Record<string, any>; export type Renderer = Stub; export type Texture = Stub; export type IStats = Stub; export interface PIXIGlTexture { gl: WebGLRenderingContext; texture: Texture; } export type PIXIGlTextureArray = PIXIGlTexture[]; export type PIXIGlTextureRecord = Record<string, PIXIGlTexture>; export interface PIXIRendererGlTexture { managedTextures?: PIXIGlTextureArray; _glTextures?: PIXIGlTextureRecord; } //# sourceMappingURL=model.d.ts.map