[2] | 1 | /****************************************************************************
|
---|
| 2 | **
|
---|
[846] | 3 | ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
---|
[561] | 4 | ** All rights reserved.
|
---|
| 5 | ** Contact: Nokia Corporation ([email protected])
|
---|
[2] | 6 | **
|
---|
| 7 | ** This file is part of the QtOpenGL module of the Qt Toolkit.
|
---|
| 8 | **
|
---|
| 9 | ** $QT_BEGIN_LICENSE:LGPL$
|
---|
| 10 | ** Commercial Usage
|
---|
| 11 | ** Licensees holding valid Qt Commercial licenses may use this file in
|
---|
| 12 | ** accordance with the Qt Commercial License Agreement provided with the
|
---|
| 13 | ** Software or, alternatively, in accordance with the terms contained in
|
---|
| 14 | ** a written agreement between you and Nokia.
|
---|
| 15 | **
|
---|
| 16 | ** GNU Lesser General Public License Usage
|
---|
| 17 | ** Alternatively, this file may be used under the terms of the GNU Lesser
|
---|
| 18 | ** General Public License version 2.1 as published by the Free Software
|
---|
| 19 | ** Foundation and appearing in the file LICENSE.LGPL included in the
|
---|
| 20 | ** packaging of this file. Please review the following information to
|
---|
| 21 | ** ensure the GNU Lesser General Public License version 2.1 requirements
|
---|
| 22 | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
---|
| 23 | **
|
---|
[561] | 24 | ** In addition, as a special exception, Nokia gives you certain additional
|
---|
| 25 | ** rights. These rights are described in the Nokia Qt LGPL Exception
|
---|
| 26 | ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
---|
[2] | 27 | **
|
---|
| 28 | ** GNU General Public License Usage
|
---|
| 29 | ** Alternatively, this file may be used under the terms of the GNU
|
---|
| 30 | ** General Public License version 3.0 as published by the Free Software
|
---|
| 31 | ** Foundation and appearing in the file LICENSE.GPL included in the
|
---|
| 32 | ** packaging of this file. Please review the following information to
|
---|
| 33 | ** ensure the GNU General Public License version 3.0 requirements will be
|
---|
| 34 | ** met: http://www.gnu.org/copyleft/gpl.html.
|
---|
| 35 | **
|
---|
[561] | 36 | ** If you have questions regarding the use of this file, please contact
|
---|
| 37 | ** Nokia at [email protected].
|
---|
[2] | 38 | ** $QT_END_LICENSE$
|
---|
| 39 | **
|
---|
| 40 | ****************************************************************************/
|
---|
| 41 |
|
---|
| 42 | #ifndef QGLPIXELBUFFER_P_H
|
---|
| 43 | #define QGLPIXELBUFFER_P_H
|
---|
| 44 |
|
---|
| 45 | //
|
---|
| 46 | // W A R N I N G
|
---|
| 47 | // -------------
|
---|
| 48 | //
|
---|
| 49 | // This file is not part of the Qt API. It exists for the convenience
|
---|
| 50 | // of the QLibrary class. This header file may change from
|
---|
| 51 | // version to version without notice, or even be removed.
|
---|
| 52 | //
|
---|
| 53 | // We mean it.
|
---|
| 54 | //
|
---|
| 55 |
|
---|
| 56 | QT_BEGIN_NAMESPACE
|
---|
| 57 |
|
---|
| 58 | QT_BEGIN_INCLUDE_NAMESPACE
|
---|
| 59 | #include "QtOpenGL/qglpixelbuffer.h"
|
---|
| 60 | #include <private/qgl_p.h>
|
---|
[561] | 61 | #include <private/qglpaintdevice_p.h>
|
---|
[2] | 62 |
|
---|
[846] | 63 | #if defined(Q_WS_X11) && defined(QT_NO_EGL)
|
---|
[2] | 64 | #include <GL/glx.h>
|
---|
| 65 |
|
---|
| 66 | // The below is needed to for compilation on HPUX, due to broken GLX
|
---|
| 67 | // headers. Some of the systems define GLX_VERSION_1_3 without
|
---|
| 68 | // defining the GLXFBConfig structure, which is wrong.
|
---|
| 69 | #if defined (Q_OS_HPUX) && defined(QT_DEFINE_GLXFBCONFIG_STRUCT)
|
---|
| 70 | typedef unsigned long GLXPbuffer;
|
---|
| 71 |
|
---|
| 72 | struct GLXFBConfig {
|
---|
| 73 | int visualType;
|
---|
| 74 | int transparentType;
|
---|
| 75 | /* colors are floats scaled to ints */
|
---|
| 76 | int transparentRed, transparentGreen, transparentBlue, transparentAlpha;
|
---|
| 77 | int transparentIndex;
|
---|
| 78 |
|
---|
| 79 | int visualCaveat;
|
---|
| 80 |
|
---|
| 81 | int associatedVisualId;
|
---|
| 82 | int screen;
|
---|
| 83 |
|
---|
| 84 | int drawableType;
|
---|
| 85 | int renderType;
|
---|
| 86 |
|
---|
| 87 | int maxPbufferWidth, maxPbufferHeight, maxPbufferPixels;
|
---|
| 88 | int optimalPbufferWidth, optimalPbufferHeight; /* for SGIX_pbuffer */
|
---|
| 89 |
|
---|
| 90 | int visualSelectGroup; /* visuals grouped by select priority */
|
---|
| 91 |
|
---|
| 92 | unsigned int id;
|
---|
| 93 |
|
---|
| 94 | GLboolean rgbMode;
|
---|
| 95 | GLboolean colorIndexMode;
|
---|
| 96 | GLboolean doubleBufferMode;
|
---|
| 97 | GLboolean stereoMode;
|
---|
| 98 | GLboolean haveAccumBuffer;
|
---|
| 99 | GLboolean haveDepthBuffer;
|
---|
| 100 | GLboolean haveStencilBuffer;
|
---|
| 101 |
|
---|
| 102 | /* The number of bits present in various buffers */
|
---|
| 103 | GLint accumRedBits, accumGreenBits, accumBlueBits, accumAlphaBits;
|
---|
| 104 | GLint depthBits;
|
---|
| 105 | GLint stencilBits;
|
---|
| 106 | GLint indexBits;
|
---|
| 107 | GLint redBits, greenBits, blueBits, alphaBits;
|
---|
| 108 | GLuint redMask, greenMask, blueMask, alphaMask;
|
---|
| 109 |
|
---|
| 110 | GLuint multiSampleSize; /* Number of samples per pixel (0 if no ms) */
|
---|
| 111 |
|
---|
| 112 | GLuint nMultiSampleBuffers; /* Number of available ms buffers */
|
---|
| 113 | GLint maxAuxBuffers;
|
---|
| 114 |
|
---|
| 115 | /* frame buffer level */
|
---|
| 116 | GLint level;
|
---|
| 117 |
|
---|
| 118 | /* color ranges (for SGI_color_range) */
|
---|
| 119 | GLboolean extendedRange;
|
---|
| 120 | GLdouble minRed, maxRed;
|
---|
| 121 | GLdouble minGreen, maxGreen;
|
---|
| 122 | GLdouble minBlue, maxBlue;
|
---|
| 123 | GLdouble minAlpha, maxAlpha;
|
---|
| 124 | };
|
---|
| 125 |
|
---|
| 126 | #endif // Q_OS_HPUX
|
---|
| 127 |
|
---|
| 128 | #elif defined(Q_WS_WIN)
|
---|
| 129 | DECLARE_HANDLE(HPBUFFERARB);
|
---|
[846] | 130 | #elif !defined(QT_NO_EGL)
|
---|
| 131 | #include <QtGui/private/qegl_p.h>
|
---|
[2] | 132 | #endif
|
---|
| 133 | QT_END_INCLUDE_NAMESPACE
|
---|
| 134 |
|
---|
| 135 | class QEglContext;
|
---|
| 136 |
|
---|
[561] | 137 |
|
---|
| 138 | class QGLPBufferGLPaintDevice : public QGLPaintDevice
|
---|
| 139 | {
|
---|
| 140 | public:
|
---|
| 141 | virtual QPaintEngine* paintEngine() const {return pbuf->paintEngine();}
|
---|
| 142 | virtual QSize size() const {return pbuf->size();}
|
---|
| 143 | virtual QGLContext* context() const;
|
---|
| 144 | virtual void endPaint();
|
---|
| 145 | void setPBuffer(QGLPixelBuffer* pb);
|
---|
| 146 | private:
|
---|
| 147 | QGLPixelBuffer* pbuf;
|
---|
| 148 | };
|
---|
| 149 |
|
---|
[2] | 150 | class QGLPixelBufferPrivate {
|
---|
| 151 | Q_DECLARE_PUBLIC(QGLPixelBuffer)
|
---|
| 152 | public:
|
---|
| 153 | QGLPixelBufferPrivate(QGLPixelBuffer *q) : q_ptr(q), invalid(true), qctx(0), pbuf(0), ctx(0)
|
---|
| 154 | {
|
---|
| |
---|