| Index: client/dom/frog/frog_dom.dart
|
| diff --git a/client/dom/frog/frog_dom.dart b/client/dom/frog/frog_dom.dart
|
| index 53f175afa3d7388f13688e3d96191c422e67efb0..780a616c3de26f8d698ecda627f2a3845cb27006 100644
|
| --- a/client/dom/frog/frog_dom.dart
|
| +++ b/client/dom/frog/frog_dom.dart
|
| @@ -9911,39 +9911,37 @@ class WebGLRenderingContext extends CanvasRenderingContext native "*WebGLRenderi
|
|
|
| int getAttribLocation(WebGLProgram program, String name) native;
|
|
|
| - void getBufferParameter() native;
|
| + Object getBufferParameter(int target, int pname) native;
|
|
|
| WebGLContextAttributes getContextAttributes() native;
|
|
|
| int getError() native;
|
|
|
| - void getExtension(String name) native;
|
| + Object getExtension(String name) native;
|
|
|
| - void getFramebufferAttachmentParameter() native;
|
| + Object getFramebufferAttachmentParameter(int target, int attachment, int pname) native;
|
|
|
| - void getParameter() native;
|
| + Object getParameter(int pname) native;
|
|
|
| String getProgramInfoLog(WebGLProgram program) native;
|
|
|
| - void getProgramParameter() native;
|
| + Object getProgramParameter(WebGLProgram program, int pname) native;
|
|
|
| - void getRenderbufferParameter() native;
|
| + Object getRenderbufferParameter(int target, int pname) native;
|
|
|
| String getShaderInfoLog(WebGLShader shader) native;
|
|
|
| - void getShaderParameter() native;
|
| + Object getShaderParameter(WebGLShader shader, int pname) native;
|
|
|
| String getShaderSource(WebGLShader shader) native;
|
|
|
| - void getSupportedExtensions() native;
|
| + Object getTexParameter(int target, int pname) native;
|
|
|
| - void getTexParameter() native;
|
| -
|
| - void getUniform() native;
|
| + Object getUniform(WebGLProgram program, WebGLUniformLocation location) native;
|
|
|
| WebGLUniformLocation getUniformLocation(WebGLProgram program, String name) native;
|
|
|
| - void getVertexAttrib() native;
|
| + Object getVertexAttrib(int index, int pname) native;
|
|
|
| int getVertexAttribOffset(int index, int pname) native;
|
|
|
|
|