qopengldebug.h 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2013 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Giuseppe D'Angelo <giuseppe.dangelo@kdab.com>
  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 QOPENGLDEBUG_H
  40. #define QOPENGLDEBUG_H
  41. #include <QtCore/qglobal.h>
  42. #ifndef QT_NO_OPENGL
  43. #include <QtCore/qshareddata.h>
  44. #include <QtCore/qflags.h>
  45. #include <QtCore/qlist.h>
  46. #include <QtCore/qvector.h>
  47. #include <QtCore/qmetatype.h>
  48. #include <QtCore/qdebug.h>
  49. #include <QtGui/qopenglcontext.h>
  50. QT_BEGIN_NAMESPACE
  51. class QOpenGLDebugLogger;
  52. class QOpenGLDebugLoggerPrivate;
  53. class QOpenGLDebugMessagePrivate;
  54. class Q_GUI_EXPORT QOpenGLDebugMessage
  55. {
  56. public:
  57. enum Source {
  58. InvalidSource = 0x00000000,
  59. APISource = 0x00000001,
  60. WindowSystemSource = 0x00000002,
  61. ShaderCompilerSource = 0x00000004,
  62. ThirdPartySource = 0x00000008,
  63. ApplicationSource = 0x00000010,
  64. OtherSource = 0x00000020,
  65. LastSource = OtherSource, // private API
  66. AnySource = 0xffffffff
  67. };
  68. Q_DECLARE_FLAGS(Sources, Source)
  69. enum Type {
  70. InvalidType = 0x00000000,
  71. ErrorType = 0x00000001,
  72. DeprecatedBehaviorType = 0x00000002,
  73. UndefinedBehaviorType = 0x00000004,
  74. PortabilityType = 0x00000008,
  75. PerformanceType = 0x00000010,
  76. OtherType = 0x00000020,
  77. MarkerType = 0x00000040,
  78. GroupPushType = 0x00000080,
  79. GroupPopType = 0x00000100,
  80. LastType = GroupPopType, // private API
  81. AnyType = 0xffffffff
  82. };
  83. Q_DECLARE_FLAGS(Types, Type)
  84. enum Severity {
  85. InvalidSeverity = 0x00000000,
  86. HighSeverity = 0x00000001,
  87. MediumSeverity = 0x00000002,
  88. LowSeverity = 0x00000004,
  89. NotificationSeverity = 0x00000008,
  90. LastSeverity = NotificationSeverity, // private API
  91. AnySeverity = 0xffffffff
  92. };
  93. Q_DECLARE_FLAGS(Severities, Severity)
  94. QOpenGLDebugMessage();
  95. QOpenGLDebugMessage(const QOpenGLDebugMessage &debugMessage);
  96. QOpenGLDebugMessage &operator=(const QOpenGLDebugMessage &debugMessage);
  97. #ifdef Q_COMPILER_RVALUE_REFS
  98. QOpenGLDebugMessage &operator=(QOpenGLDebugMessage &&other) Q_DECL_NOTHROW { swap(other); return *this; }
  99. #endif
  100. ~QOpenGLDebugMessage();
  101. void swap(QOpenGLDebugMessage &other) Q_DECL_NOTHROW { qSwap(d, other.d); }
  102. Source source() const;
  103. Type type() const;
  104. Severity severity() const;
  105. GLuint id() const;
  106. QString message() const;
  107. static QOpenGLDebugMessage createApplicationMessage(const QString &text,
  108. GLuint id = 0,
  109. Severity severity = NotificationSeverity,
  110. Type type = OtherType);
  111. static QOpenGLDebugMessage createThirdPartyMessage(const QString &text,
  112. GLuint id = 0,
  113. Severity severity = NotificationSeverity,
  114. Type type = OtherType);
  115. bool operator==(const QOpenGLDebugMessage &debugMessage) const;
  116. inline bool operator!=(const QOpenGLDebugMessage &debugMessage) const { return !operator==(debugMessage); }
  117. private:
  118. friend class QOpenGLDebugLogger;
  119. friend class QOpenGLDebugLoggerPrivate;
  120. QSharedDataPointer<QOpenGLDebugMessagePrivate> d;
  121. };
  122. Q_DECLARE_SHARED(QOpenGLDebugMessage)
  123. Q_DECLARE_OPERATORS_FOR_FLAGS(QOpenGLDebugMessage::Sources)
  124. Q_DECLARE_OPERATORS_FOR_FLAGS(QOpenGLDebugMessage::Types)
  125. Q_DECLARE_OPERATORS_FOR_FLAGS(QOpenGLDebugMessage::Severities)
  126. #ifndef QT_NO_DEBUG_STREAM
  127. Q_GUI_EXPORT QDebug operator<<(QDebug debug, const QOpenGLDebugMessage &message);
  128. Q_GUI_EXPORT QDebug operator<<(QDebug debug, QOpenGLDebugMessage::Source source);
  129. Q_GUI_EXPORT QDebug operator<<(QDebug debug, QOpenGLDebugMessage::Type type);
  130. Q_GUI_EXPORT QDebug operator<<(QDebug debug, QOpenGLDebugMessage::Severity severity);
  131. #endif
  132. class QOpenGLDebugLoggerPrivate;
  133. class Q_GUI_EXPORT QOpenGLDebugLogger : public QObject
  134. {
  135. Q_OBJECT
  136. Q_PROPERTY(LoggingMode loggingMode READ loggingMode)
  137. public:
  138. enum LoggingMode {
  139. AsynchronousLogging,
  140. SynchronousLogging
  141. };
  142. Q_ENUM(LoggingMode)
  143. explicit QOpenGLDebugLogger(QObject *parent = Q_NULLPTR);
  144. ~QOpenGLDebugLogger();
  145. bool initialize();
  146. bool isLogging() const;
  147. LoggingMode loggingMode() const;
  148. qint64 maximumMessageLength() const;
  149. void pushGroup(const QString &name,
  150. GLuint id = 0,
  151. QOpenGLDebugMessage::Source source = QOpenGLDebugMessage::ApplicationSource);
  152. void popGroup();
  153. void enableMessages(QOpenGLDebugMessage::Sources sources = QOpenGLDebugMessage::AnySource,
  154. QOpenGLDebugMessage::Types types = QOpenGLDebugMessage::AnyType,
  155. QOpenGLDebugMessage::Severities severities = QOpenGLDebugMessage::AnySeverity);
  156. void enableMessages(const QVector<GLuint> &ids,
  157. QOpenGLDebugMessage::Sources sources = QOpenGLDebugMessage::AnySource,
  158. QOpenGLDebugMessage::Types types = QOpenGLDebugMessage::AnyType);
  159. void disableMessages(QOpenGLDebugMessage::Sources sources = QOpenGLDebugMessage::AnySource,
  160. QOpenGLDebugMessage::Types types = QOpenGLDebugMessage::AnyType,
  161. QOpenGLDebugMessage::Severities severities = QOpenGLDebugMessage::AnySeverity);
  162. void disableMessages(const QVector<GLuint> &ids,
  163. QOpenGLDebugMessage::Sources sources = QOpenGLDebugMessage::AnySource,
  164. QOpenGLDebugMessage::Types types = QOpenGLDebugMessage::AnyType);
  165. QList<QOpenGLDebugMessage> loggedMessages() const;
  166. public Q_SLOTS:
  167. void logMessage(const QOpenGLDebugMessage &debugMessage);
  168. void startLogging(LoggingMode loggingMode = AsynchronousLogging);
  169. void stopLogging();
  170. Q_SIGNALS:
  171. void messageLogged(const QOpenGLDebugMessage &debugMessage);
  172. private:
  173. Q_DISABLE_COPY(QOpenGLDebugLogger)
  174. Q_DECLARE_PRIVATE(QOpenGLDebugLogger)
  175. Q_PRIVATE_SLOT(d_func(), void _q_contextAboutToBeDestroyed())
  176. };
  177. QT_END_NAMESPACE
  178. Q_DECLARE_METATYPE(QOpenGLDebugMessage)
  179. #endif // QT_NO_OPENGL
  180. #endif // QOPENGLDEBUG_H