From: Matt Turner Date: Mon, 16 Nov 2015 17:28:02 +0000 (-0800) Subject: i965: Don't bother setting regioning on immediates. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ce11d4f3695506bd00b319b6ebbfcb9168eb3b84;p=mesa.git i965: Don't bother setting regioning on immediates. The region fields are unioned with the immediate storage. --- diff --git a/src/mesa/drivers/dri/i965/brw_reg.h b/src/mesa/drivers/dri/i965/brw_reg.h index e34e7ea0a52..15de93aa8ad 100644 --- a/src/mesa/drivers/dri/i965/brw_reg.h +++ b/src/mesa/drivers/dri/i965/brw_reg.h @@ -618,9 +618,6 @@ static inline struct brw_reg brw_imm_v(unsigned v) { struct brw_reg imm = brw_imm_reg(BRW_REGISTER_TYPE_V); - imm.vstride = BRW_VERTICAL_STRIDE_0; - imm.width = BRW_WIDTH_8; - imm.hstride = BRW_HORIZONTAL_STRIDE_1; imm.ud = v; return imm; } @@ -630,9 +627,6 @@ static inline struct brw_reg brw_imm_vf(unsigned v) { struct brw_reg imm = brw_imm_reg(BRW_REGISTER_TYPE_VF); - imm.vstride = BRW_VERTICAL_STRIDE_0; - imm.width = BRW_WIDTH_4; - imm.hstride = BRW_HORIZONTAL_STRIDE_1; imm.ud = v; return imm; }