mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 04:58:05 +02:00
i965: add brw_vecn_grf()
Reviewed-by: Francisco Jerez <currojerez@riseup.net> Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
parent
e09a6be3b6
commit
ed74b19ab4
1 changed files with 6 additions and 0 deletions
|
|
@ -722,6 +722,12 @@ brw_vec16_grf(unsigned nr, unsigned subnr)
|
|||
return brw_vec16_reg(BRW_GENERAL_REGISTER_FILE, nr, subnr);
|
||||
}
|
||||
|
||||
static inline struct brw_reg
|
||||
brw_vecn_grf(unsigned width, unsigned nr, unsigned subnr)
|
||||
{
|
||||
return brw_vecn_reg(width, BRW_GENERAL_REGISTER_FILE, nr, subnr);
|
||||
}
|
||||
|
||||
|
||||
static inline struct brw_reg
|
||||
brw_uw8_grf(unsigned nr, unsigned subnr)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue