mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 16:08: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> (cherry picked from commitd82e8e01c8)
This commit is contained in:
parent
0c622c766a
commit
1bbeb9c4d0
2 changed files with 2 additions and 2 deletions
|
|
@ -4909,7 +4909,7 @@
|
|||
"description": "anv: fixup condition for Wa_14016118574",
|
||||
"nominated": true,
|
||||
"nomination_type": 1,
|
||||
"resolution": 0,
|
||||
"resolution": 1,
|
||||
"main_sha": null,
|
||||
"because_sha": "f2645229c2fa6d9c595004a8dc4ee44cebedb5fd"
|
||||
},
|
||||
|
|
|
|||
|
|
@ -7916,7 +7916,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