diff options
author | Dave Airlie <[email protected]> | 2020-02-17 16:42:25 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2020-02-28 18:33:34 +1000 |
commit | 87359d68a980c70e6f3a65ffd528496ee498e366 (patch) | |
tree | 55063ee21aa387a83997d6559aa02ab8fe284b5b /src/gallium | |
parent | 7898e37fb4201b4b8c761a6d131d2bdd7b7ef119 (diff) |
gallivm/nir: align store_var param order with load_var
This was ugly so align load/store to have mostly the same
parameter ordering
Reviewed-by: Roland Scheidegger <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/3841>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/auxiliary/gallivm/lp_bld_nir.c | 2 | ||||
-rw-r--r-- | src/gallium/auxiliary/gallivm/lp_bld_nir.h | 5 | ||||
-rw-r--r-- | src/gallium/auxiliary/gallivm/lp_bld_nir_soa.c | 5 |
3 files changed, 7 insertions, 5 deletions
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_nir.c b/src/gallium/auxiliary/gallivm/lp_bld_nir.c index b8d804e827f..0e8f2df2cf3 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_nir.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_nir.c @@ -977,7 +977,7 @@ visit_store_var(struct lp_build_nir_context *bld_base, if (var) get_deref_offset(bld_base, deref, false, NULL, NULL, &const_index, &indir_index); - bld_base->store_var(bld_base, mode, bit_size, instr->num_components, writemask, const_index, var, src); + bld_base->store_var(bld_base, mode, instr->num_components, bit_size, var, writemask, const_index, src); } static void visit_load_ubo(struct lp_build_nir_context *bld_base, diff --git a/src/gallium/auxiliary/gallivm/lp_bld_nir.h b/src/gallium/auxiliary/gallivm/lp_bld_nir.h index f3987fd10b7..8778f6e5179 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_nir.h +++ b/src/gallium/auxiliary/gallivm/lp_bld_nir.h @@ -124,11 +124,12 @@ struct lp_build_nir_context LLVMValueRef result[NIR_MAX_VEC_COMPONENTS]); void (*store_var)(struct lp_build_nir_context *bld_base, nir_variable_mode deref_mode, - unsigned bit_size, unsigned num_components, + unsigned bit_size, + nir_variable *var, unsigned writemask, unsigned const_index, - nir_variable *var, LLVMValueRef dst); + LLVMValueRef dst); LLVMValueRef (*load_reg)(struct lp_build_nir_context *bld_base, struct lp_build_context *reg_bld, diff --git a/src/gallium/auxiliary/gallivm/lp_bld_nir_soa.c b/src/gallium/auxiliary/gallivm/lp_bld_nir_soa.c index 637ec36ba50..bd812039665 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_nir_soa.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_nir_soa.c @@ -394,11 +394,12 @@ static void emit_store_chan(struct lp_build_nir_context *bld_base, static void emit_store_var(struct lp_build_nir_context *bld_base, nir_variable_mode deref_mode, - unsigned bit_size, unsigned num_components, + unsigned bit_size, + nir_variable *var, unsigned writemask, unsigned const_index, - nir_variable *var, LLVMValueRef dst) + LLVMValueRef dst) { struct lp_build_nir_soa_context *bld = (struct lp_build_nir_soa_context *)bld_base; LLVMBuilderRef builder = bld->bld_base.base.gallivm->builder; |