| Index: sdk/lib/web_gl/dartium/web_gl_dartium.dart
|
| diff --git a/sdk/lib/web_gl/dartium/web_gl_dartium.dart b/sdk/lib/web_gl/dartium/web_gl_dartium.dart
|
| index ab4648deb87fb9dfc002c47d670a5d52ac5ee6f8..486d0cffd3646d59e5b60b514e45262709774d3e 100644
|
| --- a/sdk/lib/web_gl/dartium/web_gl_dartium.dart
|
| +++ b/sdk/lib/web_gl/dartium/web_gl_dartium.dart
|
| @@ -742,19 +742,19 @@ class OesVertexArrayObject extends NativeFieldWrapperClass1 {
|
|
|
| @DomName('OESVertexArrayObject.bindVertexArrayOES')
|
| @DocsEditable
|
| - void bindVertexArray(WebGLVertexArrayObject arrayObject) native "OESVertexArrayObject_bindVertexArrayOES_Callback";
|
| + void bindVertexArray(VertexArrayObject arrayObject) native "OESVertexArrayObject_bindVertexArrayOES_Callback";
|
|
|
| @DomName('OESVertexArrayObject.createVertexArrayOES')
|
| @DocsEditable
|
| - WebGLVertexArrayObject createVertexArray() native "OESVertexArrayObject_createVertexArrayOES_Callback";
|
| + VertexArrayObject createVertexArray() native "OESVertexArrayObject_createVertexArrayOES_Callback";
|
|
|
| @DomName('OESVertexArrayObject.deleteVertexArrayOES')
|
| @DocsEditable
|
| - void deleteVertexArray(WebGLVertexArrayObject arrayObject) native "OESVertexArrayObject_deleteVertexArrayOES_Callback";
|
| + void deleteVertexArray(VertexArrayObject arrayObject) native "OESVertexArrayObject_deleteVertexArrayOES_Callback";
|
|
|
| @DomName('OESVertexArrayObject.isVertexArrayOES')
|
| @DocsEditable
|
| - bool isVertexArray(WebGLVertexArrayObject arrayObject) native "OESVertexArrayObject_isVertexArrayOES_Callback";
|
| + bool isVertexArray(VertexArrayObject arrayObject) native "OESVertexArrayObject_isVertexArrayOES_Callback";
|
|
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| @@ -2143,7 +2143,7 @@ class UniformLocation extends NativeFieldWrapperClass1 {
|
|
|
| @DocsEditable
|
| @DomName('WebGLVertexArrayObjectOES')
|
| -class WebGLVertexArrayObject extends NativeFieldWrapperClass1 {
|
| - WebGLVertexArrayObject.internal();
|
| +class VertexArrayObject extends NativeFieldWrapperClass1 {
|
| + VertexArrayObject.internal();
|
|
|
| }
|
|
|