Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1161)

Side by Side Diff: ui/ozone/platform/drm/gpu/hardware_display_plane_atomic.h

Issue 1294113005: Atomic: Don’t keep track of Cursor planes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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_ATOMIC_H_ 5 #ifndef UI_OZONE_PLATFORM_DRM_GPU_HARDWARE_DISPLAY_PLANE_ATOMIC_H_
6 #define UI_OZONE_PLATFORM_DRM_GPU_HARDWARE_DISPLAY_PLANE_ATOMIC_H_ 6 #define UI_OZONE_PLATFORM_DRM_GPU_HARDWARE_DISPLAY_PLANE_ATOMIC_H_
7 7
8 #include "ui/ozone/platform/drm/gpu/hardware_display_plane.h" 8 #include "ui/ozone/platform/drm/gpu/hardware_display_plane.h"
9 9
10 #include <xf86drmMode.h> 10 #include <xf86drmMode.h>
11 11
12 namespace ui { 12 namespace ui {
13 13
14 class CrtcController; 14 class CrtcController;
15 class DrmDevice; 15 class DrmDevice;
16 16
17 class HardwareDisplayPlaneAtomic : public HardwareDisplayPlane { 17 class HardwareDisplayPlaneAtomic : public HardwareDisplayPlane {
18 public: 18 public:
19 HardwareDisplayPlaneAtomic(uint32_t plane_id, uint32_t possible_crtcs); 19 HardwareDisplayPlaneAtomic(uint32_t plane_id, uint32_t possible_crtcs);
20 ~HardwareDisplayPlaneAtomic() override; 20 ~HardwareDisplayPlaneAtomic() override;
21 21
22 bool SetPlaneData(drmModePropertySet* property_set, 22 bool SetPlaneData(drmModePropertySet* property_set,
23 uint32_t crtc_id, 23 uint32_t crtc_id,
24 uint32_t framebuffer, 24 uint32_t framebuffer,
25 const gfx::Rect& crtc_rect, 25 const gfx::Rect& crtc_rect,
26 const gfx::Rect& src_rect); 26 const gfx::Rect& src_rect);
27 27
28 // HardwareDisplayPlane: 28 // HardwareDisplayPlane:
29 bool Initialize(DrmDevice* drm, 29 bool Initialize(DrmDevice* drm,
30 const std::vector<uint32_t>& formats) override; 30 const std::vector<uint32_t>& formats,
31 bool is_dummy) override;
31 bool IsSupportedFormat(uint32_t format) const override; 32 bool IsSupportedFormat(uint32_t format) const override;
32 33
33 void set_crtc(CrtcController* crtc) { crtc_ = crtc; } 34 void set_crtc(CrtcController* crtc) { crtc_ = crtc; }
34 CrtcController* crtc() const { return crtc_; } 35 CrtcController* crtc() const { return crtc_; }
35 36
36 private: 37 private:
37 struct Property { 38 struct Property {
38 Property(); 39 Property();
39 bool Initialize(DrmDevice* drm, 40 bool Initialize(DrmDevice* drm,
40 const char* name, 41 const char* name,
(...skipping 11 matching lines...) Expand all
52 Property src_y_prop_; 53 Property src_y_prop_;
53 Property src_w_prop_; 54 Property src_w_prop_;
54 Property src_h_prop_; 55 Property src_h_prop_;
55 CrtcController* crtc_ = nullptr; 56 CrtcController* crtc_ = nullptr;
56 std::vector<uint32_t> supported_formats_; 57 std::vector<uint32_t> supported_formats_;
57 }; 58 };
58 59
59 } // namespace ui 60 } // namespace ui
60 61
61 #endif // UI_OZONE_PLATFORM_DRM_GPU_HARDWARE_DISPLAY_PLANE_ATOMIC_H_ 62 #endif // UI_OZONE_PLATFORM_DRM_GPU_HARDWARE_DISPLAY_PLANE_ATOMIC_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698