| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
| 6 | 6 |
| 7 interface WebGLRenderingContext extends CanvasRenderingContext { | 7 interface WebGLRenderingContext extends CanvasRenderingContext { |
| 8 | 8 |
| 9 static final int ACTIVE_ATTRIBUTES = 0x8B89; | 9 static final int ACTIVE_ATTRIBUTES = 0x8B89; |
| 10 | 10 |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 297 static final int NEVER = 0x0200; | 297 static final int NEVER = 0x0200; |
| 298 | 298 |
| 299 static final int NICEST = 0x1102; | 299 static final int NICEST = 0x1102; |
| 300 | 300 |
| 301 static final int NONE = 0; | 301 static final int NONE = 0; |
| 302 | 302 |
| 303 static final int NOTEQUAL = 0x0205; | 303 static final int NOTEQUAL = 0x0205; |
| 304 | 304 |
| 305 static final int NO_ERROR = 0; | 305 static final int NO_ERROR = 0; |
| 306 | 306 |
| 307 static final int NUM_COMPRESSED_TEXTURE_FORMATS = 0x86A2; | |
| 308 | |
| 309 static final int ONE = 1; | 307 static final int ONE = 1; |
| 310 | 308 |
| 311 static final int ONE_MINUS_CONSTANT_ALPHA = 0x8004; | 309 static final int ONE_MINUS_CONSTANT_ALPHA = 0x8004; |
| 312 | 310 |
| 313 static final int ONE_MINUS_CONSTANT_COLOR = 0x8002; | 311 static final int ONE_MINUS_CONSTANT_COLOR = 0x8002; |
| 314 | 312 |
| 315 static final int ONE_MINUS_DST_ALPHA = 0x0305; | 313 static final int ONE_MINUS_DST_ALPHA = 0x0305; |
| 316 | 314 |
| 317 static final int ONE_MINUS_DST_COLOR = 0x0307; | 315 static final int ONE_MINUS_DST_COLOR = 0x0307; |
| 318 | 316 |
| (...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 867 void vertexAttrib3fv(int indx, Float32Array values); | 865 void vertexAttrib3fv(int indx, Float32Array values); |
| 868 | 866 |
| 869 void vertexAttrib4f(int indx, num x, num y, num z, num w); | 867 void vertexAttrib4f(int indx, num x, num y, num z, num w); |
| 870 | 868 |
| 871 void vertexAttrib4fv(int indx, Float32Array values); | 869 void vertexAttrib4fv(int indx, Float32Array values); |
| 872 | 870 |
| 873 void vertexAttribPointer(int indx, int size, int type, bool normalized, int st
ride, int offset); | 871 void vertexAttribPointer(int indx, int size, int type, bool normalized, int st
ride, int offset); |
| 874 | 872 |
| 875 void viewport(int x, int y, int width, int height); | 873 void viewport(int x, int y, int width, int height); |
| 876 } | 874 } |
| OLD | NEW |