mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 06:58:05 +02:00
i965: Silence many unused parameter warnings
brw_inst.h: In function 'brw_inst_set_src1_vstride': brw_inst.h:118:76: warning: unused parameter 'brw' [-Wunused-parameter] Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Matt Turner <mattst88@gmail.com>
This commit is contained in:
parent
f6fc807345
commit
1946612b7d
1 changed files with 10 additions and 0 deletions
|
|
@ -56,6 +56,7 @@ brw_inst_set_##name(const struct brw_context *brw, \
|
|||
brw_inst *inst, uint64_t v) \
|
||||
{ \
|
||||
assert(assertions); \
|
||||
(void) brw; \
|
||||
brw_inst_set_bits(inst, high, low, v); \
|
||||
} \
|
||||
static inline uint64_t \
|
||||
|
|
@ -63,6 +64,7 @@ brw_inst_##name(const struct brw_context *brw, \
|
|||
brw_inst *inst) \
|
||||
{ \
|
||||
assert(assertions); \
|
||||
(void) brw; \
|
||||
return brw_inst_bits(inst, high, low); \
|
||||
}
|
||||
|
||||
|
|
@ -306,12 +308,14 @@ brw_inst_set_##name(const struct brw_context *brw, brw_inst *inst, int16_t v) \
|
|||
assert(assertions); \
|
||||
assert(v <= (1 << 16) - 1); \
|
||||
assert(v > -(1 << 16)); \
|
||||
(void) brw; \
|
||||
brw_inst_set_bits(inst, high, low, (uint16_t) v); \
|
||||
} \
|
||||
static inline int16_t \
|
||||
brw_inst_##name(const struct brw_context *brw, brw_inst *inst) \
|
||||
{ \
|
||||
assert(assertions); \
|
||||
(void) brw; \
|
||||
return brw_inst_bits(inst, high, low); \
|
||||
}
|
||||
|
||||
|
|
@ -544,12 +548,14 @@ F(pi_message_data, MD(7), MD(0))
|
|||
static inline int
|
||||
brw_inst_imm_d(const struct brw_context *brw, brw_inst *insn)
|
||||
{
|
||||
(void) brw;
|
||||
return brw_inst_bits(insn, 127, 96);
|
||||
}
|
||||
|
||||
static inline unsigned
|
||||
brw_inst_imm_ud(const struct brw_context *brw, brw_inst *insn)
|
||||
{
|
||||
(void) brw;
|
||||
return brw_inst_bits(insn, 127, 96);
|
||||
}
|
||||
|
||||
|
|
@ -557,6 +563,7 @@ static inline float
|
|||
brw_inst_imm_f(const struct brw_context *brw, brw_inst *insn)
|
||||
{
|
||||
fi_type ft;
|
||||
(void) brw;
|
||||
ft.u = brw_inst_bits(insn, 127, 96);
|
||||
return ft.f;
|
||||
}
|
||||
|
|
@ -565,6 +572,7 @@ static inline void
|
|||
brw_inst_set_imm_d(const struct brw_context *brw,
|
||||
brw_inst *insn, int value)
|
||||
{
|
||||
(void) brw;
|
||||
return brw_inst_set_bits(insn, 127, 96, value);
|
||||
}
|
||||
|
||||
|
|
@ -572,6 +580,7 @@ static inline void
|
|||
brw_inst_set_imm_ud(const struct brw_context *brw,
|
||||
brw_inst *insn, unsigned value)
|
||||
{
|
||||
(void) brw;
|
||||
return brw_inst_set_bits(insn, 127, 96, value);
|
||||
}
|
||||
|
||||
|
|
@ -580,6 +589,7 @@ brw_inst_set_imm_f(const struct brw_context *brw,
|
|||
brw_inst *insn, float value)
|
||||
{
|
||||
fi_type ft;
|
||||
(void) brw;
|
||||
ft.f = value;
|
||||
brw_inst_set_bits(insn, 127, 96, ft.u);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue