| OLD | NEW |
| 1 library dart.dom.web_gl; | 1 library dart.dom.web_gl; |
| 2 | 2 |
| 3 import 'dart:collection'; | 3 import 'dart:collection'; |
| 4 import 'dart:_collection-dev'; | 4 import 'dart:_collection-dev'; |
| 5 import 'dart:html'; | 5 import 'dart:html'; |
| 6 import 'dart:html_common'; | 6 import 'dart:html_common'; |
| 7 import 'dart:typed_data'; | 7 import 'dart:typed_data'; |
| 8 import 'dart:_js_helper' show Creates, JSName, Null, Returns, convertDartClosure
ToJS; | 8 import 'dart:_js_helper' show Creates, JSName, Null, Returns, convertDartClosure
ToJS; |
| 9 import 'dart:_foreign_helper' show JS; | 9 import 'dart:_foreign_helper' show JS; |
| 10 import 'dart:_interceptors' show Interceptor, JSExtendableArray; | 10 import 'dart:_interceptors' show Interceptor, JSExtendableArray; |
| (...skipping 655 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 666 @DocsEditable | 666 @DocsEditable |
| 667 static const int MAX_COLOR_ATTACHMENTS_EXT = 0x8CDF; | 667 static const int MAX_COLOR_ATTACHMENTS_EXT = 0x8CDF; |
| 668 | 668 |
| 669 @DomName('EXTDrawBuffers.MAX_DRAW_BUFFERS_EXT') | 669 @DomName('EXTDrawBuffers.MAX_DRAW_BUFFERS_EXT') |
| 670 @DocsEditable | 670 @DocsEditable |
| 671 static const int MAX_DRAW_BUFFERS_EXT = 0x8824; | 671 static const int MAX_DRAW_BUFFERS_EXT = 0x8824; |
| 672 | 672 |
| 673 @JSName('drawBuffersEXT') | 673 @JSName('drawBuffersEXT') |
| 674 @DomName('EXTDrawBuffers.drawBuffersEXT') | 674 @DomName('EXTDrawBuffers.drawBuffersEXT') |
| 675 @DocsEditable | 675 @DocsEditable |
| 676 @Experimental // untriaged | |
| 677 void drawBuffersExt(List<int> buffers) native; | 676 void drawBuffersExt(List<int> buffers) native; |
| 678 } | 677 } |
| 679 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 678 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 680 // for details. All rights reserved. Use of this source code is governed by a | 679 // for details. All rights reserved. Use of this source code is governed by a |
| 681 // BSD-style license that can be found in the LICENSE file. | 680 // BSD-style license that can be found in the LICENSE file. |
| 682 | 681 |
| 683 | 682 |
| 684 @DocsEditable | 683 @DocsEditable |
| 685 @DomName('EXTFragDepth') | 684 @DomName('EXTFragDepth') |
| 686 // http://www.khronos.org/registry/webgl/extensions/EXT_frag_depth/ | 685 // http://www.khronos.org/registry/webgl/extensions/EXT_frag_depth/ |
| (...skipping 2081 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2768 // for details. All rights reserved. Use of this source code is governed by a | 2767 // for details. All rights reserved. Use of this source code is governed by a |
| 2769 // BSD-style license that can be found in the LICENSE file. | 2768 // BSD-style license that can be found in the LICENSE file. |
| 2770 | 2769 |
| 2771 | 2770 |
| 2772 @DocsEditable | 2771 @DocsEditable |
| 2773 @DomName('WebGLVertexArrayObjectOES') | 2772 @DomName('WebGLVertexArrayObjectOES') |
| 2774 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ | 2773 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ |
| 2775 @Experimental // experimental | 2774 @Experimental // experimental |
| 2776 class VertexArrayObject native "WebGLVertexArrayObjectOES" { | 2775 class VertexArrayObject native "WebGLVertexArrayObjectOES" { |
| 2777 } | 2776 } |
| OLD | NEW |