| 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:html'; | 5 import 'dart:html'; |
| 6 import 'dart:html_common'; | 6 import 'dart:html_common'; |
| 7 import 'dart:nativewrappers'; | 7 import 'dart:nativewrappers'; |
| 8 import 'dart:typeddata' as _typeddata; | 8 import 'dart:typeddata' as _typeddata; |
| 9 // DO NOT EDIT | 9 // DO NOT EDIT |
| 10 // Auto-generated dart:web_gl library. | 10 // Auto-generated dart:web_gl library. |
| (...skipping 724 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 735 | 735 |
| 736 @DocsEditable | 736 @DocsEditable |
| 737 @DomName('OESVertexArrayObject') | 737 @DomName('OESVertexArrayObject') |
| 738 class OesVertexArrayObject extends NativeFieldWrapperClass1 { | 738 class OesVertexArrayObject extends NativeFieldWrapperClass1 { |
| 739 OesVertexArrayObject.internal(); | 739 OesVertexArrayObject.internal(); |
| 740 | 740 |
| 741 static const int VERTEX_ARRAY_BINDING_OES = 0x85B5; | 741 static const int VERTEX_ARRAY_BINDING_OES = 0x85B5; |
| 742 | 742 |
| 743 @DomName('OESVertexArrayObject.bindVertexArrayOES') | 743 @DomName('OESVertexArrayObject.bindVertexArrayOES') |
| 744 @DocsEditable | 744 @DocsEditable |
| 745 void bindVertexArray(WebGLVertexArrayObject arrayObject) native "OESVertexArra
yObject_bindVertexArrayOES_Callback"; | 745 void bindVertexArray(VertexArrayObject arrayObject) native "OESVertexArrayObje
ct_bindVertexArrayOES_Callback"; |
| 746 | 746 |
| 747 @DomName('OESVertexArrayObject.createVertexArrayOES') | 747 @DomName('OESVertexArrayObject.createVertexArrayOES') |
| 748 @DocsEditable | 748 @DocsEditable |
| 749 WebGLVertexArrayObject createVertexArray() native "OESVertexArrayObject_create
VertexArrayOES_Callback"; | 749 VertexArrayObject createVertexArray() native "OESVertexArrayObject_createVerte
xArrayOES_Callback"; |
| 750 | 750 |
| 751 @DomName('OESVertexArrayObject.deleteVertexArrayOES') | 751 @DomName('OESVertexArrayObject.deleteVertexArrayOES') |
| 752 @DocsEditable | 752 @DocsEditable |
| 753 void deleteVertexArray(WebGLVertexArrayObject arrayObject) native "OESVertexAr
rayObject_deleteVertexArrayOES_Callback"; | 753 void deleteVertexArray(VertexArrayObject arrayObject) native "OESVertexArrayOb
ject_deleteVertexArrayOES_Callback"; |
| 754 | 754 |
| 755 @DomName('OESVertexArrayObject.isVertexArrayOES') | 755 @DomName('OESVertexArrayObject.isVertexArrayOES') |
| 756 @DocsEditable | 756 @DocsEditable |
| 757 bool isVertexArray(WebGLVertexArrayObject arrayObject) native "OESVertexArrayO
bject_isVertexArrayOES_Callback"; | 757 bool isVertexArray(VertexArrayObject arrayObject) native "OESVertexArrayObject
_isVertexArrayOES_Callback"; |
| 758 | 758 |
| 759 } | 759 } |
| 760 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 760 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 761 // for details. All rights reserved. Use of this source code is governed by a | 761 // for details. All rights reserved. Use of this source code is governed by a |
| 762 // BSD-style license that can be found in the LICENSE file. | 762 // BSD-style license that can be found in the LICENSE file. |
| 763 | 763 |
| 764 // WARNING: Do not edit - generated code. | 764 // WARNING: Do not edit - generated code. |
| 765 | 765 |
| 766 | 766 |
| 767 @DocsEditable | 767 @DocsEditable |
| (...skipping 1368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2136 } | 2136 } |
| 2137 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2137 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2138 // for details. All rights reserved. Use of this source code is governed by a | 2138 // for details. All rights reserved. Use of this source code is governed by a |
| 2139 // BSD-style license that can be found in the LICENSE file. | 2139 // BSD-style license that can be found in the LICENSE file. |
| 2140 | 2140 |
| 2141 // WARNING: Do not edit - generated code. | 2141 // WARNING: Do not edit - generated code. |
| 2142 | 2142 |
| 2143 | 2143 |
| 2144 @DocsEditable | 2144 @DocsEditable |
| 2145 @DomName('WebGLVertexArrayObjectOES') | 2145 @DomName('WebGLVertexArrayObjectOES') |
| 2146 class WebGLVertexArrayObject extends NativeFieldWrapperClass1 { | 2146 class VertexArrayObject extends NativeFieldWrapperClass1 { |
| 2147 WebGLVertexArrayObject.internal(); | 2147 VertexArrayObject.internal(); |
| 2148 | 2148 |
| 2149 } | 2149 } |
| OLD | NEW |