2013-05-15 11:47:27 +00:00
|
|
|
/********************************************************************
|
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2013 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/>.
|
|
|
|
*********************************************************************/
|
|
|
|
#ifndef KWIN_EGL_WAYLAND_BACKEND_H
|
|
|
|
#define KWIN_EGL_WAYLAND_BACKEND_H
|
|
|
|
#include "scene_opengl.h"
|
|
|
|
// wayland
|
|
|
|
#include <wayland-egl.h>
|
|
|
|
|
2013-08-10 21:19:41 +00:00
|
|
|
class QTemporaryFile;
|
2013-05-20 08:49:28 +00:00
|
|
|
struct wl_buffer;
|
|
|
|
struct wl_shm;
|
|
|
|
|
2013-05-15 11:47:27 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2013-06-17 07:35:45 +00:00
|
|
|
namespace Wayland {
|
|
|
|
class WaylandBackend;
|
2013-05-15 11:47:27 +00:00
|
|
|
}
|
|
|
|
|
2013-06-17 11:38:24 +00:00
|
|
|
namespace Xcb {
|
|
|
|
class Shm;
|
|
|
|
}
|
2013-05-15 11:47:27 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief OpenGL Backend using Egl on a Wayland surface.
|
|
|
|
*
|
|
|
|
* This Backend is the basis for a session compositor running on top of a Wayland system compositor.
|
|
|
|
* It creates a Surface as large as the screen and maps it as a fullscreen shell surface on the
|
|
|
|
* system compositor. The OpenGL context is created on the Wayland surface, so for rendering X11 is
|
|
|
|
* not involved.
|
|
|
|
*
|
|
|
|
* At the moment the backend is still rather limited. For getting textures from pixmap it uses the
|
|
|
|
* XShm library. This is currently a hack and only as proof of concept till we support texture from
|
|
|
|
* Wayland buffers. From then on we should use XWayland for texture mapping.
|
|
|
|
*
|
|
|
|
* Also in repainting the backend is currently still rather limited. Only supported mode is fullscreen
|
|
|
|
* repaints, which is obviously not optimal. Best solution is probably to go for buffer_age extension
|
|
|
|
* and make it the only available solution next to fullscreen repaints.
|
|
|
|
**/
|
2013-06-17 07:35:45 +00:00
|
|
|
class EglWaylandBackend : public QObject, public OpenGLBackend
|
2013-05-15 11:47:27 +00:00
|
|
|
{
|
2013-06-17 07:35:45 +00:00
|
|
|
Q_OBJECT
|
2013-05-15 11:47:27 +00:00
|
|
|
public:
|
|
|
|
EglWaylandBackend();
|
|
|
|
virtual ~EglWaylandBackend();
|
|
|
|
virtual void screenGeometryChanged(const QSize &size);
|
|
|
|
virtual SceneOpenGL::TexturePrivate *createBackendTexture(SceneOpenGL::Texture *texture);
|
2013-11-21 09:39:29 +00:00
|
|
|
virtual QRegion prepareRenderingFrame();
|
|
|
|
virtual void endRenderingFrame(const QRegion &renderedRegion, const QRegion &damagedRegion);
|
2014-01-07 10:57:29 +00:00
|
|
|
virtual bool makeCurrent() override;
|
|
|
|
virtual void doneCurrent() override;
|
2013-06-19 09:12:57 +00:00
|
|
|
virtual bool isLastFrameRendered() const override;
|
2013-06-17 11:38:24 +00:00
|
|
|
Xcb::Shm *shm();
|
2013-06-19 09:12:57 +00:00
|
|
|
void lastFrameRendered();
|
2013-06-19 10:26:34 +00:00
|
|
|
virtual bool usesOverlayWindow() const override;
|
2013-05-15 11:47:27 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void present();
|
|
|
|
|
2013-06-17 07:35:45 +00:00
|
|
|
private Q_SLOTS:
|
|
|
|
void overlaySizeChanged(const QSize &size);
|
|
|
|
|
2013-05-15 11:47:27 +00:00
|
|
|
private:
|
|
|
|
void init();
|
|
|
|
bool initializeEgl();
|
|
|
|
bool initBufferConfigs();
|
|
|
|
bool initRenderingContext();
|
|
|
|
bool makeContextCurrent();
|
|
|
|
EGLDisplay m_display;
|
|
|
|
EGLConfig m_config;
|
|
|
|
EGLSurface m_surface;
|
|
|
|
EGLContext m_context;
|
2014-01-07 10:57:29 +00:00
|
|
|
int m_bufferAge;
|
2013-06-17 08:28:31 +00:00
|
|
|
Wayland::WaylandBackend *m_wayland;
|
2013-06-17 07:35:45 +00:00
|
|
|
wl_egl_window *m_overlay;
|
2013-06-17 11:38:24 +00:00
|
|
|
QScopedPointer<Xcb::Shm> m_shm;
|
2013-06-19 09:12:57 +00:00
|
|
|
bool m_lastFrameRendered;
|
2013-05-15 11:47:27 +00:00
|
|
|
friend class EglWaylandTexture;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Texture using an EGLImageKHR.
|
|
|
|
**/
|
|
|
|
class EglWaylandTexture : public SceneOpenGL::TexturePrivate
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~EglWaylandTexture();
|
|
|
|
virtual void findTarget();
|
|
|
|
virtual bool loadTexture(const Pixmap& pix, const QSize& size, int depth);
|
|
|
|
virtual OpenGLBackend *backend();
|
|
|
|
virtual bool update(const QRegion &damage);
|
|
|
|
|
|
|
|
private:
|
|
|
|
friend class EglWaylandBackend;
|
|
|
|
EglWaylandTexture(SceneOpenGL::Texture *texture, EglWaylandBackend *backend);
|
|
|
|
SceneOpenGL::Texture *q;
|
|
|
|
EglWaylandBackend *m_backend;
|
|
|
|
/**
|
|
|
|
* The Pixmap of the window content. Get's updated in loadTexture.
|
|
|
|
*/
|
|
|
|
xcb_pixmap_t m_referencedPixmap;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif // KWIN_EGL_ON_X_BACKEND_H
|