mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-23 20:30:30 +01:00
nir: disaallow reordering for r600 shared load and remove component field
The original shared load op can't be reordered, so it might be better to also not allow this for the lowered variant. Signed-off-by: Gert Wollny <gert.wollny@collabora.com> Acked-by: Eric Anholt <eric@anholt.net> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9330>
This commit is contained in:
parent
d1ccf4a0ee
commit
935d9e6863
1 changed files with 1 additions and 1 deletions
|
|
@ -1120,7 +1120,7 @@ system_value("tcs_rel_patch_id_r600", 1)
|
|||
system_value("tcs_tess_factor_base_r600", 1)
|
||||
|
||||
# load as many components as needed giving per-component addresses
|
||||
intrinsic("load_local_shared_r600", src_comp=[0], dest_comp=0, indices = [COMPONENT], flags = [CAN_ELIMINATE, CAN_REORDER])
|
||||
intrinsic("load_local_shared_r600", src_comp=[0], dest_comp=0, indices = [], flags = [CAN_ELIMINATE])
|
||||
|
||||
store("local_shared_r600", [1], [WRITE_MASK])
|
||||
store("tf_r600", [])
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue