diff options
author | Marek Olšák <[email protected]> | 2017-08-29 13:14:34 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2017-09-04 15:10:39 +0200 |
commit | 468c1310339e6fb79d275c823b51412dcbe3a317 (patch) | |
tree | 64baaa2181dac00a7413190e216e617f7efdaf45 /src/gallium/drivers/r600 | |
parent | 50283109aa2b1a3fd92e92eb1c85426444ef508e (diff) |
gallium/radeon: sort DBG shader flags according to pipe_shader_type
Reviewed-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/gallium/drivers/r600')
-rw-r--r-- | src/gallium/drivers/r600/r600_pipe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/r600/r600_pipe.c b/src/gallium/drivers/r600/r600_pipe.c index 023f1b4bd14..9844add6053 100644 --- a/src/gallium/drivers/r600/r600_pipe.c +++ b/src/gallium/drivers/r600/r600_pipe.c @@ -666,7 +666,7 @@ struct pipe_screen *r600_screen_create(struct radeon_winsys *ws, if (debug_get_bool_option("R600_DEBUG_COMPUTE", FALSE)) rscreen->b.debug_flags |= DBG_COMPUTE; if (debug_get_bool_option("R600_DUMP_SHADERS", FALSE)) - rscreen->b.debug_flags |= DBG_FS | DBG_VS | DBG_GS | DBG_PS | DBG_CS | DBG_TCS | DBG_TES; + rscreen->b.debug_flags |= DBG_ALL_SHADERS | DBG_FS; if (!debug_get_bool_option("R600_HYPERZ", TRUE)) rscreen->b.debug_flags |= DBG_NO_HYPERZ; |