diff --git a/.pick_status.json b/.pick_status.json index 1af45035f6e..6a578329676 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -337,7 +337,7 @@ "description": "i965/gen11: Fix must-be-ones bit positions in 3D_MODE", "nominated": true, "nomination_type": 1, - "resolution": 0, + "resolution": 1, "master_sha": null, "because_sha": "f0d29238df33d66ca4ee1e5f25a1edd9034f632e" }, diff --git a/src/mesa/drivers/dri/i965/brw_state_upload.c b/src/mesa/drivers/dri/i965/brw_state_upload.c index 77438d6312d..ec2e0449de8 100644 --- a/src/mesa/drivers/dri/i965/brw_state_upload.c +++ b/src/mesa/drivers/dri/i965/brw_state_upload.c @@ -144,7 +144,7 @@ brw_upload_gen11_slice_hashing_state(struct brw_context *brw) */ BEGIN_BATCH(2); OUT_BATCH(_3DSTATE_3D_MODE << 16 | (2 - 2)); - OUT_BATCH(0xffff | SLICE_HASHING_TABLE_ENABLE); + OUT_BATCH(0xffff0000 | SLICE_HASHING_TABLE_ENABLE); ADVANCE_BATCH(); }