| 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 673 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 684 @DocsEditable | 684 @DocsEditable |
| 685 static const int DRAW_BUFFER9_EXT = 0x882E; | 685 static const int DRAW_BUFFER9_EXT = 0x882E; |
| 686 | 686 |
| 687 @DomName('EXTDrawBuffers.MAX_COLOR_ATTACHMENTS_EXT') | 687 @DomName('EXTDrawBuffers.MAX_COLOR_ATTACHMENTS_EXT') |
| 688 @DocsEditable | 688 @DocsEditable |
| 689 static const int MAX_COLOR_ATTACHMENTS_EXT = 0x8CDF; | 689 static const int MAX_COLOR_ATTACHMENTS_EXT = 0x8CDF; |
| 690 | 690 |
| 691 @DomName('EXTDrawBuffers.MAX_DRAW_BUFFERS_EXT') | 691 @DomName('EXTDrawBuffers.MAX_DRAW_BUFFERS_EXT') |
| 692 @DocsEditable | 692 @DocsEditable |
| 693 static const int MAX_DRAW_BUFFERS_EXT = 0x8824; | 693 static const int MAX_DRAW_BUFFERS_EXT = 0x8824; |
| 694 |
| 695 @JSName('drawBuffersEXT') |
| 696 @DomName('EXTDrawBuffers.drawBuffersEXT') |
| 697 @DocsEditable |
| 698 @Experimental // untriaged |
| 699 void drawBuffersExt(List<int> buffers) native; |
| 694 } | 700 } |
| 695 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 701 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 696 // for details. All rights reserved. Use of this source code is governed by a | 702 // for details. All rights reserved. Use of this source code is governed by a |
| 697 // BSD-style license that can be found in the LICENSE file. | 703 // BSD-style license that can be found in the LICENSE file. |
| 698 | 704 |
| 699 | 705 |
| 700 @DocsEditable | 706 @DocsEditable |
| 701 @DomName('EXTFragDepth') | 707 @DomName('EXTFragDepth') |
| 702 // http://www.khronos.org/registry/webgl/extensions/EXT_frag_depth/ | 708 // http://www.khronos.org/registry/webgl/extensions/EXT_frag_depth/ |
| 703 @Experimental | 709 @Experimental |
| (...skipping 2118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2822 | 2828 |
| 2823 | 2829 |
| 2824 @DocsEditable | 2830 @DocsEditable |
| 2825 @DomName('WebGLVertexArrayObjectOES') | 2831 @DomName('WebGLVertexArrayObjectOES') |
| 2826 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ | 2832 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ |
| 2827 @Experimental // experimental | 2833 @Experimental // experimental |
| 2828 class VertexArrayObject native "WebGLVertexArrayObjectOES" { | 2834 class VertexArrayObject native "WebGLVertexArrayObjectOES" { |
| 2829 // To suppress missing implicit constructor warnings. | 2835 // To suppress missing implicit constructor warnings. |
| 2830 factory VertexArrayObject._() { throw new UnsupportedError("Not supported"); } | 2836 factory VertexArrayObject._() { throw new UnsupportedError("Not supported"); } |
| 2831 } | 2837 } |
| OLD | NEW |