2015-04-09 12:49:32 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2015 Martin Gräßlin <mgraesslin@kde.org>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*********************************************************************/
|
|
|
|
#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;
|
|
|
|
|
2015-05-19 07:49:37 +00:00
|
|
|
float DrmScreens::refreshRate(int screen) const
|
|
|
|
{
|
2018-03-29 10:46:53 +00:00
|
|
|
const auto enOuts = m_backend->drmEnabledOutputs();
|
|
|
|
if (screen >= enOuts.size()) {
|
2015-05-19 07:49:37 +00:00
|
|
|
return Screens::refreshRate(screen);
|
|
|
|
}
|
2018-03-29 10:46:53 +00:00
|
|
|
return enOuts.at(screen)->currentRefreshRate() / 1000.0f;
|
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
|
|
|
}
|