Module: Mesa Branch: master Commit: 6ceb6b509e64c54812a5f6a208e7d93cc61119f4 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=6ceb6b509e64c54812a5f6a208e7d93cc61119f4
Author: Matt Turner <[email protected]> Date: Mon Dec 28 14:05:48 2020 -0500 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> --- src/freedreno/vulkan/tu_device.c | 1 - src/freedreno/vulkan/tu_private.h | 1 - 2 files changed, 2 deletions(-) diff --git a/src/freedreno/vulkan/tu_device.c b/src/freedreno/vulkan/tu_device.c index 3fb76786e20..9f5e1f0ec53 100644 --- a/src/freedreno/vulkan/tu_device.c +++ b/src/freedreno/vulkan/tu_device.c @@ -190,7 +190,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 ae79188e217..ff6b2f0418d 100644 --- a/src/freedreno/vulkan/tu_private.h +++ b/src/freedreno/vulkan/tu_private.h @@ -225,7 +225,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, _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
