| 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 7a9074bb3fc83022c7a60985f8b306c496e290fa..28cfd8041b5708e7b3b2903ad0f24e767ced5abf 100644
|
| --- a/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_cmd_helper_autogen.h
|
| @@ -2753,20 +2753,29 @@ void ScheduleOverlayPlaneCHROMIUM(GLint plane_z_order,
|
| }
|
| }
|
|
|
| +void ScheduleCALayerSharedStateCHROMIUM(GLfloat opacity,
|
| + GLboolean is_clipped,
|
| + GLint sorting_context_id,
|
| + GLuint shm_id,
|
| + GLuint shm_offset) {
|
| + gles2::cmds::ScheduleCALayerSharedStateCHROMIUM* c =
|
| + GetCmdSpace<gles2::cmds::ScheduleCALayerSharedStateCHROMIUM>();
|
| + if (c) {
|
| + c->Init(opacity, is_clipped, sorting_context_id, shm_id, shm_offset);
|
| + }
|
| +}
|
| +
|
| void ScheduleCALayerCHROMIUM(GLuint contents_texture_id,
|
| - GLfloat opacity,
|
| GLuint background_color,
|
| GLuint edge_aa_mask,
|
| - GLboolean is_clipped,
|
| - GLint sorting_context_id,
|
| GLuint filter,
|
| GLuint shm_id,
|
| GLuint shm_offset) {
|
| gles2::cmds::ScheduleCALayerCHROMIUM* c =
|
| GetCmdSpace<gles2::cmds::ScheduleCALayerCHROMIUM>();
|
| if (c) {
|
| - c->Init(contents_texture_id, opacity, background_color, edge_aa_mask,
|
| - is_clipped, sorting_context_id, filter, shm_id, shm_offset);
|
| + c->Init(contents_texture_id, background_color, edge_aa_mask, filter, shm_id,
|
| + shm_offset);
|
| }
|
| }
|
|
|
|
|