panvk: Fix debug flag overlap
Some checks are pending
macOS-CI / macOS-CI (dri) (push) Waiting to run
macOS-CI / macOS-CI (xlib) (push) Waiting to run

PANVK_DEBUG_HSR_PREPASS and PANVK_DEBUG_NO_EXTENDED_VA_RANGE have the
same value, meaning they both get toggled when one is.

This commit moves PANVK_DEBUG_HSR_PREPASS to the following value.

Fixes: 2d9be41706 ("panvk/v13: Support HSR Prepass")
Reviewed-by: John Anthony <john.anthony@arm.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41106>
This commit is contained in:
Lars-Ivar Hesselberg Simonsen 2026-04-22 15:40:48 +02:00 committed by Marge Bot
parent 3d0239cff9
commit 82592433e6

View file

@ -33,7 +33,7 @@ enum panvk_debug_flags {
PANVK_DEBUG_NO_USER_MMAP_SYNC = 1 << 15,
PANVK_DEBUG_COHERENT_BEFORE_CACHED = 1 << 16,
PANVK_DEBUG_NO_EXTENDED_VA_RANGE = 1 << 17,
PANVK_DEBUG_HSR_PREPASS = 1 << 17,
PANVK_DEBUG_HSR_PREPASS = 1 << 18,
};
extern uint64_t panvk_debug;