mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
anv: fixup condition for Wa_14016118574
We don't want the WA to kick-in if it's not point/line topology.
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Fixes: f2645229c2 ("anv: implement Wa_14016118574")
Reviewed-by: Tapani Pälli <tapani.palli@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21660>
This commit is contained in:
parent
3e4541bb56
commit
d82e8e01c8
1 changed files with 1 additions and 1 deletions
|
|
@ -8084,7 +8084,7 @@ genX(batch_emit_dummy_post_sync_op)(struct anv_batch *batch,
|
|||
primitive_topology == _3DPRIM_POINTLIST_BF ||
|
||||
primitive_topology == _3DPRIM_LINESTRIP_CONT ||
|
||||
primitive_topology == _3DPRIM_LINESTRIP_BF ||
|
||||
primitive_topology == _3DPRIM_LINESTRIP_CONT_BF) ||
|
||||
primitive_topology == _3DPRIM_LINESTRIP_CONT_BF) &&
|
||||
(vertex_count == 1 || vertex_count == 2)) {
|
||||
anv_batch_emit(batch, GENX(PIPE_CONTROL), pc) {
|
||||
pc.PostSyncOperation = WriteImmediateData;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue