mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 07:28:11 +02:00
brw: add missing offset to MCS fetching messages
Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Reviewed-by: Alyssa Rosenzweig <alyssa.rosenzweig@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/37963>
This commit is contained in:
parent
1773e2df50
commit
f8745b3af3
1 changed files with 2 additions and 2 deletions
|
|
@ -619,7 +619,7 @@ static const struct sampler_opcode_desc {
|
|||
[BRW_SAMPLER_OPCODE_LD2DMS_W] = {
|
||||
.name = "ld2dms_w",
|
||||
.hw_opcode = GFX9_SAMPLER_MESSAGE_SAMPLE_LD2DMS_W,
|
||||
.nir_src_mask = N(ms_index) | N(ms_mcs_intel) | N(coord) | N(lod),
|
||||
.nir_src_mask = N(ms_index) | N(ms_mcs_intel) | N(coord) | N(lod) | N(offset),
|
||||
.is_fetch = true,
|
||||
.payload = {
|
||||
.sources = {
|
||||
|
|
@ -630,7 +630,7 @@ static const struct sampler_opcode_desc {
|
|||
[BRW_SAMPLER_OPCODE_LD2DMS_W_GFX125] = {
|
||||
.name = "ld2dms_w (gfx125)",
|
||||
.hw_opcode = GFX9_SAMPLER_MESSAGE_SAMPLE_LD2DMS_W,
|
||||
.nir_src_mask = N(ms_index) | N(ms_mcs_intel) | N(coord) | N(lod),
|
||||
.nir_src_mask = N(ms_index) | N(ms_mcs_intel) | N(coord) | N(lod) | N(offset),
|
||||
.is_fetch = true,
|
||||
.payload = {
|
||||
.sources = {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue