e2a0863843
Hardware constraints limit the number of crtcs and which connector + crtc combinations can work together. The current code is searching for working combinations when a hotplug happens but that's not enough, it also needs to happen when the user enables or disables outputs and when modesets are done, and the configuration change needs to be applied with a single atomic commit. This commit removes the hard dependency of DrmPipeline on crtcs by moving the pending state of outputs from the drm objects to DrmPipeline itself, which ensures that it's independent from the set of drm objects currently used. It also changes requests from KScreen to be applied truly atomically.
44 lines
938 B
C++
44 lines
938 B
C++
/*
|
|
KWin - the KDE window manager
|
|
This file is part of the KDE project.
|
|
|
|
SPDX-FileCopyrightText: 2021 Xaver Hugl <xaver.hugl@gmail.com>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
#pragma once
|
|
|
|
#include <QPoint>
|
|
#include <QSize>
|
|
|
|
#include "abstract_wayland_output.h"
|
|
#include "kwin_export.h"
|
|
|
|
namespace KWin
|
|
{
|
|
|
|
class KWIN_EXPORT OutputChangeSet
|
|
{
|
|
public:
|
|
bool enabled;
|
|
QPoint pos;
|
|
float scale;
|
|
QSize modeSize;
|
|
uint32_t refreshRate;
|
|
AbstractWaylandOutput::Transform transform;
|
|
uint32_t overscan;
|
|
AbstractWaylandOutput::RgbRange rgbRange;
|
|
RenderLoop::VrrPolicy vrrPolicy;
|
|
};
|
|
|
|
class KWIN_EXPORT WaylandOutputConfig
|
|
{
|
|
public:
|
|
QSharedPointer<OutputChangeSet> changeSet(AbstractWaylandOutput *output);
|
|
QSharedPointer<OutputChangeSet> constChangeSet(AbstractWaylandOutput *output) const;
|
|
|
|
private:
|
|
QMap<AbstractWaylandOutput*, QSharedPointer<OutputChangeSet>> m_properties;
|
|
};
|
|
|
|
}
|