2020-08-02 22:22:19 +00:00
|
|
|
/*
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
2015-05-05 13:04:15 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-FileCopyrightText: 2015 Martin Gräßlin <mgraesslin@kde.org>
|
2015-05-05 13:04:15 +00:00
|
|
|
|
2020-08-02 22:22:19 +00:00
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
2015-05-05 13:04:15 +00:00
|
|
|
#include "scene_qpainter_fb_backend.h"
|
|
|
|
#include "fb_backend.h"
|
|
|
|
#include "composite.h"
|
fb_backend_qpainter_backend: Use logind to determine if the session is active.
Summary: TTYs are only available for seat0, so when starting a framebuffer kwin on seat1, it never draws, because drawing is always suspended, because it is being treated as not active
Test Plan: The framebuffer backend draws on seat1, and /dev/fb1 and when I switch back to my Weston greeter, (when it's also using the frame buffer,) it doesn't try to draw on top of it.
Reviewers: #kwin, graesslin
Reviewed By: #kwin, graesslin
Subscribers: davidedmundson, rkflx, graesslin, kwin, #kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D9574
2018-04-24 12:18:03 +00:00
|
|
|
#include "logind.h"
|
2015-05-05 13:04:15 +00:00
|
|
|
#include "cursor.h"
|
|
|
|
#include "virtual_terminal.h"
|
|
|
|
// Qt
|
|
|
|
#include <QPainter>
|
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
FramebufferQPainterBackend::FramebufferQPainterBackend(FramebufferBackend *backend)
|
|
|
|
: QObject()
|
|
|
|
, QPainterBackend()
|
2019-02-22 12:17:46 +00:00
|
|
|
, m_renderBuffer(backend->screenSize(), QImage::Format_RGB32)
|
2015-05-05 13:04:15 +00:00
|
|
|
, m_backend(backend)
|
2019-02-22 12:17:46 +00:00
|
|
|
, m_needsFullRepaint(true)
|
2015-05-05 13:04:15 +00:00
|
|
|
{
|
|
|
|
m_renderBuffer.fill(Qt::black);
|
|
|
|
m_backend->map();
|
|
|
|
|
2019-02-22 12:17:46 +00:00
|
|
|
m_backBuffer = QImage((uchar*)m_backend->mappedMemory(),
|
|
|
|
m_backend->bytesPerLine() / (m_backend->bitsPerPixel() / 8),
|
|
|
|
m_backend->bufferSize() / m_backend->bytesPerLine(),
|
|
|
|
m_backend->bytesPerLine(), m_backend->imageFormat());
|
2015-05-05 13:04:15 +00:00
|
|
|
m_backBuffer.fill(Qt::black);
|
2019-02-22 12:17:46 +00:00
|
|
|
|
2015-05-05 13:04:15 +00:00
|
|
|
connect(VirtualTerminal::self(), &VirtualTerminal::activeChanged, this,
|
2020-03-15 19:59:29 +00:00
|
|
|
[] (bool active) {
|
2015-05-05 13:04:15 +00:00
|
|
|
if (active) {
|
|
|
|
Compositor::self()->bufferSwapComplete();
|
|
|
|
Compositor::self()->addRepaintFull();
|
|
|
|
} else {
|
|
|
|
Compositor::self()->aboutToSwapBuffers();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
FramebufferQPainterBackend::~FramebufferQPainterBackend() = default;
|
|
|
|
|
2019-02-22 12:17:46 +00:00
|
|
|
QImage* FramebufferQPainterBackend::bufferForScreen(int screenId)
|
2015-05-05 13:04:15 +00:00
|
|
|
{
|
2019-02-22 12:17:46 +00:00
|
|
|
Q_UNUSED(screenId)
|
2015-05-05 13:04:15 +00:00
|
|
|
return &m_renderBuffer;
|
|
|
|
}
|
|
|
|
|
2020-11-09 13:35:15 +00:00
|
|
|
bool FramebufferQPainterBackend::needsFullRepaint(int screenId) const
|
2015-05-05 13:04:15 +00:00
|
|
|
{
|
2020-11-09 13:35:15 +00:00
|
|
|
Q_UNUSED(screenId)
|
2019-02-22 12:17:46 +00:00
|
|
|
return m_needsFullRepaint;
|
2015-05-05 13:04:15 +00:00
|
|
|
}
|
|
|
|
|
2020-11-09 14:31:26 +00:00
|
|
|
void FramebufferQPainterBackend::beginFrame(int screenId)
|
2015-05-05 13:04:15 +00:00
|
|
|
{
|
2020-11-09 13:35:15 +00:00
|
|
|
Q_UNUSED(screenId)
|
2019-02-22 12:17:46 +00:00
|
|
|
m_needsFullRepaint = true;
|
2015-05-05 13:04:15 +00:00
|
|
|
}
|
|
|
|
|
2020-11-09 14:31:26 +00:00
|
|
|
void FramebufferQPainterBackend::endFrame(int screenId, int mask, const QRegion &damage)
|
2015-05-05 13:04:15 +00:00
|
|
|
{
|
2020-11-09 13:35:15 +00:00
|
|
|
Q_UNUSED(screenId)
|
2015-05-05 13:04:15 +00:00
|
|
|
Q_UNUSED(mask)
|
|
|
|
Q_UNUSED(damage)
|
2019-02-22 12:17:46 +00:00
|
|
|
|
fb_backend_qpainter_backend: Use logind to determine if the session is active.
Summary: TTYs are only available for seat0, so when starting a framebuffer kwin on seat1, it never draws, because drawing is always suspended, because it is being treated as not active
Test Plan: The framebuffer backend draws on seat1, and /dev/fb1 and when I switch back to my Weston greeter, (when it's also using the frame buffer,) it doesn't try to draw on top of it.
Reviewers: #kwin, graesslin
Reviewed By: #kwin, graesslin
Subscribers: davidedmundson, rkflx, graesslin, kwin, #kwin
Tags: #kwin
Differential Revision: https://phabricator.kde.org/D9574
2018-04-24 12:18:03 +00:00
|
|
|
if (!LogindIntegration::self()->isActiveSession()) {
|
2015-05-05 13:04:15 +00:00
|
|
|
return;
|
|
|
|
}
|
2019-02-22 12:17:46 +00:00
|
|
|
m_needsFullRepaint = false;
|
|
|
|
|
2015-05-05 13:04:15 +00:00
|
|
|
QPainter p(&m_backBuffer);
|
2016-07-11 08:53:04 +00:00
|
|
|
p.drawImage(QPoint(0, 0), m_backend->isBGR() ? m_renderBuffer.rgbSwapped() : m_renderBuffer);
|
2015-05-05 13:04:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|