diff options
author | Emil Velikov <[email protected]> | 2015-11-26 00:36:14 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2015-12-04 16:37:06 +0000 |
commit | bed982c4b75e4521d33e3798bec1bda7c78f204c (patch) | |
tree | b933cc0b23e092b46b1f02dc0c9fa800409aa55f | |
parent | dcaf3989d12602799b3d50d6068fe926509c911d (diff) |
mesa: add SEVERITY_NOTIFICATION to default state
As per the spec quote:
"All messages are initially enabled unless their assigned severity
is DEBUG_SEVERITY_LOW"
We already had MEDIUM and HIGH set, let's toggle NOTIFICATION as well.
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Timothy Arceri <[email protected]>
(cherry picked from commit 53be28107b44200a59c678c5d2234efeb48d0b35)
-rw-r--r-- | src/mesa/main/errors.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mesa/main/errors.c b/src/mesa/main/errors.c index fda5a90bf5e..a24700072d8 100644 --- a/src/mesa/main/errors.c +++ b/src/mesa/main/errors.c @@ -243,8 +243,9 @@ debug_namespace_init(struct gl_debug_namespace *ns) make_empty_list(&ns->Elements); /* Enable all the messages with severity HIGH or MEDIUM by default */ - ns->DefaultState = (1 << MESA_DEBUG_SEVERITY_HIGH) | - (1 << MESA_DEBUG_SEVERITY_MEDIUM); + ns->DefaultState = (1 << MESA_DEBUG_SEVERITY_MEDIUM ) | + (1 << MESA_DEBUG_SEVERITY_HIGH) | + (1 << MESA_DEBUG_SEVERITY_NOTIFICATION); } static void |