diff options
author | Timur Kristóf <[email protected]> | 2020-04-23 15:17:11 +0200 |
---|---|---|
committer | Marge Bot <[email protected]> | 2020-04-24 17:58:57 +0000 |
commit | f2e7aee2440943f13d221fddcb3aabbb5bc3c59a (patch) | |
tree | ec3c6a83f166874c7af8a1d5d4026d58639baee2 /src/amd | |
parent | 25775d346c5bd91c8def493ee6e76d1c8e44b059 (diff) |
aco: Increase barrier_count to 7 to include barrier_barrier.
Signed-off-by: Timur Kristóf <[email protected]>
Reviewed-by: Rhys Perry <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4536>
Diffstat (limited to 'src/amd')
-rw-r--r-- | src/amd/compiler/aco_ir.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/compiler/aco_ir.h b/src/amd/compiler/aco_ir.h index 2d5387c1849..e8dbbf0534a 100644 --- a/src/amd/compiler/aco_ir.h +++ b/src/amd/compiler/aco_ir.h @@ -116,7 +116,7 @@ enum barrier_interaction : uint8_t { barrier_gs_sendmsg = 0x20, /* used by barriers. created by s_barrier */ barrier_barrier = 0x40, - barrier_count = 6, + barrier_count = 7, }; enum fp_round { |