diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2016-12-11 08:40:05 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2016-12-11 08:40:05 +0000 |
commit | 21ab4c9f31674b113c24177398ed39f29b7cd8e6 (patch) | |
tree | 8be392d7a792d9663c2586396be77bfd506f5164 /lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_pack.h | |
parent | a8f0a7916e26e550dd2a26e7188835c481978004 (diff) |
Import Mesa 13.0.2
Diffstat (limited to 'lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_pack.h')
-rw-r--r-- | lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_pack.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_pack.h b/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_pack.h index 367fba1fd..3e07716df 100644 --- a/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_pack.h +++ b/lib/mesa/src/gallium/auxiliary/gallivm/lp_bld_pack.h @@ -74,6 +74,14 @@ lp_build_unpack2(struct gallivm_state *gallivm, void +lp_build_unpack2_native(struct gallivm_state *gallivm, + struct lp_type src_type, + struct lp_type dst_type, + LLVMValueRef src, + LLVMValueRef *dst_lo, + LLVMValueRef *dst_hi); + +void lp_build_unpack(struct gallivm_state *gallivm, struct lp_type src_type, struct lp_type dst_type, @@ -118,6 +126,14 @@ lp_build_pack2(struct gallivm_state *gallivm, LLVMValueRef +lp_build_pack2_native(struct gallivm_state *gallivm, + struct lp_type src_type, + struct lp_type dst_type, + LLVMValueRef lo, + LLVMValueRef hi); + + +LLVMValueRef lp_build_pack(struct gallivm_state *gallivm, struct lp_type src_type, struct lp_type dst_type, |