2021-02-04 09:07:20 +00:00
|
|
|
/*
|
|
|
|
SPDX-FileCopyrightText: 2021 Vlad Zahorodnii <vlad.zahorodnii@kde.org>
|
|
|
|
|
|
|
|
SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "surfaceitem_internal.h"
|
2021-04-09 07:06:04 +00:00
|
|
|
#include "composite.h"
|
|
|
|
#include "scene.h"
|
2021-02-04 09:07:20 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
|
|
|
SurfaceItemInternal::SurfaceItemInternal(Scene::Window *window, Item *parent)
|
|
|
|
: SurfaceItem(window, parent)
|
|
|
|
{
|
|
|
|
Toplevel *toplevel = window->window();
|
|
|
|
|
|
|
|
connect(toplevel, &Toplevel::bufferGeometryChanged,
|
|
|
|
this, &SurfaceItemInternal::handleBufferGeometryChanged);
|
|
|
|
|
|
|
|
setSize(toplevel->bufferGeometry().size());
|
|
|
|
|
2021-07-21 19:25:42 +00:00
|
|
|
// The device pixel ratio of the internal window is static.
|
|
|
|
QMatrix4x4 surfaceToBufferMatrix;
|
|
|
|
surfaceToBufferMatrix.scale(toplevel->bufferScale());
|
|
|
|
setSurfaceToBufferMatrix(surfaceToBufferMatrix);
|
2021-02-04 09:07:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QRegion SurfaceItemInternal::shape() const
|
|
|
|
{
|
2021-07-05 17:40:47 +00:00
|
|
|
return QRegion(rect());
|
2021-02-04 09:07:20 +00:00
|
|
|
}
|
|
|
|
|
2021-04-09 07:06:04 +00:00
|
|
|
SurfacePixmap *SurfaceItemInternal::createPixmap()
|
2021-02-04 09:07:20 +00:00
|
|
|
{
|
2021-04-09 07:06:04 +00:00
|
|
|
return new SurfacePixmapInternal(this);
|
2021-02-04 09:07:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SurfaceItemInternal::handleBufferGeometryChanged(Toplevel *toplevel, const QRect &old)
|
|
|
|
{
|
|
|
|
if (toplevel->bufferGeometry().size() != old.size()) {
|
|
|
|
discardPixmap();
|
|
|
|
}
|
|
|
|
setSize(toplevel->bufferGeometry().size());
|
|
|
|
}
|
|
|
|
|
2021-04-09 07:06:04 +00:00
|
|
|
SurfacePixmapInternal::SurfacePixmapInternal(SurfaceItemInternal *item, QObject *parent)
|
|
|
|
: SurfacePixmap(Compositor::self()->scene()->createPlatformSurfaceTextureInternal(this), parent)
|
|
|
|
, m_item(item)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
QOpenGLFramebufferObject *SurfacePixmapInternal::fbo() const
|
|
|
|
{
|
|
|
|
return m_fbo.data();
|
|
|
|
}
|
|
|
|
|
|
|
|
QImage SurfacePixmapInternal::image() const
|
|
|
|
{
|
|
|
|
return m_rasterBuffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SurfacePixmapInternal::create()
|
|
|
|
{
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SurfacePixmapInternal::update()
|
|
|
|
{
|
|
|
|
const Toplevel *toplevel = m_item->window()->window();
|
|
|
|
|
|
|
|
if (toplevel->internalFramebufferObject()) {
|
|
|
|
m_fbo = toplevel->internalFramebufferObject();
|
|
|
|
m_hasAlphaChannel = true;
|
|
|
|
} else if (!toplevel->internalImageObject().isNull()) {
|
|
|
|
m_rasterBuffer = toplevel->internalImageObject();
|
|
|
|
m_hasAlphaChannel = m_rasterBuffer.hasAlphaChannel();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SurfacePixmapInternal::isValid() const
|
|
|
|
{
|
|
|
|
return !m_fbo.isNull() || !m_rasterBuffer.isNull();
|
|
|
|
}
|
|
|
|
|
2021-02-04 09:07:20 +00:00
|
|
|
} // namespace KWin
|