kwin/src/plugins/platforms/drm/scene_qpainter_drm_backend.h
Vlad Zahorodnii 2fe102768a Remove QPainterBackend::needsFullRepaint()
A better alternative is to return the damage region in the beginFrame()
function. This way, the render backend can force full screen repaints or
indicate what parts of the buffer needs to be repainted (for buffer age)
2021-07-24 14:54:17 +03:00

49 lines
1 KiB
C++

/*
KWin - the KDE window manager
This file is part of the KDE project.
SPDX-FileCopyrightText: 2015 Martin Gräßlin <mgraesslin@kde.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef KWIN_SCENE_QPAINTER_DRM_BACKEND_H
#define KWIN_SCENE_QPAINTER_DRM_BACKEND_H
#include "qpainterbackend.h"
#include <QObject>
#include <QVector>
#include <QSharedPointer>
#include "dumb_swapchain.h"
namespace KWin
{
class DrmBackend;
class DrmDumbBuffer;
class DrmOutput;
class DrmGpu;
class DrmQPainterBackend : public QPainterBackend
{
Q_OBJECT
public:
DrmQPainterBackend(DrmBackend *backend, DrmGpu *gpu);
QImage *bufferForScreen(int screenId) override;
QRegion beginFrame(int screenId) override;
void endFrame(int screenId, const QRegion &damage) override;
private:
void initOutput(DrmOutput *output);
struct Output {
DrmOutput *output;
QSharedPointer<DumbSwapchain> swapchain;
};
QVector<Output> m_outputs;
DrmBackend *m_backend;
DrmGpu *m_gpu;
};
}
#endif