From: Topi Pohjolainen <[email protected]> This is used to determine how many registers an instruction reads and writes as well as for offseting register region into a desired component.
v2 (Connor): rebase on master Signed-off-by: Topi Pohjolainen <[email protected]> Signed-off-by: Tapani P\344lli <[email protected]> Signed-off-by: Abdiel Janulgue <[email protected]> --- src/mesa/drivers/dri/i965/brw_reg.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mesa/drivers/dri/i965/brw_reg.h b/src/mesa/drivers/dri/i965/brw_reg.h index 4f9b252..b84c709 100644 --- a/src/mesa/drivers/dri/i965/brw_reg.h +++ b/src/mesa/drivers/dri/i965/brw_reg.h @@ -274,6 +274,7 @@ type_sz(unsigned type) switch(type) { case BRW_REGISTER_TYPE_UQ: case BRW_REGISTER_TYPE_Q: + case BRW_REGISTER_TYPE_DF: return 8; case BRW_REGISTER_TYPE_UD: case BRW_REGISTER_TYPE_D: -- 2.5.0 _______________________________________________ mesa-dev mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-dev
