diff options
author | Brian Paul <[email protected]> | 2010-03-04 09:45:34 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-03-04 10:53:26 -0700 |
commit | 6464d81e779e8c05ef96c9e5dab4422ff1f25464 (patch) | |
tree | 8df16f6ade2f0e5ba27ba3d0b88012976fe08ee9 /src/gallium/auxiliary/gallivm/lp_bld_arit.h | |
parent | 7d230dae70e8caa67cc6bd7501f892d44c40a5d4 (diff) |
gallivm: added lp_build_set_sign()
Diffstat (limited to 'src/gallium/auxiliary/gallivm/lp_bld_arit.h')
-rw-r--r-- | src/gallium/auxiliary/gallivm/lp_bld_arit.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/gallivm/lp_bld_arit.h b/src/gallium/auxiliary/gallivm/lp_bld_arit.h index 2d19ec06b43..866349d8cba 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_arit.h +++ b/src/gallium/auxiliary/gallivm/lp_bld_arit.h @@ -125,6 +125,10 @@ lp_build_sgn(struct lp_build_context *bld, LLVMValueRef a); LLVMValueRef +lp_build_set_sign(struct lp_build_context *bld, + LLVMValueRef a, LLVMValueRef sign); + +LLVMValueRef lp_build_int_to_float(struct lp_build_context *bld, LLVMValueRef a); |