mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 00:38:48 +02:00
panvk: Fix debug flag overlap
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:
parent
3d0239cff9
commit
82592433e6
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue