| Index: gpu/command_buffer/client/gles2_implementation.cc
|
| diff --git a/gpu/command_buffer/client/gles2_implementation.cc b/gpu/command_buffer/client/gles2_implementation.cc
|
| index 22032b0147c4d3a9ba33a19a6373b8bf1327ff28..d19a44bde87da59b966d07ab4e1aea89a407ad60 100644
|
| --- a/gpu/command_buffer/client/gles2_implementation.cc
|
| +++ b/gpu/command_buffer/client/gles2_implementation.cc
|
| @@ -4768,7 +4768,8 @@ void GLES2Implementation::ScheduleCALayerCHROMIUM(GLuint contents_texture_id,
|
| GLboolean is_clipped,
|
| const GLfloat* clip_rect,
|
| GLint sorting_context_id,
|
| - const GLfloat* transform) {
|
| + const GLfloat* transform,
|
| + GLuint filter) {
|
| size_t shm_size = 28 * sizeof(GLfloat);
|
| ScopedTransferBufferPtr buffer(shm_size, helper_, transfer_buffer_);
|
| if (!buffer.valid() || buffer.size() < shm_size) {
|
| @@ -4783,7 +4784,7 @@ void GLES2Implementation::ScheduleCALayerCHROMIUM(GLuint contents_texture_id,
|
| memcpy(mem + 12, transform, 16 * sizeof(GLfloat));
|
| helper_->ScheduleCALayerCHROMIUM(contents_texture_id, opacity,
|
| background_color, edge_aa_mask, is_clipped,
|
| - sorting_context_id, buffer.shm_id(),
|
| + sorting_context_id, filter, buffer.shm_id(),
|
| buffer.offset());
|
| }
|
|
|
|
|