diff --git a/src/intel/compiler/brw_disasm.c b/src/intel/compiler/brw_disasm.c index c28492a97e9..b68b649db9a 100644 --- a/src/intel/compiler/brw_disasm.c +++ b/src/intel/compiler/brw_disasm.c @@ -1469,7 +1469,10 @@ src0_dpas_3src(FILE *file, const struct intel_device_info *devinfo, if (subreg_nr) format(file, ".%d", subreg_nr); - src_align1_region(file, 1, 1, 0); + src_align1_region(file, + BRW_VERTICAL_STRIDE_1, + BRW_WIDTH_1, + BRW_ALIGN1_3SRC_SRC_HORIZONTAL_STRIDE_0); string(file, brw_reg_type_to_letters(type)); @@ -1490,7 +1493,10 @@ src1_dpas_3src(FILE *file, const struct intel_device_info *devinfo, if (subreg_nr) format(file, ".%d", subreg_nr); - src_align1_region(file, 1, 1, 0); + src_align1_region(file, + BRW_VERTICAL_STRIDE_1, + BRW_WIDTH_1, + BRW_ALIGN1_3SRC_SRC_HORIZONTAL_STRIDE_0); string(file, brw_reg_type_to_letters(type)); @@ -1511,7 +1517,10 @@ src2_dpas_3src(FILE *file, const struct intel_device_info *devinfo, if (subreg_nr) format(file, ".%d", subreg_nr); - src_align1_region(file, 1, 1, 0); + src_align1_region(file, + BRW_VERTICAL_STRIDE_1, + BRW_WIDTH_1, + BRW_ALIGN1_3SRC_SRC_HORIZONTAL_STRIDE_0); string(file, brw_reg_type_to_letters(type));