blorp: Use the calculated execution mask

Instead of setting execution mask to 0xFFFFFFFF, use the previously
calculated execution mask.

Signed-off-by: Sagar Ghuge <sagar.ghuge@intel.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/30474>
This commit is contained in:
Sagar Ghuge
2024-07-26 11:04:48 -07:00
committed by Marge Bot
parent 67333c2632
commit e5776bcb39
+1 -1
View File
@@ -1674,7 +1674,7 @@ blorp_exec_compute(struct blorp_batch *batch, const struct blorp_params *params)
.ThreadGroupIDXDimension = group_x1,
.ThreadGroupIDYDimension = group_y1,
.ThreadGroupIDZDimension = group_z1,
.ExecutionMask = 0xffffffff,
.ExecutionMask = dispatch.right_mask,
.PostSync.MOCS = isl_mocs(batch->blorp->isl_dev, 0, false),
.IndirectDataStartAddress = push_const_offset,