diff options
author | Dave Airlie <[email protected]> | 2019-06-26 15:34:52 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2019-07-07 16:23:36 +1000 |
commit | 5ff697aa658b4718a1c6050c72dfb18d39b38069 (patch) | |
tree | 9fd22d55c4091204e3d2040da520e6483ef171c9 /src/gallium/drivers/llvmpipe | |
parent | 2a55acbc1de0b8d1901988ee4f17d5697519c2d2 (diff) |
gallivm: add ssbo pointers to the soa build api.
Need to pass ssbo + ssbo size pointers just like constants.
Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/gallium/drivers/llvmpipe')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_state_fs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_state_fs.c b/src/gallium/drivers/llvmpipe/lp_state_fs.c index b05997a3aab..2203779d55f 100644 --- a/src/gallium/drivers/llvmpipe/lp_state_fs.c +++ b/src/gallium/drivers/llvmpipe/lp_state_fs.c @@ -479,7 +479,7 @@ generate_fs_loop(struct gallivm_state *gallivm, consts_ptr, num_consts_ptr, &system_values, interp->inputs, outputs, context_ptr, thread_data_ptr, - sampler, &shader->info.base, NULL); + sampler, &shader->info.base, NULL, NULL, NULL); /* Alpha test */ if (key->alpha.enabled) { |