| 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_DRI_HARDWARE_DISPLAY_PLANE_H_ | 5 #ifndef UI_OZONE_PLATFORM_DRI_HARDWARE_DISPLAY_PLANE_H_ |
| 6 #define UI_OZONE_PLATFORM_DRI_HARDWARE_DISPLAY_PLANE_H_ | 6 #define UI_OZONE_PLATFORM_DRI_HARDWARE_DISPLAY_PLANE_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "ui/ozone/ozone_export.h" |
| 12 #include "ui/ozone/platform/dri/scoped_drm_types.h" | 13 #include "ui/ozone/platform/dri/scoped_drm_types.h" |
| 13 | 14 |
| 14 namespace gfx { | 15 namespace gfx { |
| 15 class Rect; | 16 class Rect; |
| 16 } | 17 } |
| 17 | 18 |
| 18 namespace ui { | 19 namespace ui { |
| 19 | 20 |
| 20 class DriWrapper; | 21 class DriWrapper; |
| 21 | 22 |
| 22 class HardwareDisplayPlane { | 23 class OZONE_EXPORT HardwareDisplayPlane { |
| 23 public: | 24 public: |
| 24 HardwareDisplayPlane(ScopedDrmPlanePtr plane); | 25 HardwareDisplayPlane(ScopedDrmPlanePtr plane); |
| 25 HardwareDisplayPlane(uint32_t plane_id, uint32_t possible_crtcs); | 26 HardwareDisplayPlane(uint32_t plane_id, uint32_t possible_crtcs); |
| 26 | 27 |
| 27 virtual ~HardwareDisplayPlane(); | 28 virtual ~HardwareDisplayPlane(); |
| 28 | 29 |
| 29 bool Initialize(DriWrapper* drm); | 30 bool Initialize(DriWrapper* drm); |
| 30 | 31 |
| 31 bool CanUseForCrtc(uint32_t crtc_index); | 32 bool CanUseForCrtc(uint32_t crtc_index); |
| 32 | 33 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 43 uint32_t possible_crtcs_; | 44 uint32_t possible_crtcs_; |
| 44 uint32_t owning_crtc_; | 45 uint32_t owning_crtc_; |
| 45 bool in_use_; | 46 bool in_use_; |
| 46 | 47 |
| 47 DISALLOW_COPY_AND_ASSIGN(HardwareDisplayPlane); | 48 DISALLOW_COPY_AND_ASSIGN(HardwareDisplayPlane); |
| 48 }; | 49 }; |
| 49 | 50 |
| 50 } // namespace ui | 51 } // namespace ui |
| 51 | 52 |
| 52 #endif // UI_OZONE_PLATFORM_DRI_HARDWARE_DISPLAY_PLANE_H_ | 53 #endif // UI_OZONE_PLATFORM_DRI_HARDWARE_DISPLAY_PLANE_H_ |
| OLD | NEW |