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
|
|
|
|
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
|
|
|
|
|
|
|
#ifndef KWIN_SCENE_OPENGL_H
|
|
|
|
#define KWIN_SCENE_OPENGL_H
|
|
|
|
|
|
|
|
#include "scene.h"
|
2011-03-27 10:33:07 +00:00
|
|
|
#include "shadow.h"
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
#include "kwinglutils.h"
|
2011-07-18 15:55:39 +00:00
|
|
|
#include "kwingltexture_p.h"
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
namespace KWin
|
|
|
|
{
|
2012-08-26 15:14:23 +00:00
|
|
|
class OpenGLBackend;
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
class SceneOpenGL
|
|
|
|
: public Scene
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
2011-06-15 16:35:00 +00:00
|
|
|
Q_OBJECT
|
2011-01-30 14:34:42 +00:00
|
|
|
public:
|
|
|
|
class EffectFrame;
|
|
|
|
class Texture;
|
2011-07-18 15:55:39 +00:00
|
|
|
class TexturePrivate;
|
2011-01-30 14:34:42 +00:00
|
|
|
class Window;
|
|
|
|
SceneOpenGL(Workspace* ws);
|
|
|
|
virtual ~SceneOpenGL();
|
|
|
|
virtual bool initFailed() const;
|
|
|
|
virtual CompositingType compositingType() const {
|
|
|
|
return OpenGLCompositing;
|
|
|
|
}
|
2012-08-26 15:14:23 +00:00
|
|
|
virtual bool hasPendingFlush() const;
|
2012-03-29 20:11:28 +00:00
|
|
|
virtual int paint(QRegion damage, ToplevelList windows);
|
2011-01-30 14:34:42 +00:00
|
|
|
virtual void windowAdded(Toplevel*);
|
|
|
|
virtual void windowDeleted(Deleted*);
|
2011-11-26 15:15:46 +00:00
|
|
|
virtual void screenGeometryChanged(const QSize &size);
|
2012-08-26 15:14:23 +00:00
|
|
|
virtual OverlayWindow *overlayWindow();
|
|
|
|
virtual bool waitSyncAvailable() const;
|
2011-02-17 17:37:43 +00:00
|
|
|
|
2012-03-29 20:11:28 +00:00
|
|
|
void idle();
|
|
|
|
|
2012-08-26 15:14:23 +00:00
|
|
|
/**
|
|
|
|
* @brief Factory method to create a backend specific texture.
|
|
|
|
*
|
|
|
|
* @return :SceneOpenGL::Texture*
|
|
|
|
**/
|
|
|
|
Texture *createTexture();
|
|
|
|
Texture *createTexture(const QPixmap& pix, GLenum target = GL_TEXTURE_2D);
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
protected:
|
|
|
|
virtual void paintGenericScreen(int mask, ScreenPaintData data);
|
|
|
|
virtual void paintBackground(QRegion region);
|
2011-02-17 17:37:43 +00:00
|
|
|
QMatrix4x4 transformation(int mask, const ScreenPaintData &data) const;
|
2011-06-19 20:18:21 +00:00
|
|
|
public Q_SLOTS:
|
2011-06-15 17:13:56 +00:00
|
|
|
virtual void windowOpacityChanged(KWin::Toplevel* c);
|
2011-06-19 20:07:19 +00:00
|
|
|
virtual void windowGeometryShapeChanged(KWin::Toplevel* c);
|
2011-06-21 10:30:42 +00:00
|
|
|
virtual void windowClosed(KWin::Toplevel* c, KWin::Deleted* deleted);
|
2011-01-30 14:34:42 +00:00
|
|
|
private:
|
2011-11-26 15:15:46 +00:00
|
|
|
void setupModelViewProjectionMatrix();
|
|
|
|
bool m_resetModelViewProjectionMatrix;
|
2011-01-30 14:34:42 +00:00
|
|
|
QHash< Toplevel*, Window* > windows;
|
|
|
|
bool init_ok;
|
|
|
|
bool debug;
|
2012-08-26 15:14:23 +00:00
|
|
|
OpenGLBackend *m_backend;
|
2011-01-30 14:34:42 +00:00
|
|
|
};
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-07-18 15:55:39 +00:00
|
|
|
class SceneOpenGL::TexturePrivate
|
|
|
|
: public GLTexturePrivate
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual ~TexturePrivate();
|
|
|
|
|
2012-08-26 15:14:23 +00:00
|
|
|
virtual void findTarget() = 0;
|
|
|
|
virtual bool loadTexture(const Pixmap& pix, const QSize& size, int depth) = 0;
|
|
|
|
virtual OpenGLBackend *backend() = 0;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
TexturePrivate();
|
2011-07-18 15:55:39 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
Q_DISABLE_COPY(TexturePrivate)
|
|
|
|
};
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
class SceneOpenGL::Texture
|
|
|
|
: public GLTexture
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
public:
|
2012-08-26 15:14:23 +00:00
|
|
|
Texture(OpenGLBackend *backend);
|
|
|
|
Texture(OpenGLBackend *backend, const QPixmap& pix, GLenum target = GL_TEXTURE_2D);
|
2011-01-30 14:34:42 +00:00
|
|
|
virtual ~Texture();
|
|
|
|
|
2011-07-18 15:55:39 +00:00
|
|
|
Texture & operator = (const Texture& tex);
|
|
|
|
|
2011-01-30 14:34:42 +00:00
|
|
|
using GLTexture::load;
|
|
|
|
virtual bool load(const QImage& image, GLenum target = GL_TEXTURE_2D);
|
|
|
|
virtual bool load(const QPixmap& pixmap, GLenum target = GL_TEXTURE_2D);
|
|
|
|
virtual void discard();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void findTarget();
|
2011-05-12 16:52:38 +00:00
|
|
|
virtual bool load(const Pixmap& pix, const QSize& size, int depth,
|
|
|
|
QRegion region);
|
|
|
|
virtual bool load(const Pixmap& pix, const QSize& size, int depth);
|
2011-01-30 14:34:42 +00:00
|
|
|
|
2011-07-18 15:55:39 +00:00
|
|
|
Texture(TexturePrivate& dd);
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2011-07-18 15:55:39 +00:00
|
|
|
private:
|
2011-08-27 07:31:38 +00:00
|
|
|
Q_DECLARE_PRIVATE(Texture)
|
2011-05-12 16:52:38 +00:00
|
|
|
|
|
|
|
friend class SceneOpenGL::Window;
|
2011-01-30 14:34:42 +00:00
|
|
|
};
|
2007-04-29 17:35:43 +00:00
|
|
|
|
|
|
|
class SceneOpenGL::Window
|
|
|
|
: public Scene::Window
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
Window(Toplevel* c);
|
|
|
|
virtual ~Window();
|
|
|
|
virtual void performPaint(int mask, QRegion region, WindowPaintData data);
|
|
|
|
virtual void pixmapDiscarded();
|
|
|
|
bool bindTexture();
|
|
|
|
void discardTexture();
|
|
|
|
void checkTextureSize();
|
2012-08-16 19:19:54 +00:00
|
|
|
void setScene(SceneOpenGL *scene) {
|
|
|
|
m_scene = scene;
|
|
|
|
}
|
2011-01-30 14:34:42 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
enum TextureType {
|
|
|
|
Content,
|
|
|
|
DecorationTop,
|
|
|
|
DecorationLeft,
|
|
|
|
DecorationRight,
|
2011-03-27 10:33:07 +00:00
|
|
|
DecorationBottom,
|
|
|
|
Shadow
|
2007-04-29 17:35:43 +00:00
|
|
|
};
|
2011-02-15 17:10:54 +00:00
|
|
|
|
|
|
|
QMatrix4x4 transformation(int mask, const WindowPaintData &data) const;
|
2012-02-12 15:42:09 +00:00
|
|
|
void paintDecoration(const QPixmap* decoration, TextureType decorationType, const QRegion& region, const QRect& rect, const WindowPaintData& data, const WindowQuadList& quads, bool updateDeco, bool hardwareClipping);
|
|
|
|
void paintShadow(const QRegion ®ion, const WindowPaintData &data, bool hardwareClipping);
|
2011-07-01 16:04:15 +00:00
|
|
|
void makeDecorationArrays(const WindowQuadList& quads, const QRect &rect, Texture *tex) const;
|
2012-02-12 15:42:09 +00:00
|
|
|
void renderQuads(int, const QRegion& region, const WindowQuadList& quads, GLTexture* tex, bool normalized, bool hardwareClipping);
|
2011-01-30 14:34:42 +00:00
|
|
|
void prepareStates(TextureType type, double opacity, double brightness, double saturation, GLShader* shader);
|
2011-06-23 17:06:12 +00:00
|
|
|
void prepareStates(TextureType type, double opacity, double brightness, double saturation, GLShader* shader, GLTexture *texture);
|
|
|
|
void prepareRenderStates(TextureType type, double opacity, double brightness, double saturation, GLTexture *tex);
|
2011-01-30 14:34:42 +00:00
|
|
|
void prepareShaderRenderStates(TextureType type, double opacity, double brightness, double saturation, GLShader* shader);
|
|
|
|
void restoreStates(TextureType type, double opacity, double brightness, double saturation, GLShader* shader);
|
2011-06-23 17:06:12 +00:00
|
|
|
void restoreStates(TextureType type, double opacity, double brightness, double saturation, GLShader* shader, GLTexture *texture);
|
|
|
|
void restoreRenderStates(TextureType type, double opacity, double brightness, double saturation, GLTexture *tex);
|
2011-01-30 14:34:42 +00:00
|
|
|
void restoreShaderRenderStates(TextureType type, double opacity, double brightness, double saturation, GLShader* shader);
|
|
|
|
|
|
|
|
private:
|
2012-08-26 15:14:23 +00:00
|
|
|
Texture *texture;
|
|
|
|
Texture *topTexture;
|
|
|
|
Texture *leftTexture;
|
|
|
|
Texture *rightTexture;
|
|
|
|
Texture *bottomTexture;
|
2012-08-16 19:19:54 +00:00
|
|
|
SceneOpenGL *m_scene;
|
2011-01-30 14:34:42 +00:00
|
|
|
};
|
2007-04-29 17:35:43 +00:00
|
|
|
|
2010-07-18 16:32:37 +00:00
|
|
|
class SceneOpenGL::EffectFrame
|
|
|
|
: public Scene::EffectFrame
|
2011-01-30 14:34:42 +00:00
|
|
|
{
|
|
|
|
public:
|
2012-08-26 15:14:23 +00:00
|
|
|
EffectFrame(EffectFrameImpl* frame, SceneOpenGL *scene);
|
2011-01-30 14:34:42 +00:00
|
|
|
virtual ~EffectFrame();
|
|
|
|
|
|
|
|
virtual void free();
|
|
|
|
virtual void freeIconFrame();
|
|
|
|
virtual void freeTextFrame();
|
|
|
|
virtual void freeSelection();
|
|
|
|
|
|
|
|
virtual void render(QRegion region, double opacity, double frameOpacity);
|
|
|
|
|
|
|
|
virtual void crossFadeIcon();
|
|
|
|
virtual void crossFadeText();
|
|
|
|
|
|
|
|
static void cleanup();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void updateTexture();
|
|
|
|
void updateTextTexture();
|
|
|
|
|
|
|
|
Texture* m_texture;
|
|
|
|
Texture* m_textTexture;
|
|
|
|
Texture* m_oldTextTexture;
|
|
|
|
QPixmap* m_textPixmap; // need to keep the pixmap around to workaround some driver problems
|
|
|
|
Texture* m_iconTexture;
|
|
|
|
Texture* m_oldIconTexture;
|
|
|
|
Texture* m_selectionTexture;
|
|
|
|
GLVertexBuffer* m_unstyledVBO;
|
2012-08-26 15:14:23 +00:00
|
|
|
SceneOpenGL *m_scene;
|
2011-01-30 14:34:42 +00:00
|
|
|
|
2012-08-26 15:14:23 +00:00
|
|
|
static GLTexture* m_unstyledTexture;
|
2011-01-30 14:34:42 +00:00
|
|
|
static QPixmap* m_unstyledPixmap; // need to keep the pixmap around to workaround some driver problems
|
|
|
|
static void updateUnstyledTexture(); // Update OpenGL unstyled frame texture
|
|
|
|
};
|
2010-07-18 16:32:37 +00:00
|
|
|
|
2011-03-27 10:33:07 +00:00
|
|
|
/**
|
|
|
|
* @short OpenGL implementation of Shadow.
|
|
|
|
*
|
|
|
|
* This class extends Shadow by the Elements required for OpenGL rendering.
|
|
|
|
* @author Martin Gräßlin <mgraesslin@kde.org>
|
|
|
|
**/
|
|
|
|
class SceneOpenGLShadow
|
|
|
|
: public Shadow
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SceneOpenGLShadow(Toplevel *toplevel);
|
|
|
|
virtual ~SceneOpenGLShadow();
|
|
|
|
|
2011-06-23 17:06:12 +00:00
|
|
|
GLTexture *shadowTexture() {
|
|
|
|
return m_texture;
|
|
|
|
}
|
|
|
|
protected:
|
|
|
|
virtual void buildQuads();
|
|
|
|
virtual bool prepareBackend();
|
2011-03-27 10:33:07 +00:00
|
|
|
private:
|
2011-06-23 17:06:12 +00:00
|
|
|
GLTexture *m_texture;
|
2011-03-27 10:33:07 +00:00
|
|
|
};
|
|
|
|
|
2012-08-26 15:14:23 +00:00
|
|
|
/**
|
|
|
|
* @brief The OpenGLBackend creates and holds the OpenGL context and is responsible for Texture from Pixmap.
|
|
|
|
*
|
|
|
|
* The OpenGLBackend is an abstract base class used by the SceneOpenGL to abstract away the differences
|
|
|
|
* between various OpenGL windowing systems such as GLX and EGL.
|
|
|
|
*
|
|
|
|
* A concrete implementation has to create and release the OpenGL context in a way so that the
|
|
|
|
* SceneOpenGL does not have to care about it.
|
|
|
|
*
|
|
|
|
* In addition a major task for this class is to generate the SceneOpenGL::TexturePrivate which is
|
|
|
|
* able to perform the texture from pixmap operation in the given backend.
|
|
|
|
*
|
|
|
|
* @author Martin Gräßlin <mgraesslin@kde.org>
|
|
|
|
**/
|
|
|
|
class OpenGLBackend
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
OpenGLBackend();
|
|
|
|
virtual ~OpenGLBackend();
|
|
|
|
/**
|
|
|
|
* @return Time passes since start of rendering current frame.
|
|
|
|
* @see startRenderTimer
|
|
|
|
**/
|
|
|
|
qint64 renderTime() {
|
|
|
|
return m_renderTimer.elapsed();
|
|
|
|
}
|
|
|
|
virtual void screenGeometryChanged(const QSize &size) = 0;
|
|
|
|
virtual SceneOpenGL::TexturePrivate *createBackendTexture(SceneOpenGL::Texture *texture) = 0;
|
|
|
|
/**
|
|
|
|
* @brief Backend specific code to prepare the rendering of a frame including flushing the
|
|
|
|
* previously rendered frame to the screen if the backend works this way.
|
|
|
|
**/
|
|
|
|
virtual void prepareRenderingFrame() = 0;
|
|
|
|
/**
|
|
|
|
* @brief Backend specific code to handle the end of rendering a frame.
|
|
|
|
*
|
|
|
|
* @param mask The rendering mask of this frame
|
|
|
|
* @param damage The actual updated region in this frame
|
|
|
|
**/
|
|
|
|
virtual void endRenderingFrame(int mask, const QRegion &damage) = 0;
|
|
|
|
/**
|
|
|
|
* @brief Compositor is going into idle mode, flushes any pending paints.
|
|
|
|
**/
|
|
|
|
void idle();
|
|
|
|
/**
|
|
|
|
* @return bool Whether the scene needs to flush a frame.
|
|
|
|
**/
|
|
|
|
bool hasPendingFlush() const {
|
|
|
|
return !m_lastDamage.isEmpty();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Returns the OverlayWindow used by the backend.
|
|
|
|
*
|
|
|
|
* A backend does not have to use an OverlayWindow, this is mostly for the X world.
|
|
|
|
* In case the backend does not use an OverlayWindow it is allowed to return @c null.
|
|
|
|
* It's the task of the caller to check whether it is @c null.
|
|
|
|
*
|
|
|
|
* @return :OverlayWindow*
|
|
|
|
**/
|
|
|
|
OverlayWindow *overlayWindow() {
|
|
|
|
return m_overlayWindow;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* @brief Whether the creation of the Backend failed.
|
|
|
|
*
|
|
|
|
* The SceneOpenGL should test whether the Backend got constructed correctly. If this method
|
|
|
|
* returns @c true, the SceneOpenGL should not try to start the rendering.
|
|
|
|
*
|
|
|
|
* @return bool @c true if the creation of the Backend failed, @c false otherwise.
|
|
|
|
**/
|
|
|
|
bool isFailed() const {
|
|
|
|
return m_failed;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* @brief Whether the Backend provides VSync.
|
|
|
|
*
|
|
|
|
* Currently only the GLX backend can provide VSync.
|
|
|
|
*
|
|
|
|
* @return bool @c true if VSync support is available, @c false otherwise
|
|
|
|
**/
|
|
|
|
bool waitSyncAvailable() const {
|
|
|
|
return m_waitSync;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* @brief Whether the backend uses direct rendering.
|
|
|
|
*
|
|
|
|
* Some OpenGLScene modes require direct rendering. E.g. the OpenGL 2 should not be used
|
|
|
|
* if direct rendering is not supported by the Scene.
|
|
|
|
*
|
|
|
|
* @return bool @c true if the GL context is direct, @c false if indirect
|
|
|
|
**/
|
|
|
|
bool isDirectRendering() const {
|
|
|
|
return m_directRendering;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* @brief Whether the backend used double buffering.
|
|
|
|
*
|
|
|
|
* @return bool @c true if double buffered, @c false otherwise
|
|
|
|
**/
|
|
|
|
bool isDoubleBuffer() const {
|
|
|
|
return m_doubleBuffer;
|
|
|
|
}
|
|
|
|
protected:
|
|
|
|
/**
|
|
|
|
* @brief Backend specific flushing of frame to screen.
|
|
|
|
**/
|
|
|
|
virtual void flushBuffer() = 0;
|
|
|
|
/**
|
|
|
|
* @brief Sets the backend initialization to failed.
|
|
|
|
*
|
|
|
|
* This method should be called by the concrete subclass in case the initialization failed.
|
|
|
|
* The given @p reason is logged as a warning.
|
|
|
|
*
|
|
|
|
* @param reason The reason why the initialization failed.
|
|
|
|
**/
|
|
|
|
void setFailed(const QString &reason);
|
|
|
|
/**
|
|
|
|
* @brief Sets whether the backend provides VSync.
|
|
|
|
*
|
|
|
|
* Should be called by the concrete subclass once it is determined whether VSync is supported.
|
|
|
|
* If the subclass does not call this method, the backend defaults to @c false.
|
|
|
|
* @param enabled @c true if VSync support available, @c false otherwise.
|
|
|
|
**/
|
|
|
|
void setHasWaitSync(bool enabled) {
|
|
|
|
m_waitSync = enabled;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* @brief Sets whether the OpenGL context is direct.
|
|
|
|
*
|
|
|
|
* Should be called by the concrete subclass once it is determined whether the OpenGL context is
|
|
|
|
* direct or indirect.
|
|
|
|
* If the subclass does not call this method, the backend defaults to @c false.
|
|
|
|
*
|
|
|
|
* @param direct @c true if the OpenGL context is direct, @c false if indirect
|
|
|
|
**/
|
|
|
|
void setIsDirectRendering(bool direct) {
|
|
|
|
m_directRendering = direct;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* @brief Sets whether the OpenGL context uses double buffering.
|
|
|
|
*
|
|
|
|
* Should be called by the concrete subclass once it is determined whether the OpenGL context
|
|
|
|
* uses double buffering.
|
|
|
|
* If the subclass does not call this method, the backend defaults to @c false.
|
|
|
|
*
|
|
|
|
* @param doubleBuffer @c true if double buffering, @c false otherwise
|
|
|
|
**/
|
|
|
|
void setDoubleBuffer(bool doubleBuffer) {
|
|
|
|
m_doubleBuffer = doubleBuffer;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* @return const QRegion& Damage of previously rendered frame
|
|
|
|
**/
|
|
|
|
const QRegion &lastDamage() const {
|
|
|
|
return m_lastDamage;
|
|
|
|
}
|
|
|
|
void setLastDamage(const QRegion &damage) {
|
|
|
|
m_lastDamage = damage;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* @return int Rendering mask of previously rendered frame
|
|
|
|
**/
|
|
|
|
int lastMask() const {
|
|
|
|
return m_lastMask;
|
|
|
|
}
|
|
|
|
void setLastMask(int mask) {
|
|
|
|
m_lastMask = mask;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* @brief Starts the timer for how long it takes to render the frame.
|
|
|
|
*
|
|
|
|
* @see renderTime
|
|
|
|
**/
|
|
|
|
void startRenderTimer() {
|
|
|
|
m_renderTimer.start();
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
/**
|
|
|
|
* @brief The OverlayWindow used by this Backend.
|
|
|
|
**/
|
|
|
|
OverlayWindow *m_overlayWindow;
|
|
|
|
/**
|
|
|
|
* @brief Whether VSync is available, defaults to @c false.
|
|
|
|
**/
|
|
|
|
bool m_waitSync;
|
|
|
|
/**
|
|
|
|
* @brief Whether direct rendering is used, defaults to @c false.
|
|
|
|
**/
|
|
|
|
bool m_directRendering;
|
|
|
|
/**
|
|
|
|
* @brief Whether double bufferering is available, defaults to @c false.
|
|
|
|
**/
|
|
|
|
bool m_doubleBuffer;
|
|
|
|
/**
|
|
|
|
* @brief Whether the initialization failed, of course default to @c false.
|
|
|
|
**/
|
|
|
|
bool m_failed;
|
|
|
|
/**
|
|
|
|
* @brief Damaged region of previously rendered frame.
|
|
|
|
**/
|
|
|
|
QRegion m_lastDamage;
|
|
|
|
/**
|
|
|
|
* @brief Rendering mask of previously rendered frame.
|
|
|
|
**/
|
|
|
|
int m_lastMask;
|
|
|
|
/**
|
|
|
|
* @brief Timer to measure how long a frame renders.
|
|
|
|
**/
|
|
|
|
QElapsedTimer m_renderTimer;
|
|
|
|
};
|
|
|
|
|
|
|
|
inline bool SceneOpenGL::hasPendingFlush() const
|
|
|
|
{
|
|
|
|
return m_backend->hasPendingFlush();
|
|
|
|
}
|
|
|
|
|
2007-04-29 17:35:43 +00:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif
|