mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-06 04:30:10 +01:00
nir/glsl_to_nir: set bit_size on ssbo_load result
v2 (Sam): - Add missing bit_size assignment when ssbo_load destination is a boolean. Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
This commit is contained in:
parent
a741378cb5
commit
fab5d4cd95
1 changed files with 3 additions and 2 deletions
|
|
@ -858,8 +858,9 @@ nir_visitor::visit(ir_call *ir)
|
|||
instr->num_components = type->vector_elements;
|
||||
|
||||
/* Setup destination register */
|
||||
unsigned bit_size = glsl_get_bit_size(type->base_type);
|
||||
nir_ssa_dest_init(&instr->instr, &instr->dest,
|
||||
type->vector_elements, 32, NULL);
|
||||
type->vector_elements, bit_size, NULL);
|
||||
|
||||
/* Insert the created nir instruction now since in the case of boolean
|
||||
* result we will need to emit another instruction after it
|
||||
|
|
@ -882,7 +883,7 @@ nir_visitor::visit(ir_call *ir)
|
|||
load_ssbo_compare->src[1].swizzle[i] = 0;
|
||||
nir_ssa_dest_init(&load_ssbo_compare->instr,
|
||||
&load_ssbo_compare->dest.dest,
|
||||
type->vector_elements, 32, NULL);
|
||||
type->vector_elements, bit_size, NULL);
|
||||
load_ssbo_compare->dest.write_mask = (1 << type->vector_elements) - 1;
|
||||
nir_builder_instr_insert(&b, &load_ssbo_compare->instr);
|
||||
dest = &load_ssbo_compare->dest.dest;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue