intel/vec4: Use the new nir_src_is_const and friends
As of this commit, all uses of const sources either go through a nir_src_as_<type> helper which handles bit sizes correctly or else are accompanied by a nir_src_bit_size() == 32 assertion to assert that we have the size we think we have. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
@@ -260,10 +260,8 @@ vec4_tcs_visitor::nir_emit_intrinsic(nir_intrinsic_instr *instr)
|
||||
src_reg indirect_offset = get_indirect_offset(instr);
|
||||
unsigned imm_offset = instr->const_index[0];
|
||||
|
||||
nir_const_value *vertex_const = nir_src_as_const_value(instr->src[0]);
|
||||
src_reg vertex_index =
|
||||
vertex_const ? src_reg(brw_imm_ud(vertex_const->u32[0]))
|
||||
: get_nir_src(instr->src[0], BRW_REGISTER_TYPE_UD, 1);
|
||||
src_reg vertex_index = retype(get_nir_src_imm(instr->src[0]),
|
||||
BRW_REGISTER_TYPE_UD);
|
||||
|
||||
unsigned first_component = nir_intrinsic_component(instr);
|
||||
if (nir_dest_bit_size(instr->dest) == 64) {
|
||||
|
Reference in New Issue
Block a user