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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user