| 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 683 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 694 GLuint ioSurfaceId, | 694 GLuint ioSurfaceId, |
| 695 GLuint plane) override; | 695 GLuint plane) override; |
| 696 | 696 |
| 697 void CopyTextureCHROMIUM(GLenum target, | 697 void CopyTextureCHROMIUM(GLenum target, |
| 698 GLenum source_id, | 698 GLenum source_id, |
| 699 GLenum dest_id, | 699 GLenum dest_id, |
| 700 GLint level, | 700 GLint level, |
| 701 GLint internalformat, | 701 GLint internalformat, |
| 702 GLenum dest_type) override; | 702 GLenum dest_type) override; |
| 703 | 703 |
| 704 void CopyCompressedTextureCHROMIUM(GLenum target, |
| 705 GLenum source_id, |
| 706 GLenum dest_id, |
| 707 GLenum internalformat, |
| 708 GLenum dest_type) override; |
| 709 |
| 704 void DrawArraysInstancedANGLE(GLenum mode, | 710 void DrawArraysInstancedANGLE(GLenum mode, |
| 705 GLint first, | 711 GLint first, |
| 706 GLsizei count, | 712 GLsizei count, |
| 707 GLsizei primcount) override; | 713 GLsizei primcount) override; |
| 708 | 714 |
| 709 void DrawElementsInstancedANGLE(GLenum mode, | 715 void DrawElementsInstancedANGLE(GLenum mode, |
| 710 GLsizei count, | 716 GLsizei count, |
| 711 GLenum type, | 717 GLenum type, |
| 712 const void* indices, | 718 const void* indices, |
| 713 GLsizei primcount) override; | 719 GLsizei primcount) override; |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 769 void AsyncTexImage2DCHROMIUM(GLenum target, | 775 void AsyncTexImage2DCHROMIUM(GLenum target, |
| 770 GLint level, | 776 GLint level, |
| 771 GLenum internalformat, | 777 GLenum internalformat, |
| 772 GLsizei width, | 778 GLsizei width, |
| 773 GLsizei height, | 779 GLsizei height, |
| 774 GLint border, | 780 GLint border, |
| 775 GLenum format, | 781 GLenum format, |
| 776 GLenum type, | 782 GLenum type, |
| 777 const void* pixels) override; | 783 const void* pixels) override; |
| 778 | 784 |
| 785 void AsyncCompressedTexSubImage2DCHROMIUM(GLenum target, |
| 786 GLint level, |
| 787 GLint xoffset, |
| 788 GLint yoffset, |
| 789 GLsizei width, |
| 790 GLsizei height, |
| 791 GLenum format, |
| 792 GLsizei imagesize, |
| 793 const void* data) override; |
| 794 |
| 795 void AsyncCompressedTexImage2DCHROMIUM(GLenum target, |
| 796 GLint level, |
| 797 GLint internalformat, |
| 798 GLsizei width, |
| 799 GLsizei height, |
| 800 GLint border, |
| 801 GLsizei imagesize, |
| 802 const void* pixels) override; |
| 803 |
| 779 void WaitAsyncTexImage2DCHROMIUM(GLenum target) override; | 804 void WaitAsyncTexImage2DCHROMIUM(GLenum target) override; |
| 780 | 805 |
| 781 void WaitAllAsyncTexImage2DCHROMIUM() override; | 806 void WaitAllAsyncTexImage2DCHROMIUM() override; |
| 782 | 807 |
| 783 void DiscardFramebufferEXT(GLenum target, | 808 void DiscardFramebufferEXT(GLenum target, |
| 784 GLsizei count, | 809 GLsizei count, |
| 785 const GLenum* attachments) override; | 810 const GLenum* attachments) override; |
| 786 | 811 |
| 787 void LoseContextCHROMIUM(GLenum current, GLenum other) override; | 812 void LoseContextCHROMIUM(GLenum current, GLenum other) override; |
| 788 | 813 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 808 | 833 |
| 809 void SwapInterval(GLint interval) override; | 834 void SwapInterval(GLint interval) override; |
| 810 | 835 |
| 811 void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) override; | 836 void MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) override; |
| 812 | 837 |
| 813 void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) override; | 838 void MatrixLoadIdentityCHROMIUM(GLenum matrixMode) override; |
| 814 | 839 |
| 815 void BlendBarrierKHR() override; | 840 void BlendBarrierKHR() override; |
| 816 | 841 |
| 817 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_ | 842 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_IMPLEMENTATION_AUTOGEN_H_ |
| OLD | NEW |