mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 05:18:08 +02:00
nir: Clean up nir_deref helper functions
Reviewed-by: Connor Abbott <cwabbott0@gmail.com>
This commit is contained in:
parent
895eee505c
commit
8219ff1796
1 changed files with 4 additions and 1 deletions
|
|
@ -542,6 +542,7 @@ static nir_deref_var *
|
|||
copy_deref_var(void *mem_ctx, nir_deref_var *deref)
|
||||
{
|
||||
nir_deref_var *ret = nir_deref_var_create(mem_ctx, deref->var);
|
||||
ret->deref.type = deref->deref.type;
|
||||
if (deref->deref.child)
|
||||
ret->deref.child = nir_copy_deref(mem_ctx, deref->deref.child);
|
||||
return ret;
|
||||
|
|
@ -552,8 +553,10 @@ copy_deref_array(void *mem_ctx, nir_deref_array *deref)
|
|||
{
|
||||
nir_deref_array *ret = nir_deref_array_create(mem_ctx);
|
||||
ret->base_offset = deref->base_offset;
|
||||
if (deref->has_indirect)
|
||||
if (deref->has_indirect) {
|
||||
ret->has_indirect = true;
|
||||
ret->indirect = deref->indirect;
|
||||
}
|
||||
ret->deref.type = deref->deref.type;
|
||||
if (deref->deref.child)
|
||||
ret->deref.child = nir_copy_deref(mem_ctx, deref->deref.child);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue