33 lines
478 B
C++
33 lines
478 B
C++
|
/*
|
||
|
SPDX-FileCopyrightText: 2022 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
|
||
|
|
||
|
SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
*/
|
||
|
|
||
|
#include "outputlayer.h"
|
||
|
|
||
|
namespace KWin
|
||
|
{
|
||
|
|
||
|
OutputLayer::OutputLayer(QObject *parent)
|
||
|
: QObject(parent)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
QRegion OutputLayer::repaints() const
|
||
|
{
|
||
|
return m_repaints;
|
||
|
}
|
||
|
|
||
|
void OutputLayer::addRepaint(const QRegion ®ion)
|
||
|
{
|
||
|
m_repaints += region;
|
||
|
}
|
||
|
|
||
|
void OutputLayer::resetRepaints()
|
||
|
{
|
||
|
m_repaints = QRegion();
|
||
|
}
|
||
|
|
||
|
} // namespace KWin
|