You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
134 lines
3.8 KiB
134 lines
3.8 KiB
/******************************************************************** |
|
KWin - the KDE window manager |
|
This file is part of the KDE project. |
|
|
|
Copyright (C) 2013, 2015 Martin Gräßlin <mgraesslin@kde.org> |
|
|
|
This program is free software; you can redistribute it and/or modify |
|
it under the terms of the GNU General Public License as published by |
|
the Free Software Foundation; either version 2 of the License, or |
|
(at your option) any later version. |
|
|
|
This program is distributed in the hope that it will be useful, |
|
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
GNU General Public License for more details. |
|
|
|
You should have received a copy of the GNU General Public License |
|
along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
*********************************************************************/ |
|
#include "scene_qpainter_wayland_backend.h" |
|
#include "composite.h" |
|
#include "logging.h" |
|
#include "wayland_backend.h" |
|
#include <KWayland/Client/buffer.h> |
|
#include <KWayland/Client/shm_pool.h> |
|
#include <KWayland/Client/surface.h> |
|
|
|
namespace KWin |
|
{ |
|
|
|
WaylandQPainterBackend::WaylandQPainterBackend(Wayland::WaylandBackend *b) |
|
: QPainterBackend() |
|
, m_backend(b) |
|
, m_needsFullRepaint(true) |
|
, m_backBuffer(QImage(QSize(), QImage::Format_RGB32)) |
|
, m_buffer() |
|
{ |
|
connect(b->shmPool(), SIGNAL(poolResized()), SLOT(remapBuffer())); |
|
connect(b, &Wayland::WaylandBackend::shellSurfaceSizeChanged, |
|
this, &WaylandQPainterBackend::screenGeometryChanged); |
|
connect(b->surface(), &KWayland::Client::Surface::frameRendered, |
|
Compositor::self(), &Compositor::bufferSwapComplete); |
|
} |
|
|
|
WaylandQPainterBackend::~WaylandQPainterBackend() |
|
{ |
|
if (m_buffer) { |
|
m_buffer.toStrongRef()->setUsed(false); |
|
} |
|
} |
|
|
|
bool WaylandQPainterBackend::usesOverlayWindow() const |
|
{ |
|
return false; |
|
} |
|
|
|
void WaylandQPainterBackend::present(int mask, const QRegion &damage) |
|
{ |
|
Q_UNUSED(mask) |
|
if (m_backBuffer.isNull()) { |
|
return; |
|
} |
|
Compositor::self()->aboutToSwapBuffers(); |
|
m_needsFullRepaint = false; |
|
auto s = m_backend->surface(); |
|
s->attachBuffer(m_buffer); |
|
s->damage(damage); |
|
s->commit(); |
|
} |
|
|
|
void WaylandQPainterBackend::screenGeometryChanged(const QSize &size) |
|
{ |
|
Q_UNUSED(size) |
|
if (!m_buffer) { |
|
return; |
|
} |
|
m_buffer.toStrongRef()->setUsed(false); |
|
m_buffer.clear(); |
|
} |
|
|
|
QImage *WaylandQPainterBackend::buffer() |
|
{ |
|
return &m_backBuffer; |
|
} |
|
|
|
void WaylandQPainterBackend::prepareRenderingFrame() |
|
{ |
|
if (m_buffer) { |
|
auto b = m_buffer.toStrongRef(); |
|
if (b->isReleased()) { |
|
// we can re-use this buffer |
|
b->setReleased(false); |
|
return; |
|
} else { |
|
// buffer is still in use, get a new one |
|
b->setUsed(false); |
|
} |
|
} |
|
m_buffer.clear(); |
|
const QSize size(m_backend->shellSurfaceSize()); |
|
m_buffer = m_backend->shmPool()->getBuffer(size, size.width() * 4); |
|
if (!m_buffer) { |
|
qCDebug(KWIN_WAYLAND_BACKEND) << "Did not get a new Buffer from Shm Pool"; |
|
m_backBuffer = QImage(); |
|
return; |
|
} |
|
auto b = m_buffer.toStrongRef(); |
|
b->setUsed(true); |
|
m_backBuffer = QImage(b->address(), size.width(), size.height(), QImage::Format_RGB32); |
|
m_backBuffer.fill(Qt::transparent); |
|
m_needsFullRepaint = true; |
|
qCDebug(KWIN_WAYLAND_BACKEND) << "Created a new back buffer"; |
|
} |
|
|
|
void WaylandQPainterBackend::remapBuffer() |
|
{ |
|
if (!m_buffer) { |
|
return; |
|
} |
|
auto b = m_buffer.toStrongRef(); |
|
if (!b->isUsed()){ |
|
return; |
|
} |
|
const QSize size = m_backBuffer.size(); |
|
m_backBuffer = QImage(b->address(), size.width(), size.height(), QImage::Format_RGB32); |
|
qCDebug(KWIN_WAYLAND_BACKEND) << "Remapped our back buffer"; |
|
} |
|
|
|
bool WaylandQPainterBackend::needsFullRepaint() const |
|
{ |
|
return m_needsFullRepaint; |
|
} |
|
|
|
}
|
|
|