diff options
author | José Fonseca <[email protected]> | 2009-08-14 10:03:12 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2009-08-29 09:21:31 +0100 |
commit | af608e56ca246232ef11a561040b84801ae3a552 (patch) | |
tree | e9f55ec30d8a6721dec3d9e8c016e7010e8303b3 /src/gallium/drivers/llvmpipe/lp_bld_swizzle.h | |
parent | 57907e7fd9fc63b9023d0e2b08934c2d0acf2953 (diff) |
llvmpipe: Factor out lp_build_select from lp_build_select_aos.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_bld_swizzle.h')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_bld_swizzle.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_bld_swizzle.h b/src/gallium/drivers/llvmpipe/lp_bld_swizzle.h index dede675e588..fe53e86786d 100644 --- a/src/gallium/drivers/llvmpipe/lp_bld_swizzle.h +++ b/src/gallium/drivers/llvmpipe/lp_bld_swizzle.h @@ -60,6 +60,12 @@ lp_build_broadcast_aos(struct lp_build_context *bld, LLVMValueRef +lp_build_select(struct lp_build_context *bld, + LLVMValueRef mask, + LLVMValueRef a, + LLVMValueRef b); + +LLVMValueRef lp_build_select_aos(struct lp_build_context *bld, LLVMValueRef a, LLVMValueRef b, |