Procházet zdrojové kódy

TypeScript: WebGLAttributes.js

linbingquan před 6 roky
rodič
revize
a633488dab
1 změnil soubory, kde provedl 9 přidání a 0 odebrání
  1. 9 0
      src/renderers/webgl/WebGLAttributes.d.ts

+ 9 - 0
src/renderers/webgl/WebGLAttributes.d.ts

@@ -0,0 +1,9 @@
+export class WebGLAttributes {
+	constructor(gl: CanvasRenderingContext2D | WebGLRenderingContext);
+
+	get(attribute: any): any;
+
+	remove(attribute: any): void;
+
+	update(attribute: any, bufferType: Array): void;
+}