intel/brw: Stop using long BRW_REGISTER_TYPE enum names

s/BRW_REGISTER_TYPE/BRW_TYPE/g

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:08:02 -07:00
committed by Marge Bot
parent 9d8f2c4421
commit 873fcdff38
42 changed files with 1996 additions and 2014 deletions

View File

@@ -237,8 +237,8 @@ TEST_P(Instructions, ADD_GRF_GRF_IMM)
TEST_P(Instructions, ADD_GRF_GRF_IMM_d)
{
struct brw_reg g0 = retype(brw_vec8_grf(0, 0), BRW_REGISTER_TYPE_D);
struct brw_reg g2 = retype(brw_vec8_grf(2, 0), BRW_REGISTER_TYPE_D);
struct brw_reg g0 = retype(brw_vec8_grf(0, 0), BRW_TYPE_D);
struct brw_reg g2 = retype(brw_vec8_grf(2, 0), BRW_TYPE_D);
brw_ADD(p, g0, g2, brw_imm_d(1));
}