2007-11-27 19:40:25 +00:00
|
|
|
/********************************************************************
|
2007-04-29 17:35:43 +00:00
|
|
|
KWin - the KDE window manager
|
|
|
|
This file is part of the KDE project.
|
|
|
|
|
|
|
|
Copyright (C) 2006 Lubos Lunak <l.lunak@kde.org>
|
2011-03-27 10:33:07 +00:00
|
|
|
Copyright (C) 2009, 2010, 2011 Martin Gräßlin <mgraesslin@kde.org>
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
Based on glcompmgr code by Felix Bellaby.
|
|
|
|
Using code from Compiz and Beryl.
|
2007-11-27 19:40:25 +00:00
|
|
|
|
|
|
|
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/>.
|
|
|
|
*********************************************************************/
|
2007-04-29 17:35:43 +00:00
|
|
|
#include "scene_opengl.h"
|
2012-09-29 11:19:35 +00:00
|
|
|
#ifdef KWIN_HAVE_EGL
|
2012-08-26 15:14:23 +00:00
|
|
|
#include "eglonxbackend.h"
|
2013-05-15 11:47:27 +00:00
|
|
|
// for Wayland
|
2014-03-13 15:21:04 +00:00
|
|
|
#if HAVE_WAYLAND_EGL
|
2013-05-15 11:47:27 +00:00
|
|
|
#include "egl_wayland_backend.h"
|
|
|
|
#endif
|
2012-09-29 11:19:35 +00:00
|
|
|
#endif
|
|
|
|
#ifndef KWIN_HAVE_OPENGLES
|
2012-08-26 15:14:23 +00:00
|
|
|
#include "glxbackend.h"
|
|
|
|
#endif
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2012-11-13 20:41:02 +00:00
|
|
|
#include <kwinglcolorcorrection.h>
|
2011-02-19 08:58:44 +00:00
|
|
|
#include <kwinglplatform.h>
|
2010-11-14 19:49:00 +00:00
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
#include "utils.h"
|
|
|
|
#include "client.h"
|
2012-10-05 16:00:49 +00:00
|
|
|
#include "composite.h"
|
2007-04-29 17:35:43 +00:00
|
|
|
#include "deleted.h"
|
|
|
|
#include "effects.h"
|
2012-11-13 20:41:02 +00:00
|
|
|
#include "lanczosfilter.h"
|
2013-06-25 07:53:45 +00:00
|
|
|
#include "main.h"
|
2011-07-06 09:58:23 +00:00
|
|
|
#include "overlaywindow.h"
|
2012-09-28 09:59:42 +00:00
|
|
|
#include "paintredirector.h"
|
2013-04-03 10:19:27 +00:00
|
|
|
#include "screens.h"
|
2013-04-26 09:52:15 +00:00
|
|
|
#include "workspace.h"
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2013-08-05 13:12:08 +00:00
|
|
|
#include <cmath>
|
2013-05-19 14:45:06 +00:00
|
|
|
#include <unistd.h>
|
2012-09-18 20:24:01 +00:00
|
|
|
#include <stddef.h>
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2007-09-25 13:42:20 +00:00
|
|
|
// turns on checks for opengl errors in various places (for easier finding of them)
|
|
|
|
// normally only few of them are enabled
|
|
|
|
//#define CHECK_GL_ERROR
|
|
|
|
|
2008-08-29 19:02:36 +00:00
|
|
|
#include <qpainter.h>
|
2012-10-16 20:41:21 +00:00
|
|
|
#include <QDBusConnection>
|
|
|
|
#include <QDBusConnectionInterface>
|
|
|
|
#include <QDBusInterface>
|
2013-02-26 07:02:27 +00:00
|
|
|
#include <QGraphicsScale>
|
2012-10-16 20:41:21 +00:00
|
|
|
#include <QStringList>
|
2010-11-14 19:49:00 +00:00
|
|
|
#include <QVector2D>
|
|
|
|
#include <QVector4D>
|
2010-12-04 11:31:18 +00:00
|
|
|
#include <QMatrix4x4>
|
2008-08-29 19:02:36 +00:00
|
|
|
|
2014-03-17 15:24:10 +00:00
|
|
|
#include <KLocalizedString>
|
|
|
|
#include <KNotification>
|
2012-10-16 20:41:21 +00:00
|
|
|
#include <KProcess>
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
namespace KWin
|
|
|
|
{
|
|
|
|
|
2010-12-18 16:51:43 +00:00
|
|
|
extern int currentRefreshRate();
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
//****************************************
|
|
|
|
// SceneOpenGL
|
|
|
|
//****************************************
|
2012-08-26 15:14:23 +00:00
|
|
|
OpenGLBackend::OpenGLBackend()
|
2013-06-19 10:26:34 +00:00
|
|
|
: m_syncsToVBlank(false)
|
2013-03-28 20:52:26 +00:00
|
|
|
, m_blocksForRetrace(false)
|
2012-08-26 15:14:23 +00:00
|
|
|
, m_directRendering(false)
|
2013-11-21 09:44:06 +00:00
|
|
|
, m_haveBufferAge(false)
|
2012-08-26 15:14:23 +00:00
|
|
|
, m_failed(false)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
OpenGLBackend::~OpenGLBackend()
|
|
|
|
{
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2012-08-26 15:14:23 +00:00
|
|
|
void OpenGLBackend::setFailed(const QString &reason)
|
|
|
|
{
|
2013-09-02 11:14:39 +00:00
|
|
|
qWarning() << "Creating the OpenGL rendering failed: " << reason;
|
2012-08-26 15:14:23 +00:00
|
|
|
m_failed = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void OpenGLBackend::idle()
|
|
|
|
{
|
Better handling for making the compositing OpenGL context current
With QtQuick2 it's possible that the scene graph rendering context either
lives in an own thread or uses the main GUI thread. In the latter case
it's the same thread as our compositing OpenGL context lives in. This
means our basic assumption that between two rendering passes the context
stays current does not hold.
The code already ensured that before we start a rendering pass the
context is made current, but there are many more possible cases. If we
use OpenGL in areas not triggered by the rendering loop but in response
to other events the context needs to be made current. This includes the
loading and unloading of effects (some effects use OpenGL in the static
effect check, in the ctor and dtor), background loading of texture data,
lazy loading after first usage invoked by shortcut, etc. etc.
To properly handle these cases new methods are added to EffectsHandler
to make the compositing OpenGL context current. These calls delegate down
into the scene. On non-OpenGL scenes they are noop, but on OpenGL they go
into the backend and make the context current. In addition they ensure
that Qt doesn't think that it's QOpenGLContext is current by calling
doneCurrent() on the QOpenGLContext::currentContext(). This unfortunately
causes an additional call to makeCurrent with a null context, but there
is no other way to tell Qt - it doesn't notice when a different context
is made current with low level API calls. In the multi-threaded
architecture this doesn't matter as ::currentContext() returns null.
A short evaluation showed that a transition to QOpenGLContext doesn't
seem feasible. Qt only supports either GLX or EGL while KWin supports
both and when entering the transition phase for Wayland, it would become
extremely tricky if our native platform is X11, but we want a Wayland
EGL context. A future solution might be to have a "KWin-QPA plugin" which
uses either xcb or Wayland and hides everything from Qt.
The API documentation is extended to describe when the effects-framework
ensures that an OpenGL context is current. The effects are changed to
make the context current in cases where it's not guaranteed. This has
been done by looking for creation or deletion of GLTextures and Shaders.
If there are other OpenGL usages outside the rendering loop, ctor/dtor
this needs to be changed, too.
2013-11-22 14:05:36 +00:00
|
|
|
if (hasPendingFlush()) {
|
|
|
|
effects->makeOpenGLContextCurrent();
|
2013-02-18 22:17:46 +00:00
|
|
|
present();
|
Better handling for making the compositing OpenGL context current
With QtQuick2 it's possible that the scene graph rendering context either
lives in an own thread or uses the main GUI thread. In the latter case
it's the same thread as our compositing OpenGL context lives in. This
means our basic assumption that between two rendering passes the context
stays current does not hold.
The code already ensured that before we start a rendering pass the
context is made current, but there are many more possible cases. If we
use OpenGL in areas not triggered by the rendering loop but in response
to other events the context needs to be made current. This includes the
loading and unloading of effects (some effects use OpenGL in the static
effect check, in the ctor and dtor), background loading of texture data,
lazy loading after first usage invoked by shortcut, etc. etc.
To properly handle these cases new methods are added to EffectsHandler
to make the compositing OpenGL context current. These calls delegate down
into the scene. On non-OpenGL scenes they are noop, but on OpenGL they go
into the backend and make the context current. In addition they ensure
that Qt doesn't think that it's QOpenGLContext is current by calling
doneCurrent() on the QOpenGLContext::currentContext(). This unfortunately
causes an additional call to makeCurrent with a null context, but there
is no other way to tell Qt - it doesn't notice when a different context
is made current with low level API calls. In the multi-threaded
architecture this doesn't matter as ::currentContext() returns null.
A short evaluation showed that a transition to QOpenGLContext doesn't
seem feasible. Qt only supports either GLX or EGL while KWin supports
both and when entering the transition phase for Wayland, it would become
extremely tricky if our native platform is X11, but we want a Wayland
EGL context. A future solution might be to have a "KWin-QPA plugin" which
uses either xcb or Wayland and hides everything from Qt.
The API documentation is extended to describe when the effects-framework
ensures that an OpenGL context is current. The effects are changed to
make the context current in cases where it's not guaranteed. This has
been done by looking for creation or deletion of GLTextures and Shaders.
If there are other OpenGL usages outside the rendering loop, ctor/dtor
this needs to be changed, too.
2013-11-22 14:05:36 +00:00
|
|
|
}
|
2012-08-26 15:14:23 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2013-11-21 09:44:06 +00:00
|
|
|
void OpenGLBackend::addToDamageHistory(const QRegion ®ion)
|
|
|
|
{
|
|
|
|
if (m_damageHistory.count() > 10)
|
|
|
|
m_damageHistory.removeLast();
|
|
|
|
|
|
|
|
m_damageHistory.prepend(region);
|
|
|
|
}
|
|
|
|
|
|
|
|
QRegion OpenGLBackend::accumulatedDamageHistory(int bufferAge) const
|
|
|
|
{
|
|
|
|
QRegion region;
|
|
|
|
|
|
|
|
// Note: An age of zero means the buffer contents are undefined
|
|
|
|
if (bufferAge > 0 && bufferAge <= m_damageHistory.count()) {
|
|
|
|
for (int i = 0; i < bufferAge - 1; i++)
|
|
|
|
region |= m_damageHistory[i];
|
|
|
|
} else {
|
|
|
|
region = QRegion(0, 0, displayWidth(), displayHeight());
|
|
|
|
}
|
|
|
|
|
|
|
|
return region;
|
|
|
|
}
|
|
|
|
|
2013-06-19 09:12:57 +00:00
|
|
|
bool OpenGLBackend::isLastFrameRendered() const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-06-19 10:26:34 +00:00
|
|
|
OverlayWindow* OpenGLBackend::overlayWindow()
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-08-26 15:14:23 +00:00
|
|
|
/************************************************
|
|
|
|
* SceneOpenGL
|
|
|
|
***********************************************/
|
|
|
|
|
2012-09-06 15:13:22 +00:00
|
|
|
SceneOpenGL::SceneOpenGL(Workspace* ws, OpenGLBackend *backend)
|
2012-08-26 15:14:23 +00:00
|
|
|
: Scene(ws)
|
2012-11-22 14:08:48 +00:00
|
|
|
, init_ok(true)
|
2012-09-06 15:13:22 +00:00
|
|
|
, m_backend(backend)
|
2012-08-26 15:14:23 +00:00
|
|
|
{
|
|
|
|
if (m_backend->isFailed()) {
|
2012-11-22 14:08:48 +00:00
|
|
|
init_ok = false;
|
2012-08-26 15:14:23 +00:00
|
|
|
return;
|
|
|
|
}
|
2012-10-16 20:41:21 +00:00
|
|
|
if (!viewportLimitsMatched(QSize(displayWidth(), displayHeight())))
|
|
|
|
return;
|
2012-08-26 15:14:23 +00:00
|
|
|
|
|
|
|
// perform Scene specific checks
|
|
|
|
GLPlatform *glPlatform = GLPlatform::instance();
|
2012-09-06 15:13:22 +00:00
|
|
|
#ifndef KWIN_HAVE_OPENGLES
|
2014-02-11 18:35:54 +00:00
|
|
|
if (!hasGLExtension(QByteArrayLiteral("GL_ARB_texture_non_power_of_two"))
|
|
|
|
&& !hasGLExtension(QByteArrayLiteral("GL_ARB_texture_rectangle"))) {
|
2013-09-02 11:14:39 +00:00
|
|
|
qCritical() << "GL_ARB_texture_non_power_of_two and GL_ARB_texture_rectangle missing";
|
2012-11-22 14:08:48 +00:00
|
|
|
init_ok = false;
|
2012-08-26 15:14:23 +00:00
|
|
|
return; // error
|
|
|
|
}
|
2012-09-06 15:13:22 +00:00
|
|
|
#endif
|
2012-10-10 06:04:36 +00:00
|
|
|
if (glPlatform->isMesaDriver() && glPlatform->mesaVersion() < kVersionNumber(8, 0)) {
|
2013-09-02 11:14:39 +00:00
|
|
|
qCritical() << "KWin requires at least Mesa 8.0 for OpenGL compositing.";
|
2012-11-22 14:08:48 +00:00
|
|
|
init_ok = false;
|
2012-08-26 15:14:23 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
#ifndef KWIN_HAVE_OPENGLES
|
2013-03-11 15:27:24 +00:00
|
|
|
glDrawBuffer(GL_BACK);
|
2012-08-26 15:14:23 +00:00
|
|
|
#endif
|
|
|
|
|
2013-03-17 11:58:36 +00:00
|
|
|
m_debug = qstrcmp(qgetenv("KWIN_GL_DEBUG"), "1") == 0;
|
2012-08-26 15:14:23 +00:00
|
|
|
|
|
|
|
// set strict binding
|
|
|
|
if (options->isGlStrictBindingFollowsDriver()) {
|
|
|
|
options->setGlStrictBinding(!glPlatform->supports(LooseBinding));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SceneOpenGL::~SceneOpenGL()
|
|
|
|
{
|
|
|
|
// do cleanup after initBuffer()
|
|
|
|
SceneOpenGL::EffectFrame::cleanup();
|
2012-09-06 15:13:22 +00:00
|
|
|
if (init_ok) {
|
|
|
|
// backend might be still needed for a different scene
|
|
|
|
delete m_backend;
|
|
|
|
}
|
2012-08-26 15:14:23 +00:00
|
|
|
}
|
|
|
|
|
2012-09-06 15:13:22 +00:00
|
|
|
SceneOpenGL *SceneOpenGL::createScene()
|
|
|
|
{
|
|
|
|
OpenGLBackend *backend = NULL;
|
2014-04-22 07:30:08 +00:00
|
|
|
OpenGLPlatformInterface platformInterface = options->glPlatformInterface();
|
2012-09-29 11:19:35 +00:00
|
|
|
|
|
|
|
switch (platformInterface) {
|
|
|
|
case GlxPlatformInterface:
|
|
|
|
#ifndef KWIN_HAVE_OPENGLES
|
|
|
|
backend = new GlxBackend();
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case EglPlatformInterface:
|
|
|
|
#ifdef KWIN_HAVE_EGL
|
2014-03-13 15:21:04 +00:00
|
|
|
#if HAVE_WAYLAND_EGL
|
2013-06-25 07:53:45 +00:00
|
|
|
if (kwinApp()->shouldUseWaylandForCompositing()) {
|
2013-05-15 11:47:27 +00:00
|
|
|
backend = new EglWaylandBackend();
|
|
|
|
} else {
|
|
|
|
backend = new EglOnXBackend();
|
|
|
|
}
|
|
|
|
#else
|
2012-09-29 11:19:35 +00:00
|
|
|
backend = new EglOnXBackend();
|
2013-05-15 11:47:27 +00:00
|
|
|
#endif
|
2012-09-29 11:19:35 +00:00
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// no backend available
|
|
|
|
return NULL;
|
|
|
|
}
|
2012-09-06 15:13:22 +00:00
|
|
|
if (!backend || backend->isFailed()) {
|
|
|
|
delete backend;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
SceneOpenGL *scene = NULL;
|
|
|
|
// first let's try an OpenGL 2 scene
|
|
|
|
if (SceneOpenGL2::supported(backend)) {
|
|
|
|
scene = new SceneOpenGL2(backend);
|
|
|
|
if (scene->initFailed()) {
|
|
|
|
delete scene;
|
|
|
|
scene = NULL;
|
|
|
|
} else {
|
|
|
|
return scene;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!scene) {
|
2012-10-05 16:00:49 +00:00
|
|
|
if (GLPlatform::instance()->recommendedCompositor() == XRenderCompositing) {
|
2013-09-02 11:14:39 +00:00
|
|
|
qCritical() << "OpenGL driver recommends XRender based compositing. Falling back to XRender.";
|
|
|
|
qCritical() << "To overwrite the detection use the environment variable KWIN_COMPOSE";
|
|
|
|
qCritical() << "For more information see http://community.kde.org/KWin/Environment_Variables#KWIN_COMPOSE";
|
2012-10-05 16:00:49 +00:00
|
|
|
QTimer::singleShot(0, Compositor::self(), SLOT(fallbackToXRenderCompositing()));
|
|
|
|
}
|
2012-09-06 15:13:22 +00:00
|
|
|
delete backend;
|
|
|
|
}
|
|
|
|
|
|
|
|
return scene;
|
|
|
|
}
|
|
|
|
|
2012-08-26 15:14:23 +00:00
|
|
|
OverlayWindow *SceneOpenGL::overlayWindow()
|
|
|
|
{
|
|
|
|
return m_backend->overlayWindow();
|
|
|
|
}
|
|
|
|
|
2013-03-28 20:52:26 +00:00
|
|
|
bool SceneOpenGL::syncsToVBlank() const
|
2012-08-26 15:14:23 +00:00
|
|
|
{
|
2013-03-28 20:52:26 +00:00
|
|
|
return m_backend->syncsToVBlank();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SceneOpenGL::blocksForRetrace() const
|
|
|
|
{
|
|
|
|
return m_backend->blocksForRetrace();
|
2012-08-26 15:14:23 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2012-03-29 20:11:28 +00:00
|
|
|
void SceneOpenGL::idle()
|
|
|
|
{
|
2012-08-26 15:14:23 +00:00
|
|
|
m_backend->idle();
|
2012-03-29 20:11:28 +00:00
|
|
|
Scene::idle();
|
|
|
|
}
|
|
|
|
|
2007-05-30 14:22:09 +00:00
|
|
|
bool SceneOpenGL::initFailed() const
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2007-05-30 14:22:09 +00:00
|
|
|
return !init_ok;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-05-30 14:22:09 +00:00
|
|
|
|
2013-03-22 11:17:58 +00:00
|
|
|
#ifndef KWIN_HAVE_OPENGLES
|
|
|
|
void SceneOpenGL::copyPixels(const QRegion ®ion)
|
|
|
|
{
|
|
|
|
foreach (const QRect &r, region.rects()) {
|
2013-03-13 17:38:56 +00:00
|
|
|
const int x0 = r.x();
|
|
|
|
const int y0 = displayHeight() - r.y() - r.height();
|
|
|
|
const int x1 = r.x() + r.width();
|
|
|
|
const int y1 = displayHeight() - r.y();
|
2013-03-22 11:17:58 +00:00
|
|
|
|
2013-03-13 17:38:56 +00:00
|
|
|
glBlitFramebuffer(x0, y0, x1, y1, x0, y0, x1, y1, GL_COLOR_BUFFER_BIT, GL_NEAREST);
|
2013-03-22 11:17:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-05-19 14:45:06 +00:00
|
|
|
#ifndef KWIN_HAVE_OPENGLES
|
|
|
|
# define GL_GUILTY_CONTEXT_RESET_KWIN GL_GUILTY_CONTEXT_RESET_ARB
|
|
|
|
# define GL_INNOCENT_CONTEXT_RESET_KWIN GL_INNOCENT_CONTEXT_RESET_ARB
|
|
|
|
# define GL_UNKNOWN_CONTEXT_RESET_KWIN GL_UNKNOWN_CONTEXT_RESET_ARB
|
|
|
|
#else
|
|
|
|
# define GL_GUILTY_CONTEXT_RESET_KWIN GL_GUILTY_CONTEXT_RESET_EXT
|
|
|
|
# define GL_INNOCENT_CONTEXT_RESET_KWIN GL_INNOCENT_CONTEXT_RESET_EXT
|
|
|
|
# define GL_UNKNOWN_CONTEXT_RESET_KWIN GL_UNKNOWN_CONTEXT_RESET_EXT
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void SceneOpenGL::handleGraphicsReset(GLenum status)
|
|
|
|
{
|
|
|
|
switch (status) {
|
|
|
|
case GL_GUILTY_CONTEXT_RESET_KWIN:
|
2013-09-02 11:14:39 +00:00
|
|
|
qDebug() << "A graphics reset attributable to the current GL context occurred.";
|
2013-05-19 14:45:06 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GL_INNOCENT_CONTEXT_RESET_KWIN:
|
2013-09-02 11:14:39 +00:00
|
|
|
qDebug() << "A graphics reset not attributable to the current GL context occurred.";
|
2013-05-19 14:45:06 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GL_UNKNOWN_CONTEXT_RESET_KWIN:
|
2013-09-02 11:14:39 +00:00
|
|
|
qDebug() << "A graphics reset of an unknown cause occurred.";
|
2013-05-19 14:45:06 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
QElapsedTimer timer;
|
|
|
|
timer.start();
|
|
|
|
|
|
|
|
// Wait until the reset is completed or max 10 seconds
|
|
|
|
while (timer.elapsed() < 10000 && glGetGraphicsResetStatus() != GL_NO_ERROR)
|
|
|
|
usleep(50);
|
|
|
|
|
2013-09-02 11:14:39 +00:00
|
|
|
qDebug() << "Attempting to reset compositing.";
|
2013-05-19 14:45:06 +00:00
|
|
|
QMetaObject::invokeMethod(this, "resetCompositing", Qt::QueuedConnection);
|
|
|
|
|
2013-07-23 05:02:52 +00:00
|
|
|
KNotification::event(QStringLiteral("graphicsreset"), i18n("Desktop effects were restarted due to a graphics reset"));
|
2013-05-19 14:45:06 +00:00
|
|
|
}
|
|
|
|
|
2013-03-28 20:53:25 +00:00
|
|
|
qint64 SceneOpenGL::paint(QRegion damage, ToplevelList toplevels)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2012-08-26 15:14:23 +00:00
|
|
|
// actually paint the frame, flushed with the NEXT frame
|
2013-06-24 07:53:11 +00:00
|
|
|
createStackingOrder(toplevels);
|
2012-08-26 15:14:23 +00:00
|
|
|
|
Better handling for making the compositing OpenGL context current
With QtQuick2 it's possible that the scene graph rendering context either
lives in an own thread or uses the main GUI thread. In the latter case
it's the same thread as our compositing OpenGL context lives in. This
means our basic assumption that between two rendering passes the context
stays current does not hold.
The code already ensured that before we start a rendering pass the
context is made current, but there are many more possible cases. If we
use OpenGL in areas not triggered by the rendering loop but in response
to other events the context needs to be made current. This includes the
loading and unloading of effects (some effects use OpenGL in the static
effect check, in the ctor and dtor), background loading of texture data,
lazy loading after first usage invoked by shortcut, etc. etc.
To properly handle these cases new methods are added to EffectsHandler
to make the compositing OpenGL context current. These calls delegate down
into the scene. On non-OpenGL scenes they are noop, but on OpenGL they go
into the backend and make the context current. In addition they ensure
that Qt doesn't think that it's QOpenGLContext is current by calling
doneCurrent() on the QOpenGLContext::currentContext(). This unfortunately
causes an additional call to makeCurrent with a null context, but there
is no other way to tell Qt - it doesn't notice when a different context
is made current with low level API calls. In the multi-threaded
architecture this doesn't matter as ::currentContext() returns null.
A short evaluation showed that a transition to QOpenGLContext doesn't
seem feasible. Qt only supports either GLX or EGL while KWin supports
both and when entering the transition phase for Wayland, it would become
extremely tricky if our native platform is X11, but we want a Wayland
EGL context. A future solution might be to have a "KWin-QPA plugin" which
uses either xcb or Wayland and hides everything from Qt.
The API documentation is extended to describe when the effects-framework
ensures that an OpenGL context is current. The effects are changed to
make the context current in cases where it's not guaranteed. This has
been done by looking for creation or deletion of GLTextures and Shaders.
If there are other OpenGL usages outside the rendering loop, ctor/dtor
this needs to be changed, too.
2013-11-22 14:05:36 +00:00
|
|
|
m_backend->makeCurrent();
|
2013-11-21 09:44:06 +00:00
|
|
|
QRegion repaint = m_backend->prepareRenderingFrame();
|
2013-05-19 14:45:06 +00:00
|
|
|
|
|
|
|
const GLenum status = glGetGraphicsResetStatus();
|
|
|
|
if (status != GL_NO_ERROR) {
|
|
|
|
handleGraphicsReset(status);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-08-26 15:14:23 +00:00
|
|
|
int mask = 0;
|
|
|
|
#ifdef CHECK_GL_ERROR
|
|
|
|
checkGLError("Paint1");
|
|
|
|
#endif
|
2013-02-18 22:17:46 +00:00
|
|
|
|
2013-11-21 09:44:06 +00:00
|
|
|
// After this call, updateRegion will contain the damaged region in the
|
|
|
|
// back buffer. This is the region that needs to be posted to repair
|
|
|
|
// the front buffer. It doesn't include the additional damage returned
|
|
|
|
// by prepareRenderingFrame(). validRegion is the region that has been
|
|
|
|
// repainted, and may be larger than updateRegion.
|
|
|
|
QRegion updateRegion, validRegion;
|
|
|
|
paintScreen(&mask, damage, repaint, &updateRegion, &validRegion); // call generic implementation
|
2013-11-23 14:08:17 +00:00
|
|
|
|
2013-02-18 22:17:46 +00:00
|
|
|
#ifndef KWIN_HAVE_OPENGLES
|
2013-03-22 11:17:58 +00:00
|
|
|
const QRegion displayRegion(0, 0, displayWidth(), displayHeight());
|
2013-11-23 14:08:17 +00:00
|
|
|
|
2013-02-18 22:17:46 +00:00
|
|
|
// copy dirty parts from front to backbuffer
|
2013-11-21 09:44:06 +00:00
|
|
|
if (!m_backend->supportsBufferAge() &&
|
|
|
|
options->glPreferBufferSwap() == Options::CopyFrontBuffer &&
|
|
|
|
validRegion != displayRegion) {
|
2013-02-18 22:17:46 +00:00
|
|
|
glReadBuffer(GL_FRONT);
|
2013-11-23 14:08:17 +00:00
|
|
|
copyPixels(displayRegion - validRegion);
|
2013-02-18 22:17:46 +00:00
|
|
|
glReadBuffer(GL_BACK);
|
2014-02-05 23:16:06 +00:00
|
|
|
validRegion = displayRegion;
|
2013-02-18 22:17:46 +00:00
|
|
|
}
|
|
|
|
#endif
|
2013-11-21 09:44:06 +00:00
|
|
|
|
2012-08-26 15:14:23 +00:00
|
|
|
#ifdef CHECK_GL_ERROR
|
|
|
|
checkGLError("Paint2");
|
|
|
|
#endif
|
|
|
|
|
2013-11-21 09:44:06 +00:00
|
|
|
m_backend->endRenderingFrame(validRegion, updateRegion);
|
2012-08-26 15:14:23 +00:00
|
|
|
|
|
|
|
// do cleanup
|
2013-06-24 07:53:11 +00:00
|
|
|
clearStackingOrder();
|
2012-08-26 15:14:23 +00:00
|
|
|
checkGLError("PostPaint");
|
|
|
|
return m_backend->renderTime();
|
|
|
|
}
|
|
|
|
|
2011-02-17 17:37:43 +00:00
|
|
|
QMatrix4x4 SceneOpenGL::transformation(int mask, const ScreenPaintData &data) const
|
|
|
|
{
|
|
|
|
QMatrix4x4 matrix;
|
|
|
|
|
|
|
|
if (!(mask & PAINT_SCREEN_TRANSFORMED))
|
|
|
|
return matrix;
|
|
|
|
|
2012-05-28 12:45:46 +00:00
|
|
|
matrix.translate(data.translation());
|
2012-05-28 10:00:31 +00:00
|
|
|
data.scale().applyTo(&matrix);
|
2011-02-17 17:37:43 +00:00
|
|
|
|
2012-06-02 19:54:18 +00:00
|
|
|
if (data.rotationAngle() == 0.0)
|
2011-02-17 17:37:43 +00:00
|
|
|
return matrix;
|
|
|
|
|
|
|
|
// Apply the rotation
|
2012-05-27 17:28:02 +00:00
|
|
|
// cannot use data.rotation->applyTo(&matrix) as QGraphicsRotation uses projectedRotate to map back to 2D
|
2012-06-02 19:54:18 +00:00
|
|
|
matrix.translate(data.rotationOrigin());
|
|
|
|
const QVector3D axis = data.rotationAxis();
|
|
|
|
matrix.rotate(data.rotationAngle(), axis.x(), axis.y(), axis.z());
|
|
|
|
matrix.translate(-data.rotationOrigin());
|
2011-02-17 17:37:43 +00:00
|
|
|
|
|
|
|
return matrix;
|
|
|
|
}
|
|
|
|
|
2011-01-02 08:46:30 +00:00
|
|
|
void SceneOpenGL::paintBackground(QRegion region)
|
|
|
|
{
|
|
|
|
PaintClipper pc(region);
|
|
|
|
if (!PaintClipper::clip()) {
|
|
|
|
glClearColor(0, 0, 0, 1);
|
|
|
|
glClear(GL_COLOR_BUFFER_BIT);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (pc.clip() && pc.paintArea().isEmpty())
|
|
|
|
return; // no background to paint
|
|
|
|
QVector<float> verts;
|
|
|
|
for (PaintClipper::Iterator iterator; !iterator.isDone(); iterator.next()) {
|
|
|
|
QRect r = iterator.boundingRect();
|
|
|
|
verts << r.x() + r.width() << r.y();
|
|
|
|
verts << r.x() << r.y();
|
|
|
|
verts << r.x() << r.y() + r.height();
|
|
|
|
verts << r.x() << r.y() + r.height();
|
|
|
|
verts << r.x() + r.width() << r.y() + r.height();
|
|
|
|
verts << r.x() + r.width() << r.y();
|
|
|
|
}
|
2012-09-06 15:13:22 +00:00
|
|
|
doPaintBackground(verts);
|
2011-01-02 08:46:30 +00:00
|
|
|
}
|
|
|
|
|
2013-02-18 22:17:46 +00:00
|
|
|
void SceneOpenGL::extendPaintRegion(QRegion ®ion, bool opaqueFullscreen)
|
|
|
|
{
|
2013-11-21 09:44:06 +00:00
|
|
|
if (m_backend->supportsBufferAge())
|
|
|
|
return;
|
|
|
|
|
2013-02-18 22:17:46 +00:00
|
|
|
if (options->glPreferBufferSwap() == Options::ExtendDamage) { // only Extend "large" repaints
|
|
|
|
const QRegion displayRegion(0, 0, displayWidth(), displayHeight());
|
|
|
|
uint damagedPixels = 0;
|
|
|
|
const uint fullRepaintLimit = (opaqueFullscreen?0.49f:0.748f)*displayWidth()*displayHeight();
|
|
|
|
// 16:9 is 75% of 4:3 and 2.55:1 is 49.01% of 5:4
|
|
|
|
// (5:4 is the most square format and 2.55:1 is Cinemascope55 - the widest ever shot
|
|
|
|
// movie aspect - two times ;-) It's a Fox format, though, so maybe we want to restrict
|
|
|
|
// to 2.20:1 - Panavision - which has actually been used for interesting movies ...)
|
|
|
|
// would be 57% of 5/4
|
|
|
|
foreach (const QRect &r, region.rects()) {
|
|
|
|
// damagedPixels += r.width() * r.height(); // combined window damage test
|
|
|
|
damagedPixels = r.width() * r.height(); // experimental single window damage testing
|
|
|
|
if (damagedPixels > fullRepaintLimit) {
|
|
|
|
region = displayRegion;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (options->glPreferBufferSwap() == Options::PaintFullScreen) { // forced full rePaint
|
|
|
|
region = QRegion(0, 0, displayWidth(), displayHeight());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-26 15:14:23 +00:00
|
|
|
SceneOpenGL::Texture *SceneOpenGL::createTexture()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2012-08-26 15:14:23 +00:00
|
|
|
return new Texture(m_backend);
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2012-08-26 15:14:23 +00:00
|
|
|
SceneOpenGL::Texture *SceneOpenGL::createTexture(const QPixmap &pix, GLenum target)
|
2011-07-18 15:55:39 +00:00
|
|
|
{
|
2012-08-26 15:14:23 +00:00
|
|
|
return new Texture(m_backend, pix, target);
|
2011-07-18 15:55:39 +00:00
|
|
|
}
|
|
|
|
|
2012-10-16 20:41:21 +00:00
|
|
|
bool SceneOpenGL::viewportLimitsMatched(const QSize &size) const {
|
|
|
|
GLint limit[2];
|
|
|
|
glGetIntegerv(GL_MAX_VIEWPORT_DIMS, limit);
|
|
|
|
if (limit[0] < size.width() || limit[1] < size.height()) {
|
|
|
|
QMetaObject::invokeMethod(Compositor::self(), "suspend",
|
|
|
|
Qt::QueuedConnection, Q_ARG(Compositor::SuspendReason, Compositor::AllReasonSuspend));
|
|
|
|
const QString message = i18n("<h1>OpenGL desktop effects not possible</h1>"
|
|
|
|
"Your system cannot perform OpenGL Desktop Effects at the "
|
|
|
|
"current resolution<br><br>"
|
2013-01-24 05:32:54 +00:00
|
|
|
"You can try to select the XRender backend, but it "
|
2012-10-16 20:41:21 +00:00
|
|
|
"might be very slow for this resolution as well.<br>"
|
|
|
|
"Alternatively, lower the combined resolution of all screens "
|
|
|
|
"to %1x%2 ", limit[0], limit[1]);
|
|
|
|
const QString details = i18n("The demanded resolution exceeds the GL_MAX_VIEWPORT_DIMS "
|
|
|
|
"limitation of your GPU and is therefore not compatible "
|
|
|
|
"with the OpenGL compositor.<br>"
|
|
|
|
"XRender does not know such limitation, but the performance "
|
2013-01-24 05:32:54 +00:00
|
|
|
"will usually be impacted by the hardware limitations that "
|
2012-10-16 20:41:21 +00:00
|
|
|
"restrict the OpenGL viewport size.");
|
|
|
|
const int oldTimeout = QDBusConnection::sessionBus().interface()->timeout();
|
|
|
|
QDBusConnection::sessionBus().interface()->setTimeout(500);
|
2013-07-23 05:02:52 +00:00
|
|
|
if (QDBusConnection::sessionBus().interface()->isServiceRegistered(QStringLiteral("org.kde.kwinCompositingDialog")).value()) {
|
|
|
|
QDBusInterface dialog( QStringLiteral("org.kde.kwinCompositingDialog"), QStringLiteral("/CompositorSettings"), QStringLiteral("org.kde.kwinCompositingDialog") );
|
|
|
|
dialog.asyncCall(QStringLiteral("warn"), message, details, QString());
|
2012-10-16 20:41:21 +00:00
|
|
|
} else {
|
2013-07-23 05:02:52 +00:00
|
|
|
const QString args = QStringLiteral("warn ") + QString::fromUtf8(message.toLocal8Bit().toBase64()) + QStringLiteral(" details ") + QString::fromUtf8(details.toLocal8Bit().toBase64());
|
2014-05-02 15:24:47 +00:00
|
|
|
KProcess::startDetached(QStringLiteral("kcmshell5"), QStringList() << QStringLiteral("kwincompositing") << QStringLiteral("--args") << args);
|
2012-10-16 20:41:21 +00:00
|
|
|
}
|
|
|
|
QDBusConnection::sessionBus().interface()->setTimeout(oldTimeout);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
glGetIntegerv(GL_MAX_TEXTURE_SIZE, limit);
|
|
|
|
if (limit[0] < size.width() || limit[0] < size.height()) {
|
2013-07-23 05:02:52 +00:00
|
|
|
KConfig cfg(QStringLiteral("kwin_dialogsrc"));
|
2012-10-16 20:41:21 +00:00
|
|
|
|
|
|
|
if (!KConfigGroup(&cfg, "Notification Messages").readEntry("max_tex_warning", true))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
const QString message = i18n("<h1>OpenGL desktop effects might be unusable</h1>"
|
|
|
|
"OpenGL Desktop Effects at the current resolution are supported "
|
|
|
|
"but might be exceptionally slow.<br>"
|
|
|
|
"Also large windows will turn entirely black.<br><br>"
|
|
|
|
"Consider to suspend compositing, switch to the XRender backend "
|
|
|
|
"or lower the resolution to %1x%1." , limit[0]);
|
|
|
|
const QString details = i18n("The demanded resolution exceeds the GL_MAX_TEXTURE_SIZE "
|
|
|
|
"limitation of your GPU, thus windows of that size cannot be "
|
|
|
|
"assigned to textures and will be entirely black.<br>"
|
|
|
|
"Also this limit will often be a performance level barrier despite "
|
|
|
|
"below GL_MAX_VIEWPORT_DIMS, because the driver might fall back to "
|
|
|
|
"software rendering in this case.");
|
|
|
|
const int oldTimeout = QDBusConnection::sessionBus().interface()->timeout();
|
|
|
|
QDBusConnection::sessionBus().interface()->setTimeout(500);
|
2013-07-23 05:02:52 +00:00
|
|
|
if (QDBusConnection::sessionBus().interface()->isServiceRegistered(QStringLiteral("org.kde.kwinCompositingDialog")).value()) {
|
|
|
|
QDBusInterface dialog( QStringLiteral("org.kde.kwinCompositingDialog"), QStringLiteral("/CompositorSettings"), QStringLiteral("org.kde.kwinCompositingDialog") );
|
|
|
|
dialog.asyncCall(QStringLiteral("warn"), message, details, QStringLiteral("kwin_dialogsrc:max_tex_warning"));
|
2012-10-16 20:41:21 +00:00
|
|
|
} else {
|
2013-07-23 05:02:52 +00:00
|
|
|
const QString args = QStringLiteral("warn ") + QString::fromUtf8(message.toLocal8Bit().toBase64()) + QStringLiteral(" details ") +
|
|
|
|
QString::fromUtf8(details.toLocal8Bit().toBase64()) + QStringLiteral(" dontagain kwin_dialogsrc:max_tex_warning");
|
2014-05-02 15:24:47 +00:00
|
|
|
KProcess::startDetached(QStringLiteral("kcmshell5"), QStringList() << QStringLiteral("kwincompositing") << QStringLiteral("--args") << args);
|
2012-10-16 20:41:21 +00:00
|
|
|
}
|
|
|
|
QDBusConnection::sessionBus().interface()->setTimeout(oldTimeout);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-08-26 15:14:23 +00:00
|
|
|
void SceneOpenGL::screenGeometryChanged(const QSize &size)
|
2011-07-18 15:55:39 +00:00
|
|
|
{
|
2012-10-16 20:41:21 +00:00
|
|
|
if (!viewportLimitsMatched(size))
|
|
|
|
return;
|
2012-08-26 15:14:23 +00:00
|
|
|
Scene::screenGeometryChanged(size);
|
|
|
|
glViewport(0,0, size.width(), size.height());
|
|
|
|
m_backend->screenGeometryChanged(size);
|
|
|
|
ShaderManager::instance()->resetAllShaders();
|
2012-09-06 15:13:22 +00:00
|
|
|
}
|
|
|
|
|
2012-03-29 18:17:57 +00:00
|
|
|
void SceneOpenGL::paintDesktop(int desktop, int mask, const QRegion ®ion, ScreenPaintData &data)
|
|
|
|
{
|
|
|
|
const QRect r = region.boundingRect();
|
|
|
|
glEnable(GL_SCISSOR_TEST);
|
|
|
|
glScissor(r.x(), displayHeight() - r.y() - r.height(), r.width(), r.height());
|
|
|
|
KWin::Scene::paintDesktop(desktop, mask, region, data);
|
|
|
|
glDisable(GL_SCISSOR_TEST);
|
|
|
|
}
|
|
|
|
|
Better handling for making the compositing OpenGL context current
With QtQuick2 it's possible that the scene graph rendering context either
lives in an own thread or uses the main GUI thread. In the latter case
it's the same thread as our compositing OpenGL context lives in. This
means our basic assumption that between two rendering passes the context
stays current does not hold.
The code already ensured that before we start a rendering pass the
context is made current, but there are many more possible cases. If we
use OpenGL in areas not triggered by the rendering loop but in response
to other events the context needs to be made current. This includes the
loading and unloading of effects (some effects use OpenGL in the static
effect check, in the ctor and dtor), background loading of texture data,
lazy loading after first usage invoked by shortcut, etc. etc.
To properly handle these cases new methods are added to EffectsHandler
to make the compositing OpenGL context current. These calls delegate down
into the scene. On non-OpenGL scenes they are noop, but on OpenGL they go
into the backend and make the context current. In addition they ensure
that Qt doesn't think that it's QOpenGLContext is current by calling
doneCurrent() on the QOpenGLContext::currentContext(). This unfortunately
causes an additional call to makeCurrent with a null context, but there
is no other way to tell Qt - it doesn't notice when a different context
is made current with low level API calls. In the multi-threaded
architecture this doesn't matter as ::currentContext() returns null.
A short evaluation showed that a transition to QOpenGLContext doesn't
seem feasible. Qt only supports either GLX or EGL while KWin supports
both and when entering the transition phase for Wayland, it would become
extremely tricky if our native platform is X11, but we want a Wayland
EGL context. A future solution might be to have a "KWin-QPA plugin" which
uses either xcb or Wayland and hides everything from Qt.
The API documentation is extended to describe when the effects-framework
ensures that an OpenGL context is current. The effects are changed to
make the context current in cases where it's not guaranteed. This has
been done by looking for creation or deletion of GLTextures and Shaders.
If there are other OpenGL usages outside the rendering loop, ctor/dtor
this needs to be changed, too.
2013-11-22 14:05:36 +00:00
|
|
|
bool SceneOpenGL::makeOpenGLContextCurrent()
|
|
|
|
{
|
|
|
|
return m_backend->makeCurrent();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SceneOpenGL::doneOpenGLContextCurrent()
|
|
|
|
{
|
|
|
|
m_backend->doneCurrent();
|
|
|
|
}
|
|
|
|
|
2013-06-24 06:49:24 +00:00
|
|
|
Scene::EffectFrame *SceneOpenGL::createEffectFrame(EffectFrameImpl *frame)
|
|
|
|
{
|
|
|
|
return new SceneOpenGL::EffectFrame(frame, this);
|
|
|
|
}
|
|
|
|
|
2013-06-24 07:06:50 +00:00
|
|
|
Shadow *SceneOpenGL::createShadow(Toplevel *toplevel)
|
|
|
|
{
|
|
|
|
return new SceneOpenGLShadow(toplevel);
|
|
|
|
}
|
|
|
|
|
2012-09-06 15:13:22 +00:00
|
|
|
//****************************************
|
|
|
|
// SceneOpenGL2
|
|
|
|
//****************************************
|
|
|
|
bool SceneOpenGL2::supported(OpenGLBackend *backend)
|
|
|
|
{
|
2012-10-05 16:00:49 +00:00
|
|
|
const QByteArray forceEnv = qgetenv("KWIN_COMPOSE");
|
|
|
|
if (!forceEnv.isEmpty()) {
|
|
|
|
if (qstrcmp(forceEnv, "O2") == 0) {
|
2013-09-02 11:14:39 +00:00
|
|
|
qDebug() << "OpenGL 2 compositing enforced by environment variable";
|
2012-10-05 16:00:49 +00:00
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
// OpenGL 2 disabled by environment variable
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2012-09-06 15:13:22 +00:00
|
|
|
if (!backend->isDirectRendering()) {
|
|
|
|
return false;
|
|
|
|
}
|
2012-10-05 16:00:49 +00:00
|
|
|
if (GLPlatform::instance()->recommendedCompositor() < OpenGL2Compositing) {
|
2013-09-02 11:14:39 +00:00
|
|
|
qDebug() << "Driver does not recommend OpenGL 2 compositing";
|
2012-12-20 20:44:10 +00:00
|
|
|
#ifndef KWIN_HAVE_OPENGLES
|
2012-09-06 15:13:22 +00:00
|
|
|
return false;
|
2012-12-20 20:44:10 +00:00
|
|
|
#endif
|
2012-09-06 15:13:22 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
SceneOpenGL2::SceneOpenGL2(OpenGLBackend *backend)
|
|
|
|
: SceneOpenGL(Workspace::self(), backend)
|
2013-02-08 11:12:51 +00:00
|
|
|
, m_lanczosFilter(NULL)
|
2013-09-04 12:42:45 +00:00
|
|
|
, m_colorCorrection()
|
2012-09-06 15:13:22 +00:00
|
|
|
{
|
2012-11-22 14:08:48 +00:00
|
|
|
if (!init_ok) {
|
|
|
|
// base ctor already failed
|
|
|
|
return;
|
|
|
|
}
|
2012-11-13 20:41:02 +00:00
|
|
|
// Initialize color correction before the shaders
|
2013-09-04 12:42:45 +00:00
|
|
|
slotColorCorrectedChanged(false);
|
2012-12-16 08:30:50 +00:00
|
|
|
connect(options, SIGNAL(colorCorrectedChanged()), this, SLOT(slotColorCorrectedChanged()), Qt::QueuedConnection);
|
2012-11-13 20:41:02 +00:00
|
|
|
|
2012-09-06 15:13:22 +00:00
|
|
|
if (!ShaderManager::instance()->isValid()) {
|
2013-09-02 11:14:39 +00:00
|
|
|
qDebug() << "No Scene Shaders available";
|
2012-11-22 14:08:48 +00:00
|
|
|
init_ok = false;
|
2012-09-06 15:13:22 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// push one shader on the stack so that one is always bound
|
|
|
|
ShaderManager::instance()->pushShader(ShaderManager::SimpleShader);
|
|
|
|
if (checkGLError("Init")) {
|
2013-09-02 11:14:39 +00:00
|
|
|
qCritical() << "OpenGL 2 compositing setup failed";
|
2012-11-22 14:08:48 +00:00
|
|
|
init_ok = false;
|
2012-09-06 15:13:22 +00:00
|
|
|
return; // error
|
|
|
|
}
|
2013-03-13 16:03:30 +00:00
|
|
|
|
2013-09-02 11:14:39 +00:00
|
|
|
qDebug() << "OpenGL 2 compositing successfully initialized";
|
2013-03-13 16:03:30 +00:00
|
|
|
|
|
|
|
#ifndef KWIN_HAVE_OPENGLES
|
|
|
|
// It is not legal to not have a vertex array object bound in a core context
|
2014-02-11 18:35:54 +00:00
|
|
|
if (hasGLExtension(QByteArrayLiteral("GL_ARB_vertex_array_object"))) {
|
2013-03-13 16:03:30 +00:00
|
|
|
glGenVertexArrays(1, &vao);
|
|
|
|
glBindVertexArray(vao);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
init_ok = true;
|
2012-09-06 15:13:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SceneOpenGL2::~SceneOpenGL2()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void SceneOpenGL2::paintGenericScreen(int mask, ScreenPaintData data)
|
|
|
|
{
|
2012-09-21 09:25:08 +00:00
|
|
|
ShaderBinder binder(ShaderManager::GenericShader);
|
2012-09-06 15:13:22 +00:00
|
|
|
|
2012-09-21 09:25:08 +00:00
|
|
|
binder.shader()->setUniform(GLShader::ScreenTransformation, transformation(mask, data));
|
2012-09-06 15:13:22 +00:00
|
|
|
|
|
|
|
Scene::paintGenericScreen(mask, data);
|
|
|
|
}
|
|
|
|
|
2012-03-29 18:17:57 +00:00
|
|
|
void SceneOpenGL2::paintDesktop(int desktop, int mask, const QRegion ®ion, ScreenPaintData &data)
|
|
|
|
{
|
|
|
|
ShaderBinder binder(ShaderManager::GenericShader);
|
|
|
|
GLShader *shader = binder.shader();
|
|
|
|
QMatrix4x4 screenTransformation = shader->getUniformMatrix4x4("screenTransformation");
|
|
|
|
|
|
|
|
KWin::SceneOpenGL::paintDesktop(desktop, mask, region, data);
|
|
|
|
|
|
|
|
shader->setUniform(GLShader::ScreenTransformation, screenTransformation);
|
|
|
|
}
|
|
|
|
|
2012-09-06 15:13:22 +00:00
|
|
|
void SceneOpenGL2::doPaintBackground(const QVector< float >& vertices)
|
|
|
|
{
|
|
|
|
GLVertexBuffer *vbo = GLVertexBuffer::streamingBuffer();
|
|
|
|
vbo->reset();
|
|
|
|
vbo->setUseColor(true);
|
|
|
|
vbo->setData(vertices.count() / 2, 2, vertices.data(), NULL);
|
|
|
|
|
2012-09-21 09:25:08 +00:00
|
|
|
ShaderBinder binder(ShaderManager::ColorShader);
|
|
|
|
binder.shader()->setUniform(GLShader::Offset, QVector2D(0, 0));
|
2012-09-06 15:13:22 +00:00
|
|
|
|
|
|
|
vbo->render(GL_TRIANGLES);
|
|
|
|
}
|
|
|
|
|
2013-06-24 07:53:11 +00:00
|
|
|
Scene::Window *SceneOpenGL2::createWindow(Toplevel *t)
|
2012-09-06 15:13:22 +00:00
|
|
|
{
|
2013-06-24 07:53:11 +00:00
|
|
|
SceneOpenGL2Window *w = new SceneOpenGL2Window(t);
|
|
|
|
w->setScene(this);
|
|
|
|
return w;
|
2012-09-06 15:13:22 +00:00
|
|
|
}
|
|
|
|
|
2012-11-13 20:41:02 +00:00
|
|
|
void SceneOpenGL2::finalDrawWindow(EffectWindowImpl* w, int mask, QRegion region, WindowPaintData& data)
|
|
|
|
{
|
2013-09-04 12:42:45 +00:00
|
|
|
if (!m_colorCorrection.isNull() && m_colorCorrection->isEnabled()) {
|
2012-11-13 20:41:02 +00:00
|
|
|
// Split the painting for separate screens
|
2013-04-03 10:19:27 +00:00
|
|
|
const int numScreens = screens()->count();
|
2012-11-13 20:41:02 +00:00
|
|
|
for (int screen = 0; screen < numScreens; ++ screen) {
|
|
|
|
QRegion regionForScreen(region);
|
|
|
|
if (numScreens > 1)
|
2013-04-03 10:19:27 +00:00
|
|
|
regionForScreen = region.intersected(screens()->geometry(screen));
|
2012-11-13 20:41:02 +00:00
|
|
|
|
|
|
|
data.setScreen(screen);
|
|
|
|
performPaintWindow(w, mask, regionForScreen, data);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
performPaintWindow(w, mask, region, data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SceneOpenGL2::performPaintWindow(EffectWindowImpl* w, int mask, QRegion region, WindowPaintData& data)
|
|
|
|
{
|
|
|
|
if (mask & PAINT_WINDOW_LANCZOS) {
|
2013-02-08 11:12:51 +00:00
|
|
|
if (!m_lanczosFilter) {
|
2012-11-13 20:41:02 +00:00
|
|
|
m_lanczosFilter = new LanczosFilter(this);
|
|
|
|
// recreate the lanczos filter when the screen gets resized
|
2013-04-03 10:19:27 +00:00
|
|
|
connect(screens(), SIGNAL(changed()), SLOT(resetLanczosFilter()));
|
2012-11-13 20:41:02 +00:00
|
|
|
}
|
2013-02-08 11:12:51 +00:00
|
|
|
m_lanczosFilter->performPaint(w, mask, region, data);
|
2012-11-13 20:41:02 +00:00
|
|
|
} else
|
|
|
|
w->sceneWindow()->performPaint(mask, region, data);
|
|
|
|
}
|
|
|
|
|
2013-02-08 11:12:51 +00:00
|
|
|
void SceneOpenGL2::resetLanczosFilter()
|
|
|
|
{
|
|
|
|
// TODO: Qt5 - replace by a lambda slot
|
|
|
|
delete m_lanczosFilter;
|
|
|
|
m_lanczosFilter = NULL;
|
|
|
|
}
|
|
|
|
|
2012-11-13 20:41:02 +00:00
|
|
|
ColorCorrection *SceneOpenGL2::colorCorrection()
|
|
|
|
{
|
2013-09-04 12:42:45 +00:00
|
|
|
return m_colorCorrection.data();
|
2012-11-13 20:41:02 +00:00
|
|
|
}
|
|
|
|
|
2013-09-04 12:42:45 +00:00
|
|
|
void SceneOpenGL2::slotColorCorrectedChanged(bool recreateShaders)
|
2012-11-13 20:41:02 +00:00
|
|
|
{
|
2013-09-24 09:28:38 +00:00
|
|
|
qDebug() << "Color correction:" << options->isColorCorrected();
|
2013-09-04 12:42:45 +00:00
|
|
|
if (options->isColorCorrected() && m_colorCorrection.isNull()) {
|
|
|
|
m_colorCorrection.reset(new ColorCorrection(this));
|
|
|
|
if (!m_colorCorrection->setEnabled(true)) {
|
|
|
|
m_colorCorrection.reset();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
connect(m_colorCorrection.data(), SIGNAL(changed()), Compositor::self(), SLOT(addRepaintFull()));
|
|
|
|
connect(m_colorCorrection.data(), SIGNAL(errorOccured()), options, SLOT(setColorCorrected()), Qt::QueuedConnection);
|
|
|
|
if (recreateShaders) {
|
|
|
|
// Reload all shaders
|
|
|
|
ShaderManager::cleanup();
|
|
|
|
ShaderManager::instance();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
m_colorCorrection.reset();
|
|
|
|
}
|
|
|
|
Compositor::self()->addRepaintFull();
|
2012-11-13 20:41:02 +00:00
|
|
|
}
|
|
|
|
|
2012-08-26 15:14:23 +00:00
|
|
|
//****************************************
|
|
|
|
// SceneOpenGL::Texture
|
|
|
|
//****************************************
|
|
|
|
|
|
|
|
SceneOpenGL::Texture::Texture(OpenGLBackend *backend)
|
|
|
|
: GLTexture(*backend->createBackendTexture(this))
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2012-08-26 15:14:23 +00:00
|
|
|
SceneOpenGL::Texture::Texture(OpenGLBackend *backend, const QPixmap &pix, GLenum target)
|
|
|
|
: GLTexture(*backend->createBackendTexture(this))
|
2011-05-12 16:52:38 +00:00
|
|
|
{
|
|
|
|
load(pix, target);
|
|
|
|
}
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
SceneOpenGL::Texture::~Texture()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-07-18 15:55:39 +00:00
|
|
|
SceneOpenGL::Texture& SceneOpenGL::Texture::operator = (const SceneOpenGL::Texture& tex)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2011-07-18 15:55:39 +00:00
|
|
|
d_ptr = tex.d_ptr;
|
|
|
|
return *this;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
void SceneOpenGL::Texture::discard()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2012-08-26 15:14:23 +00:00
|
|
|
d_ptr = d_func()->backend()->createBackendTexture(this);
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
bool SceneOpenGL::Texture::load(const Pixmap& pix, const QSize& size,
|
|
|
|
int depth)
|
|
|
|
{
|
2011-03-10 09:50:42 +00:00
|
|
|
if (pix == None)
|
|
|
|
return false;
|
2011-01-30 14:34:42 +00:00
|
|
|
return load(pix, size, depth,
|
|
|
|
QRegion(0, 0, size.width(), size.height()));
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
bool SceneOpenGL::Texture::load(const QImage& image, GLenum target)
|
|
|
|
{
|
|
|
|
if (image.isNull())
|
2007-04-29 17:35:43 +00:00
|
|
|
return false;
|
2011-01-30 14:34:42 +00:00
|
|
|
return load(QPixmap::fromImage(image), target);
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
bool SceneOpenGL::Texture::load(const QPixmap& pixmap, GLenum target)
|
|
|
|
{
|
|
|
|
if (pixmap.isNull())
|
2007-04-29 17:35:43 +00:00
|
|
|
return false;
|
2011-05-12 16:52:38 +00:00
|
|
|
|
2013-07-22 13:51:56 +00:00
|
|
|
return GLTexture::load(pixmap.toImage(), target);
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2012-08-26 15:14:23 +00:00
|
|
|
void SceneOpenGL::Texture::findTarget()
|
|
|
|
{
|
|
|
|
Q_D(Texture);
|
|
|
|
d->findTarget();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SceneOpenGL::Texture::load(const Pixmap& pix, const QSize& size,
|
|
|
|
int depth, QRegion region)
|
|
|
|
{
|
|
|
|
Q_UNUSED(region)
|
|
|
|
// decrease the reference counter for the old texture
|
|
|
|
d_ptr = d_func()->backend()->createBackendTexture(this); //new TexturePrivate();
|
|
|
|
|
|
|
|
Q_D(Texture);
|
|
|
|
return d->loadTexture(pix, size, depth);
|
|
|
|
}
|
|
|
|
|
2013-05-15 11:47:27 +00:00
|
|
|
bool SceneOpenGL::Texture::update(const QRegion &damage)
|
|
|
|
{
|
|
|
|
Q_D(Texture);
|
|
|
|
return d->update(damage);
|
|
|
|
}
|
|
|
|
|
2012-08-26 15:14:23 +00:00
|
|
|
//****************************************
|
|
|
|
// SceneOpenGL::Texture
|
|
|
|
//****************************************
|
|
|
|
SceneOpenGL::TexturePrivate::TexturePrivate()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SceneOpenGL::TexturePrivate::~TexturePrivate()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-05-15 11:47:27 +00:00
|
|
|
bool SceneOpenGL::TexturePrivate::update(const QRegion &damage)
|
|
|
|
{
|
|
|
|
Q_UNUSED(damage)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
//****************************************
|
|
|
|
// SceneOpenGL::Window
|
|
|
|
//****************************************
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
SceneOpenGL::Window::Window(Toplevel* c)
|
|
|
|
: Scene::Window(c)
|
2012-11-13 20:41:02 +00:00
|
|
|
, m_scene(NULL)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
SceneOpenGL::Window::~Window()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2013-05-10 10:07:56 +00:00
|
|
|
static SceneOpenGL::Texture *s_frameTexture = NULL;
|
2007-04-29 17:35:43 +00:00
|
|
|
// Bind the window pixmap to an OpenGL texture.
|
|
|
|
bool SceneOpenGL::Window::bindTexture()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2013-05-10 10:07:56 +00:00
|
|
|
s_frameTexture = NULL;
|
|
|
|
OpenGLWindowPixmap *pixmap = windowPixmap<OpenGLWindowPixmap>();
|
|
|
|
if (!pixmap) {
|
|
|
|
return false;
|
2012-08-26 15:14:23 +00:00
|
|
|
}
|
2013-05-10 10:07:56 +00:00
|
|
|
s_frameTexture = pixmap->texture();
|
|
|
|
if (pixmap->isDiscarded()) {
|
|
|
|
return !pixmap->texture()->isNull();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2013-05-10 10:07:56 +00:00
|
|
|
return pixmap->bind();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-07-05 19:59:55 +00:00
|
|
|
|
2011-02-15 17:10:54 +00:00
|
|
|
QMatrix4x4 SceneOpenGL::Window::transformation(int mask, const WindowPaintData &data) const
|
|
|
|
{
|
|
|
|
QMatrix4x4 matrix;
|
|
|
|
matrix.translate(x(), y());
|
|
|
|
|
|
|
|
if (!(mask & PAINT_WINDOW_TRANSFORMED))
|
|
|
|
return matrix;
|
|
|
|
|
2012-05-28 12:45:46 +00:00
|
|
|
matrix.translate(data.translation());
|
2012-05-28 10:00:31 +00:00
|
|
|
data.scale().applyTo(&matrix);
|
2011-02-15 17:10:54 +00:00
|
|
|
|
2012-06-02 19:54:18 +00:00
|
|
|
if (data.rotationAngle() == 0.0)
|
2011-02-15 17:10:54 +00:00
|
|
|
return matrix;
|
|
|
|
|
|
|
|
// Apply the rotation
|
2012-05-27 17:28:02 +00:00
|
|
|
// cannot use data.rotation.applyTo(&matrix) as QGraphicsRotation uses projectedRotate to map back to 2D
|
2012-06-02 19:54:18 +00:00
|
|
|
matrix.translate(data.rotationOrigin());
|
|
|
|
const QVector3D axis = data.rotationAxis();
|
|
|
|
matrix.rotate(data.rotationAngle(), axis.x(), axis.y(), axis.z());
|
|
|
|
matrix.translate(-data.rotationOrigin());
|
2011-02-15 17:10:54 +00:00
|
|
|
|
|
|
|
return matrix;
|
|
|
|
}
|
|
|
|
|
2013-03-17 12:34:26 +00:00
|
|
|
bool SceneOpenGL::Window::beginRenderWindow(int mask, const QRegion ®ion, WindowPaintData &data)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
if (region.isEmpty())
|
2013-03-17 12:34:26 +00:00
|
|
|
return false;
|
2011-02-15 21:34:23 +00:00
|
|
|
|
2013-03-17 10:50:47 +00:00
|
|
|
m_hardwareClipping = region != infiniteRegion() && (mask & PAINT_WINDOW_TRANSFORMED) && !(mask & PAINT_SCREEN_TRANSFORMED);
|
|
|
|
if (region != infiniteRegion() && !m_hardwareClipping) {
|
2011-06-26 10:01:13 +00:00
|
|
|
WindowQuadList quads;
|
2013-06-11 19:16:09 +00:00
|
|
|
quads.reserve(data.quads.count());
|
|
|
|
|
2011-06-26 10:01:13 +00:00
|
|
|
const QRegion filterRegion = region.translated(-x(), -y());
|
2011-06-26 11:16:14 +00:00
|
|
|
// split all quads in bounding rect with the actual rects in the region
|
2011-06-26 10:01:13 +00:00
|
|
|
foreach (const WindowQuad &quad, data.quads) {
|
2011-06-26 11:16:14 +00:00
|
|
|
foreach (const QRect &r, filterRegion.rects()) {
|
|
|
|
const QRectF rf(r);
|
|
|
|
const QRectF quadRect(QPointF(quad.left(), quad.top()), QPointF(quad.right(), quad.bottom()));
|
2013-11-28 12:19:48 +00:00
|
|
|
const QRectF &intersected = rf.intersected(quadRect);
|
|
|
|
if (intersected.isValid()) {
|
|
|
|
if (quadRect == intersected) {
|
|
|
|
// case 1: completely contains, include and do not check other rects
|
|
|
|
quads << quad;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// case 2: intersection
|
2011-06-26 11:16:14 +00:00
|
|
|
quads << quad.makeSubQuad(intersected.left(), intersected.top(), intersected.right(), intersected.bottom());
|
2011-06-26 10:01:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-06-26 11:16:14 +00:00
|
|
|
data.quads = quads;
|
2011-06-26 10:01:13 +00:00
|
|
|
}
|
|
|
|
|
2013-06-07 21:46:06 +00:00
|
|
|
if (data.quads.isEmpty())
|
|
|
|
return false;
|
|
|
|
|
2013-05-10 10:07:56 +00:00
|
|
|
if (!bindTexture() || !s_frameTexture) {
|
2013-03-17 12:34:26 +00:00
|
|
|
return false;
|
2012-02-12 15:42:09 +00:00
|
|
|
}
|
|
|
|
|
2013-03-17 10:50:47 +00:00
|
|
|
if (m_hardwareClipping) {
|
2012-02-12 15:42:09 +00:00
|
|
|
glEnable(GL_SCISSOR_TEST);
|
|
|
|
}
|
2011-02-15 16:47:31 +00:00
|
|
|
|
|
|
|
// Update the texture filter
|
2012-02-20 09:25:13 +00:00
|
|
|
if (options->glSmoothScale() != 0 &&
|
2011-02-15 16:47:31 +00:00
|
|
|
(mask & (PAINT_WINDOW_TRANSFORMED | PAINT_SCREEN_TRANSFORMED)))
|
|
|
|
filter = ImageFilterGood;
|
2007-04-29 17:35:43 +00:00
|
|
|
else
|
2011-02-15 16:47:31 +00:00
|
|
|
filter = ImageFilterFast;
|
|
|
|
|
2013-05-10 10:07:56 +00:00
|
|
|
s_frameTexture->setFilter(filter == ImageFilterGood ? GL_LINEAR : GL_NEAREST);
|
2011-02-15 16:47:31 +00:00
|
|
|
|
2012-10-12 11:20:23 +00:00
|
|
|
const GLVertexAttrib attribs[] = {
|
|
|
|
{ VA_Position, 2, GL_FLOAT, offsetof(GLVertex2D, position) },
|
|
|
|
{ VA_TexCoord, 2, GL_FLOAT, offsetof(GLVertex2D, texcoord) },
|
|
|
|
};
|
|
|
|
|
2010-12-11 15:11:19 +00:00
|
|
|
GLVertexBuffer *vbo = GLVertexBuffer::streamingBuffer();
|
|
|
|
vbo->reset();
|
2012-10-12 11:20:23 +00:00
|
|
|
vbo->setAttribLayout(attribs, 2, sizeof(GLVertex2D));
|
2009-04-22 17:30:49 +00:00
|
|
|
|
2013-03-17 12:34:26 +00:00
|
|
|
return true;
|
|
|
|
}
|
2009-11-25 23:08:19 +00:00
|
|
|
|
2013-03-17 12:34:26 +00:00
|
|
|
void SceneOpenGL::Window::endRenderWindow()
|
|
|
|
{
|
2013-03-17 10:50:47 +00:00
|
|
|
if (m_hardwareClipping) {
|
2012-02-12 15:42:09 +00:00
|
|
|
glDisable(GL_SCISSOR_TEST);
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2009-04-22 17:30:49 +00:00
|
|
|
|
2013-03-17 11:16:08 +00:00
|
|
|
|
|
|
|
OpenGLPaintRedirector *SceneOpenGL::Window::paintRedirector() const
|
|
|
|
{
|
|
|
|
if (toplevel->isClient()) {
|
|
|
|
Client *client = static_cast<Client *>(toplevel);
|
|
|
|
if (client->noBorder())
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return static_cast<OpenGLPaintRedirector *>(client->decorationPaintRedirector());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (toplevel->isDeleted()) {
|
|
|
|
Deleted *deleted = static_cast<Deleted *>(toplevel);
|
|
|
|
if (deleted->noBorder())
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return static_cast<OpenGLPaintRedirector *>(deleted->decorationPaintRedirector());
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2013-09-16 17:50:02 +00:00
|
|
|
GLTexture *SceneOpenGL::Window::getDecorationTexture() const
|
2013-03-17 11:16:08 +00:00
|
|
|
{
|
|
|
|
OpenGLPaintRedirector *redirector = paintRedirector();
|
|
|
|
if (!redirector)
|
2013-09-16 17:50:02 +00:00
|
|
|
return 0;
|
2013-03-17 11:16:08 +00:00
|
|
|
|
|
|
|
redirector->ensurePixmapsPainted();
|
2013-09-16 17:50:02 +00:00
|
|
|
GLTexture *texture = redirector->decorationTexture();
|
2013-03-17 11:16:08 +00:00
|
|
|
redirector->markAsRepainted();
|
2013-09-16 17:50:02 +00:00
|
|
|
|
|
|
|
return texture;
|
2013-03-17 11:16:08 +00:00
|
|
|
}
|
|
|
|
|
2013-05-10 10:07:56 +00:00
|
|
|
WindowPixmap* SceneOpenGL::Window::createWindowPixmap()
|
|
|
|
{
|
|
|
|
return new OpenGLWindowPixmap(this, m_scene);
|
|
|
|
}
|
2012-09-06 10:25:55 +00:00
|
|
|
|
|
|
|
//***************************************
|
|
|
|
// SceneOpenGL2Window
|
|
|
|
//***************************************
|
|
|
|
SceneOpenGL2Window::SceneOpenGL2Window(Toplevel *c)
|
|
|
|
: SceneOpenGL::Window(c)
|
2012-10-12 09:34:05 +00:00
|
|
|
, m_blendingEnabled(false)
|
2012-09-06 10:25:55 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SceneOpenGL2Window::~SceneOpenGL2Window()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-03-17 12:34:26 +00:00
|
|
|
QVector4D SceneOpenGL2Window::modulate(float opacity, float brightness) const
|
2012-09-06 10:25:55 +00:00
|
|
|
{
|
2013-03-17 12:34:26 +00:00
|
|
|
const float a = opacity;
|
|
|
|
const float rgb = opacity * brightness;
|
|
|
|
|
|
|
|
return QVector4D(rgb, rgb, rgb, a);
|
|
|
|
}
|
|
|
|
|
|
|
|
void SceneOpenGL2Window::setBlendEnabled(bool enabled)
|
|
|
|
{
|
|
|
|
if (enabled && !m_blendingEnabled)
|
|
|
|
glEnable(GL_BLEND);
|
|
|
|
else if (!enabled && m_blendingEnabled)
|
|
|
|
glDisable(GL_BLEND);
|
|
|
|
|
|
|
|
m_blendingEnabled = enabled;
|
|
|
|
}
|
|
|
|
|
2013-03-18 15:45:53 +00:00
|
|
|
void SceneOpenGL2Window::setupLeafNodes(LeafNode *nodes, const WindowQuadList *quads, const WindowPaintData &data)
|
|
|
|
{
|
|
|
|
if (!quads[ShadowLeaf].isEmpty()) {
|
|
|
|
nodes[ShadowLeaf].texture = static_cast<SceneOpenGLShadow *>(m_shadow)->shadowTexture();
|
|
|
|
nodes[ShadowLeaf].opacity = data.opacity();
|
|
|
|
nodes[ShadowLeaf].hasAlpha = true;
|
|
|
|
nodes[ShadowLeaf].coordinateType = NormalizedCoordinates;
|
|
|
|
}
|
|
|
|
|
2013-09-16 17:50:02 +00:00
|
|
|
if (!quads[DecorationLeaf].isEmpty()) {
|
|
|
|
nodes[DecorationLeaf].texture = getDecorationTexture();
|
|
|
|
nodes[DecorationLeaf].opacity = data.opacity();
|
|
|
|
nodes[DecorationLeaf].hasAlpha = true;
|
|
|
|
nodes[DecorationLeaf].coordinateType = UnnormalizedCoordinates;
|
2013-03-18 15:45:53 +00:00
|
|
|
}
|
|
|
|
|
2013-05-10 10:07:56 +00:00
|
|
|
nodes[ContentLeaf].texture = s_frameTexture;
|
2013-03-18 15:45:53 +00:00
|
|
|
nodes[ContentLeaf].hasAlpha = !isOpaque();
|
2013-08-05 13:12:08 +00:00
|
|
|
// TODO: ARGB crsoofading is atm. a hack, playing on opacities for two dumb SrcOver operations
|
|
|
|
// Should be a shader
|
|
|
|
if (data.crossFadeProgress() != 1.0 && (data.opacity() < 0.95 || toplevel->hasAlpha())) {
|
|
|
|
const float opacity = 1.0 - data.crossFadeProgress();
|
|
|
|
nodes[ContentLeaf].opacity = data.opacity() * (1 - pow(opacity, 1.0f + 2.0f * data.opacity()));
|
|
|
|
} else {
|
|
|
|
nodes[ContentLeaf].opacity = data.opacity();
|
|
|
|
}
|
2013-03-18 15:45:53 +00:00
|
|
|
nodes[ContentLeaf].coordinateType = UnnormalizedCoordinates;
|
2013-05-13 06:17:28 +00:00
|
|
|
|
|
|
|
if (data.crossFadeProgress() != 1.0) {
|
|
|
|
OpenGLWindowPixmap *previous = previousWindowPixmap<OpenGLWindowPixmap>();
|
|
|
|
nodes[PreviousContentLeaf].texture = previous ? previous->texture() : NULL;
|
|
|
|
nodes[PreviousContentLeaf].hasAlpha = !isOpaque();
|
2013-08-05 13:12:08 +00:00
|
|
|
nodes[PreviousContentLeaf].opacity = data.opacity() * (1.0 - data.crossFadeProgress());
|
2013-05-13 06:17:28 +00:00
|
|
|
nodes[PreviousContentLeaf].coordinateType = NormalizedCoordinates;
|
|
|
|
}
|
2013-03-18 15:45:53 +00:00
|
|
|
}
|
|
|
|
|
2013-03-17 12:34:26 +00:00
|
|
|
void SceneOpenGL2Window::performPaint(int mask, QRegion region, WindowPaintData data)
|
|
|
|
{
|
|
|
|
if (!beginRenderWindow(mask, region, data))
|
|
|
|
return;
|
|
|
|
|
2012-09-06 10:25:55 +00:00
|
|
|
GLShader *shader = data.shader;
|
|
|
|
if (!shader) {
|
|
|
|
if ((mask & Scene::PAINT_WINDOW_TRANSFORMED) || (mask & Scene::PAINT_SCREEN_TRANSFORMED)) {
|
|
|
|
shader = ShaderManager::instance()->pushShader(ShaderManager::GenericShader);
|
|
|
|
} else {
|
|
|
|
shader = ShaderManager::instance()->pushShader(ShaderManager::SimpleShader);
|
|
|
|
shader->setUniform(GLShader::Offset, QVector2D(x(), y()));
|
2011-03-27 10:33:07 +00:00
|
|
|
}
|
|
|
|
}
|
2012-09-06 10:25:55 +00:00
|
|
|
|
2013-09-04 12:42:45 +00:00
|
|
|
if (ColorCorrection *cc = static_cast<SceneOpenGL2*>(m_scene)->colorCorrection()) {
|
|
|
|
cc->setupForOutput(data.screen());
|
|
|
|
}
|
2013-03-17 12:34:26 +00:00
|
|
|
|
2012-09-06 10:25:55 +00:00
|
|
|
shader->setUniform(GLShader::WindowTransformation, transformation(mask, data));
|
2013-03-17 12:34:26 +00:00
|
|
|
shader->setUniform(GLShader::Saturation, data.saturation());
|
2011-03-27 10:33:07 +00:00
|
|
|
|
2013-03-17 12:34:26 +00:00
|
|
|
const GLenum filter = (mask & (Effect::PAINT_WINDOW_TRANSFORMED | Effect::PAINT_SCREEN_TRANSFORMED))
|
|
|
|
&& options->glSmoothScale() != 0 ? GL_LINEAR : GL_NEAREST;
|
|
|
|
|
2013-05-13 06:17:28 +00:00
|
|
|
WindowQuadList quads[LeafCount];
|
2013-03-17 12:34:26 +00:00
|
|
|
|
|
|
|
// Split the quads into separate lists for each type
|
|
|
|
foreach (const WindowQuad &quad, data.quads) {
|
|
|
|
switch (quad.type()) {
|
2013-09-16 17:50:02 +00:00
|
|
|
case WindowQuadDecoration:
|
|
|
|
quads[DecorationLeaf].append(quad);
|
2013-03-17 12:34:26 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
case WindowQuadContents:
|
2013-03-18 15:45:53 +00:00
|
|
|
quads[ContentLeaf].append(quad);
|
2013-03-17 12:34:26 +00:00
|
|
|
continue;
|
|
|
|
|
2014-07-17 09:36:09 +00:00
|
|
|
case WindowQuadShadow:
|
2013-03-18 15:45:53 +00:00
|
|
|
quads[ShadowLeaf].append(quad);
|
2013-03-17 12:34:26 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
default:
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-13 06:17:28 +00:00
|
|
|
if (data.crossFadeProgress() != 1.0) {
|
|
|
|
OpenGLWindowPixmap *previous = previousWindowPixmap<OpenGLWindowPixmap>();
|
|
|
|
if (previous) {
|
|
|
|
const QRect &oldGeometry = previous->contentsRect();
|
2013-11-30 13:24:36 +00:00
|
|
|
for (const WindowQuad &quad : quads[ContentLeaf]) {
|
2013-05-13 06:17:28 +00:00
|
|
|
// we need to create new window quads with normalize texture coordinates
|
|
|
|
// normal quads divide the x/y position by width/height. This would not work as the texture
|
|
|
|
// is larger than the visible content in case of a decorated Client resulting in garbage being shown.
|
|
|
|
// So we calculate the normalized texture coordinate in the Client's new content space and map it to
|
|
|
|
// the previous Client's content space.
|
|
|
|
WindowQuad newQuad(WindowQuadContents);
|
|
|
|
for (int i = 0; i < 4; ++i) {
|
|
|
|
const qreal xFactor = qreal(quad[i].textureX() - toplevel->clientPos().x())/qreal(toplevel->clientSize().width());
|
|
|
|
const qreal yFactor = qreal(quad[i].textureY() - toplevel->clientPos().y())/qreal(toplevel->clientSize().height());
|
|
|
|
WindowVertex vertex(quad[i].x(), quad[i].y(),
|
|
|
|
(xFactor * oldGeometry.width() + oldGeometry.x())/qreal(previous->size().width()),
|
|
|
|
(yFactor * oldGeometry.height() + oldGeometry.y())/qreal(previous->size().height()));
|
|
|
|
newQuad[i] = vertex;
|
|
|
|
}
|
|
|
|
quads[PreviousContentLeaf].append(newQuad);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-21 22:52:03 +00:00
|
|
|
const bool indexedQuads = GLVertexBuffer::supportsIndexedQuads();
|
2014-07-22 10:26:38 +00:00
|
|
|
const GLenum primitiveType = indexedQuads ? GL_QUADS : GL_TRIANGLES;
|
2013-03-21 22:52:03 +00:00
|
|
|
const int verticesPerQuad = indexedQuads ? 4 : 6;
|
|
|
|
|
|
|
|
const size_t size = verticesPerQuad *
|
2013-09-16 17:50:02 +00:00
|
|
|
(quads[0].count() + quads[1].count() + quads[2].count() + quads[3].count()) * sizeof(GLVertex2D);
|
2013-03-17 12:34:26 +00:00
|
|
|
|
2013-03-18 15:45:53 +00:00
|
|
|
GLVertexBuffer *vbo = GLVertexBuffer::streamingBuffer();
|
|
|
|
GLVertex2D *map = (GLVertex2D *) vbo->map(size);
|
2013-03-17 12:34:26 +00:00
|
|
|
|
2013-05-13 06:17:28 +00:00
|
|
|
LeafNode nodes[LeafCount];
|
2013-03-18 15:45:53 +00:00
|
|
|
setupLeafNodes(nodes, quads, data);
|
2013-03-17 12:34:26 +00:00
|
|
|
|
2013-05-13 06:17:28 +00:00
|
|
|
for (int i = 0, v = 0; i < LeafCount; i++) {
|
2013-03-18 15:45:53 +00:00
|
|
|
if (quads[i].isEmpty() || !nodes[i].texture)
|
|
|
|
continue;
|
2013-03-17 12:34:26 +00:00
|
|
|
|
2013-03-18 15:45:53 +00:00
|
|
|
nodes[i].firstVertex = v;
|
2013-03-21 22:52:03 +00:00
|
|
|
nodes[i].vertexCount = quads[i].count() * verticesPerQuad;
|
2013-03-17 12:34:26 +00:00
|
|
|
|
2013-03-18 15:45:53 +00:00
|
|
|
const QMatrix4x4 matrix = nodes[i].texture->matrix(nodes[i].coordinateType);
|
2013-03-17 12:34:26 +00:00
|
|
|
|
2013-03-21 22:52:03 +00:00
|
|
|
quads[i].makeInterleavedArrays(primitiveType, &map[v], matrix);
|
|
|
|
v += quads[i].count() * verticesPerQuad;
|
2013-03-18 15:45:53 +00:00
|
|
|
}
|
2013-03-17 12:34:26 +00:00
|
|
|
|
2013-03-18 15:45:53 +00:00
|
|
|
vbo->unmap();
|
|
|
|
vbo->bindArrays();
|
2013-03-17 12:34:26 +00:00
|
|
|
|
2013-03-18 15:45:53 +00:00
|
|
|
// Make sure the blend function is set up correctly in case we will be doing blending
|
|
|
|
glBlendFunc(GL_ONE, GL_ONE_MINUS_SRC_ALPHA);
|
2013-03-17 12:34:26 +00:00
|
|
|
|
2013-03-18 15:45:53 +00:00
|
|
|
float opacity = -1.0;
|
2013-03-17 12:34:26 +00:00
|
|
|
|
2013-05-13 06:17:28 +00:00
|
|
|
for (int i = 0; i < LeafCount; i++) {
|
2013-03-18 15:45:53 +00:00
|
|
|
if (nodes[i].vertexCount == 0)
|
|
|
|
continue;
|
2013-03-17 12:34:26 +00:00
|
|
|
|
2013-03-18 15:45:53 +00:00
|
|
|
setBlendEnabled(nodes[i].hasAlpha || nodes[i].opacity < 1.0);
|
2013-03-17 12:34:26 +00:00
|
|
|
|
2013-03-18 15:45:53 +00:00
|
|
|
if (opacity != nodes[i].opacity) {
|
|
|
|
shader->setUniform(GLShader::ModulationConstant,
|
|
|
|
modulate(nodes[i].opacity, data.brightness()));
|
|
|
|
opacity = nodes[i].opacity;
|
2013-03-17 12:34:26 +00:00
|
|
|
}
|
|
|
|
|
2013-03-18 15:45:53 +00:00
|
|
|
nodes[i].texture->setFilter(filter);
|
|
|
|
nodes[i].texture->setWrapMode(GL_CLAMP_TO_EDGE);
|
|
|
|
nodes[i].texture->bind();
|
2013-03-17 12:34:26 +00:00
|
|
|
|
2013-03-21 22:52:03 +00:00
|
|
|
vbo->draw(region, primitiveType, nodes[i].firstVertex, nodes[i].vertexCount, m_hardwareClipping);
|
2013-03-17 12:34:26 +00:00
|
|
|
}
|
|
|
|
|
2013-03-18 15:45:53 +00:00
|
|
|
vbo->unbindArrays();
|
|
|
|
|
2013-03-17 12:34:26 +00:00
|
|
|
setBlendEnabled(false);
|
|
|
|
|
|
|
|
if (!data.shader)
|
|
|
|
ShaderManager::instance()->popShader();
|
|
|
|
|
|
|
|
endRenderWindow();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2012-09-06 10:25:55 +00:00
|
|
|
|
2013-05-10 10:07:56 +00:00
|
|
|
//****************************************
|
|
|
|
// OpenGLWindowPixmap
|
|
|
|
//****************************************
|
|
|
|
|
|
|
|
OpenGLWindowPixmap::OpenGLWindowPixmap(Scene::Window *window, SceneOpenGL* scene)
|
|
|
|
: WindowPixmap(window)
|
|
|
|
, m_texture(scene->createTexture())
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
OpenGLWindowPixmap::~OpenGLWindowPixmap()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool OpenGLWindowPixmap::bind()
|
|
|
|
{
|
|
|
|
if (!m_texture->isNull()) {
|
|
|
|
if (!toplevel()->damage().isEmpty()) {
|
2013-05-15 11:47:27 +00:00
|
|
|
const bool success = m_texture->update(toplevel()->damage());
|
2013-05-10 10:07:56 +00:00
|
|
|
// mipmaps need to be updated
|
|
|
|
m_texture->setDirty();
|
|
|
|
toplevel()->resetDamage();
|
2013-05-15 11:47:27 +00:00
|
|
|
return success;
|
2013-05-10 10:07:56 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (!isValid()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool success = m_texture->load(pixmap(), toplevel()->size(), toplevel()->depth(), toplevel()->damage());
|
|
|
|
|
|
|
|
if (success)
|
|
|
|
toplevel()->resetDamage();
|
|
|
|
else
|
2013-09-02 11:14:39 +00:00
|
|
|
qDebug() << "Failed to bind window";
|
2013-05-10 10:07:56 +00:00
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
2010-07-18 16:32:37 +00:00
|
|
|
//****************************************
|
|
|
|
// SceneOpenGL::EffectFrame
|
|
|
|
//****************************************
|
|
|
|
|
2012-08-26 15:14:23 +00:00
|
|
|
GLTexture* SceneOpenGL::EffectFrame::m_unstyledTexture = NULL;
|
2010-10-10 11:26:00 +00:00
|
|
|
QPixmap* SceneOpenGL::EffectFrame::m_unstyledPixmap = NULL;
|
2010-07-18 16:32:37 +00:00
|
|
|
|
2012-08-26 15:14:23 +00:00
|
|
|
SceneOpenGL::EffectFrame::EffectFrame(EffectFrameImpl* frame, SceneOpenGL *scene)
|
2011-01-30 14:34:42 +00:00
|
|
|
: Scene::EffectFrame(frame)
|
|
|
|
, m_texture(NULL)
|
|
|
|
, m_textTexture(NULL)
|
|
|
|
, m_oldTextTexture(NULL)
|
|
|
|
, m_textPixmap(NULL)
|
|
|
|
, m_iconTexture(NULL)
|
|
|
|
, m_oldIconTexture(NULL)
|
|
|
|
, m_selectionTexture(NULL)
|
|
|
|
, m_unstyledVBO(NULL)
|
2012-08-26 15:14:23 +00:00
|
|
|
, m_scene(scene)
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
if (m_effectFrame->style() == EffectFrameUnstyled && !m_unstyledTexture) {
|
2010-07-18 16:32:37 +00:00
|
|
|
updateUnstyledTexture();
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-07-18 16:32:37 +00:00
|
|
|
|
|
|
|
SceneOpenGL::EffectFrame::~EffectFrame()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2010-07-18 16:32:37 +00:00
|
|
|
delete m_texture;
|
|
|
|
delete m_textTexture;
|
2010-10-10 11:26:00 +00:00
|
|
|
delete m_textPixmap;
|
2010-08-07 14:08:34 +00:00
|
|
|
delete m_oldTextTexture;
|
2010-07-20 21:11:03 +00:00
|
|
|
delete m_iconTexture;
|
2010-08-07 14:08:34 +00:00
|
|
|
delete m_oldIconTexture;
|
2010-07-26 20:00:04 +00:00
|
|
|
delete m_selectionTexture;
|
2010-07-24 08:04:17 +00:00
|
|
|
delete m_unstyledVBO;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-07-18 16:32:37 +00:00
|
|
|
|
|
|
|
void SceneOpenGL::EffectFrame::free()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2011-04-24 18:20:01 +00:00
|
|
|
glFlush();
|
2010-07-18 16:32:37 +00:00
|
|
|
delete m_texture;
|
|
|
|
m_texture = NULL;
|
|
|
|
delete m_textTexture;
|
|
|
|
m_textTexture = NULL;
|
2010-10-10 11:26:00 +00:00
|
|
|
delete m_textPixmap;
|
|
|
|
m_textPixmap = NULL;
|
2010-07-20 21:11:03 +00:00
|
|
|
delete m_iconTexture;
|
|
|
|
m_iconTexture = NULL;
|
2010-07-26 20:00:04 +00:00
|
|
|
delete m_selectionTexture;
|
|
|
|
m_selectionTexture = NULL;
|
2010-07-24 08:04:17 +00:00
|
|
|
delete m_unstyledVBO;
|
|
|
|
m_unstyledVBO = NULL;
|
2010-08-07 14:08:34 +00:00
|
|
|
delete m_oldIconTexture;
|
|
|
|
m_oldIconTexture = NULL;
|
|
|
|
delete m_oldTextTexture;
|
|
|
|
m_oldTextTexture = NULL;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-07-20 21:11:03 +00:00
|
|
|
|
|
|
|
void SceneOpenGL::EffectFrame::freeIconFrame()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2010-07-20 21:11:03 +00:00
|
|
|
delete m_iconTexture;
|
|
|
|
m_iconTexture = NULL;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-07-18 16:32:37 +00:00
|
|
|
|
|
|
|
void SceneOpenGL::EffectFrame::freeTextFrame()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2010-07-18 16:32:37 +00:00
|
|
|
delete m_textTexture;
|
|
|
|
m_textTexture = NULL;
|
2010-10-10 11:26:00 +00:00
|
|
|
delete m_textPixmap;
|
|
|
|
m_textPixmap = NULL;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-07-18 16:32:37 +00:00
|
|
|
|
2010-07-26 20:00:04 +00:00
|
|
|
void SceneOpenGL::EffectFrame::freeSelection()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2010-07-26 20:00:04 +00:00
|
|
|
delete m_selectionTexture;
|
|
|
|
m_selectionTexture = NULL;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-07-26 20:00:04 +00:00
|
|
|
|
2010-08-07 14:08:34 +00:00
|
|
|
void SceneOpenGL::EffectFrame::crossFadeIcon()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2010-08-07 14:08:34 +00:00
|
|
|
delete m_oldIconTexture;
|
|
|
|
m_oldIconTexture = m_iconTexture;
|
|
|
|
m_iconTexture = NULL;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-08-07 14:08:34 +00:00
|
|
|
|
|
|
|
void SceneOpenGL::EffectFrame::crossFadeText()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2010-08-07 14:08:34 +00:00
|
|
|
delete m_oldTextTexture;
|
|
|
|
m_oldTextTexture = m_textTexture;
|
|
|
|
m_textTexture = NULL;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-08-07 14:08:34 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
void SceneOpenGL::EffectFrame::render(QRegion region, double opacity, double frameOpacity)
|
|
|
|
{
|
|
|
|
if (m_effectFrame->geometry().isEmpty())
|
2010-07-18 16:32:37 +00:00
|
|
|
return; // Nothing to display
|
|
|
|
|
|
|
|
region = infiniteRegion(); // TODO: Old region doesn't seem to work with OpenGL
|
|
|
|
|
2010-07-24 16:29:16 +00:00
|
|
|
GLShader* shader = m_effectFrame->shader();
|
2010-11-14 19:49:00 +00:00
|
|
|
bool sceneShader = false;
|
2014-02-25 10:02:32 +00:00
|
|
|
if (!shader) {
|
2010-12-11 09:57:29 +00:00
|
|
|
shader = ShaderManager::instance()->pushShader(ShaderManager::SimpleShader);
|
2010-11-14 19:49:00 +00:00
|
|
|
sceneShader = true;
|
2011-01-06 18:55:26 +00:00
|
|
|
} else if (shader) {
|
|
|
|
ShaderManager::instance()->pushShader(shader);
|
|
|
|
}
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
if (shader) {
|
|
|
|
if (sceneShader)
|
2011-02-10 18:37:51 +00:00
|
|
|
shader->setUniform(GLShader::Offset, QVector2D(0, 0));
|
2010-07-24 16:29:16 +00:00
|
|
|
|
2011-02-12 00:36:21 +00:00
|
|
|
shader->setUniform(GLShader::ModulationConstant, QVector4D(1.0, 1.0, 1.0, 1.0));
|
2011-02-10 18:37:51 +00:00
|
|
|
shader->setUniform(GLShader::Saturation, 1.0f);
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-07-24 16:29:16 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
glEnable(GL_BLEND);
|
|
|
|
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
2010-07-18 16:32:37 +00:00
|
|
|
|
|
|
|
// Render the actual frame
|
2011-01-30 14:34:42 +00:00
|
|
|
if (m_effectFrame->style() == EffectFrameUnstyled) {
|
|
|
|
if (!m_unstyledVBO) {
|
|
|
|
m_unstyledVBO = new GLVertexBuffer(GLVertexBuffer::Static);
|
2010-12-04 10:01:57 +00:00
|
|
|
QRect area = m_effectFrame->geometry();
|
2011-01-30 14:34:42 +00:00
|
|
|
area.moveTo(0, 0);
|
|
|
|
area.adjust(-5, -5, 5, 5);
|
|
|
|
|
2010-07-24 08:04:17 +00:00
|
|
|
const int roundness = 5;
|
|
|
|
QVector<float> verts, texCoords;
|
2011-01-30 14:34:42 +00:00
|
|
|
verts.reserve(84);
|
|
|
|
texCoords.reserve(84);
|
2010-07-24 08:04:17 +00:00
|
|
|
|
|
|
|
// top left
|
|
|
|
verts << area.left() << area.top();
|
|
|
|
texCoords << 0.0f << 0.0f;
|
|
|
|
verts << area.left() << area.top() + roundness;
|
|
|
|
texCoords << 0.0f << 0.5f;
|
|
|
|
verts << area.left() + roundness << area.top();
|
|
|
|
texCoords << 0.5f << 0.0f;
|
|
|
|
verts << area.left() + roundness << area.top() + roundness;
|
|
|
|
texCoords << 0.5f << 0.5f;
|
|
|
|
verts << area.left() << area.top() + roundness;
|
|
|
|
texCoords << 0.0f << 0.5f;
|
|
|
|
verts << area.left() + roundness << area.top();
|
|
|
|
texCoords << 0.5f << 0.0f;
|
|
|
|
// top
|
|
|
|
verts << area.left() + roundness << area.top();
|
|
|
|
texCoords << 0.5f << 0.0f;
|
|
|
|
verts << area.left() + roundness << area.top() + roundness;
|
|
|
|
texCoords << 0.5f << 0.5f;
|
|
|
|
verts << area.right() - roundness << area.top();
|
|
|
|
texCoords << 0.5f << 0.0f;
|
|
|
|
verts << area.left() + roundness << area.top() + roundness;
|
|
|
|
texCoords << 0.5f << 0.5f;
|
|
|
|
verts << area.right() - roundness << area.top() + roundness;
|
|
|
|
texCoords << 0.5f << 0.5f;
|
|
|
|
verts << area.right() - roundness << area.top();
|
|
|
|
texCoords << 0.5f << 0.0f;
|
|
|
|
// top right
|
|
|
|
verts << area.right() - roundness << area.top();
|
|
|
|
texCoords << 0.5f << 0.0f;
|
|
|
|
verts << area.right() - roundness << area.top() + roundness;
|
|
|
|
texCoords << 0.5f << 0.5f;
|
|
|
|
verts << area.right() << area.top();
|
|
|
|
texCoords << 1.0f << 0.0f;
|
|
|
|
verts << area.right() - roundness << area.top() + roundness;
|
|
|
|
texCoords << 0.5f << 0.5f;
|
|
|
|
verts << area.right() << area.top() + roundness;
|
|
|
|
texCoords << 1.0f << 0.5f;
|
|
|
|
verts << area.right() << area.top();
|
|
|
|
texCoords << 1.0f << 0.0f;
|
|
|
|
// bottom left
|
|
|
|
verts << area.left() << area.bottom() - roundness;
|
|
|
|
texCoords << 0.0f << 0.5f;
|
|
|
|
verts << area.left() << area.bottom();
|
|
|
|
texCoords << 0.0f << 1.0f;
|
|
|
|
verts << area.left() + roundness << area.bottom() - roundness;
|
|
|
|
texCoords << 0.5f << 0.5f;
|
|
|
|
verts << area.left() + roundness << area.bottom();
|
|
|
|
texCoords << 0.5f << 1.0f;
|
|
|
|
verts << area.left() << area.bottom();
|
|
|
|
texCoords << 0.0f << 1.0f;
|
|
|
|
verts << area.left() + roundness << area.bottom() - roundness;
|
|
|
|
texCoords << 0.5f << 0.5f;
|
|
|
|
// bottom
|
|
|
|
verts << area.left() + roundness << area.bottom() - roundness;
|
|
|
|
texCoords << 0.5f << 0.5f;
|
|
|
|
verts << area.left() + roundness << area.bottom();
|
|
|
|
texCoords << 0.5f << 1.0f;
|
|
|
|
verts << area.right() - roundness << area.bottom() - roundness;
|
|
|
|
texCoords << 0.5f << 0.5f;
|
|
|
|
verts << area.left() + roundness << area.bottom();
|
|
|
|
texCoords << 0.5f << 1.0f;
|
|
|
|
verts << area.right() - roundness << area.bottom();
|
|
|
|
texCoords << 0.5f << 1.0f;
|
|
|
|
verts << area.right() - roundness << area.bottom() - roundness;
|
|
|
|
texCoords << 0.5f << 0.5f;
|
|
|
|
// bottom right
|
|
|
|
verts << area.right() - roundness << area.bottom() - roundness;
|
|
|
|
texCoords << 0.5f << 0.5f;
|
|
|
|
verts << area.right() - roundness << area.bottom();
|
|
|
|
texCoords << 0.5f << 1.0f;
|
|
|
|
verts << area.right() << area.bottom() - roundness;
|
|
|
|
texCoords << 1.0f << 0.5f;
|
|
|
|
verts << area.right() - roundness << area.bottom();
|
|
|
|
texCoords << 0.5f << 1.0f;
|
|
|
|
verts << area.right() << area.bottom();
|
|
|
|
texCoords << 1.0f << 1.0f;
|
|
|
|
verts << area.right() << area.bottom() - roundness;
|
|
|
|
texCoords << 1.0f << 0.5f;
|
|
|
|
// center
|
|
|
|
verts << area.left() << area.top() + roundness;
|
|
|
|
texCoords << 0.0f << 0.5f;
|
|
|
|
verts << area.left() << area.bottom() - roundness;
|
|
|
|
texCoords << 0.0f << 0.5f;
|
|
|
|
verts << area.right() << area.top() + roundness;
|
|
|
|
texCoords << 1.0f << 0.5f;
|
|
|
|
verts << area.left() << area.bottom() - roundness;
|
|
|
|
texCoords << 0.0f << 0.5f;
|
|
|
|
verts << area.right() << area.bottom() - roundness;
|
|
|
|
texCoords << 1.0f << 0.5f;
|
|
|
|
verts << area.right() << area.top() + roundness;
|
|
|
|
texCoords << 1.0f << 0.5f;
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
m_unstyledVBO->setData(verts.count() / 2, 2, verts.data(), texCoords.data());
|
|
|
|
}
|
2010-07-18 16:32:37 +00:00
|
|
|
|
2011-02-12 00:36:21 +00:00
|
|
|
if (shader) {
|
|
|
|
const float a = opacity * frameOpacity;
|
|
|
|
shader->setUniform(GLShader::ModulationConstant, QVector4D(a, a, a, a));
|
|
|
|
}
|
2010-07-18 16:32:37 +00:00
|
|
|
|
|
|
|
m_unstyledTexture->bind();
|
2010-12-04 10:01:57 +00:00
|
|
|
const QPoint pt = m_effectFrame->geometry().topLeft();
|
2010-11-14 19:49:00 +00:00
|
|
|
if (sceneShader) {
|
2011-02-10 18:37:51 +00:00
|
|
|
shader->setUniform(GLShader::Offset, QVector2D(pt.x(), pt.y()));
|
2010-11-14 19:49:00 +00:00
|
|
|
} else {
|
2011-01-06 18:55:26 +00:00
|
|
|
QMatrix4x4 translation;
|
|
|
|
translation.translate(pt.x(), pt.y());
|
|
|
|
if (shader) {
|
2011-02-10 18:37:51 +00:00
|
|
|
shader->setUniform(GLShader::WindowTransformation, translation);
|
2011-01-06 18:55:26 +00:00
|
|
|
}
|
2010-11-14 19:49:00 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
m_unstyledVBO->render(region, GL_TRIANGLES);
|
2010-11-14 19:49:00 +00:00
|
|
|
if (!sceneShader) {
|
2011-01-06 18:55:26 +00:00
|
|
|
if (shader) {
|
2011-02-10 18:37:51 +00:00
|
|
|
shader->setUniform(GLShader::WindowTransformation, QMatrix4x4());
|
2011-01-06 18:55:26 +00:00
|
|
|
}
|
2010-11-14 19:49:00 +00:00
|
|
|
}
|
2010-07-18 16:32:37 +00:00
|
|
|
m_unstyledTexture->unbind();
|
2011-01-30 14:34:42 +00:00
|
|
|
} else if (m_effectFrame->style() == EffectFrameStyled) {
|
|
|
|
if (!m_texture) // Lazy creation
|
2010-07-18 16:32:37 +00:00
|
|
|
updateTexture();
|
|
|
|
|
2011-02-12 00:36:21 +00:00
|
|
|
if (shader) {
|
|
|
|
const float a = opacity * frameOpacity;
|
|
|
|
shader->setUniform(GLShader::ModulationConstant, QVector4D(a, a, a, a));
|
|
|
|
}
|
2010-07-18 16:32:37 +00:00
|
|
|
m_texture->bind();
|
|
|
|
qreal left, top, right, bottom;
|
2011-01-30 14:34:42 +00:00
|
|
|
m_effectFrame->frame().getMargins(left, top, right, bottom); // m_geometry is the inner geometry
|
|
|
|
m_texture->render(region, m_effectFrame->geometry().adjusted(-left, -top, right, bottom));
|
2010-07-18 16:32:37 +00:00
|
|
|
m_texture->unbind();
|
2010-07-26 20:00:04 +00:00
|
|
|
|
2011-04-28 11:41:11 +00:00
|
|
|
}
|
|
|
|
if (!m_effectFrame->selection().isNull()) {
|
|
|
|
if (!m_selectionTexture) { // Lazy creation
|
|
|
|
QPixmap pixmap = m_effectFrame->selectionFrame().framePixmap();
|
2011-06-11 12:48:16 +00:00
|
|
|
if (!pixmap.isNull())
|
2012-08-26 15:14:23 +00:00
|
|
|
m_selectionTexture = m_scene->createTexture(pixmap);
|
2011-04-28 11:41:11 +00:00
|
|
|
}
|
2011-06-11 12:48:16 +00:00
|
|
|
if (m_selectionTexture) {
|
|
|
|
if (shader) {
|
|
|
|
const float a = opacity * frameOpacity;
|
|
|
|
shader->setUniform(GLShader::ModulationConstant, QVector4D(a, a, a, a));
|
|
|
|
}
|
|
|
|
glBlendFunc(GL_ONE, GL_ONE_MINUS_SRC_ALPHA);
|
|
|
|
m_selectionTexture->bind();
|
|
|
|
m_selectionTexture->render(region, m_effectFrame->selection());
|
|
|
|
m_selectionTexture->unbind();
|
|
|
|
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
2010-07-18 16:32:37 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-07-18 16:32:37 +00:00
|
|
|
|
|
|
|
// Render icon
|
2011-01-30 14:34:42 +00:00
|
|
|
if (!m_effectFrame->icon().isNull() && !m_effectFrame->iconSize().isEmpty()) {
|
|
|
|
QPoint topLeft(m_effectFrame->geometry().x(),
|
|
|
|
m_effectFrame->geometry().center().y() - m_effectFrame->iconSize().height() / 2);
|
|
|
|
|
|
|
|
if (m_effectFrame->isCrossFade() && m_oldIconTexture) {
|
2011-02-12 00:36:21 +00:00
|
|
|
if (shader) {
|
|
|
|
const float a = opacity * (1.0 - m_effectFrame->crossFadeProgress());
|
|
|
|
shader->setUniform(GLShader::ModulationConstant, QVector4D(a, a, a, a));
|
|
|
|
}
|
2010-08-07 14:08:34 +00:00
|
|
|
|
|
|
|
m_oldIconTexture->bind();
|
2011-01-30 14:34:42 +00:00
|
|
|
m_oldIconTexture->render(region, QRect(topLeft, m_effectFrame->iconSize()));
|
2010-08-07 14:08:34 +00:00
|
|
|
m_oldIconTexture->unbind();
|
2011-02-12 00:36:21 +00:00
|
|
|
if (shader) {
|
|
|
|
const float a = opacity * m_effectFrame->crossFadeProgress();
|
|
|
|
shader->setUniform(GLShader::ModulationConstant, QVector4D(a, a, a, a));
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
} else {
|
2011-02-12 00:36:21 +00:00
|
|
|
if (shader) {
|
|
|
|
const QVector4D constant(opacity, opacity, opacity, opacity);
|
|
|
|
shader->setUniform(GLShader::ModulationConstant, constant);
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-08-07 14:08:34 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
if (!m_iconTexture) { // lazy creation
|
2013-12-06 13:41:23 +00:00
|
|
|
m_iconTexture = m_scene->createTexture(m_effectFrame->icon().pixmap(m_effectFrame->iconSize()));
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-07-20 21:11:03 +00:00
|
|
|
m_iconTexture->bind();
|
2011-01-30 14:34:42 +00:00
|
|
|
m_iconTexture->render(region, QRect(topLeft, m_effectFrame->iconSize()));
|
2010-07-20 21:11:03 +00:00
|
|
|
m_iconTexture->unbind();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-07-18 16:32:37 +00:00
|
|
|
|
|
|
|
// Render text
|
2011-01-30 14:34:42 +00:00
|
|
|
if (!m_effectFrame->text().isEmpty()) {
|
|
|
|
if (m_effectFrame->isCrossFade() && m_oldTextTexture) {
|
2011-02-12 00:36:21 +00:00
|
|
|
if (shader) {
|
|
|
|
const float a = opacity * (1.0 - m_effectFrame->crossFadeProgress());
|
|
|
|
shader->setUniform(GLShader::ModulationConstant, QVector4D(a, a, a, a));
|
|
|
|
}
|
2010-08-07 14:08:34 +00:00
|
|
|
|
|
|
|
m_oldTextTexture->bind();
|
2011-01-30 14:34:42 +00:00
|
|
|
m_oldTextTexture->render(region, m_effectFrame->geometry());
|
2010-08-07 14:08:34 +00:00
|
|
|
m_oldTextTexture->unbind();
|
2011-02-12 00:36:21 +00:00
|
|
|
if (shader) {
|
|
|
|
const float a = opacity * m_effectFrame->crossFadeProgress();
|
|
|
|
shader->setUniform(GLShader::ModulationConstant, QVector4D(a, a, a, a));
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
} else {
|
2011-02-12 00:36:21 +00:00
|
|
|
if (shader) {
|
|
|
|
const QVector4D constant(opacity, opacity, opacity, opacity);
|
|
|
|
shader->setUniform(GLShader::ModulationConstant, constant);
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
|
|
|
if (!m_textTexture) // Lazy creation
|
2010-07-18 16:32:37 +00:00
|
|
|
updateTextTexture();
|
|
|
|
m_textTexture->bind();
|
2011-01-30 14:34:42 +00:00
|
|
|
m_textTexture->render(region, m_effectFrame->geometry());
|
2010-07-18 16:32:37 +00:00
|
|
|
m_textTexture->unbind();
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-07-18 16:32:37 +00:00
|
|
|
|
2010-12-11 09:57:29 +00:00
|
|
|
if (shader) {
|
|
|
|
ShaderManager::instance()->popShader();
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
glDisable(GL_BLEND);
|
|
|
|
}
|
2010-07-18 16:32:37 +00:00
|
|
|
|
|
|
|
void SceneOpenGL::EffectFrame::updateTexture()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2010-07-18 16:32:37 +00:00
|
|
|
delete m_texture;
|
2011-06-11 12:48:16 +00:00
|
|
|
m_texture = 0L;
|
2011-01-30 14:34:42 +00:00
|
|
|
if (m_effectFrame->style() == EffectFrameStyled) {
|
2010-07-26 20:16:54 +00:00
|
|
|
QPixmap pixmap = m_effectFrame->frame().framePixmap();
|
2012-08-26 15:14:23 +00:00
|
|
|
m_texture = m_scene->createTexture(pixmap);
|
2010-07-18 16:32:37 +00:00
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-07-18 16:32:37 +00:00
|
|
|
|
|
|
|
void SceneOpenGL::EffectFrame::updateTextTexture()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2010-07-18 16:32:37 +00:00
|
|
|
delete m_textTexture;
|
2011-06-11 12:48:16 +00:00
|
|
|
m_textTexture = 0L;
|
2010-10-10 11:26:00 +00:00
|
|
|
delete m_textPixmap;
|
2011-06-11 12:48:16 +00:00
|
|
|
m_textPixmap = 0L;
|
2010-07-18 16:32:37 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
if (m_effectFrame->text().isEmpty())
|
2010-07-18 16:32:37 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
// Determine position on texture to paint text
|
2011-01-30 14:34:42 +00:00
|
|
|
QRect rect(QPoint(0, 0), m_effectFrame->geometry().size());
|
|
|
|
if (!m_effectFrame->icon().isNull() && !m_effectFrame->iconSize().isEmpty())
|
|
|
|
rect.setLeft(m_effectFrame->iconSize().width());
|
2010-07-18 16:32:37 +00:00
|
|
|
|
|
|
|
// If static size elide text as required
|
|
|
|
QString text = m_effectFrame->text();
|
2011-01-30 14:34:42 +00:00
|
|
|
if (m_effectFrame->isStatic()) {
|
|
|
|
QFontMetrics metrics(m_effectFrame->font());
|
|
|
|
text = metrics.elidedText(text, Qt::ElideRight, rect.width());
|
|
|
|
}
|
2010-07-18 16:32:37 +00:00
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
m_textPixmap = new QPixmap(m_effectFrame->geometry().size());
|
|
|
|
m_textPixmap->fill(Qt::transparent);
|
|
|
|
QPainter p(m_textPixmap);
|
|
|
|
p.setFont(m_effectFrame->font());
|
|
|
|
if (m_effectFrame->style() == EffectFrameStyled)
|
|
|
|
p.setPen(m_effectFrame->styledTextColor());
|
2010-07-18 16:32:37 +00:00
|
|
|
else // TODO: What about no frame? Custom color setting required
|
2011-01-30 14:34:42 +00:00
|
|
|
p.setPen(Qt::white);
|
|
|
|
p.drawText(rect, m_effectFrame->alignment(), text);
|
2010-07-18 16:32:37 +00:00
|
|
|
p.end();
|
2012-08-26 15:14:23 +00:00
|
|
|
m_textTexture = m_scene->createTexture(*m_textPixmap);
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-07-18 16:32:37 +00:00
|
|
|
|
|
|
|
void SceneOpenGL::EffectFrame::updateUnstyledTexture()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2010-07-18 16:32:37 +00:00
|
|
|
delete m_unstyledTexture;
|
2011-06-11 12:48:16 +00:00
|
|
|
m_unstyledTexture = 0L;
|
2010-10-10 11:26:00 +00:00
|
|
|
delete m_unstyledPixmap;
|
2011-06-11 12:48:16 +00:00
|
|
|
m_unstyledPixmap = 0L;
|
2010-07-18 16:32:37 +00:00
|
|
|
// Based off circle() from kwinxrenderutils.cpp
|
|
|
|
#define CS 8
|
2011-01-30 14:34:42 +00:00
|
|
|
m_unstyledPixmap = new QPixmap(2 * CS, 2 * CS);
|
|
|
|
m_unstyledPixmap->fill(Qt::transparent);
|
|
|
|
QPainter p(m_unstyledPixmap);
|
|
|
|
p.setRenderHint(QPainter::Antialiasing);
|
|
|
|
p.setPen(Qt::NoPen);
|
|
|
|
p.setBrush(Qt::black);
|
|
|
|
p.drawEllipse(m_unstyledPixmap->rect());
|
2010-07-18 16:32:37 +00:00
|
|
|
p.end();
|
|
|
|
#undef CS
|
2012-08-26 15:14:23 +00:00
|
|
|
m_unstyledTexture = new GLTexture(*m_unstyledPixmap);
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-07-18 16:32:37 +00:00
|
|
|
|
|
|
|
void SceneOpenGL::EffectFrame::cleanup()
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2010-07-18 16:32:37 +00:00
|
|
|
delete m_unstyledTexture;
|
|
|
|
m_unstyledTexture = NULL;
|
2010-10-10 11:26:00 +00:00
|
|
|
delete m_unstyledPixmap;
|
|
|
|
m_unstyledPixmap = NULL;
|
2011-01-30 14:34:42 +00:00
|
|
|
}
|
2010-07-18 16:32:37 +00:00
|
|
|
|
2011-03-27 10:33:07 +00:00
|
|
|
//****************************************
|
|
|
|
// SceneOpenGL::Shadow
|
|
|
|
//****************************************
|
|
|
|
SceneOpenGLShadow::SceneOpenGLShadow(Toplevel *toplevel)
|
|
|
|
: Shadow(toplevel)
|
2011-06-23 17:06:12 +00:00
|
|
|
, m_texture(NULL)
|
2011-03-27 10:33:07 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
SceneOpenGLShadow::~SceneOpenGLShadow()
|
|
|
|
{
|
Better handling for making the compositing OpenGL context current
With QtQuick2 it's possible that the scene graph rendering context either
lives in an own thread or uses the main GUI thread. In the latter case
it's the same thread as our compositing OpenGL context lives in. This
means our basic assumption that between two rendering passes the context
stays current does not hold.
The code already ensured that before we start a rendering pass the
context is made current, but there are many more possible cases. If we
use OpenGL in areas not triggered by the rendering loop but in response
to other events the context needs to be made current. This includes the
loading and unloading of effects (some effects use OpenGL in the static
effect check, in the ctor and dtor), background loading of texture data,
lazy loading after first usage invoked by shortcut, etc. etc.
To properly handle these cases new methods are added to EffectsHandler
to make the compositing OpenGL context current. These calls delegate down
into the scene. On non-OpenGL scenes they are noop, but on OpenGL they go
into the backend and make the context current. In addition they ensure
that Qt doesn't think that it's QOpenGLContext is current by calling
doneCurrent() on the QOpenGLContext::currentContext(). This unfortunately
causes an additional call to makeCurrent with a null context, but there
is no other way to tell Qt - it doesn't notice when a different context
is made current with low level API calls. In the multi-threaded
architecture this doesn't matter as ::currentContext() returns null.
A short evaluation showed that a transition to QOpenGLContext doesn't
seem feasible. Qt only supports either GLX or EGL while KWin supports
both and when entering the transition phase for Wayland, it would become
extremely tricky if our native platform is X11, but we want a Wayland
EGL context. A future solution might be to have a "KWin-QPA plugin" which
uses either xcb or Wayland and hides everything from Qt.
The API documentation is extended to describe when the effects-framework
ensures that an OpenGL context is current. The effects are changed to
make the context current in cases where it's not guaranteed. This has
been done by looking for creation or deletion of GLTextures and Shaders.
If there are other OpenGL usages outside the rendering loop, ctor/dtor
this needs to be changed, too.
2013-11-22 14:05:36 +00:00
|
|
|
effects->makeOpenGLContextCurrent();
|
2011-06-23 17:06:12 +00:00
|
|
|
delete m_texture;
|
2011-03-27 10:33:07 +00:00
|
|
|
}
|
|
|
|
|
2011-06-23 17:06:12 +00:00
|
|
|
void SceneOpenGLShadow::buildQuads()
|
2011-03-27 10:33:07 +00:00
|
|
|
{
|
2011-06-23 17:06:12 +00:00
|
|
|
// prepare window quads
|
2011-11-25 14:03:21 +00:00
|
|
|
m_shadowQuads.clear();
|
|
|
|
const QSizeF top(shadowPixmap(ShadowElementTop).size());
|
|
|
|
const QSizeF topRight(shadowPixmap(ShadowElementTopRight).size());
|
|
|
|
const QSizeF right(shadowPixmap(ShadowElementRight).size());
|
|
|
|
const QSizeF bottomRight(shadowPixmap(ShadowElementBottomRight).size());
|
|
|
|
const QSizeF bottom(shadowPixmap(ShadowElementBottom).size());
|
|
|
|
const QSizeF bottomLeft(shadowPixmap(ShadowElementBottomLeft).size());
|
|
|
|
const QSizeF left(shadowPixmap(ShadowElementLeft).size());
|
|
|
|
const QSizeF topLeft(shadowPixmap(ShadowElementTopLeft).size());
|
|
|
|
if ((left.width() - leftOffset() > topLevel()->width()) ||
|
|
|
|
(right.width() - rightOffset() > topLevel()->width()) ||
|
|
|
|
(top.height() - topOffset() > topLevel()->height()) ||
|
|
|
|
(bottom.height() - bottomOffset() > topLevel()->height())) {
|
2011-06-23 17:06:12 +00:00
|
|
|
// if our shadow is bigger than the window, we don't render the shadow
|
|
|
|
setShadowRegion(QRegion());
|
|
|
|
return;
|
2011-03-27 10:33:07 +00:00
|
|
|
}
|
2011-11-25 14:03:21 +00:00
|
|
|
|
2012-02-08 18:31:17 +00:00
|
|
|
const QRectF outerRect(QPointF(-leftOffset(), -topOffset()),
|
|
|
|
QPointF(topLevel()->width() + rightOffset(), topLevel()->height() + bottomOffset()));
|
2011-11-25 14:03:21 +00:00
|
|
|
|
2012-02-08 18:31:17 +00:00
|
|
|
const qreal width = topLeft.width() + top.width() + topRight.width();
|
|
|
|
const qreal height = topLeft.height() + left.height() + bottomLeft.height();
|
2011-11-25 14:03:21 +00:00
|
|
|
|
|
|
|
qreal tx1(0.0), tx2(0.0), ty1(0.0), ty2(0.0);
|
|
|
|
|
|
|
|
tx2 = topLeft.width()/width;
|
|
|
|
ty2 = topLeft.height()/height;
|
2014-07-17 09:36:09 +00:00
|
|
|
WindowQuad topLeftQuad(WindowQuadShadow);
|
2011-11-25 14:03:21 +00:00
|
|
|
topLeftQuad[ 0 ] = WindowVertex(outerRect.x(), outerRect.y(), tx1, ty1);
|
|
|
|
topLeftQuad[ 1 ] = WindowVertex(outerRect.x() + topLeft.width(), outerRect.y(), tx2, ty1);
|
|
|
|
topLeftQuad[ 2 ] = WindowVertex(outerRect.x() + topLeft.width(), outerRect.y() + topLeft.height(), tx2, ty2);
|
|
|
|
topLeftQuad[ 3 ] = WindowVertex(outerRect.x(), outerRect.y() + topLeft.height(), tx1, ty2);
|
|
|
|
m_shadowQuads.append(topLeftQuad);
|
|
|
|
|
2012-02-08 18:31:17 +00:00
|
|
|
tx1 = tx2;
|
|
|
|
tx2 = (topLeft.width() + top.width())/width;
|
|
|
|
ty2 = top.height()/height;
|
2014-07-17 09:36:09 +00:00
|
|
|
WindowQuad topQuad(WindowQuadShadow);
|
2011-11-25 14:03:21 +00:00
|
|
|
topQuad[ 0 ] = WindowVertex(outerRect.x() + topLeft.width(), outerRect.y(), tx1, ty1);
|
|
|
|
topQuad[ 1 ] = WindowVertex(outerRect.right() - topRight.width(), outerRect.y(), tx2, ty1);
|
|
|
|
topQuad[ 2 ] = WindowVertex(outerRect.right() - topRight.width(), outerRect.y() + top.height(),tx2, ty2);
|
|
|
|
topQuad[ 3 ] = WindowVertex(outerRect.x() + topLeft.width(), outerRect.y() + top.height(), tx1, ty2);
|
|
|
|
m_shadowQuads.append(topQuad);
|
|
|
|
|
2012-02-08 18:31:17 +00:00
|
|
|
tx1 = tx2;
|
|
|
|
tx2 = 1.0;
|
2011-11-25 14:03:21 +00:00
|
|
|
ty2 = topRight.height()/height;
|
2014-07-17 09:36:09 +00:00
|
|
|
WindowQuad topRightQuad(WindowQuadShadow);
|
2011-11-25 14:03:21 +00:00
|
|
|
topRightQuad[ 0 ] = WindowVertex(outerRect.right() - topRight.width(), outerRect.y(), tx1, ty1);
|
|
|
|
topRightQuad[ 1 ] = WindowVertex(outerRect.right(), outerRect.y(), tx2, ty1);
|
|
|
|
topRightQuad[ 2 ] = WindowVertex(outerRect.right(), outerRect.y() + topRight.height(), tx2, ty2);
|
|
|
|
topRightQuad[ 3 ] = WindowVertex(outerRect.right() - topRight.width(), outerRect.y() + topRight.height(), tx1, ty2);
|
|
|
|
m_shadowQuads.append(topRightQuad);
|
|
|
|
|
2012-02-08 18:31:17 +00:00
|
|
|
tx1 = (width - right.width())/width;
|
|
|
|
ty1 = topRight.height()/height;
|
|
|
|
ty2 = (topRight.height() + right.height())/height;
|
2014-07-17 09:36:09 +00:00
|
|
|
WindowQuad rightQuad(WindowQuadShadow);
|
2011-11-25 14:03:21 +00:00
|
|
|
rightQuad[ 0 ] = WindowVertex(outerRect.right() - right.width(), outerRect.y() + topRight.height(), tx1, ty1);
|
|
|
|
rightQuad[ 1 ] = WindowVertex(outerRect.right(), outerRect.y() + topRight.height(), tx2, ty1);
|
|
|
|
rightQuad[ 2 ] = WindowVertex(outerRect.right(), outerRect.bottom() - bottomRight.height(), tx2, ty2);
|
|
|
|
rightQuad[ 3 ] = WindowVertex(outerRect.right() - right.width(), outerRect.bottom() - bottomRight.height(), tx1, ty2);
|
|
|
|
m_shadowQuads.append(rightQuad);
|
|
|
|
|
2012-02-08 18:31:17 +00:00
|
|
|
tx1 = (width - bottomRight.width())/width;
|
|
|
|
ty1 = ty2;
|
|
|
|
ty2 = 1.0;
|
2014-07-17 09:36:09 +00:00
|
|
|
WindowQuad bottomRightQuad(WindowQuadShadow);
|
2011-11-25 14:03:21 +00:00
|
|
|
bottomRightQuad[ 0 ] = WindowVertex(outerRect.right() - bottomRight.width(), outerRect.bottom() - bottomRight.height(), tx1, ty1);
|
|
|
|
bottomRightQuad[ 1 ] = WindowVertex(outerRect.right(), outerRect.bottom() - bottomRight.height(), tx2, ty1);
|
|
|
|
bottomRightQuad[ 2 ] = WindowVertex(outerRect.right(), outerRect.bottom(), tx2, ty2);
|
|
|
|
bottomRightQuad[ 3 ] = WindowVertex(outerRect.right() - bottomRight.width(), outerRect.bottom(), tx1, ty2);
|
|
|
|
m_shadowQuads.append(bottomRightQuad);
|
|
|
|
|
2012-02-08 18:31:17 +00:00
|
|
|
tx2 = tx1;
|
|
|
|
tx1 = bottomLeft.width()/width;
|
|
|
|
ty1 = (height - bottom.height())/height;
|
2014-07-17 09:36:09 +00:00
|
|
|
WindowQuad bottomQuad(WindowQuadShadow);
|
2011-11-25 14:03:21 +00:00
|
|
|
bottomQuad[ 0 ] = WindowVertex(outerRect.x() + bottomLeft.width(), outerRect.bottom() - bottom.height(), tx1, ty1);
|
|
|
|
bottomQuad[ 1 ] = WindowVertex(outerRect.right() - bottomRight.width(), outerRect.bottom() - bottom.height(), tx2, ty1);
|
|
|
|
bottomQuad[ 2 ] = WindowVertex(outerRect.right() - bottomRight.width(), outerRect.bottom(), tx2, ty2);
|
|
|
|
bottomQuad[ 3 ] = WindowVertex(outerRect.x() + bottomLeft.width(), outerRect.bottom(), tx1, ty2);
|
|
|
|
m_shadowQuads.append(bottomQuad);
|
|
|
|
|
2012-02-08 18:31:17 +00:00
|
|
|
tx1 = 0.0;
|
|
|
|
tx2 = bottomLeft.width()/width;
|
|
|
|
ty1 = (height - bottomLeft.height())/height;
|
2014-07-17 09:36:09 +00:00
|
|
|
WindowQuad bottomLeftQuad(WindowQuadShadow);
|
2011-11-25 14:03:21 +00:00
|
|
|
bottomLeftQuad[ 0 ] = WindowVertex(outerRect.x(), outerRect.bottom() - bottomLeft.height(), tx1, ty1);
|
|
|
|
bottomLeftQuad[ 1 ] = WindowVertex(outerRect.x() + bottomLeft.width(), outerRect.bottom() - bottomLeft.height(), tx2, ty1);
|
|
|
|
bottomLeftQuad[ 2 ] = WindowVertex(outerRect.x() + bottomLeft.width(), outerRect.bottom(), tx2, ty2);
|
|
|
|
bottomLeftQuad[ 3 ] = WindowVertex(outerRect.x(), outerRect.bottom(), tx1, ty2);
|
|
|
|
m_shadowQuads.append(bottomLeftQuad);
|
|
|
|
|
|
|
|
tx2 = left.width()/width;
|
2012-02-08 18:31:17 +00:00
|
|
|
ty2 = ty1;
|
|
|
|
ty1 = topLeft.height()/height;
|
2014-07-17 09:36:09 +00:00
|
|
|
WindowQuad leftQuad(WindowQuadShadow);
|
2011-11-25 14:03:21 +00:00
|
|
|
leftQuad[ 0 ] = WindowVertex(outerRect.x(), outerRect.y() + topLeft.height(), tx1, ty1);
|
|
|
|
leftQuad[ 1 ] = WindowVertex(outerRect.x() + left.width(), outerRect.y() + topLeft.height(), tx2, ty1);
|
|
|
|
leftQuad[ 2 ] = WindowVertex(outerRect.x() + left.width(), outerRect.bottom() - bottomLeft.height(), tx2, ty2);
|
|
|
|
leftQuad[ 3 ] = WindowVertex(outerRect.x(), outerRect.bottom() - bottomLeft.height(), tx1, ty2);
|
|
|
|
m_shadowQuads.append(leftQuad);
|
2011-06-23 17:06:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool SceneOpenGLShadow::prepareBackend()
|
|
|
|
{
|
2011-11-25 14:03:21 +00:00
|
|
|
const QSize top(shadowPixmap(ShadowElementTop).size());
|
|
|
|
const QSize topRight(shadowPixmap(ShadowElementTopRight).size());
|
|
|
|
const QSize right(shadowPixmap(ShadowElementRight).size());
|
|
|
|
const QSize bottom(shadowPixmap(ShadowElementBottom).size());
|
|
|
|
const QSize bottomLeft(shadowPixmap(ShadowElementBottomLeft).size());
|
|
|
|
const QSize left(shadowPixmap(ShadowElementLeft).size());
|
|
|
|
const QSize topLeft(shadowPixmap(ShadowElementTopLeft).size());
|
2012-02-08 18:31:17 +00:00
|
|
|
|
|
|
|
const int width = topLeft.width() + top.width() + topRight.width();
|
|
|
|
const int height = topLeft.height() + left.height() + bottomLeft.height();
|
2011-06-23 17:06:12 +00:00
|
|
|
|
|
|
|
QImage image(width, height, QImage::Format_ARGB32);
|
|
|
|
image.fill(Qt::transparent);
|
|
|
|
QPainter p;
|
|
|
|
p.begin(&image);
|
|
|
|
p.drawPixmap(0, 0, shadowPixmap(ShadowElementTopLeft));
|
2012-02-08 18:31:17 +00:00
|
|
|
p.drawPixmap(topLeft.width(), 0, shadowPixmap(ShadowElementTop));
|
|
|
|
p.drawPixmap(topLeft.width() + top.width(), 0, shadowPixmap(ShadowElementTopRight));
|
|
|
|
p.drawPixmap(0, topLeft.height(), shadowPixmap(ShadowElementLeft));
|
|
|
|
p.drawPixmap(width - right.width(), topRight.height(), shadowPixmap(ShadowElementRight));
|
|
|
|
p.drawPixmap(0, topLeft.height() + left.height(), shadowPixmap(ShadowElementBottomLeft));
|
|
|
|
p.drawPixmap(bottomLeft.width(), height - bottom.height(), shadowPixmap(ShadowElementBottom));
|
|
|
|
p.drawPixmap(bottomLeft.width() + bottom.width(), topRight.height() + right.height(), shadowPixmap(ShadowElementBottomRight));
|
2011-06-23 17:06:12 +00:00
|
|
|
p.end();
|
|
|
|
|
Better handling for making the compositing OpenGL context current
With QtQuick2 it's possible that the scene graph rendering context either
lives in an own thread or uses the main GUI thread. In the latter case
it's the same thread as our compositing OpenGL context lives in. This
means our basic assumption that between two rendering passes the context
stays current does not hold.
The code already ensured that before we start a rendering pass the
context is made current, but there are many more possible cases. If we
use OpenGL in areas not triggered by the rendering loop but in response
to other events the context needs to be made current. This includes the
loading and unloading of effects (some effects use OpenGL in the static
effect check, in the ctor and dtor), background loading of texture data,
lazy loading after first usage invoked by shortcut, etc. etc.
To properly handle these cases new methods are added to EffectsHandler
to make the compositing OpenGL context current. These calls delegate down
into the scene. On non-OpenGL scenes they are noop, but on OpenGL they go
into the backend and make the context current. In addition they ensure
that Qt doesn't think that it's QOpenGLContext is current by calling
doneCurrent() on the QOpenGLContext::currentContext(). This unfortunately
causes an additional call to makeCurrent with a null context, but there
is no other way to tell Qt - it doesn't notice when a different context
is made current with low level API calls. In the multi-threaded
architecture this doesn't matter as ::currentContext() returns null.
A short evaluation showed that a transition to QOpenGLContext doesn't
seem feasible. Qt only supports either GLX or EGL while KWin supports
both and when entering the transition phase for Wayland, it would become
extremely tricky if our native platform is X11, but we want a Wayland
EGL context. A future solution might be to have a "KWin-QPA plugin" which
uses either xcb or Wayland and hides everything from Qt.
The API documentation is extended to describe when the effects-framework
ensures that an OpenGL context is current. The effects are changed to
make the context current in cases where it's not guaranteed. This has
been done by looking for creation or deletion of GLTextures and Shaders.
If there are other OpenGL usages outside the rendering loop, ctor/dtor
this needs to be changed, too.
2013-11-22 14:05:36 +00:00
|
|
|
effects->makeOpenGLContextCurrent();
|
2011-11-25 14:03:21 +00:00
|
|
|
delete m_texture;
|
2011-06-23 17:06:12 +00:00
|
|
|
m_texture = new GLTexture(image);
|
2011-11-25 14:03:21 +00:00
|
|
|
|
2011-06-23 17:06:12 +00:00
|
|
|
return true;
|
2011-03-27 10:33:07 +00:00
|
|
|
}
|
|
|
|
|
2013-03-28 20:52:26 +00:00
|
|
|
SwapProfiler::SwapProfiler()
|
|
|
|
{
|
|
|
|
init();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SwapProfiler::init()
|
|
|
|
{
|
|
|
|
m_time = 2 * 1000*1000; // we start with a long time mean of 2ms ...
|
|
|
|
m_counter = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SwapProfiler::begin()
|
|
|
|
{
|
|
|
|
m_timer.start();
|
|
|
|
}
|
|
|
|
|
|
|
|
char SwapProfiler::end()
|
|
|
|
{
|
|
|
|
// .. and blend in actual values.
|
|
|
|
// this way we prevent extremes from killing our long time mean
|
|
|
|
m_time = (10*m_time + m_timer.nsecsElapsed())/11;
|
|
|
|
if (++m_counter > 500) {
|
|
|
|
const bool blocks = m_time > 1000 * 1000; // 1ms, i get ~250µs and ~7ms w/o triple buffering...
|
2013-09-02 11:14:39 +00:00
|
|
|
qDebug() << "Triple buffering detection:" << QString(blocks ? QStringLiteral("NOT available") : QStringLiteral("Available")) <<
|
2013-03-28 20:52:26 +00:00
|
|
|
" - Mean block time:" << m_time/(1000.0*1000.0) << "ms";
|
|
|
|
return blocks ? 'd' : 't';
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
} // namespace
|