gallium: fix windows build from params change.

This is why we can't have nice things. I'm sure there's someway
to do this with {0} but I really don't have time for that.

Fixes: 2631fd3b0b ("gallivm: rework lp_build_tgsi_soa to take a struct")
Reviewed-by: Timothy Arceri <tarceri@itsqueeze.com>
This commit is contained in:
Dave Airlie 2019-07-25 09:33:36 +10:00
parent 97c8314c5f
commit 16fcbb2eba
3 changed files with 12 additions and 6 deletions

View file

@ -637,7 +637,8 @@ generate_vs(struct draw_llvm_variant *variant,
LLVMValueRef num_ssbos_ptr =
draw_jit_context_num_vs_ssbos(variant->gallivm, context_ptr);
struct lp_build_tgsi_params params = {};
struct lp_build_tgsi_params params;
memset(&params, 0, sizeof(params));
params.type = vs_type;
params.mask = bld_mask;
@ -2379,7 +2380,8 @@ draw_gs_llvm_generate(struct draw_llvm *llvm,
draw_gs_llvm_dump_variant_key(&variant->key);
}
struct lp_build_tgsi_params params = {};
struct lp_build_tgsi_params params;
memset(&params, 0, sizeof(params));
params.type = gs_type;
params.mask = &mask;

View file

@ -478,7 +478,8 @@ generate_fs_loop(struct gallivm_state *gallivm,
lp_build_interp_soa_update_inputs_dyn(interp, gallivm, loop_state.counter);
struct lp_build_tgsi_params params = {};
struct lp_build_tgsi_params params;
memset(&params, 0, sizeof(params));
params.type = type;
params.mask = &mask;

View file

@ -681,7 +681,8 @@ BuilderSWR::CompileGS(struct swr_context *ctx, swr_jit_gs_key &key)
gs_iface.info = info;
gs_iface.pVtxAttribMap = vtxAttribMap;
struct lp_build_tgsi_params params = {};
struct lp_build_tgsi_params params;
memset(&params, 0, sizeof(params));
params.type = lp_type_float_vec(32, 32 * 8);
params.mask = & mask;
params.consts_ptr = wrap(consts_ptr);
@ -834,7 +835,8 @@ BuilderSWR::CompileVS(struct swr_context *ctx, swr_jit_vs_key &key)
uint32_t vectorWidth = mVWidth;
#endif
struct lp_build_tgsi_params params = {};
struct lp_build_tgsi_params params;
memset(&params, 0, sizeof(params));
params.type = lp_type_float_vec(32, 32 * vectorWidth);
params.consts_ptr = wrap(consts_ptr);
params.const_sizes_ptr = wrap(const_sizes_ptr);
@ -1324,7 +1326,8 @@ BuilderSWR::CompileFS(struct swr_context *ctx, swr_jit_fs_key &key)
uses_mask = true;
}
struct lp_build_tgsi_params params = {};
struct lp_build_tgsi_params params;
memset(&params, 0, sizeof(params));
params.type = lp_type_float_vec(32, 32 * 8);
params.mask = uses_mask ? &mask : NULL;
params.consts_ptr = wrap(consts_ptr);