9b89a3d967
This makes our QPlatformOpenGLContext private subclass simpler. As a slightly unrelated change, this patch also fixes a bug where our platform opengl context may return a wrong surface format if surfaceless contexts are unsupported.
42 lines
901 B
C++
42 lines
901 B
C++
/*
|
|
KWin - the KDE window manager
|
|
This file is part of the KDE project.
|
|
|
|
SPDX-FileCopyrightText: 2015 Martin Gräßlin <mgraesslin@kde.org>
|
|
SPDX-FileCopyrightText: 2019 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
#ifndef KWIN_QPA_BACKINGSTORE_H
|
|
#define KWIN_QPA_BACKINGSTORE_H
|
|
|
|
#include <epoxy/egl.h>
|
|
#include "fixqopengl.h"
|
|
#include <fixx11h.h>
|
|
|
|
#include <qpa/qplatformbackingstore.h>
|
|
|
|
namespace KWin
|
|
{
|
|
namespace QPA
|
|
{
|
|
|
|
class BackingStore : public QPlatformBackingStore
|
|
{
|
|
public:
|
|
explicit BackingStore(QWindow *window);
|
|
~BackingStore() override;
|
|
|
|
QPaintDevice *paintDevice() override;
|
|
void flush(QWindow *window, const QRegion ®ion, const QPoint &offset) override;
|
|
void resize(const QSize &size, const QRegion &staticContents) override;
|
|
|
|
private:
|
|
QImage m_backBuffer;
|
|
QImage m_frontBuffer;
|
|
};
|
|
|
|
}
|
|
}
|
|
|
|
#endif
|