WebGLAttributes.d.ts 215 B

123456789
  1. export class WebGLAttributes {
  2. constructor(gl: WebGLRenderingContext | WebGL2RenderingContext);
  3. get(attribute: any): any;
  4. remove(attribute: any): void;
  5. update(attribute: any, bufferType: Array<any>): void;
  6. }