diff options
author | Brian Paul <[email protected]> | 2017-04-10 13:48:21 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2017-04-26 11:37:59 -0600 |
commit | 943f4f47e0d69aeed531bf24475f429c1b2ec215 (patch) | |
tree | 8cdbcaa1cf2eb00ecb33dbc4aa408026e80100c8 /src/gallium/drivers/svga/svga_debug.h | |
parent | 577e114e4654c645fcb1673afe5bb849deccb2b3 (diff) |
svga: add DEBUG_SAMPLERS
The debug output in svga_create_sampler_state() was controlled by
DEBUG_VIEWS but that's not consistent with the other debug output for
sampler views. Create/use a new debug flag just for this.
Reviewed-by: Charmaine Lee <[email protected]>
Diffstat (limited to 'src/gallium/drivers/svga/svga_debug.h')
-rw-r--r-- | src/gallium/drivers/svga/svga_debug.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/svga/svga_debug.h b/src/gallium/drivers/svga/svga_debug.h index 039f79d4e99..3686cc6d9cc 100644 --- a/src/gallium/drivers/svga/svga_debug.h +++ b/src/gallium/drivers/svga/svga_debug.h @@ -45,6 +45,7 @@ #define DEBUG_QUERY 0x4000 #define DEBUG_CACHE 0x8000 #define DEBUG_STREAMOUT 0x10000 +#define DEBUG_SAMPLERS 0x20000 #ifdef DEBUG extern int SVGA_DEBUG; |