diff options
author | Matt Turner <mattst88@gmail.com> | 2020-12-28 14:05:48 -0500 |
---|---|---|
committer | Dylan Baker <dylan.c.baker@intel.com> | 2021-03-11 14:12:24 -0800 |
commit | 4f5d6faa7bbb6e3cd1a00a0f50196e0f669c5946 (patch) | |
tree | 7b072b9944d2f143220b06f7335f9ae06e992e6e | |
parent | 5db0651bfe01a68ed0861622e1dd4a25cc03dee9 (diff) | |
download | mesa-4f5d6faa7bbb6e3cd1a00a0f50196e0f669c5946.tar.gz mesa-4f5d6faa7bbb6e3cd1a00a0f50196e0f669c5946.tar.bz2 mesa-4f5d6faa7bbb6e3cd1a00a0f50196e0f669c5946.zip |
turnip: Remove unused TU_DEBUG_IR3 flag
Replaced by IR3_SHADER_DEBUG=disasm,{vs,...,cs} and unused since the
commit referenced below.
Fixes: 808992fc506 ("tu: Use the ir3 shader API")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8249>
(cherry picked from commit 6ceb6b509e64c54812a5f6a208e7d93cc61119f4)
-rw-r--r-- | .pick_status.json | 2 | ||||
-rw-r--r-- | src/freedreno/vulkan/tu_device.c | 1 | ||||
-rw-r--r-- | src/freedreno/vulkan/tu_private.h | 1 |
3 files changed, 1 insertions, 3 deletions
diff --git a/.pick_status.json b/.pick_status.json index 064ff336d76..0b9f4247088 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -4,7 +4,7 @@ "description": "turnip: Remove unused TU_DEBUG_IR3 flag", "nominated": true, "nomination_type": 1, - "resolution": 0, + "resolution": 1, "master_sha": null, "because_sha": "808992fc506b02908468b64082981ddb4e58f713" }, diff --git a/src/freedreno/vulkan/tu_device.c b/src/freedreno/vulkan/tu_device.c index 67577e31462..ea0226ad279 100644 --- a/src/freedreno/vulkan/tu_device.c +++ b/src/freedreno/vulkan/tu_device.c @@ -177,7 +177,6 @@ static const VkAllocationCallbacks default_alloc = { static const struct debug_control tu_debug_options[] = { { "startup", TU_DEBUG_STARTUP }, { "nir", TU_DEBUG_NIR }, - { "ir3", TU_DEBUG_IR3 }, { "nobin", TU_DEBUG_NOBIN }, { "sysmem", TU_DEBUG_SYSMEM }, { "forcebin", TU_DEBUG_FORCEBIN }, diff --git a/src/freedreno/vulkan/tu_private.h b/src/freedreno/vulkan/tu_private.h index 053a68beb87..d919c03a84e 100644 --- a/src/freedreno/vulkan/tu_private.h +++ b/src/freedreno/vulkan/tu_private.h @@ -216,7 +216,6 @@ enum tu_debug_flags { TU_DEBUG_STARTUP = 1 << 0, TU_DEBUG_NIR = 1 << 1, - TU_DEBUG_IR3 = 1 << 2, TU_DEBUG_NOBIN = 1 << 3, TU_DEBUG_SYSMEM = 1 << 4, TU_DEBUG_FORCEBIN = 1 << 5, |