Module: Mesa Branch: master Commit: 6c58bc8d9c987f3e6d5263d94762eddb48d6f1be URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=6c58bc8d9c987f3e6d5263d94762eddb48d6f1be
Author: Samuel Pitoiset <[email protected]> Date: Fri Jul 20 18:47:03 2018 +0200 radv: print a big warning when RADV_TRACE_FILE is set Users shouldn't use this debugging option except when we ask them to do! Signed-off-by: Samuel Pitoiset <[email protected]> Reviewed-by: Bas Nieuwenhuizen <[email protected]> --- src/amd/vulkan/radv_device.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index 80ddb65480..7dc6508333 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -1561,6 +1561,10 @@ VkResult radv_CreateDevice( if (!radv_init_trace(device)) goto fail; + fprintf(stderr, "*****************************************************************************\n"); + fprintf(stderr, "* WARNING: RADV_TRACE_FILE is costly and should only be used for debugging! *\n"); + fprintf(stderr, "*****************************************************************************\n"); + fprintf(stderr, "Trace file will be dumped to %s\n", filename); radv_dump_enabled_options(device, stderr); } _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
