mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-08 02:00:21 +01:00
intel/brw: Remove duplicated implementation of brw_imm_uq/brw_imm_u64()
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Signed-off-by: José Roberto de Souza <jose.souza@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36448>
This commit is contained in:
parent
14386eb7e5
commit
07f5b53dd7
1 changed files with 1 additions and 7 deletions
|
|
@ -716,13 +716,7 @@ brw_imm_q(int64_t q)
|
|||
}
|
||||
|
||||
/** Construct int64_t immediate register */
|
||||
static inline struct brw_reg
|
||||
brw_imm_uq(uint64_t uq)
|
||||
{
|
||||
struct brw_reg imm = brw_imm_reg(BRW_TYPE_UQ);
|
||||
imm.u64 = uq;
|
||||
return imm;
|
||||
}
|
||||
#define brw_imm_uq(uq) brw_imm_u64(uq)
|
||||
|
||||
/** Construct integer immediate register */
|
||||
static inline struct brw_reg
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue