nak: Use strong ordering for Image load/store
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24998>
This commit is contained in:
parent
ec2c866a77
commit
4f2f9c6ab3
1 changed files with 4 additions and 4 deletions
|
|
@ -1455,8 +1455,8 @@ impl<'a> ShaderFromNir<'a> {
|
|||
dst: dst.into(),
|
||||
resident: Dst::None,
|
||||
image_dim: dim,
|
||||
mem_order: MemOrder::Weak,
|
||||
mem_scope: MemScope::CTA,
|
||||
mem_order: MemOrder::Strong,
|
||||
mem_scope: MemScope::System,
|
||||
mask: (1 << comps) - 1,
|
||||
handle: handle,
|
||||
coord: coord,
|
||||
|
|
@ -1476,8 +1476,8 @@ impl<'a> ShaderFromNir<'a> {
|
|||
|
||||
b.push_op(OpSuSt {
|
||||
image_dim: dim,
|
||||
mem_order: MemOrder::Weak,
|
||||
mem_scope: MemScope::CTA,
|
||||
mem_order: MemOrder::Strong,
|
||||
mem_scope: MemScope::System,
|
||||
mask: (1 << comps) - 1,
|
||||
handle: handle,
|
||||
coord: coord,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue