OLD | NEW |
1 /** | 1 /** |
2 * 3D programming in the browser. | 2 * 3D programming in the browser. |
3 */ | 3 */ |
4 library dart.dom.web_gl; | 4 library dart.dom.web_gl; |
5 | 5 |
6 import 'dart:collection'; | 6 import 'dart:collection'; |
7 import 'dart:_collection-dev' hide deprecated; | 7 import 'dart:_internal' hide deprecated; |
8 import 'dart:html'; | 8 import 'dart:html'; |
9 import 'dart:html_common'; | 9 import 'dart:html_common'; |
10 import 'dart:typed_data'; | 10 import 'dart:typed_data'; |
11 import 'dart:_js_helper' show Creates, JSName, Null, Returns, convertDartClosure
ToJS; | 11 import 'dart:_js_helper' show Creates, JSName, Null, Returns, convertDartClosure
ToJS; |
12 import 'dart:_foreign_helper' show JS; | 12 import 'dart:_foreign_helper' show JS; |
13 import 'dart:_interceptors' show Interceptor, JSExtendableArray; | 13 import 'dart:_interceptors' show Interceptor, JSExtendableArray; |
14 // DO NOT EDIT - unless you are editing documentation as per: | 14 // DO NOT EDIT - unless you are editing documentation as per: |
15 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation | 15 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation |
16 // Auto-generated dart:web_gl library. | 16 // Auto-generated dart:web_gl library. |
17 | 17 |
(...skipping 3211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3229 | 3229 |
3230 | 3230 |
3231 @DocsEditable() | 3231 @DocsEditable() |
3232 @DomName('WebGLVertexArrayObjectOES') | 3232 @DomName('WebGLVertexArrayObjectOES') |
3233 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ | 3233 // http://www.khronos.org/registry/webgl/extensions/OES_vertex_array_object/ |
3234 @Experimental() // experimental | 3234 @Experimental() // experimental |
3235 class VertexArrayObject extends Interceptor native "WebGLVertexArrayObjectOES" { | 3235 class VertexArrayObject extends Interceptor native "WebGLVertexArrayObjectOES" { |
3236 // To suppress missing implicit constructor warnings. | 3236 // To suppress missing implicit constructor warnings. |
3237 factory VertexArrayObject._() { throw new UnsupportedError("Not supported"); } | 3237 factory VertexArrayObject._() { throw new UnsupportedError("Not supported"); } |
3238 } | 3238 } |
OLD | NEW |