| 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) {
|
|
|