OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ui/gl/gl_image_egl.h" | 5 #include "ui/gl/gl_image_egl.h" |
6 | 6 |
7 #include "ui/gl/egl_util.h" | 7 #include "ui/gl/egl_util.h" |
8 #include "ui/gl/gl_surface_egl.h" | 8 #include "ui/gl/gl_surface_egl.h" |
9 | 9 |
10 namespace gl { | 10 namespace gl { |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 } | 75 } |
76 | 76 |
77 bool GLImageEGL::ScheduleOverlayPlane(gfx::AcceleratedWidget widget, | 77 bool GLImageEGL::ScheduleOverlayPlane(gfx::AcceleratedWidget widget, |
78 int z_order, | 78 int z_order, |
79 gfx::OverlayTransform transform, | 79 gfx::OverlayTransform transform, |
80 const gfx::Rect& bounds_rect, | 80 const gfx::Rect& bounds_rect, |
81 const gfx::RectF& crop_rect) { | 81 const gfx::RectF& crop_rect) { |
82 return false; | 82 return false; |
83 } | 83 } |
84 | 84 |
| 85 // TODO(liberato): move this to implementations. |
| 86 bool GLImage::GetCustomMatrix(int, float xform[16]) { |
| 87 // Do not modify the transform here. |
| 88 return false; |
| 89 } |
| 90 |
85 } // namespace gl | 91 } // namespace gl |
OLD | NEW |