Home
last modified time | relevance | path

Searched refs:DrmPlane (Results 1 – 9 of 9) sorted by relevance

/external/drm_hwcomposer/
Ddrmplane.cpp30 DrmPlane::DrmPlane(DrmResources *drm, drmModePlanePtr p) in DrmPlane() function in android::DrmPlane
34 DrmPlane::~DrmPlane() { in ~DrmPlane()
37 int DrmPlane::Init() { in Init()
126 uint32_t DrmPlane::id() const { in id()
130 bool DrmPlane::GetCrtcSupported(const DrmCrtc &crtc) const { in GetCrtcSupported()
134 uint32_t DrmPlane::type() const { in type()
138 const DrmProperty &DrmPlane::crtc_property() const { in crtc_property()
142 const DrmProperty &DrmPlane::fb_property() const { in fb_property()
146 const DrmProperty &DrmPlane::crtc_x_property() const { in crtc_x_property()
150 const DrmProperty &DrmPlane::crtc_y_property() const { in crtc_y_property()
[all …]
Ddrmplane.h31 class DrmPlane {
33 DrmPlane(DrmResources *drm, drmModePlanePtr p);
34 ~DrmPlane();
56 DrmPlane(const DrmPlane &);
Ddrmresources.h33 typedef std::vector<DrmPlane *>::const_iterator PlaneIter;
49 DrmPlane *GetPlane(uint32_t id) const;
52 int GetPlaneProperty(const DrmPlane &plane, const char *prop_name,
79 std::vector<DrmPlane *> planes_;
Ddrmcomposition.cpp75 for (std::vector<DrmPlane *>::const_iterator iter = primary_planes_.begin(); in GetRemainingLayers()
80 for (std::deque<DrmPlane *>::const_iterator iter = overlay_planes_.begin(); in GetRemainingLayers()
97 DrmPlane *plane = NULL; in AddLayer()
98 for (std::vector<DrmPlane *>::iterator iter = primary_planes_.begin(); in AddLayer()
106 for (std::deque<DrmPlane *>::iterator iter = overlay_planes_.begin(); in AddLayer()
Ddrmcomposition.h54 std::vector<DrmPlane *> primary_planes_;
55 std::deque<DrmPlane *> overlay_planes_;
Ddrmdisplaycomposition.h44 DrmPlane *plane;
58 DrmPlane *plane);
Ddrmresources.cpp55 for (std::vector<DrmPlane *>::const_iterator iter = planes_.begin(); in ~DrmResources()
222 DrmPlane *plane = new DrmPlane(this, p); in Init()
286 DrmPlane *DrmResources::GetPlane(uint32_t id) const { in GetPlane()
287 for (std::vector<DrmPlane *>::const_iterator iter = planes_.begin(); in GetPlane()
517 int DrmResources::GetPlaneProperty(const DrmPlane &plane, const char *prop_name, in GetPlaneProperty()
Ddrmdisplaycomposition.cpp87 DrmCrtc *crtc, DrmPlane *plane) { in AddLayer()
Ddrmdisplaycompositor.cpp159 DrmPlane *plane = iter->plane; in ApplyFrame()