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

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

Issue 2388653002: gpu: Add CHROMIUM_texture_from_image spec and fence support.
Patch Set: rebase Created 4 years, 1 month 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
« no previous file with comments | « gpu/GLES2/gl2extchromium.h ('k') | gpu/command_buffer/client/gles2_cmd_helper_autogen.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1400 matching lines...) Expand 10 before | Expand all | Expand 10 after
1411 GLuint GL_APIENTRY GLES2CreateAndConsumeTextureCHROMIUM(GLenum target, 1411 GLuint GL_APIENTRY GLES2CreateAndConsumeTextureCHROMIUM(GLenum target,
1412 const GLbyte* mailbox) { 1412 const GLbyte* mailbox) {
1413 return gles2::GetGLContext()->CreateAndConsumeTextureCHROMIUM(target, 1413 return gles2::GetGLContext()->CreateAndConsumeTextureCHROMIUM(target,
1414 mailbox); 1414 mailbox);
1415 } 1415 }
1416 void GL_APIENTRY GLES2BindUniformLocationCHROMIUM(GLuint program, 1416 void GL_APIENTRY GLES2BindUniformLocationCHROMIUM(GLuint program,
1417 GLint location, 1417 GLint location,
1418 const char* name) { 1418 const char* name) {
1419 gles2::GetGLContext()->BindUniformLocationCHROMIUM(program, location, name); 1419 gles2::GetGLContext()->BindUniformLocationCHROMIUM(program, location, name);
1420 } 1420 }
1421 void GL_APIENTRY GLES2BindTexImage2DCHROMIUM(GLenum target, GLint imageId) { 1421 void GL_APIENTRY GLES2BindTexImage2DCHROMIUM(GLenum target,
1422 gles2::GetGLContext()->BindTexImage2DCHROMIUM(target, imageId); 1422 GLint imageId,
1423 GLint fenceId) {
1424 gles2::GetGLContext()->BindTexImage2DCHROMIUM(target, imageId, fenceId);
1423 } 1425 }
1424 void GL_APIENTRY GLES2ReleaseTexImage2DCHROMIUM(GLenum target, GLint imageId) { 1426 void GL_APIENTRY GLES2ReleaseTexImage2DCHROMIUM(GLenum target, GLint imageId) {
1425 gles2::GetGLContext()->ReleaseTexImage2DCHROMIUM(target, imageId); 1427 gles2::GetGLContext()->ReleaseTexImage2DCHROMIUM(target, imageId);
1426 } 1428 }
1427 void GL_APIENTRY GLES2TraceBeginCHROMIUM(const char* category_name, 1429 void GL_APIENTRY GLES2TraceBeginCHROMIUM(const char* category_name,
1428 const char* trace_name) { 1430 const char* trace_name) {
1429 gles2::GetGLContext()->TraceBeginCHROMIUM(category_name, trace_name); 1431 gles2::GetGLContext()->TraceBeginCHROMIUM(category_name, trace_name);
1430 } 1432 }
1431 void GL_APIENTRY GLES2TraceEndCHROMIUM() { 1433 void GL_APIENTRY GLES2TraceEndCHROMIUM() {
1432 gles2::GetGLContext()->TraceEndCHROMIUM(); 1434 gles2::GetGLContext()->TraceEndCHROMIUM();
(...skipping 1599 matching lines...) Expand 10 before | Expand all | Expand 10 after
3032 "glSwapBuffersWithDamageCHROMIUM", 3034 "glSwapBuffersWithDamageCHROMIUM",
3033 reinterpret_cast<GLES2FunctionPointer>(glSwapBuffersWithDamageCHROMIUM), 3035 reinterpret_cast<GLES2FunctionPointer>(glSwapBuffersWithDamageCHROMIUM),
3034 }, 3036 },
3035 { 3037 {
3036 NULL, NULL, 3038 NULL, NULL,
3037 }, 3039 },
3038 }; 3040 };
3039 3041
3040 } // namespace gles2 3042 } // namespace gles2
3041 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_C_LIB_AUTOGEN_H_ 3043 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_C_LIB_AUTOGEN_H_
OLDNEW
« no previous file with comments | « gpu/GLES2/gl2extchromium.h ('k') | gpu/command_buffer/client/gles2_cmd_helper_autogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698