Searched defs:unswizzled (Results 1 - 5 of 5) sorted by relevance

/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_format_aos.c60 * Basic swizzling. Rearrange the order of the unswizzled array elements
63 * Ex: if unswizzled[4] = {B, G, R, x}, then swizzled_out[4] = {R, G, B, 1}.
68 LLVMValueRef unswizzled)
95 return lp_build_swizzle_aos(bld, unswizzled, swizzles);
372 LLVMValueRef shifted, casted, scaled, unswizzled; local
396 unswizzled = LLVMBuildShuffleVector(builder, rgba,
427 scaled = LLVMBuildFMul(builder, unswizzled, LLVMConstVector(scales, 4), "");
429 scaled = unswizzled;
66 lp_build_format_swizzle_aos(const struct util_format_description *desc, struct lp_build_context *bld, LLVMValueRef unswizzled) argument
H A Dlp_bld_format_soa.c82 const LLVMValueRef *unswizzled,
102 depth_or_stencil = lp_build_swizzle_soa_channel(bld, unswizzled, swizzle);
111 swizzled_out[chan] = lp_build_swizzle_soa_channel(bld, unswizzled, swizzle);
80 lp_build_format_swizzle_soa(const struct util_format_description *format_desc, struct lp_build_context *bld, const LLVMValueRef *unswizzled, LLVMValueRef swizzled_out[4]) argument
H A Dlp_bld_swizzle.c566 * @param unswizzled array with the 4 unswizzled values
573 const LLVMValueRef *unswizzled,
581 return unswizzled[swizzle];
597 * @param unswizzled array with the 4 unswizzled values
603 const LLVMValueRef *unswizzled,
610 swizzled[chan] = lp_build_swizzle_soa_channel(bld, unswizzled,
628 LLVMValueRef unswizzled[4]; local
632 unswizzled[cha
572 lp_build_swizzle_soa_channel(struct lp_build_context *bld, const LLVMValueRef *unswizzled, unsigned swizzle) argument
602 lp_build_swizzle_soa(struct lp_build_context *bld, const LLVMValueRef *unswizzled, const unsigned char swizzles[4], LLVMValueRef *swizzled) argument
[all...]
H A Dlp_bld_sample_aos.c1615 LLVMValueRef unswizzled[4]; local
1689 packed, unswizzled);
1694 unswizzled, texel_out);
1697 texel_out[0] = unswizzled[0];
1698 texel_out[1] = unswizzled[1];
1699 texel_out[2] = unswizzled[2];
1700 texel_out[3] = unswizzled[3];
H A Dlp_bld_tgsi_soa.c1749 LLVMValueRef unswizzled[4] = {NULL, NULL, NULL, NULL}; local
1775 if (!unswizzled[swizzle]) {
1795 unswizzled[swizzle] = value;
1797 value = unswizzled[swizzle];

Completed in 96 milliseconds