qopenglcontext.h 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the QtGui module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. #ifndef QOPENGLCONTEXT_H
  40. #define QOPENGLCONTEXT_H
  41. #include <QtCore/qglobal.h>
  42. #ifndef QT_NO_OPENGL
  43. #include <QtCore/qnamespace.h>
  44. #include <QtCore/QObject>
  45. #include <QtCore/QScopedPointer>
  46. #include <QtGui/QSurfaceFormat>
  47. #ifdef __GLEW_H__
  48. #if defined(Q_CC_GNU)
  49. #warning qopenglfunctions.h is not compatible with GLEW, GLEW defines will be undefined
  50. #warning To use GLEW with Qt, do not include <qopengl.h> or <QOpenGLFunctions> after glew.h
  51. #endif
  52. #endif
  53. #include <QtGui/qopengl.h>
  54. #include <QtGui/qopenglversionfunctions.h>
  55. #if QT_DEPRECATED_SINCE(5, 6)
  56. #include <QtCore/qhash.h>
  57. #endif
  58. #include <QtCore/qhashfunctions.h>
  59. #include <QtCore/qpair.h>
  60. #include <QtCore/qvariant.h>
  61. QT_BEGIN_NAMESPACE
  62. class QOpenGLContextPrivate;
  63. class QOpenGLContextGroupPrivate;
  64. class QOpenGLFunctions;
  65. class QOpenGLExtraFunctions;
  66. class QPlatformOpenGLContext;
  67. class QScreen;
  68. class QSurface;
  69. class QOpenGLVersionProfilePrivate;
  70. class Q_GUI_EXPORT QOpenGLVersionProfile
  71. {
  72. public:
  73. QOpenGLVersionProfile();
  74. explicit QOpenGLVersionProfile(const QSurfaceFormat &format);
  75. QOpenGLVersionProfile(const QOpenGLVersionProfile &other);
  76. ~QOpenGLVersionProfile();
  77. QOpenGLVersionProfile &operator=(const QOpenGLVersionProfile &rhs);
  78. QPair<int, int> version() const;
  79. void setVersion(int majorVersion, int minorVersion);
  80. QSurfaceFormat::OpenGLContextProfile profile() const;
  81. void setProfile(QSurfaceFormat::OpenGLContextProfile profile);
  82. bool hasProfiles() const;
  83. bool isLegacyVersion() const;
  84. bool isValid() const;
  85. private:
  86. QOpenGLVersionProfilePrivate* d;
  87. };
  88. inline uint qHash(const QOpenGLVersionProfile &v, uint seed = 0)
  89. {
  90. return qHash(static_cast<int>(v.profile() * 1000)
  91. + v.version().first * 100 + v.version().second * 10, seed);
  92. }
  93. inline bool operator==(const QOpenGLVersionProfile &lhs, const QOpenGLVersionProfile &rhs)
  94. {
  95. if (lhs.profile() != rhs.profile())
  96. return false;
  97. return lhs.version() == rhs.version();
  98. }
  99. inline bool operator!=(const QOpenGLVersionProfile &lhs, const QOpenGLVersionProfile &rhs)
  100. {
  101. return !operator==(lhs, rhs);
  102. }
  103. class Q_GUI_EXPORT QOpenGLContextGroup : public QObject
  104. {
  105. Q_OBJECT
  106. Q_DECLARE_PRIVATE(QOpenGLContextGroup)
  107. public:
  108. ~QOpenGLContextGroup();
  109. QList<QOpenGLContext *> shares() const;
  110. static QOpenGLContextGroup *currentContextGroup();
  111. private:
  112. QOpenGLContextGroup();
  113. friend class QOpenGLContext;
  114. friend class QOpenGLContextGroupResourceBase;
  115. friend class QOpenGLSharedResource;
  116. friend class QOpenGLMultiGroupSharedResource;
  117. };
  118. class QOpenGLTextureHelper;
  119. class Q_GUI_EXPORT QOpenGLContext : public QObject
  120. {
  121. Q_OBJECT
  122. Q_DECLARE_PRIVATE(QOpenGLContext)
  123. public:
  124. explicit QOpenGLContext(QObject *parent = Q_NULLPTR);
  125. ~QOpenGLContext();
  126. void setFormat(const QSurfaceFormat &format);
  127. void setShareContext(QOpenGLContext *shareContext);
  128. void setScreen(QScreen *screen);
  129. void setNativeHandle(const QVariant &handle);
  130. bool create();
  131. bool isValid() const;
  132. QSurfaceFormat format() const;
  133. QOpenGLContext *shareContext() const;
  134. QOpenGLContextGroup *shareGroup() const;
  135. QScreen *screen() const;
  136. QVariant nativeHandle() const;
  137. GLuint defaultFramebufferObject() const;
  138. bool makeCurrent(QSurface *surface);
  139. void doneCurrent();
  140. void swapBuffers(QSurface *surface);
  141. QFunctionPointer getProcAddress(const QByteArray &procName) const;
  142. QFunctionPointer getProcAddress(const char *procName) const;
  143. QSurface *surface() const;
  144. static QOpenGLContext *currentContext();
  145. static bool areSharing(QOpenGLContext *first, QOpenGLContext *second);
  146. QPlatformOpenGLContext *handle() const;
  147. QPlatformOpenGLContext *shareHandle() const;
  148. QOpenGLFunctions *functions() const;
  149. QOpenGLExtraFunctions *extraFunctions() const;
  150. QAbstractOpenGLFunctions *versionFunctions(const QOpenGLVersionProfile &versionProfile = QOpenGLVersionProfile()) const;
  151. template<class TYPE>
  152. TYPE *versionFunctions() const
  153. {
  154. QOpenGLVersionProfile v = TYPE::versionProfile();
  155. return static_cast<TYPE*>(versionFunctions(v));
  156. }
  157. QSet<QByteArray> extensions() const;
  158. bool hasExtension(const QByteArray &extension) const;
  159. static void *openGLModuleHandle();
  160. enum OpenGLModuleType {
  161. LibGL,
  162. LibGLES
  163. };
  164. static OpenGLModuleType openGLModuleType();
  165. bool isOpenGLES() const;
  166. static bool supportsThreadedOpenGL();
  167. static QOpenGLContext *globalShareContext();
  168. Q_SIGNALS:
  169. void aboutToBeDestroyed();
  170. private:
  171. friend class QGLContext;
  172. friend class QGLPixelBuffer;
  173. friend class QOpenGLContextResourceBase;
  174. friend class QOpenGLPaintDevice;
  175. friend class QOpenGLGlyphTexture;
  176. friend class QOpenGLTextureGlyphCache;
  177. friend class QOpenGLEngineShaderManager;
  178. friend class QOpenGLFramebufferObject;
  179. friend class QOpenGLFramebufferObjectPrivate;
  180. friend class QOpenGL2PaintEngineEx;
  181. friend class QOpenGL2PaintEngineExPrivate;
  182. friend class QSGDistanceFieldGlyphCache;
  183. friend class QWidgetPrivate;
  184. friend class QAbstractOpenGLFunctionsPrivate;
  185. friend class QOpenGLTexturePrivate;
  186. void *qGLContextHandle() const;
  187. void setQGLContextHandle(void *handle,void (*qGLContextDeleteFunction)(void *));
  188. void deleteQGLContext();
  189. QOpenGLVersionFunctionsStorage* functionsBackendStorage() const;
  190. void insertExternalFunctions(QAbstractOpenGLFunctions *f);
  191. void removeExternalFunctions(QAbstractOpenGLFunctions *f);
  192. QOpenGLTextureHelper* textureFunctions() const;
  193. void setTextureFunctions(QOpenGLTextureHelper* textureFuncs);
  194. void destroy();
  195. Q_PRIVATE_SLOT(d_func(), void _q_screenDestroyed(QObject *object))
  196. };
  197. QT_END_NAMESPACE
  198. #endif // QT_NO_OPENGL
  199. #endif // QOPENGLCONTEXT_H