mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-15 16:28:04 +02:00
i965: Replace 'noann' debug flag with 'ann'.
Reviewed-by: Ben Widawsky <ben@bwidawsk.net> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Jason Ekstrand <jason.ekstrand@intel.com>
This commit is contained in:
parent
1a2de7dce8
commit
47aaabda47
3 changed files with 3 additions and 3 deletions
|
|
@ -109,7 +109,7 @@ void annotate(struct brw_context *brw,
|
|||
|
||||
struct annotation *ann = &annotation->ann[annotation->ann_count++];
|
||||
ann->offset = offset;
|
||||
if ((INTEL_DEBUG & DEBUG_NO_ANNOTATION) == 0) {
|
||||
if ((INTEL_DEBUG & DEBUG_ANNOTATION) != 0) {
|
||||
ann->ir = inst->ir;
|
||||
ann->annotation = inst->annotation;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ static const struct dri_debug_control debug_control[] = {
|
|||
{ "blorp", DEBUG_BLORP },
|
||||
{ "nodualobj", DEBUG_NO_DUAL_OBJECT_GS },
|
||||
{ "optimizer", DEBUG_OPTIMIZER },
|
||||
{ "noann", DEBUG_NO_ANNOTATION },
|
||||
{ "ann", DEBUG_ANNOTATION },
|
||||
{ "no8", DEBUG_NO8 },
|
||||
{ NULL, 0 }
|
||||
};
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@ extern uint64_t INTEL_DEBUG;
|
|||
#define DEBUG_VUE (1 << 25)
|
||||
#define DEBUG_NO_DUAL_OBJECT_GS (1 << 26)
|
||||
#define DEBUG_OPTIMIZER (1 << 27)
|
||||
#define DEBUG_NO_ANNOTATION (1 << 28)
|
||||
#define DEBUG_ANNOTATION (1 << 28)
|
||||
#define DEBUG_NO8 (1 << 29)
|
||||
|
||||
#ifdef HAVE_ANDROID_PLATFORM
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue