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

Unified Diff: gpu/command_buffer/client/gles2_cmd_helper_autogen.h

Issue 10836185: Implement GL_EXT_debug_marker (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: gpu/command_buffer/client/gles2_cmd_helper_autogen.h
diff --git a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
index 098674d273427fb1f4c3b40b171fb7c8a90fcda0..77c1ac1f79c44df1b104880580594f3222ab26d2 100644
--- a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
+++ b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
@@ -1574,6 +1574,28 @@
}
}
+ void InsertEventMarkerEXT(GLuint bucket_id) {
+ gles2::InsertEventMarkerEXT* c =
+ GetCmdSpace<gles2::InsertEventMarkerEXT>();
+ if (c) {
+ c->Init(bucket_id);
+ }
+ }
+
+ void PushGroupMarkerEXT(GLuint bucket_id) {
+ gles2::PushGroupMarkerEXT* c = GetCmdSpace<gles2::PushGroupMarkerEXT>();
+ if (c) {
+ c->Init(bucket_id);
+ }
+ }
+
+ void PopGroupMarkerEXT() {
+ gles2::PopGroupMarkerEXT* c = GetCmdSpace<gles2::PopGroupMarkerEXT>();
+ if (c) {
+ c->Init();
+ }
+ }
+
void SwapBuffers() {
gles2::SwapBuffers* c = GetCmdSpace<gles2::SwapBuffers>();
if (c) {

Powered by Google App Engine
This is Rietveld 408576698