| 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 b722d6e7f3e573dce8e1abec72e88bed619ad092..e7bef5860fc4dc88c021346c11a992bc3be97850 100644
|
| --- a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
|
| @@ -2823,6 +2823,23 @@ void ScheduleOverlayPlaneCHROMIUM(GLint plane_z_order,
|
| }
|
| }
|
|
|
| +void ScheduleSolidColorOverlayPlaneCHROMIUM(GLint plane_z_order,
|
| + GLint bounds_x,
|
| + GLint bounds_y,
|
| + GLint bounds_width,
|
| + GLint bounds_height,
|
| + GLclampf red,
|
| + GLclampf green,
|
| + GLclampf blue,
|
| + GLclampf alpha) {
|
| + gles2::cmds::ScheduleSolidColorOverlayPlaneCHROMIUM* c =
|
| + GetCmdSpace<gles2::cmds::ScheduleSolidColorOverlayPlaneCHROMIUM>();
|
| + if (c) {
|
| + c->Init(plane_z_order, bounds_x, bounds_y, bounds_width, bounds_height, red,
|
| + green, blue, alpha);
|
| + }
|
| +}
|
| +
|
| void SwapInterval(GLint interval) {
|
| gles2::cmds::SwapInterval* c = GetCmdSpace<gles2::cmds::SwapInterval>();
|
| if (c) {
|
|
|