r600g: Honour legacy debugging environment variables
authorMichel Dänzer <michel.daenzer@amd.com>
Thu, 21 Mar 2013 16:56:52 +0000 (17:56 +0100)
committerMichel Dänzer <michel@daenzer.net>
Fri, 22 Mar 2013 09:29:49 +0000 (10:29 +0100)
This helps minimize confusion / effort when moving between branches or
helping others.

Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Reviewed-by: Marek Olšák <maraeo@gmail.com>
src/gallium/drivers/r600/r600_pipe.c

index 9ed88148c4998dda586bf0e04c3791dbef13056f..7a84f3d5c6ed7baabad150a5b78772ae2a4c4826 100644 (file)
@@ -1088,6 +1088,16 @@ struct pipe_screen *r600_screen_create(struct radeon_winsys *ws)
        ws->query_info(ws, &rscreen->info);
 
        rscreen->debug_flags = debug_get_flags_option("R600_DEBUG", debug_options, 0);
+       if (debug_get_bool_option("R600_DEBUG_COMPUTE", FALSE))
+               rscreen->debug_flags |= DBG_COMPUTE;
+       if (debug_get_bool_option("R600_DUMP_SHADERS", FALSE))
+               rscreen->debug_flags |= DBG_FS | DBG_VS | DBG_GS | DBG_PS | DBG_CS;
+       if (!debug_get_bool_option("R600_HYPERZ", TRUE))
+               rscreen->debug_flags |= DBG_NO_HYPERZ;
+       if (!debug_get_bool_option("R600_LLVM", TRUE))
+               rscreen->debug_flags |= DBG_NO_LLVM;
+       if (debug_get_bool_option("R600_PRINT_TEXDEPTH", FALSE))
+               rscreen->debug_flags |= DBG_TEX_DEPTH;
        rscreen->family = rscreen->info.family;
        rscreen->chip_class = rscreen->info.chip_class;