Commit e89eb912 by Jamie Madill Committed by Commit Bot

Reduce spam in native perf tests.

The QC driver was repeating HIGH priority messages about map flags. Bug: angleproject:4943 Change-Id: I927c38249f840544a7c1f5e595fa34e706e401bd Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2352472Reviewed-by: 's avatarCody Northrop <cnorthrop@google.com> Commit-Queue: Jamie Madill <jmadill@chromium.org>
parent 2e5647c8
...@@ -596,9 +596,9 @@ void ANGLERenderTest::SetUp() ...@@ -596,9 +596,9 @@ void ANGLERenderTest::SetUp()
GL_FALSE); GL_FALSE);
glDebugMessageControlKHR(GL_DONT_CARE, GL_DONT_CARE, GL_DEBUG_SEVERITY_NOTIFICATION, 0, glDebugMessageControlKHR(GL_DONT_CARE, GL_DONT_CARE, GL_DEBUG_SEVERITY_NOTIFICATION, 0,
nullptr, GL_FALSE); nullptr, GL_FALSE);
// Disable medium priority performance messages to reduce spam. // Disable performance messages to reduce spam.
glDebugMessageControlKHR(GL_DONT_CARE, GL_DEBUG_TYPE_PERFORMANCE, GL_DEBUG_SEVERITY_MEDIUM, glDebugMessageControlKHR(GL_DONT_CARE, GL_DEBUG_TYPE_PERFORMANCE, GL_DONT_CARE, 0, nullptr,
0, nullptr, GL_FALSE); GL_FALSE);
glDebugMessageCallbackKHR(DebugMessageCallback, this); glDebugMessageCallbackKHR(DebugMessageCallback, this);
} }
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment