2020-11-28 17:53:41 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
SPDX-FileCopyrightText: 2020 Xaver Hugl <xaver.hugl@gmail.com>
|
|
|
|
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef EGLMULTIBACKEND_H
|
|
|
|
#define EGLMULTIBACKEND_H
|
|
|
|
|
|
|
|
#include "abstract_egl_drm_backend.h"
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2021-04-27 11:49:53 +00:00
|
|
|
class EglMultiBackend : public QObject, public OpenGLBackend
|
2020-11-28 17:53:41 +00:00
|
|
|
{
|
2021-04-27 11:49:53 +00:00
|
|
|
Q_OBJECT
|
2020-11-28 17:53:41 +00:00
|
|
|
public:
|
2021-04-27 11:49:53 +00:00
|
|
|
EglMultiBackend(DrmBackend *backend, AbstractEglDrmBackend *primaryEglBackend);
|
2020-11-28 17:53:41 +00:00
|
|
|
~EglMultiBackend();
|
|
|
|
|
|
|
|
void init() override;
|
|
|
|
|
|
|
|
QRegion beginFrame(int screenId) override;
|
|
|
|
void endFrame(int screenId, const QRegion &damage, const QRegion &damagedRegion) override;
|
2021-02-04 08:40:20 +00:00
|
|
|
bool scanout(int screenId, SurfaceItem *surfaceItem) override;
|
2020-11-28 17:53:41 +00:00
|
|
|
|
|
|
|
bool makeCurrent() override;
|
|
|
|
void doneCurrent() override;
|
|
|
|
|
2021-04-09 07:06:04 +00:00
|
|
|
PlatformSurfaceTexture *createPlatformSurfaceTextureInternal(SurfacePixmapInternal *pixmap) override;
|
|
|
|
PlatformSurfaceTexture *createPlatformSurfaceTextureWayland(SurfacePixmapWayland *pixmap) override;
|
2020-11-28 17:53:41 +00:00
|
|
|
QSharedPointer<GLTexture> textureForOutput(AbstractOutput *requestedOutput) const override;
|
|
|
|
|
|
|
|
void screenGeometryChanged(const QSize &size) override;
|
|
|
|
|
|
|
|
void addBackend(AbstractEglDrmBackend *backend);
|
|
|
|
|
2021-02-02 13:26:43 +00:00
|
|
|
bool directScanoutAllowed(int screen) const override;
|
|
|
|
|
2021-04-27 11:49:53 +00:00
|
|
|
public Q_SLOTS:
|
|
|
|
void addGpu(DrmGpu *gpu);
|
|
|
|
void removeGpu(DrmGpu *gpu);
|
|
|
|
|
2020-11-28 17:53:41 +00:00
|
|
|
private:
|
2021-04-27 11:49:53 +00:00
|
|
|
DrmBackend *m_platform;
|
2020-11-28 17:53:41 +00:00
|
|
|
QVector<AbstractEglDrmBackend*> m_backends;
|
|
|
|
|
2021-02-02 13:26:43 +00:00
|
|
|
AbstractEglDrmBackend *findBackend(int screenId, int& internalScreenId) const;
|
2020-11-28 17:53:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // EGLMULTIBACKEND_H
|