mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 06:58:05 +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> (cherry picked from commit82592433e6) Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41268>
This commit is contained in:
parent
b9e1ed0269
commit
4a330b6913
2 changed files with 2 additions and 2 deletions
|
|
@ -2854,7 +2854,7 @@
|
|||
"description": "panvk: Fix debug flag overlap",
|
||||
"nominated": true,
|
||||
"nomination_type": 2,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"main_sha": null,
|
||||
"because_sha": "2d9be417065801124eac3845f71df280f1ebc2bb",
|
||||
"notes": null
|
||||
|
|
|
|||
|
|
@ -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