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' hide LinkedList, LinkedListEntry; |
7 import 'dart:_internal' show FixedLengthListMixin; | 7 import 'dart:_internal' show FixedLengthListMixin; |
8 import 'dart:html'; | 8 import 'dart:html'; |
9 import 'dart:html_common'; | 9 import 'dart:html_common'; |
10 import 'dart:_native_typed_data'; | 10 import 'dart:_native_typed_data'; |
11 import 'dart:typed_data'; | 11 import 'dart:typed_data'; |
12 import 'dart:_js_helper' | 12 import 'dart:_js_helper' |
13 show Creates, JSName, Native, Returns, convertDartClosureToJS; | 13 show Creates, JSName, Native, Returns, convertDartClosureToJS; |
14 import 'dart:_foreign_helper' show JS; | 14 import 'dart:_foreign_helper' show JS; |
15 import 'dart:_interceptors' show Interceptor, JSExtendableArray; | 15 import 'dart:_interceptors' show Interceptor, JSExtendableArray; |
16 // DO NOT EDIT - unless you are editing documentation as per: | 16 // DO NOT EDIT - unless you are editing documentation as per: |
(...skipping 6890 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6907 | 6907 |
6908 @DocsEditable() | 6908 @DocsEditable() |
6909 @DomName('WebGLRenderingContextBase') | 6909 @DomName('WebGLRenderingContextBase') |
6910 @Experimental() // untriaged | 6910 @Experimental() // untriaged |
6911 abstract class _WebGLRenderingContextBase extends Interceptor { | 6911 abstract class _WebGLRenderingContextBase extends Interceptor { |
6912 // To suppress missing implicit constructor warnings. | 6912 // To suppress missing implicit constructor warnings. |
6913 factory _WebGLRenderingContextBase._() { | 6913 factory _WebGLRenderingContextBase._() { |
6914 throw new UnsupportedError("Not supported"); | 6914 throw new UnsupportedError("Not supported"); |
6915 } | 6915 } |
6916 } | 6916 } |
OLD | NEW |