diff options
author | José Fonseca <[email protected]> | 2010-05-04 10:06:46 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2010-05-04 10:08:10 +0100 |
commit | 962558daaed43b0111cd062e32821aad106869d7 (patch) | |
tree | 8304d2206532a69d3dc11740bb007cf604e63daa /src/gallium/drivers/llvmpipe | |
parent | 3c6756d6f56644784b9e7c2550a6b796e7d1defd (diff) |
gallivm: Implement TXD.
Diffstat (limited to 'src/gallium/drivers/llvmpipe')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_tex_sample.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_tex_sample.c b/src/gallium/drivers/llvmpipe/lp_tex_sample.c index 74b7393e4ec..3f788e598fc 100644 --- a/src/gallium/drivers/llvmpipe/lp_tex_sample.c +++ b/src/gallium/drivers/llvmpipe/lp_tex_sample.c @@ -170,6 +170,8 @@ lp_llvm_sampler_soa_emit_fetch_texel(struct lp_build_sampler_soa *base, unsigned unit, unsigned num_coords, const LLVMValueRef *coords, + const LLVMValueRef *ddx, + const LLVMValueRef *ddy, LLVMValueRef lodbias, LLVMValueRef *texel) { @@ -182,9 +184,8 @@ lp_llvm_sampler_soa_emit_fetch_texel(struct lp_build_sampler_soa *base, &sampler->dynamic_state.base, type, unit, - num_coords, - coords, - lodbias, + num_coords, coords, + ddx, ddy, lodbias, texel); } |