Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Unified Diff: client/dom/frog/frog_dom.dart

Issue 8769030: Fix WebGL operations for dartc and frog. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | client/dom/generated/monkey_dom.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « no previous file | client/dom/generated/monkey_dom.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698