Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(605)

Side by Side Diff: gpu/command_buffer/client/gles2_interface_stub_impl_autogen.h

Issue 299043003: Adding bindless variants mailbox produce/consume (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Test fix for windows Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 761 matching lines...) Expand 10 before | Expand all | Expand 10 after
772 GLsizei /* primcount */) { 772 GLsizei /* primcount */) {
773 } 773 }
774 void GLES2InterfaceStub::VertexAttribDivisorANGLE(GLuint /* index */, 774 void GLES2InterfaceStub::VertexAttribDivisorANGLE(GLuint /* index */,
775 GLuint /* divisor */) { 775 GLuint /* divisor */) {
776 } 776 }
777 void GLES2InterfaceStub::GenMailboxCHROMIUM(GLbyte* /* mailbox */) { 777 void GLES2InterfaceStub::GenMailboxCHROMIUM(GLbyte* /* mailbox */) {
778 } 778 }
779 void GLES2InterfaceStub::ProduceTextureCHROMIUM(GLenum /* target */, 779 void GLES2InterfaceStub::ProduceTextureCHROMIUM(GLenum /* target */,
780 const GLbyte* /* mailbox */) { 780 const GLbyte* /* mailbox */) {
781 } 781 }
782 void GLES2InterfaceStub::ProduceTextureDirectCHROMIUM(
783 GLuint /* texture */,
784 GLenum /* target */,
785 const GLbyte* /* mailbox */) {
786 }
782 void GLES2InterfaceStub::ConsumeTextureCHROMIUM(GLenum /* target */, 787 void GLES2InterfaceStub::ConsumeTextureCHROMIUM(GLenum /* target */,
783 const GLbyte* /* mailbox */) { 788 const GLbyte* /* mailbox */) {
784 } 789 }
790 GLuint GLES2InterfaceStub::CreateAndConsumeTextureCHROMIUM(
791 GLenum /* target */,
792 const GLbyte* /* mailbox */) {
793 return 0;
794 }
785 void GLES2InterfaceStub::BindUniformLocationCHROMIUM(GLuint /* program */, 795 void GLES2InterfaceStub::BindUniformLocationCHROMIUM(GLuint /* program */,
786 GLint /* location */, 796 GLint /* location */,
787 const char* /* name */) { 797 const char* /* name */) {
788 } 798 }
789 void GLES2InterfaceStub::BindTexImage2DCHROMIUM(GLenum /* target */, 799 void GLES2InterfaceStub::BindTexImage2DCHROMIUM(GLenum /* target */,
790 GLint /* imageId */) { 800 GLint /* imageId */) {
791 } 801 }
792 void GLES2InterfaceStub::ReleaseTexImage2DCHROMIUM(GLenum /* target */, 802 void GLES2InterfaceStub::ReleaseTexImage2DCHROMIUM(GLenum /* target */,
793 GLint /* imageId */) { 803 GLint /* imageId */) {
794 } 804 }
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
845 GLint /* bounds_x */, 855 GLint /* bounds_x */,
846 GLint /* bounds_y */, 856 GLint /* bounds_y */,
847 GLint /* bounds_width */, 857 GLint /* bounds_width */,
848 GLint /* bounds_height */, 858 GLint /* bounds_height */,
849 GLfloat /* uv_x */, 859 GLfloat /* uv_x */,
850 GLfloat /* uv_y */, 860 GLfloat /* uv_y */,
851 GLfloat /* uv_width */, 861 GLfloat /* uv_width */,
852 GLfloat /* uv_height */) { 862 GLfloat /* uv_height */) {
853 } 863 }
854 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_STUB_IMPL_AUTOGEN_H_ 864 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_INTERFACE_STUB_IMPL_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698