| OLD | NEW |
| 1 /** |
| 2 * 3D programming in the browser. |
| 3 */ |
| 1 library dart.dom.web_gl; | 4 library dart.dom.web_gl; |
| 2 | 5 |
| 3 import 'dart:collection'; | 6 import 'dart:collection'; |
| 4 import 'dart:_collection-dev' hide deprecated; | 7 import 'dart:_collection-dev' hide deprecated; |
| 5 import 'dart:html'; | 8 import 'dart:html'; |
| 6 import 'dart:html_common'; | 9 import 'dart:html_common'; |
| 7 import 'dart:typed_data'; | 10 import 'dart:typed_data'; |
| 8 import 'dart:_js_helper' show Creates, JSName, Null, Returns, convertDartClosure
ToJS; | 11 import 'dart:_js_helper' show Creates, JSName, Null, Returns, convertDartClosure
ToJS; |
| 9 import 'dart:_foreign_helper' show JS; | 12 import 'dart:_foreign_helper' show JS; |
| 10 import 'dart:_interceptors' show Interceptor, JSExtendableArray; | 13 import 'dart:_interceptors' show Interceptor, JSExtendableArray; |
| (...skipping 2813 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2824 // for details. All rights reserved. Use of this source code is governed by a | 2827 // for details. All rights reserved. Use of this source code is governed by a |
| 2825 // BSD-style license that can be found in the LICENSE file. | 2828 // BSD-style license that can be found in the LICENSE file. |
| 2826 | 2829 |
| 2827 | 2830 |
| 2828 @DocsEditable() | 2831 @DocsEditable() |
| 2829 @DomName('WebGLVertexArrayObjectOES') | 2832 @DomName('WebGLVertexArrayObjectOES') |
| 2830 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ | 2833 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ |
| 2831 @Experimental() // experimental | 2834 @Experimental() // experimental |
| 2832 class VertexArrayObject extends Interceptor native "WebGLVertexArrayObjectOES" { | 2835 class VertexArrayObject extends Interceptor native "WebGLVertexArrayObjectOES" { |
| 2833 } | 2836 } |
| OLD | NEW |