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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | client/dom/generated/monkey_dom.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #library('dom'); 1 #library('dom');
2 2
3 #native('frog_dom.js'); 3 #native('frog_dom.js');
4 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 4 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
5 // for details. All rights reserved. Use of this source code is governed by a 5 // for details. All rights reserved. Use of this source code is governed by a
6 // BSD-style license that can be found in the LICENSE file. 6 // BSD-style license that can be found in the LICENSE file.
7 7
8 // DO NOT EDIT 8 // DO NOT EDIT
9 // Auto-generated Dart DOM library. 9 // Auto-generated Dart DOM library.
10 10
(...skipping 9893 matching lines...) Expand 10 before | Expand all | Expand 10 after
9904 void generateMipmap(int target) native; 9904 void generateMipmap(int target) native;
9905 9905
9906 WebGLActiveInfo getActiveAttrib(WebGLProgram program, int index) native; 9906 WebGLActiveInfo getActiveAttrib(WebGLProgram program, int index) native;
9907 9907
9908 WebGLActiveInfo getActiveUniform(WebGLProgram program, int index) native; 9908 WebGLActiveInfo getActiveUniform(WebGLProgram program, int index) native;
9909 9909
9910 void getAttachedShaders(WebGLProgram program) native; 9910 void getAttachedShaders(WebGLProgram program) native;
9911 9911
9912 int getAttribLocation(WebGLProgram program, String name) native; 9912 int getAttribLocation(WebGLProgram program, String name) native;
9913 9913
9914 void getBufferParameter() native; 9914 Object getBufferParameter(int target, int pname) native;
9915 9915
9916 WebGLContextAttributes getContextAttributes() native; 9916 WebGLContextAttributes getContextAttributes() native;
9917 9917
9918 int getError() native; 9918 int getError() native;
9919 9919
9920 void getExtension(String name) native; 9920 Object getExtension(String name) native;
9921 9921
9922 void getFramebufferAttachmentParameter() native; 9922 Object getFramebufferAttachmentParameter(int target, int attachment, int pname ) native;
9923 9923
9924 void getParameter() native; 9924 Object getParameter(int pname) native;
9925 9925
9926 String getProgramInfoLog(WebGLProgram program) native; 9926 String getProgramInfoLog(WebGLProgram program) native;
9927 9927
9928 void getProgramParameter() native; 9928 Object getProgramParameter(WebGLProgram program, int pname) native;
9929 9929
9930 void getRenderbufferParameter() native; 9930 Object getRenderbufferParameter(int target, int pname) native;
9931 9931
9932 String getShaderInfoLog(WebGLShader shader) native; 9932 String getShaderInfoLog(WebGLShader shader) native;
9933 9933
9934 void getShaderParameter() native; 9934 Object getShaderParameter(WebGLShader shader, int pname) native;
9935 9935
9936 String getShaderSource(WebGLShader shader) native; 9936 String getShaderSource(WebGLShader shader) native;
9937 9937
9938 void getSupportedExtensions() native; 9938 Object getTexParameter(int target, int pname) native;
9939 9939
9940 void getTexParameter() native; 9940 Object getUniform(WebGLProgram program, WebGLUniformLocation location) native;
9941
9942 void getUniform() native;
9943 9941
9944 WebGLUniformLocation getUniformLocation(WebGLProgram program, String name) nat ive; 9942 WebGLUniformLocation getUniformLocation(WebGLProgram program, String name) nat ive;
9945 9943
9946 void getVertexAttrib() native; 9944 Object getVertexAttrib(int index, int pname) native;
9947 9945
9948 int getVertexAttribOffset(int index, int pname) native; 9946 int getVertexAttribOffset(int index, int pname) native;
9949 9947
9950 void hint(int target, int mode) native; 9948 void hint(int target, int mode) native;
9951 9949
9952 bool isBuffer(WebGLBuffer buffer) native; 9950 bool isBuffer(WebGLBuffer buffer) native;
9953 9951
9954 bool isContextLost() native; 9952 bool isContextLost() native;
9955 9953
9956 bool isEnabled(int cap) native; 9954 bool isEnabled(int cap) native;
(...skipping 823 matching lines...) Expand 10 before | Expand all | Expand 10 after
10780 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 10778 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
10781 // for details. All rights reserved. Use of this source code is governed by a 10779 // for details. All rights reserved. Use of this source code is governed by a
10782 // BSD-style license that can be found in the LICENSE file. 10780 // BSD-style license that can be found in the LICENSE file.
10783 10781
10784 typedef bool RequestAnimationFrameCallback(int time); 10782 typedef bool RequestAnimationFrameCallback(int time);
10785 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 10783 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
10786 // for details. All rights reserved. Use of this source code is governed by a 10784 // for details. All rights reserved. Use of this source code is governed by a
10787 // BSD-style license that can be found in the LICENSE file. 10785 // BSD-style license that can be found in the LICENSE file.
10788 10786
10789 typedef void TimeoutHandler(); 10787 typedef void TimeoutHandler();
OLDNEW
« 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