UNPKG

@lightningjs/renderer

Version:
10 lines (9 loc) 568 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 { WebGlCoreCtxTexture } from './WebGlCoreCtxTexture.js'; export declare class WebGlCoreCtxSubTexture extends WebGlCoreCtxTexture { constructor(glw: WebGlContextWrapper, memManager: TextureMemoryManager, textureSource: SubTexture); onLoadRequest(): Promise<Dimensions>; }