mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 04:30:10 +01:00
pan/bi: Fix CONVERT component counting
Signed-off-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5260>
This commit is contained in:
parent
d8c6a71878
commit
1cdd55a81e
1 changed files with 10 additions and 1 deletions
|
|
@ -105,7 +105,16 @@ bi_get_component_count(bi_instruction *ins, signed src)
|
|||
assert(ins->vector_channels);
|
||||
return (src <= 0) ? ins->vector_channels : 1;
|
||||
} else {
|
||||
unsigned bytes = nir_alu_type_get_type_size(src < 0 ? ins->dest_type : ins->src_types[src]);
|
||||
unsigned dest_bytes = nir_alu_type_get_type_size(ins->dest_type);
|
||||
unsigned src_bytes = nir_alu_type_get_type_size(ins->src_types[src]);
|
||||
|
||||
/* If there's either f32 on either end, it's only a single
|
||||
* component, etc. */
|
||||
|
||||
unsigned bytes = src < 0 ? dest_bytes : src_bytes;
|
||||
|
||||
if (ins->type == BI_CONVERT)
|
||||
bytes = MAX2(dest_bytes, src_bytes);
|
||||
|
||||
if (ins->type == BI_ATEST || ins->type == BI_SELECT)
|
||||
return 1;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue