File size: 233 Bytes
2b7aae2
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import { WebGLCapabilities } from './WebGLCapabilities';

export class WebGLExtensions {
	constructor(gl: WebGLRenderingContext);

	has(name: string): boolean;
	init(capabilities: WebGLCapabilities): void;
	get(name: string): any;
}