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 #ifndef UI_OZONE_PLATFORM_DRM_GPU_HARDWARE_DISPLAY_PLANE_MANAGER_H_ | 5 #ifndef UI_OZONE_PLATFORM_DRM_GPU_HARDWARE_DISPLAY_PLANE_MANAGER_H_ |
6 #define UI_OZONE_PLATFORM_DRM_GPU_HARDWARE_DISPLAY_PLANE_MANAGER_H_ | 6 #define UI_OZONE_PLATFORM_DRM_GPU_HARDWARE_DISPLAY_PLANE_MANAGER_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 #include <xf86drmMode.h> | 10 #include <xf86drmMode.h> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
14 #include "base/memory/scoped_vector.h" | 14 #include "base/memory/scoped_vector.h" |
15 #include "ui/ozone/ozone_export.h" | 15 #include "ui/ozone/ozone_export.h" |
| 16 #include "ui/ozone/platform/drm/common/scoped_drm_types.h" |
16 #include "ui/ozone/platform/drm/gpu/hardware_display_plane.h" | 17 #include "ui/ozone/platform/drm/gpu/hardware_display_plane.h" |
17 #include "ui/ozone/platform/drm/gpu/overlay_plane.h" | 18 #include "ui/ozone/platform/drm/gpu/overlay_plane.h" |
18 #include "ui/ozone/platform/drm/gpu/scoped_drm_types.h" | |
19 | 19 |
20 namespace gfx { | 20 namespace gfx { |
21 class Rect; | 21 class Rect; |
22 } // namespace gfx | 22 } // namespace gfx |
23 | 23 |
24 namespace ui { | 24 namespace ui { |
25 | 25 |
26 class CrtcController; | 26 class CrtcController; |
27 class DrmDevice; | 27 class DrmDevice; |
28 | 28 |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
120 | 120 |
121 ScopedVector<HardwareDisplayPlane> planes_; | 121 ScopedVector<HardwareDisplayPlane> planes_; |
122 std::vector<uint32_t> crtcs_; | 122 std::vector<uint32_t> crtcs_; |
123 | 123 |
124 DISALLOW_COPY_AND_ASSIGN(HardwareDisplayPlaneManager); | 124 DISALLOW_COPY_AND_ASSIGN(HardwareDisplayPlaneManager); |
125 }; | 125 }; |
126 | 126 |
127 } // namespace ui | 127 } // namespace ui |
128 | 128 |
129 #endif // UI_OZONE_PLATFORM_DRM_GPU_HARDWARE_DISPLAY_PLANE_MANAGER_H_ | 129 #endif // UI_OZONE_PLATFORM_DRM_GPU_HARDWARE_DISPLAY_PLANE_MANAGER_H_ |
OLD | NEW |