| 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' hide deprecated; |
| 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; |
| 11 // DO NOT EDIT - unless you are editing documentation as per: | 11 // DO NOT EDIT - unless you are editing documentation as per: |
| 12 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation | 12 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation |
| 13 // Auto-generated dart:web_gl library. | 13 // Auto-generated dart:web_gl library. |
| 14 | 14 |
| (...skipping 2776 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2791 // for details. All rights reserved. Use of this source code is governed by a | 2791 // for details. All rights reserved. Use of this source code is governed by a |
| 2792 // BSD-style license that can be found in the LICENSE file. | 2792 // BSD-style license that can be found in the LICENSE file. |
| 2793 | 2793 |
| 2794 | 2794 |
| 2795 @DocsEditable() | 2795 @DocsEditable() |
| 2796 @DomName('WebGLVertexArrayObjectOES') | 2796 @DomName('WebGLVertexArrayObjectOES') |
| 2797 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ | 2797 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ |
| 2798 @Experimental() // experimental | 2798 @Experimental() // experimental |
| 2799 class VertexArrayObject extends Interceptor native "WebGLVertexArrayObjectOES" { | 2799 class VertexArrayObject extends Interceptor native "WebGLVertexArrayObjectOES" { |
| 2800 } | 2800 } |
| OLD | NEW |