| Index: ui/gl/gl_image_ozone_native_pixmap.cc
|
| diff --git a/ui/gl/gl_image_ozone_native_pixmap.cc b/ui/gl/gl_image_ozone_native_pixmap.cc
|
| index 818426178aea6fa8af3f49e92d0251fed0f445fc..24ad0bb024d677a2e8779e55883bfa249743e41c 100644
|
| --- a/ui/gl/gl_image_ozone_native_pixmap.cc
|
| +++ b/ui/gl/gl_image_ozone_native_pixmap.cc
|
| @@ -140,14 +140,14 @@ void GLImageOzoneNativePixmap::Destroy(bool have_context) {
|
| gl::GLImageEGL::Destroy(have_context);
|
| }
|
|
|
| -bool GLImageOzoneNativePixmap::ScheduleOverlayPlane(AcceleratedWidget widget,
|
| - int z_order,
|
| - OverlayTransform transform,
|
| - const Rect& bounds_rect,
|
| - const RectF& crop_rect) {
|
| +bool GLImageOzoneNativePixmap::ScheduleOverlayPlane(
|
| + AcceleratedWidget widget, int z_order, OverlayTransform transform,
|
| + gfx::BufferFormat storage_format, const Rect& bounds_rect,
|
| + const RectF& crop_rect, bool handle_scaling) {
|
| DCHECK(pixmap_);
|
| - return pixmap_->ScheduleOverlayPlane(widget, z_order, transform, bounds_rect,
|
| - crop_rect);
|
| + return pixmap_->ScheduleOverlayPlane(widget, z_order, transform,
|
| + storage_format, bounds_rect,
|
| + crop_rect, handle_scaling);
|
| }
|
|
|
| void GLImageOzoneNativePixmap::OnMemoryDump(
|
|
|