diff options
author | Iago Toral Quiroga <[email protected]> | 2015-07-23 11:11:53 +0200 |
---|---|---|
committer | Iago Toral Quiroga <[email protected]> | 2015-09-04 12:49:36 +0200 |
commit | bd6e516fc24128d604f677a16f692d88d65a49f1 (patch) | |
tree | 63dd30a4935cb7af8735a4e803f13f845317b80f /src/mesa/drivers/dri/i965/intel_debug.h | |
parent | 6cf4142db88796ff66a73a36530467101533fdb6 (diff) |
i965: Add a debug option for spilling everything in vec4 code
Reviewed-by: Francisco Jerez <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/intel_debug.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/intel_debug.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/intel_debug.h b/src/mesa/drivers/dri/i965/intel_debug.h index 4689492e1fd..b7d0c823fa8 100644 --- a/src/mesa/drivers/dri/i965/intel_debug.h +++ b/src/mesa/drivers/dri/i965/intel_debug.h @@ -64,8 +64,9 @@ extern uint64_t INTEL_DEBUG; #define DEBUG_ANNOTATION (1ull << 28) #define DEBUG_NO8 (1ull << 29) #define DEBUG_VEC4VS (1ull << 30) -#define DEBUG_SPILL (1ull << 31) -#define DEBUG_CS (1ull << 32) +#define DEBUG_SPILL_FS (1ull << 31) +#define DEBUG_SPILL_VEC4 (1ull << 32) +#define DEBUG_CS (1ull << 33) #ifdef HAVE_ANDROID_PLATFORM #define LOG_TAG "INTEL-MESA" |