UNPKG

pixi.js

Version:

PixiJS — The HTML5 Creation Engine =============

8 lines (7 loc) 371 B
import type { TextureSource } from '../../../shared/texture/sources/TextureSource'; import type { GlRenderingContext } from '../../context/GlRenderingContext'; import type { GlTexture } from '../GlTexture'; export interface GLTextureUploader { id: string; upload(source: TextureSource, glTexture: GlTexture, gl: GlRenderingContext, webGLVersion: number): void; }