| 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:async'; | 6 import 'dart:async'; |
| 4 import 'dart:collection'; | 7 import 'dart:collection'; |
| 5 import 'dart:_internal' hide deprecated; | 8 import 'dart:_internal' hide deprecated; |
| 6 import 'dart:html'; | 9 import 'dart:html'; |
| 7 import 'dart:html_common'; | 10 import 'dart:html_common'; |
| 8 import 'dart:nativewrappers'; | 11 import 'dart:nativewrappers'; |
| 9 import 'dart:typed_data'; | 12 import 'dart:typed_data'; |
| 10 import 'dart:_blink' as _blink; | 13 import 'dart:_blink' as _blink; |
| (...skipping 3181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3192 | 3195 |
| 3193 | 3196 |
| 3194 @DocsEditable() | 3197 @DocsEditable() |
| 3195 @DomName('WebGLRenderingContextBase') | 3198 @DomName('WebGLRenderingContextBase') |
| 3196 @Experimental() // untriaged | 3199 @Experimental() // untriaged |
| 3197 abstract class _WebGLRenderingContextBase extends NativeFieldWrapperClass2 { | 3200 abstract class _WebGLRenderingContextBase extends NativeFieldWrapperClass2 { |
| 3198 // To suppress missing implicit constructor warnings. | 3201 // To suppress missing implicit constructor warnings. |
| 3199 factory _WebGLRenderingContextBase._() { throw new UnsupportedError("Not suppo
rted"); } | 3202 factory _WebGLRenderingContextBase._() { throw new UnsupportedError("Not suppo
rted"); } |
| 3200 | 3203 |
| 3201 } | 3204 } |
| OLD | NEW |