2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2015-04-09 12:49:32 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2015 Martin Gräßlin <mgraesslin@kde.org>
|
2015-04-09 12:49:32 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2015-04-09 12:49:32 +00:00
|
|
|
#include "screens_drm.h"
|
|
|
|
#include "drm_backend.h"
|
2016-03-21 14:11:17 +00:00
|
|
|
#include "drm_output.h"
|
2015-04-09 12:49:32 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
DrmScreens::DrmScreens(DrmBackend *backend, QObject *parent)
|
2018-03-29 10:46:53 +00:00
|
|
|
: OutputScreens(backend, parent)
|
2015-04-09 12:49:32 +00:00
|
|
|
, m_backend(backend)
|
|
|
|
{
|
2015-04-24 07:23:18 +00:00
|
|
|
connect(backend, &DrmBackend::screensQueried, this, &DrmScreens::updateCount);
|
|
|
|
connect(backend, &DrmBackend::screensQueried, this, &DrmScreens::changed);
|
2015-04-09 12:49:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
DrmScreens::~DrmScreens() = default;
|
|
|
|
|
2017-11-06 16:00:15 +00:00
|
|
|
bool DrmScreens::supportsTransformations(int screen) const
|
|
|
|
{
|
2018-03-29 10:46:53 +00:00
|
|
|
const auto enOuts = m_backend->drmEnabledOutputs();
|
|
|
|
if (screen >= enOuts.size()) {
|
2017-11-06 16:00:15 +00:00
|
|
|
return false;
|
|
|
|
}
|
2018-03-29 10:46:53 +00:00
|
|
|
return enOuts.at(screen)->supportsTransformations();
|
2017-11-10 17:07:15 +00:00
|
|
|
}
|
|
|
|
|
2015-04-09 12:49:32 +00:00
|
|
|
}
|