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:async'; | 6 import 'dart:async'; |
7 import 'dart:collection'; | 7 import 'dart:collection' hide LinkedList, LinkedListEntry; |
8 import 'dart:_internal'; | 8 import 'dart:_internal'; |
9 import 'dart:html'; | 9 import 'dart:html'; |
10 import 'dart:html_common'; | 10 import 'dart:html_common'; |
11 import 'dart:nativewrappers'; | 11 import 'dart:nativewrappers'; |
12 import 'dart:typed_data'; | 12 import 'dart:typed_data'; |
13 import 'dart:_blink' as _blink; | 13 import 'dart:_blink' as _blink; |
14 import 'dart:js' as js; | 14 import 'dart:js' as js; |
15 // DO NOT EDIT | 15 // DO NOT EDIT |
16 // Auto-generated dart:web_gl library. | 16 // Auto-generated dart:web_gl library. |
17 | 17 |
(...skipping 8438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
8456 | 8456 |
8457 @DocsEditable() | 8457 @DocsEditable() |
8458 @DomName('WebGLRenderingContextBase') | 8458 @DomName('WebGLRenderingContextBase') |
8459 @Experimental() // untriaged | 8459 @Experimental() // untriaged |
8460 class _WebGLRenderingContextBase extends DartHtmlDomObject { | 8460 class _WebGLRenderingContextBase extends DartHtmlDomObject { |
8461 // To suppress missing implicit constructor warnings. | 8461 // To suppress missing implicit constructor warnings. |
8462 factory _WebGLRenderingContextBase._() { | 8462 factory _WebGLRenderingContextBase._() { |
8463 throw new UnsupportedError("Not supported"); | 8463 throw new UnsupportedError("Not supported"); |
8464 } | 8464 } |
8465 } | 8465 } |
OLD | NEW |