diff options
-rw-r--r-- | src/amd/vulkan/radv_debug.c | 2 | ||||
-rw-r--r-- | src/amd/vulkan/radv_debug.h | 3 | ||||
-rw-r--r-- | src/amd/vulkan/radv_device.c | 5 |
3 files changed, 9 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_debug.c b/src/amd/vulkan/radv_debug.c index f3b79004f69..ce582312c5e 100644 --- a/src/amd/vulkan/radv_debug.c +++ b/src/amd/vulkan/radv_debug.c @@ -593,7 +593,7 @@ radv_dump_dmesg(FILE *f) pclose(p); } -static void +void radv_dump_enabled_options(struct radv_device *device, FILE *f) { uint64_t mask; diff --git a/src/amd/vulkan/radv_debug.h b/src/amd/vulkan/radv_debug.h index 804f620690d..08877676b5d 100644 --- a/src/amd/vulkan/radv_debug.h +++ b/src/amd/vulkan/radv_debug.h @@ -61,4 +61,7 @@ radv_check_gpu_hangs(struct radv_queue *queue, struct radeon_winsys_cs *cs); void radv_print_spirv(uint32_t *data, uint32_t size, FILE *fp); +void +radv_dump_enabled_options(struct radv_device *device, FILE *f); + #endif diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index 13b2da584e5..36ba0c3833d 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -1322,10 +1322,15 @@ VkResult radv_CreateDevice( device->physical_device->rad_info.max_se >= 2; if (getenv("RADV_TRACE_FILE")) { + const char *filename = getenv("RADV_TRACE_FILE"); + keep_shader_info = true; if (!radv_init_trace(device)) goto fail; + + fprintf(stderr, "Trace file will be dumped to %s\n", filename); + radv_dump_enabled_options(device, stderr); } device->keep_shader_info = keep_shader_info; |