class
DebugMessageDebug message.
Contents
Allows inserting messages GL command stream with labels, useful for example with conjunction with various graphics debuggers, such as ApiTrace or gDEBugger.
Basic usage
See DebugOutput for introduction.
If OpenGL 4.3 / OpenGL ES 3.2 is supported or KHR_
GL::DebugMessage::insert(GL::DebugMessage::Source::Application, GL::DebugMessage::Type::Marker, 1337, GL::DebugOutput::Severity::Notification, "Hello from OpenGL command stream!");
Debug output: application marker (1337): Hello from OpenGL command stream!
If only EXT_
If OpenGL 4.3 is not supported and neither KHR_
Performance notes
If you ensure that you always use the const char
overload of insert() and the debug output is either not supported or turned off, the calls will not result in any allocations and thus won't have any negative performance effects.
Public types
- enum class Source: GLenum { ThirdParty = GL_DEBUG_SOURCE_THIRD_PARTY, Application = GL_DEBUG_SOURCE_APPLICATION }
- Message source.
- enum class Type: GLenum { Error = GL_DEBUG_TYPE_ERROR, DeprecatedBehavior = GL_DEBUG_TYPE_DEPRECATED_BEHAVIOR, UndefinedBehavior = GL_DEBUG_TYPE_UNDEFINED_BEHAVIOR, Portability = GL_DEBUG_TYPE_PORTABILITY, Performance = GL_DEBUG_TYPE_PERFORMANCE, Marker = GL_DEBUG_TYPE_MARKER, Other = GL_DEBUG_TYPE_OTHER }
- Message type.
Public static functions
-
static void insert(Source source,
Type type,
UnsignedInt id,
DebugOutput::
Severity severity, const std:: string& string) - Insert message.
-
template<std::static void insert(Source source, Type type, UnsignedInt id, DebugOutput::
size_t size> Severity severity, const char(&string)[size])
Constructors, destructors, conversion operators
- DebugMessage() deleted
- There's no point in having an instance of this class.
Enum documentation
enum class Magnum:: GL:: DebugMessage:: Source: GLenum
Message source.
Enumerators | |
---|---|
ThirdParty |
External debugger or third-party middleware |
Application |
The application |
enum class Magnum:: GL:: DebugMessage:: Type: GLenum
Message type.
Enumerators | |
---|---|
Error |
OpenGL error |
DeprecatedBehavior |
Behavior that has been marked for deprecation |
UndefinedBehavior |
Behavior that is undefined according to the specification |
Portability |
Non-portable usage of extensions or shaders |
Performance |
Implementation-dependent performance warning |
Marker |
Annotation of the command stream |
Other |
Any other type |
Function documentation
static void Magnum:: GL:: DebugMessage:: insert(Source source,
Type type,
UnsignedInt id,
DebugOutput:: Severity severity,
const std:: string& string)
Insert message.
Parameters | |
---|---|
source | Message source |
type | Message type |
id | Message-specific ID |
severity | Message severity |
string | The actual message |
If OpenGL 4.3 / OpenGL ES 3.2 is not supported and neither KHR_
If KHR_string
is used and all other parameters are ignored.
template<std:: size_t size>
static void Magnum:: GL:: DebugMessage:: insert(Source source,
Type type,
UnsignedInt id,
DebugOutput:: Severity severity,
const char(&string)[size])
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
Debug& operator<<(Debug& debug,
DebugMessage:: Source value)
Debug output operator.
Debug& operator<<(Debug& debug,
DebugMessage:: Type value)
Debug output operator.