Spaces:
Running
Running
File size: 450 Bytes
6cd9596 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
export class WebGLTextures {
constructor(
gl: any,
extensions: any,
state: any,
properties: any,
capabilities: any,
paramThreeToGL: Function,
info: any
);
setTexture2D(texture: any, slot: number): void;
setTextureCube(texture: any, slot: number): void;
setTextureCubeDynamic(texture: any, slot: number): void;
setupRenderTarget(renderTarget: any): void;
updateRenderTargetMipmap(renderTarget: any): void;
}
|