| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // This file is auto-generated from | 5 // This file is auto-generated from |
| 6 // gpu/command_buffer/build_gles2_cmd_buffer.py | 6 // gpu/command_buffer/build_gles2_cmd_buffer.py |
| 7 // It's formatted by clang-format using chromium coding style: | 7 // It's formatted by clang-format using chromium coding style: |
| 8 // clang-format -i -style=chromium filename | 8 // clang-format -i -style=chromium filename |
| 9 // DO NOT EDIT! | 9 // DO NOT EDIT! |
| 10 | 10 |
| (...skipping 704 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 715 void EndQueryEXT([in] PP_Resource context, | 715 void EndQueryEXT([in] PP_Resource context, |
| 716 [in] GLenum target); | 716 [in] GLenum target); |
| 717 void GetQueryivEXT([in] PP_Resource context, | 717 void GetQueryivEXT([in] PP_Resource context, |
| 718 [in] GLenum target, | 718 [in] GLenum target, |
| 719 [in] GLenum pname, | 719 [in] GLenum pname, |
| 720 [out] GLint_ptr_t params); | 720 [out] GLint_ptr_t params); |
| 721 void GetQueryObjectuivEXT([in] PP_Resource context, | 721 void GetQueryObjectuivEXT([in] PP_Resource context, |
| 722 [in] GLuint id, | 722 [in] GLuint id, |
| 723 [in] GLenum pname, | 723 [in] GLenum pname, |
| 724 [out] GLuint_ptr_t params); | 724 [out] GLuint_ptr_t params); |
| 725 void GetQueryObjectui64vEXT([in] PP_Resource context, |
| 726 [in] GLuint id, |
| 727 [in] GLenum pname, |
| 728 [out] GLuint64_ptr_t params); |
| 725 }; | 729 }; |
| 726 | 730 |
| 727 | 731 |
| 728 [macro="PPB_OPENGLES2_VERTEXARRAYOBJECT_INTERFACE", force_struct_namespace] | 732 [macro="PPB_OPENGLES2_VERTEXARRAYOBJECT_INTERFACE", force_struct_namespace] |
| 729 interface PPB_OpenGLES2VertexArrayObject { | 733 interface PPB_OpenGLES2VertexArrayObject { |
| 730 void GenVertexArraysOES([in] PP_Resource context, | 734 void GenVertexArraysOES([in] PP_Resource context, |
| 731 [in] GLsizei n, | 735 [in] GLsizei n, |
| 732 [out] GLuint_ptr_t arrays); | 736 [out] GLuint_ptr_t arrays); |
| 733 void DeleteVertexArraysOES([in] PP_Resource context, | 737 void DeleteVertexArraysOES([in] PP_Resource context, |
| 734 [in] GLsizei n, | 738 [in] GLsizei n, |
| 735 [in] GLuint_ptr_t arrays); | 739 [in] GLuint_ptr_t arrays); |
| 736 GLboolean IsVertexArrayOES([in] PP_Resource context, | 740 GLboolean IsVertexArrayOES([in] PP_Resource context, |
| 737 [in] GLuint array); | 741 [in] GLuint array); |
| 738 void BindVertexArrayOES([in] PP_Resource context, | 742 void BindVertexArrayOES([in] PP_Resource context, |
| 739 [in] GLuint array); | 743 [in] GLuint array); |
| 740 }; | 744 }; |
| 741 | 745 |
| OLD | NEW |