UNPKG

@lightningtv/renderer

Version:
10 lines (9 loc) 552 B
import type { Dimensions } from '../../../common/CommonTypes.js'; import type { TextureMemoryManager } from '../../TextureMemoryManager.js'; import type { WebGlContextWrapper } from '../../lib/WebGlContextWrapper.js'; import type { SubTexture } from '../../textures/SubTexture.js'; import { WebGlCtxTexture } from './WebGlCtxTexture.js'; export declare class WebGlCtxSubTexture extends WebGlCtxTexture { constructor(glw: WebGlContextWrapper, memManager: TextureMemoryManager, textureSource: SubTexture); onLoadRequest(): Promise<Dimensions>; }