@@ -50,7 +50,7 @@ public:
bool is_master() const { return m_is_master; }
bool has_atomic() const { return m_has_atomic; }
- bool has_has_universal_planes() const { return m_has_universal_planes; }
+ bool has_universal_planes() const { return m_has_universal_planes; }
bool has_dumb_buffers() const { return m_has_dumb; }
bool has_kms() const;
@@ -51,7 +51,7 @@ bool Plane::supports_format(PixelFormat fmt) const
PlaneType Plane::plane_type() const
{
- if (card().has_has_universal_planes()) {
+ if (card().has_universal_planes()) {
switch (get_prop_value("type")) {
case DRM_PLANE_TYPE_OVERLAY:
return PlaneType::Overlay;
@@ -372,7 +372,7 @@ static void print_as_list(Card& card)
for (Crtc* crtc : card.get_crtcs()) {
obs.push_back(crtc);
- if (crtc->buffer_id() && !card.has_has_universal_planes()) {
+ if (crtc->buffer_id() && !card.has_universal_planes()) {
Framebuffer* fb = new Framebuffer(card, crtc->buffer_id());
fbs.push_back(fb);
}
@@ -423,7 +423,7 @@ static void print_as_tree(Card& card)
if (s_opts.print_props)
e3.lines = format_props(crtc);
- if (crtc->buffer_id() && !card.has_has_universal_planes()) {
+ if (crtc->buffer_id() && !card.has_universal_planes()) {
Framebuffer fb(card, crtc->buffer_id());
Entry& e5 = add_entry(e3.children);
The has_has_universal_planes() method name includes a typo, fix it. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> --- kms++/inc/kms++/card.h | 2 +- kms++/src/plane.cpp | 2 +- utils/kmsprint.cpp | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-)