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

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

Issue 776603003: Changed the GPU Tracer so the category names can be customized. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Disable gpu_decoder and gpu_group_marker by default Created 6 years 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
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 974 matching lines...) Expand 10 before | Expand all | Expand 10 after
985 GLenum subscription) { 985 GLenum subscription) {
986 gles2::GetGLContext()->UniformValuebufferCHROMIUM(location, target, 986 gles2::GetGLContext()->UniformValuebufferCHROMIUM(location, target,
987 subscription); 987 subscription);
988 } 988 }
989 void GLES2BindTexImage2DCHROMIUM(GLenum target, GLint imageId) { 989 void GLES2BindTexImage2DCHROMIUM(GLenum target, GLint imageId) {
990 gles2::GetGLContext()->BindTexImage2DCHROMIUM(target, imageId); 990 gles2::GetGLContext()->BindTexImage2DCHROMIUM(target, imageId);
991 } 991 }
992 void GLES2ReleaseTexImage2DCHROMIUM(GLenum target, GLint imageId) { 992 void GLES2ReleaseTexImage2DCHROMIUM(GLenum target, GLint imageId) {
993 gles2::GetGLContext()->ReleaseTexImage2DCHROMIUM(target, imageId); 993 gles2::GetGLContext()->ReleaseTexImage2DCHROMIUM(target, imageId);
994 } 994 }
995 void GLES2TraceBeginCHROMIUM(const char* name) { 995 void GLES2TraceBeginCHROMIUM(const char* category_name,
996 gles2::GetGLContext()->TraceBeginCHROMIUM(name); 996 const char* trace_name) {
997 gles2::GetGLContext()->TraceBeginCHROMIUM(category_name, trace_name);
997 } 998 }
998 void GLES2TraceEndCHROMIUM() { 999 void GLES2TraceEndCHROMIUM() {
999 gles2::GetGLContext()->TraceEndCHROMIUM(); 1000 gles2::GetGLContext()->TraceEndCHROMIUM();
1000 } 1001 }
1001 void GLES2AsyncTexSubImage2DCHROMIUM(GLenum target, 1002 void GLES2AsyncTexSubImage2DCHROMIUM(GLenum target,
1002 GLint level, 1003 GLint level,
1003 GLint xoffset, 1004 GLint xoffset,
1004 GLint yoffset, 1005 GLint yoffset,
1005 GLsizei width, 1006 GLsizei width,
1006 GLsizei height, 1007 GLsizei height,
(...skipping 1045 matching lines...) Expand 10 before | Expand all | Expand 10 after
2052 reinterpret_cast<GLES2FunctionPointer>(glBlendBarrierKHR), 2053 reinterpret_cast<GLES2FunctionPointer>(glBlendBarrierKHR),
2053 }, 2054 },
2054 { 2055 {
2055 NULL, 2056 NULL,
2056 NULL, 2057 NULL,
2057 }, 2058 },
2058 }; 2059 };
2059 2060
2060 } // namespace gles2 2061 } // namespace gles2
2061 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_C_LIB_AUTOGEN_H_ 2062 #endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_C_LIB_AUTOGEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698