mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-01 16:48:07 +02:00
nir: Don't skip a bit in nir_memory_semantics
There was another enum entry in the draft versions of nir_memory_semantics, but when it got dropped the entries were not updated. Reviewed-by: Eric Anholt <eric@anholt.net> Reviewed-by: Jason Ekstrand <jason@jlekstrand.net> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3224>
This commit is contained in:
parent
a46e9f4d9a
commit
67fc88fbb9
1 changed files with 2 additions and 2 deletions
|
|
@ -1451,8 +1451,8 @@ typedef enum {
|
|||
NIR_MEMORY_ACQ_REL = NIR_MEMORY_ACQUIRE | NIR_MEMORY_RELEASE,
|
||||
|
||||
/* Memory visibility operations. */
|
||||
NIR_MEMORY_MAKE_AVAILABLE = 1 << 3,
|
||||
NIR_MEMORY_MAKE_VISIBLE = 1 << 4,
|
||||
NIR_MEMORY_MAKE_AVAILABLE = 1 << 2,
|
||||
NIR_MEMORY_MAKE_VISIBLE = 1 << 3,
|
||||
} nir_memory_semantics;
|
||||
|
||||
typedef enum {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue