| OLD | NEW |
| 1 library dart.dom.web_gl; | 1 library dart.dom.web_gl; |
| 2 | 2 |
| 3 import 'dart:async'; | 3 import 'dart:async'; |
| 4 import 'dart:collection'; | 4 import 'dart:collection'; |
| 5 import 'dart:_internal' hide deprecated; | 5 import 'dart:_internal' hide deprecated; |
| 6 import 'dart:html'; | 6 import 'dart:html'; |
| 7 import 'dart:html_common'; | 7 import 'dart:html_common'; |
| 8 import 'dart:nativewrappers'; | 8 import 'dart:nativewrappers'; |
| 9 import 'dart:typed_data'; | 9 import 'dart:typed_data'; |
| 10 import 'dart:_blink' as _blink; | 10 import 'dart:_blink' as _blink; |
| (...skipping 855 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 866 static const int DRAW_BUFFER9_WEBGL = 0x882E; | 866 static const int DRAW_BUFFER9_WEBGL = 0x882E; |
| 867 | 867 |
| 868 @DomName('WebGLDrawBuffers.MAX_COLOR_ATTACHMENTS_WEBGL') | 868 @DomName('WebGLDrawBuffers.MAX_COLOR_ATTACHMENTS_WEBGL') |
| 869 @DocsEditable() | 869 @DocsEditable() |
| 870 static const int MAX_COLOR_ATTACHMENTS_WEBGL = 0x8CDF; | 870 static const int MAX_COLOR_ATTACHMENTS_WEBGL = 0x8CDF; |
| 871 | 871 |
| 872 @DomName('WebGLDrawBuffers.MAX_DRAW_BUFFERS_WEBGL') | 872 @DomName('WebGLDrawBuffers.MAX_DRAW_BUFFERS_WEBGL') |
| 873 @DocsEditable() | 873 @DocsEditable() |
| 874 static const int MAX_DRAW_BUFFERS_WEBGL = 0x8824; | 874 static const int MAX_DRAW_BUFFERS_WEBGL = 0x8824; |
| 875 | 875 |
| 876 @DomName('WebGLDrawBuffers.drawBuffersWEBGL') |
| 877 @DocsEditable() |
| 878 void drawBuffersWebgl(List<int> buffers) => _blink.BlinkWebGLDrawBuffers.drawB
uffersWEBGL_Callback_SEQ_ul_SEQ(this, buffers); |
| 879 |
| 876 } | 880 } |
| 877 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 881 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 878 // for details. All rights reserved. Use of this source code is governed by a | 882 // for details. All rights reserved. Use of this source code is governed by a |
| 879 // BSD-style license that can be found in the LICENSE file. | 883 // BSD-style license that can be found in the LICENSE file. |
| 880 | 884 |
| 881 // WARNING: Do not edit - generated code. | 885 // WARNING: Do not edit - generated code. |
| 882 | 886 |
| 883 | 887 |
| 884 @DocsEditable() | 888 @DocsEditable() |
| 885 @DomName('EXTBlendMinMax') | 889 @DomName('EXTBlendMinMax') |
| (...skipping 2302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3188 | 3192 |
| 3189 | 3193 |
| 3190 @DocsEditable() | 3194 @DocsEditable() |
| 3191 @DomName('WebGLRenderingContextBase') | 3195 @DomName('WebGLRenderingContextBase') |
| 3192 @Experimental() // untriaged | 3196 @Experimental() // untriaged |
| 3193 abstract class _WebGLRenderingContextBase extends NativeFieldWrapperClass2 { | 3197 abstract class _WebGLRenderingContextBase extends NativeFieldWrapperClass2 { |
| 3194 // To suppress missing implicit constructor warnings. | 3198 // To suppress missing implicit constructor warnings. |
| 3195 factory _WebGLRenderingContextBase._() { throw new UnsupportedError("Not suppo
rted"); } | 3199 factory _WebGLRenderingContextBase._() { throw new UnsupportedError("Not suppo
rted"); } |
| 3196 | 3200 |
| 3197 } | 3201 } |
| OLD | NEW |