| 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 1c9e4829825f79cd1f6b643171c455826ca4336d..147714a73d12f113456530552a47f7f8f2339f22 100644
|
| --- a/gpu/command_buffer/client/gles2_implementation.cc
|
| +++ b/gpu/command_buffer/client/gles2_implementation.cc
|
| @@ -2791,6 +2791,14 @@ void GLES2Implementation::SetSwapBuffersCompleteCallback(
|
| swap_buffers_complete_callback_ = swap_buffers_complete_callback;
|
| }
|
|
|
| +void GLES2Implementation::ScheduleOverlayPlane(int plane_z_order,
|
| + unsigned plane_transform,
|
| + unsigned overlay_texture_id,
|
| + const gfx::Rect& display_bounds,
|
| + const gfx::RectF& uv_rect) {
|
| + NOTREACHED() << "Overlay supported isn't finished.";
|
| +}
|
| +
|
| void GLES2Implementation::OnSwapBuffersComplete() {
|
| if (!swap_buffers_complete_callback_.is_null())
|
| swap_buffers_complete_callback_.Run();
|
|
|