intel/brw: Reindent after shortening BRW_REGISTER_TYPE_* to BRW_TYPE_*

Reviewed-by: Caio Oliveira <caio.oliveira@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/28847>
This commit is contained in:
Kenneth Graunke
2024-04-20 17:30:23 -07:00
committed by Marge Bot
parent 873fcdff38
commit f523bfcf90
9 changed files with 136 additions and 173 deletions

View File

@@ -1365,8 +1365,7 @@ fs_visitor::assign_curb_setup()
if (want_zero & BITFIELD64_BIT(i)) {
assert(i < prog_data->curb_read_length);
struct brw_reg push_reg =
retype(brw_vec8_grf(payload().num_regs + i, 0),
BRW_TYPE_D);
retype(brw_vec8_grf(payload().num_regs + i, 0), BRW_TYPE_D);
ubld.AND(push_reg, push_reg, component(b32, i % 16));
}