| OLD | NEW |
| (Empty) |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // This file is auto-generated from | |
| 6 // gpu/command_buffer/build_gles2_cmd_buffer.py | |
| 7 // It's formatted by clang-format using chromium coding style: | |
| 8 // clang-format -i -style=chromium filename | |
| 9 // DO NOT EDIT! | |
| 10 | |
| 11 VISIT_GL_CALL(GenVertexArraysOES, | |
| 12 void, | |
| 13 (GLsizei n, GLuint* arrays), | |
| 14 (n, arrays)) | |
| 15 VISIT_GL_CALL(DeleteVertexArraysOES, | |
| 16 void, | |
| 17 (GLsizei n, const GLuint* arrays), | |
| 18 (n, arrays)) | |
| 19 VISIT_GL_CALL(IsVertexArrayOES, GLboolean, (GLuint array), (array)) | |
| 20 VISIT_GL_CALL(BindVertexArrayOES, void, (GLuint array), (array)) | |
| OLD | NEW |