OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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 #ifndef UI_GL_GL_IMAGE_IO_SURFACE_H_ | 5 #ifndef UI_GL_GL_IMAGE_IO_SURFACE_H_ |
6 #define UI_GL_GL_IMAGE_IO_SURFACE_H_ | 6 #define UI_GL_GL_IMAGE_IO_SURFACE_H_ |
7 | 7 |
8 #include <IOSurface/IOSurface.h> | 8 #include <IOSurface/IOSurface.h> |
9 | 9 |
10 #include "base/mac/scoped_cftyperef.h" | 10 #include "base/mac/scoped_cftyperef.h" |
(...skipping 30 matching lines...) Expand all Loading... |
41 void DidModifyTexImage() override {} | 41 void DidModifyTexImage() override {} |
42 bool ScheduleOverlayPlane(gfx::AcceleratedWidget widget, | 42 bool ScheduleOverlayPlane(gfx::AcceleratedWidget widget, |
43 int z_order, | 43 int z_order, |
44 OverlayTransform transform, | 44 OverlayTransform transform, |
45 const Rect& bounds_rect, | 45 const Rect& bounds_rect, |
46 const RectF& crop_rect) override; | 46 const RectF& crop_rect) override; |
47 | 47 |
48 static void SetLayerForWidget(gfx::AcceleratedWidget widget, | 48 static void SetLayerForWidget(gfx::AcceleratedWidget widget, |
49 CALayer* layer); | 49 CALayer* layer); |
50 | 50 |
| 51 void DumpMemory(base::trace_event::ProcessMemoryDump* pmd, |
| 52 uint64_t process_tracing_id, |
| 53 const std::string& dump_name) override; |
| 54 |
51 protected: | 55 protected: |
52 ~GLImageIOSurface() override; | 56 ~GLImageIOSurface() override; |
53 | 57 |
54 private: | 58 private: |
55 const gfx::Size size_; | 59 const gfx::Size size_; |
56 const unsigned internalformat_; | 60 const unsigned internalformat_; |
57 BufferFormat format_; | 61 BufferFormat format_; |
58 base::ScopedCFTypeRef<IOSurfaceRef> io_surface_; | 62 base::ScopedCFTypeRef<IOSurfaceRef> io_surface_; |
59 base::ThreadChecker thread_checker_; | 63 base::ThreadChecker thread_checker_; |
60 | 64 |
61 DISALLOW_COPY_AND_ASSIGN(GLImageIOSurface); | 65 DISALLOW_COPY_AND_ASSIGN(GLImageIOSurface); |
62 }; | 66 }; |
63 | 67 |
64 } // namespace gfx | 68 } // namespace gfx |
65 | 69 |
66 #endif // UI_GL_GL_IMAGE_IO_SURFACE_H_ | 70 #endif // UI_GL_GL_IMAGE_IO_SURFACE_H_ |
OLD | NEW |