From d438261e0516771740b2e79eaa2f44a49053cc98 Mon Sep 17 00:00:00 2001 From: Caio Marcelo de Oliveira Filho Date: Mon, 7 Oct 2019 17:04:01 -0700 Subject: [PATCH] intel: Add INTEL_DEBUG=nofc for disabling fast clears Reviewed-by: Rafael Antognolli --- docs/envvars.html | 2 ++ src/intel/dev/gen_debug.c | 1 + src/intel/dev/gen_debug.h | 1 + 3 files changed, 4 insertions(+) diff --git a/docs/envvars.html b/docs/envvars.html index 92f9207c80e..8077bf29de4 100644 --- a/docs/envvars.html +++ b/docs/envvars.html @@ -307,6 +307,8 @@ See the Xlib software driver page for details.
disable instruction compaction
nodualobj
suppress generation of dual-object geometry shader code
+
nofc
+
disable fast clears
norbc
disable single sampled render buffer compression
optimizer
diff --git a/src/intel/dev/gen_debug.c b/src/intel/dev/gen_debug.c index a4823286db1..ffed3045485 100644 --- a/src/intel/dev/gen_debug.c +++ b/src/intel/dev/gen_debug.c @@ -89,6 +89,7 @@ static const struct debug_control debug_control[] = { { "tcs8", DEBUG_TCS_EIGHT_PATCH }, { "bt", DEBUG_BT }, { "pc", DEBUG_PIPE_CONTROL }, + { "nofc", DEBUG_NO_FAST_CLEAR }, { NULL, 0 } }; diff --git a/src/intel/dev/gen_debug.h b/src/intel/dev/gen_debug.h index edd3f8a66ec..5c3e100e8de 100644 --- a/src/intel/dev/gen_debug.h +++ b/src/intel/dev/gen_debug.h @@ -87,6 +87,7 @@ extern uint64_t INTEL_DEBUG; #define DEBUG_TCS_EIGHT_PATCH (1ull << 43) #define DEBUG_BT (1ull << 44) #define DEBUG_PIPE_CONTROL (1ull << 45) +#define DEBUG_NO_FAST_CLEAR (1ull << 46) /* These flags are not compatible with the disk shader cache */ #define DEBUG_DISK_CACHE_DISABLE_MASK DEBUG_SHADER_TIME