OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_surface_texture.h" | 5 #include "ui/gl/gl_image_surface_texture.h" |
6 | 6 |
7 #include "base/trace_event/trace_event.h" | 7 #include "base/trace_event/trace_event.h" |
8 #include "ui/gl/android/surface_texture.h" | 8 #include "ui/gl/android/surface_texture.h" |
9 | 9 |
10 namespace gl { | 10 namespace gl { |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 bool GLImageSurfaceTexture::CopyTexSubImage(unsigned target, | 86 bool GLImageSurfaceTexture::CopyTexSubImage(unsigned target, |
87 const gfx::Point& offset, | 87 const gfx::Point& offset, |
88 const gfx::Rect& rect) { | 88 const gfx::Rect& rect) { |
89 return false; | 89 return false; |
90 } | 90 } |
91 | 91 |
92 bool GLImageSurfaceTexture::ScheduleOverlayPlane( | 92 bool GLImageSurfaceTexture::ScheduleOverlayPlane( |
93 gfx::AcceleratedWidget widget, | 93 gfx::AcceleratedWidget widget, |
94 int z_order, | 94 int z_order, |
95 gfx::OverlayTransform transform, | 95 gfx::OverlayTransform transform, |
| 96 gfx::BufferFormat storage_format, |
96 const gfx::Rect& bounds_rect, | 97 const gfx::Rect& bounds_rect, |
97 const gfx::RectF& crop_rect) { | 98 const gfx::RectF& crop_rect, |
| 99 bool handle_scaling) { |
98 return false; | 100 return false; |
99 } | 101 } |
100 | 102 |
101 void GLImageSurfaceTexture::OnMemoryDump( | 103 void GLImageSurfaceTexture::OnMemoryDump( |
102 base::trace_event::ProcessMemoryDump* pmd, | 104 base::trace_event::ProcessMemoryDump* pmd, |
103 uint64_t process_tracing_id, | 105 uint64_t process_tracing_id, |
104 const std::string& dump_name) { | 106 const std::string& dump_name) { |
105 // TODO(ericrk): Add OnMemoryDump for GLImages. crbug.com/514914 | 107 // TODO(ericrk): Add OnMemoryDump for GLImages. crbug.com/514914 |
106 } | 108 } |
107 | 109 |
108 } // namespace gl | 110 } // namespace gl |
OLD | NEW |