| 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(GenQueriesEXT, void, (GLsizei n, GLuint* queries), (n, queries)) | |
| 12 VISIT_GL_CALL(DeleteQueriesEXT, | |
| 13 void, | |
| 14 (GLsizei n, const GLuint* queries), | |
| 15 (n, queries)) | |
| 16 VISIT_GL_CALL(IsQueryEXT, GLboolean, (GLuint id), (id)) | |
| 17 VISIT_GL_CALL(BeginQueryEXT, void, (GLenum target, GLuint id), (target, id)) | |
| 18 VISIT_GL_CALL(EndQueryEXT, void, (GLenum target), (target)) | |
| 19 VISIT_GL_CALL(GetQueryivEXT, | |
| 20 void, | |
| 21 (GLenum target, GLenum pname, GLint* params), | |
| 22 (target, pname, params)) | |
| 23 VISIT_GL_CALL(GetQueryObjectuivEXT, | |
| 24 void, | |
| 25 (GLuint id, GLenum pname, GLuint* params), | |
| 26 (id, pname, params)) | |
| OLD | NEW |