2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2015-11-25 12:33:40 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2015 Martin Gräßlin <mgraesslin@kde.org>
|
2015-11-25 12:33:40 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2015-11-25 12:33:40 +00:00
|
|
|
#include "egl_x11_backend.h"
|
|
|
|
// kwin
|
|
|
|
#include "screens.h"
|
|
|
|
#include "x11windowed_backend.h"
|
|
|
|
// kwin libs
|
|
|
|
#include <kwinglplatform.h>
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
EglX11Backend::EglX11Backend(X11WindowedBackend *backend)
|
|
|
|
: EglOnXBackend(backend->connection(), backend->display(), backend->rootWindow(), backend->screenNumer(), XCB_WINDOW_NONE)
|
|
|
|
, m_backend(backend)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
EglX11Backend::~EglX11Backend() = default;
|
|
|
|
|
2020-11-30 10:27:33 +00:00
|
|
|
void EglX11Backend::init()
|
|
|
|
{
|
|
|
|
EglOnXBackend::init();
|
|
|
|
|
|
|
|
if (!isFailed()) {
|
|
|
|
initWayland();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-25 12:33:40 +00:00
|
|
|
void EglX11Backend::cleanupSurfaces()
|
|
|
|
{
|
|
|
|
for (auto it = m_surfaces.begin(); it != m_surfaces.end(); ++it) {
|
|
|
|
eglDestroySurface(eglDisplay(), *it);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool EglX11Backend::createSurfaces()
|
|
|
|
{
|
|
|
|
for (int i = 0; i < screens()->count(); ++i) {
|
|
|
|
EGLSurface s = createSurface(m_backend->windowForScreen(i));
|
|
|
|
if (s == EGL_NO_SURFACE) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
m_surfaces << s;
|
|
|
|
}
|
|
|
|
if (m_surfaces.isEmpty()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
setSurface(m_surfaces.first());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool EglX11Backend::usesOverlayWindow() const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2020-11-09 14:31:26 +00:00
|
|
|
QRegion EglX11Backend::beginFrame(int screenId)
|
2015-11-25 12:33:40 +00:00
|
|
|
{
|
|
|
|
makeContextCurrent(m_surfaces.at(screenId));
|
|
|
|
setupViewport(screenId);
|
|
|
|
return screens()->geometry(screenId);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EglX11Backend::setupViewport(int screenId)
|
|
|
|
{
|
|
|
|
// TODO: ensure the viewport is set correctly each time
|
|
|
|
const QSize &overall = screens()->size();
|
|
|
|
const QRect &v = screens()->geometry(screenId);
|
|
|
|
// TODO: are the values correct?
|
2016-11-09 03:47:13 +00:00
|
|
|
|
|
|
|
qreal scale = screens()->scale(screenId);
|
2017-10-25 17:03:22 +00:00
|
|
|
glViewport(-v.x(), v.height() - overall.height() + v.y(), overall.width() * scale, overall.height() * scale);
|
2015-11-25 12:33:40 +00:00
|
|
|
}
|
|
|
|
|
2020-11-09 14:31:26 +00:00
|
|
|
void EglX11Backend::endFrame(int screenId, const QRegion &renderedRegion, const QRegion &damagedRegion)
|
2015-11-25 12:33:40 +00:00
|
|
|
{
|
|
|
|
Q_UNUSED(damagedRegion)
|
|
|
|
const QRect &outputGeometry = screens()->geometry(screenId);
|
|
|
|
presentSurface(m_surfaces.at(screenId), renderedRegion, outputGeometry);
|
|
|
|
}
|
|
|
|
|
2020-11-30 10:27:33 +00:00
|
|
|
void EglX11Backend::presentSurface(EGLSurface surface, const QRegion &damage, const QRect &screenGeometry)
|
|
|
|
{
|
|
|
|
if (damage.isEmpty()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const bool fullRepaint = supportsBufferAge() || (damage == screenGeometry);
|
|
|
|
|
|
|
|
if (fullRepaint || !havePostSubBuffer()) {
|
|
|
|
// the entire screen changed, or we cannot do partial updates (which implies we enabled surface preservation)
|
|
|
|
eglSwapBuffers(eglDisplay(), surface);
|
|
|
|
} else {
|
|
|
|
// a part of the screen changed, and we can use eglPostSubBufferNV to copy the updated area
|
|
|
|
for (const QRect &r : damage) {
|
|
|
|
eglPostSubBufferNV(eglDisplay(), surface, r.left(), screenGeometry.height() - r.bottom() - 1, r.width(), r.height());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SceneOpenGLTexturePrivate *EglX11Backend::createBackendTexture(SceneOpenGLTexture *texture)
|
|
|
|
{
|
|
|
|
return new EglX11Texture(texture, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EglX11Backend::screenGeometryChanged(const QSize &size)
|
|
|
|
{
|
|
|
|
Q_UNUSED(size)
|
|
|
|
}
|
|
|
|
|
|
|
|
/************************************************
|
|
|
|
* EglX11Texture
|
|
|
|
************************************************/
|
|
|
|
|
|
|
|
EglX11Texture::EglX11Texture(KWin::SceneOpenGLTexture *texture, EglX11Backend *backend)
|
|
|
|
: AbstractEglTexture(texture, backend)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
EglX11Texture::~EglX11Texture()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-11-25 12:33:40 +00:00
|
|
|
} // namespace
|