| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 // WARNING: |
| 6 // This file contains documentation that is merged into the real source. |
| 7 // Do not make code changes here. |
| 8 |
| 9 /// @domName OESVertexArrayObject |
| 10 interface OESVertexArrayObject { |
| 11 |
| 12 static final int VERTEX_ARRAY_BINDING_OES = 0x85B5; |
| 13 |
| 14 /** @domName OESVertexArrayObject.bindVertexArrayOES */ |
| 15 void bindVertexArrayOES(WebGLVertexArrayObjectOES arrayObject); |
| 16 |
| 17 /** @domName OESVertexArrayObject.createVertexArrayOES */ |
| 18 WebGLVertexArrayObjectOES createVertexArrayOES(); |
| 19 |
| 20 /** @domName OESVertexArrayObject.deleteVertexArrayOES */ |
| 21 void deleteVertexArrayOES(WebGLVertexArrayObjectOES arrayObject); |
| 22 |
| 23 /** @domName OESVertexArrayObject.isVertexArrayOES */ |
| 24 bool isVertexArrayOES(WebGLVertexArrayObjectOES arrayObject); |
| 25 } |
| OLD | NEW |