mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-02 05:48:07 +02:00
i965/fs: Silence unused parameter warning
brw_fs_visitor.cpp:2162:56: warning: unused parameter 'offset_components' [-Wunused-parameter]
fs_reg offset_value, unsigned offset_components,
^
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
This commit is contained in:
parent
1e552db522
commit
e4f26acc08
4 changed files with 5 additions and 7 deletions
|
|
@ -289,7 +289,7 @@ public:
|
|||
fs_reg shadow_c,
|
||||
fs_reg lod, fs_reg dpdy, int grad_components,
|
||||
fs_reg sample_index,
|
||||
fs_reg offset, unsigned offset_components,
|
||||
fs_reg offset,
|
||||
fs_reg mcs,
|
||||
int gather_component,
|
||||
bool is_cube_array,
|
||||
|
|
|
|||
|
|
@ -475,7 +475,7 @@ fs_visitor::emit_fragment_program_code()
|
|||
|
||||
emit_texture(op, glsl_type::vec4_type, coordinate, coord_components,
|
||||
shadow_c, lod, dpdy, 0, sample_index,
|
||||
reg_undef, 0, /* offset, components */
|
||||
reg_undef, /* offset */
|
||||
reg_undef, /* mcs */
|
||||
0, /* gather component */
|
||||
false, /* is cube array */
|
||||
|
|
|
|||
|
|
@ -1760,7 +1760,7 @@ fs_visitor::nir_emit_texture(nir_tex_instr *instr)
|
|||
|
||||
emit_texture(op, dest_type, coordinate, instr->coord_components,
|
||||
shadow_comparitor, lod, lod2, lod_components, sample_index,
|
||||
offset, offset_components, mcs, gather_component,
|
||||
offset, mcs, gather_component,
|
||||
is_cube_array, is_rect, sampler, sampler_reg, texunit);
|
||||
|
||||
fs_reg dest = get_nir_dest(instr->dest);
|
||||
|
|
|
|||
|
|
@ -2025,7 +2025,7 @@ fs_visitor::emit_texture(ir_texture_opcode op,
|
|||
fs_reg shadow_c,
|
||||
fs_reg lod, fs_reg lod2, int grad_components,
|
||||
fs_reg sample_index,
|
||||
fs_reg offset_value, unsigned offset_components,
|
||||
fs_reg offset_value,
|
||||
fs_reg mcs,
|
||||
int gather_component,
|
||||
bool is_cube_array,
|
||||
|
|
@ -2191,7 +2191,6 @@ fs_visitor::visit(ir_texture *ir)
|
|||
}
|
||||
|
||||
fs_reg offset_value;
|
||||
int offset_components = 0;
|
||||
if (ir->offset) {
|
||||
ir_constant *const_offset = ir->offset->as_constant();
|
||||
if (const_offset) {
|
||||
|
|
@ -2206,7 +2205,6 @@ fs_visitor::visit(ir_texture *ir)
|
|||
ir->offset->accept(this);
|
||||
offset_value = this->result;
|
||||
}
|
||||
offset_components = ir->offset->type->vector_elements;
|
||||
}
|
||||
|
||||
fs_reg lod, lod2, sample_index, mcs;
|
||||
|
|
@ -2263,7 +2261,7 @@ fs_visitor::visit(ir_texture *ir)
|
|||
|
||||
emit_texture(ir->op, ir->type, coordinate, coord_components,
|
||||
shadow_comparitor, lod, lod2, grad_components,
|
||||
sample_index, offset_value, offset_components, mcs,
|
||||
sample_index, offset_value, mcs,
|
||||
gather_component, is_cube_array, is_rect, sampler,
|
||||
sampler_reg, texunit);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue