diff options
author | Samuel Pitoiset <[email protected]> | 2017-08-30 15:12:21 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-09-01 09:41:54 +0200 |
commit | f14020c15fee4dd640a9b1e501208479c74c28b0 (patch) | |
tree | b5a93d522fef84106f75e99914cc3eeb39ae7389 /src/amd/vulkan/radv_device.c | |
parent | ad42e2abb8507dd85f07e5aad539154b0d5c78ea (diff) |
radv: disassemble SPIR-V binaries with RADV_DEBUG=spirv
This introduces a new separate option because the output can
be quite verbose. If spirv-dis is not found in the path, this
debug option is useless.
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/amd/vulkan/radv_device.c')
-rw-r--r-- | src/amd/vulkan/radv_device.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index aae34883183..cbba04a5d6f 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -409,6 +409,7 @@ static const struct debug_control radv_debug_options[] = { {"unsafemath", RADV_DEBUG_UNSAFE_MATH}, {"allbos", RADV_DEBUG_ALL_BOS}, {"noibs", RADV_DEBUG_NO_IBS}, + {"spirv", RADV_DEBUG_DUMP_SPIRV}, {NULL, 0} }; |