@lightningtv/renderer
Version:
Lightning 3 Renderer
10 lines (9 loc) • 552 B
TypeScript
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>;
}