mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-01 22:40:09 +01:00
aco: fix wait_entry::join() when changing vmem_types
This is a bitmask, not a boolean. No fossil-db changes. Signed-off-by: Rhys Perry <pendingchaos02@gmail.com> Reviewed-by: Georg Lehmann <dadschoorse@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34935>
This commit is contained in:
parent
171920ceed
commit
e7a7d9ea2e
1 changed files with 1 additions and 1 deletions
|
|
@ -86,7 +86,7 @@ struct wait_entry {
|
|||
bool join(const wait_entry& other)
|
||||
{
|
||||
bool changed = (other.events & ~events) || (other.counters & ~counters) ||
|
||||
(other.wait_on_read && !wait_on_read) || (other.vmem_types & !vmem_types) ||
|
||||
(other.wait_on_read && !wait_on_read) || (other.vmem_types & ~vmem_types) ||
|
||||
(!other.logical && logical);
|
||||
events |= other.events;
|
||||
counters |= other.counters;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue