diff options
Diffstat (limited to '')
-rw-r--r-- | xorg-server-hwcursor-gamma/xserver-glamor-Disable-debugging-messages-other-than-GL-API-errors.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/xorg-server-hwcursor-gamma/xserver-glamor-Disable-debugging-messages-other-than-GL-API-errors.patch b/xorg-server-hwcursor-gamma/xserver-glamor-Disable-debugging-messages-other-than-GL-API-errors.patch new file mode 100644 index 0000000..41a67c7 --- /dev/null +++ b/xorg-server-hwcursor-gamma/xserver-glamor-Disable-debugging-messages-other-than-GL-API-errors.patch @@ -0,0 +1,14 @@ +diff --git a/glamor/glamor.c b/glamor/glamor.c +index 116d10c..81aba2d 100644 +--- a/glamor/glamor.c ++++ b/glamor/glamor.c +@@ -393,6 +393,9 @@ glamor_setup_debug_output(ScreenPtr screen) + return; + + glEnable(GL_DEBUG_OUTPUT_SYNCHRONOUS); ++ /* Disable debugging messages other than GL API errors */ ++ glDebugMessageControl(GL_DONT_CARE, GL_DONT_CARE, GL_DONT_CARE, 0, NULL, ++ GL_FALSE); + glDebugMessageControl(GL_DEBUG_SOURCE_API, + GL_DEBUG_TYPE_ERROR, + GL_DONT_CARE, |