diff options
author | José Fonseca <[email protected]> | 2013-04-18 09:55:35 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2013-04-18 14:18:13 +0100 |
commit | 6e833d4d093038ccd0a44f0d7baa33ea37320abe (patch) | |
tree | 5224859cdfd8543a63ca2f23a9342fbb210666dc /src/gallium/drivers/llvmpipe | |
parent | 34bec4a25165bf5d3f957e26eda7624d325b161c (diff) |
gallivm: Drop pos arg from lp_build_tgsi_soa.
Never used.
Reviewed-by: Roland Scheidegger <[email protected]>
Diffstat (limited to 'src/gallium/drivers/llvmpipe')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_state_fs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_state_fs.c b/src/gallium/drivers/llvmpipe/lp_state_fs.c index ea41bd64720..cdf246fdcdb 100644 --- a/src/gallium/drivers/llvmpipe/lp_state_fs.c +++ b/src/gallium/drivers/llvmpipe/lp_state_fs.c @@ -353,7 +353,7 @@ generate_fs(struct gallivm_state *gallivm, /* Build the actual shader */ lp_build_tgsi_soa(gallivm, tokens, type, &mask, consts_ptr, &system_values, - interp->pos, interp->inputs, + interp->inputs, outputs, sampler, &shader->info.base, NULL); /* Alpha test */ @@ -606,7 +606,7 @@ generate_fs_loop(struct gallivm_state *gallivm, /* Build the actual shader */ lp_build_tgsi_soa(gallivm, tokens, type, &mask, consts_ptr, &system_values, - interp->pos, interp->inputs, + interp->inputs, outputs, sampler, &shader->info.base, NULL); /* Alpha test */ |