| 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; | 10 import 'dart:_interceptors' show Interceptor; |
| (...skipping 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 662 @DocsEditable | 662 @DocsEditable |
| 663 static const int DRAW_BUFFER9_EXT = 0x882E; | 663 static const int DRAW_BUFFER9_EXT = 0x882E; |
| 664 | 664 |
| 665 @DomName('EXTDrawBuffers.MAX_COLOR_ATTACHMENTS_EXT') | 665 @DomName('EXTDrawBuffers.MAX_COLOR_ATTACHMENTS_EXT') |
| 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 | |
| 673 @JSName('drawBuffersEXT') | |
| 674 @DomName('EXTDrawBuffers.drawBuffersEXT') | |
| 675 @DocsEditable | |
| 676 @Experimental // untriaged | |
| 677 void drawBuffersExt(List<int> buffers) native; | |
| 678 } | 672 } |
| 679 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 673 // 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 | 674 // 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. | 675 // BSD-style license that can be found in the LICENSE file. |
| 682 | 676 |
| 683 | 677 |
| 684 @DocsEditable | 678 @DocsEditable |
| 685 @DomName('EXTFragDepth') | 679 @DomName('EXTFragDepth') |
| 686 // http://www.khronos.org/registry/webgl/extensions/EXT_frag_depth/ | 680 // http://www.khronos.org/registry/webgl/extensions/EXT_frag_depth/ |
| 687 @Experimental | 681 @Experimental |
| (...skipping 2080 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 | 2762 // 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. | 2763 // BSD-style license that can be found in the LICENSE file. |
| 2770 | 2764 |
| 2771 | 2765 |
| 2772 @DocsEditable | 2766 @DocsEditable |
| 2773 @DomName('WebGLVertexArrayObjectOES') | 2767 @DomName('WebGLVertexArrayObjectOES') |
| 2774 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ | 2768 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ |
| 2775 @Experimental // experimental | 2769 @Experimental // experimental |
| 2776 class VertexArrayObject native "WebGLVertexArrayObjectOES" { | 2770 class VertexArrayObject native "WebGLVertexArrayObjectOES" { |
| 2777 } | 2771 } |
| OLD | NEW |