summaryrefslogtreecommitdiffstats
path: root/src/amd/vulkan/radv_device.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/amd/vulkan/radv_device.c')
-rw-r--r--src/amd/vulkan/radv_device.c5
1 files changed, 5 insertions, 0 deletions
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;