You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kwin/src/placeholderoutput.h

29 lines
471 B
C++

/*
SPDX-FileCopyrightText: 2022 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#pragma once
#include "core/output.h"
namespace KWin
{
class PlaceholderOutput : public Output
{
Q_OBJECT
public:
PlaceholderOutput(const QSize &size, qreal scale = 1);
~PlaceholderOutput() override;
RenderLoop *renderLoop() const override;
private:
std::unique_ptr<RenderLoop> m_renderLoop;
};
} // namespace KWin