Module: Mesa Branch: main Commit: 6e6ba85fd9ff4549f98385a0ed8081e4702a9eca URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=6e6ba85fd9ff4549f98385a0ed8081e4702a9eca
Author: Danylo Piliaiev <[email protected]> Date: Fri Apr 29 17:39:25 2022 +0300 turnip: Fix tu_debug_flags values clashing Was not caught during rebase... Fixes: 725ae34458ff3cbb9d87e08c8a73780672221a9e ("turnip: Add debug option to print gmem load/store skip stats") Signed-off-by: Danylo Piliaiev <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16246> --- src/freedreno/vulkan/tu_private.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/freedreno/vulkan/tu_private.h b/src/freedreno/vulkan/tu_private.h index 5c387c15b06..00563280436 100644 --- a/src/freedreno/vulkan/tu_private.h +++ b/src/freedreno/vulkan/tu_private.h @@ -269,7 +269,7 @@ enum tu_debug_flags TU_DEBUG_RAST_ORDER = 1 << 14, TU_DEBUG_UNALIGNED_STORE = 1 << 15, TU_DEBUG_LAYOUT = 1 << 16, - TU_DEBUG_LOG_SKIP_GMEM_OPS = 1 << 15, + TU_DEBUG_LOG_SKIP_GMEM_OPS = 1 << 17, }; struct tu_instance
