| 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 b1a2aa835febf5ce60d9f9f64b3700c058c656f8..905a284e9e0bc9493428057aa30df34f3cdce0b6 100644
|
| --- a/gpu/command_buffer/client/gles2_implementation.cc
|
| +++ b/gpu/command_buffer/client/gles2_implementation.cc
|
| @@ -4305,6 +4305,18 @@ void GLES2Implementation::ScheduleOverlayPlane(
|
| uv_rect.height());
|
| }
|
|
|
| +void GLES2Implementation::ScheduleSolidColorOverlayPlane(
|
| + int z_order,
|
| + const gfx::Rect& bounds,
|
| + float red,
|
| + float green,
|
| + float blue,
|
| + float alpha) {
|
| + ScheduleSolidColorOverlayPlaneCHROMIUM(z_order, bounds.x(), bounds.y(),
|
| + bounds.width(), bounds.height(), red,
|
| + green, blue, alpha);
|
| +}
|
| +
|
| GLboolean GLES2Implementation::EnableFeatureCHROMIUM(
|
| const char* feature) {
|
| GPU_CLIENT_SINGLE_THREAD_CHECK();
|
|
|