diff options
author | Samuel Pitoiset <[email protected]> | 2019-11-08 08:22:15 +0100 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2019-11-15 09:07:34 +0100 |
commit | 519d9b30de96759369109e0653222f36381100e6 (patch) | |
tree | cd0aa852d2366cd665e9b9805a828ae36f3ddf3f /src/amd/vulkan/radv_device.c | |
parent | 9a80b7fd8f282d4b448f826ff88c8770c079fb72 (diff) |
radv: remove useless RADV_DEBUG=unsafemath debug option
This option is useless and shouldn't be used at all.
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 | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index a608c39c5e5..4775609629f 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -341,8 +341,7 @@ radv_physical_device_init(struct radv_physical_device *device, /* These flags affect shader compilation. */ uint64_t shader_env_flags = (device->instance->perftest_flags & RADV_PERFTEST_SISCHED ? 0x1 : 0) | - (device->instance->debug_flags & RADV_DEBUG_UNSAFE_MATH ? 0x2 : 0) | - (device->use_aco ? 0x4 : 0); + (device->use_aco ? 0x2 : 0); /* The gpu id is already embedded in the uuid so we just pass "radv" * when creating the cache. @@ -468,7 +467,6 @@ static const struct debug_control radv_debug_options[] = { {"shaderstats", RADV_DEBUG_DUMP_SHADER_STATS}, {"nohiz", RADV_DEBUG_NO_HIZ}, {"nocompute", RADV_DEBUG_NO_COMPUTE_QUEUE}, - {"unsafemath", RADV_DEBUG_UNSAFE_MATH}, {"allbos", RADV_DEBUG_ALL_BOS}, {"noibs", RADV_DEBUG_NO_IBS}, {"spirv", RADV_DEBUG_DUMP_SPIRV}, |