summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/graphicsmanager.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/graphicsmanager.cpp b/src/graphicsmanager.cpp
index 4817ecb03..30d50340a 100644
--- a/src/graphicsmanager.cpp
+++ b/src/graphicsmanager.cpp
@@ -833,7 +833,12 @@ void GraphicsManager::initOpenGLFunctions()
if (!mglGetObjectLabel)
assignFunction(glGetObjectLabel, "glGetObjectLabel");
}
- if (supportExtension("GL_EXT_debug_marker"))
+ if (supportExtension("GL_GREMEDY_string_marker"))
+ {
+ logger->log1("found GL_GREMEDY_string_marker");
+ assignFunction(glPushGroupMarker, "glStringMarkerGREMEDY");
+ }
+ else if (supportExtension("GL_EXT_debug_marker"))
{
logger->log1("found GL_EXT_debug_marker");
assignFunction(glInsertEventMarker, "glInsertEventMarkerEXT");