| OLD | NEW |
| 1 library dart.dom.web_gl; | 1 library dart.dom.web_gl; |
| 2 | 2 |
| 3 import 'dart:async'; | 3 import 'dart:async'; |
| 4 import 'dart:collection'; | 4 import 'dart:collection'; |
| 5 import 'dart:_collection-dev'; | 5 import 'dart:_collection-dev'; |
| 6 import 'dart:html'; | 6 import 'dart:html'; |
| 7 import 'dart:html_common'; | 7 import 'dart:html_common'; |
| 8 import 'dart:nativewrappers'; | 8 import 'dart:nativewrappers'; |
| 9 import 'dart:typed_data'; | 9 import 'dart:typed_data'; |
| 10 // DO NOT EDIT | 10 // DO NOT EDIT |
| (...skipping 719 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 730 @DomName('EXTDrawBuffers.MAX_COLOR_ATTACHMENTS_EXT') | 730 @DomName('EXTDrawBuffers.MAX_COLOR_ATTACHMENTS_EXT') |
| 731 @DocsEditable | 731 @DocsEditable |
| 732 static const int MAX_COLOR_ATTACHMENTS_EXT = 0x8CDF; | 732 static const int MAX_COLOR_ATTACHMENTS_EXT = 0x8CDF; |
| 733 | 733 |
| 734 @DomName('EXTDrawBuffers.MAX_DRAW_BUFFERS_EXT') | 734 @DomName('EXTDrawBuffers.MAX_DRAW_BUFFERS_EXT') |
| 735 @DocsEditable | 735 @DocsEditable |
| 736 static const int MAX_DRAW_BUFFERS_EXT = 0x8824; | 736 static const int MAX_DRAW_BUFFERS_EXT = 0x8824; |
| 737 | 737 |
| 738 @DomName('EXTDrawBuffers.drawBuffersEXT') | 738 @DomName('EXTDrawBuffers.drawBuffersEXT') |
| 739 @DocsEditable | 739 @DocsEditable |
| 740 @Experimental // untriaged | |
| 741 void drawBuffersExt(List<int> buffers) native "EXTDrawBuffers_drawBuffersEXT_C
allback"; | 740 void drawBuffersExt(List<int> buffers) native "EXTDrawBuffers_drawBuffersEXT_C
allback"; |
| 742 | 741 |
| 743 } | 742 } |
| 744 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 743 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 745 // for details. All rights reserved. Use of this source code is governed by a | 744 // for details. All rights reserved. Use of this source code is governed by a |
| 746 // BSD-style license that can be found in the LICENSE file. | 745 // BSD-style license that can be found in the LICENSE file. |
| 747 | 746 |
| 748 // WARNING: Do not edit - generated code. | 747 // WARNING: Do not edit - generated code. |
| 749 | 748 |
| 750 | 749 |
| (...skipping 2140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2891 | 2890 |
| 2892 | 2891 |
| 2893 @DocsEditable | 2892 @DocsEditable |
| 2894 @DomName('WebGLVertexArrayObjectOES') | 2893 @DomName('WebGLVertexArrayObjectOES') |
| 2895 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ | 2894 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ |
| 2896 @Experimental // experimental | 2895 @Experimental // experimental |
| 2897 class VertexArrayObject extends NativeFieldWrapperClass1 { | 2896 class VertexArrayObject extends NativeFieldWrapperClass1 { |
| 2898 VertexArrayObject.internal(); | 2897 VertexArrayObject.internal(); |
| 2899 | 2898 |
| 2900 } | 2899 } |
| OLD | NEW |