llvmpipe: New function to unpack rgba8 formats into 4 x u8n AoS.
[mesa.git] / src / gallium / drivers / llvmpipe / lp_bld_format.h
1 /**************************************************************************
2 *
3 * Copyright 2009 VMware, Inc.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 #ifndef LP_BLD_FORMAT_H
29 #define LP_BLD_FORMAT_H
30
31
32 /**
33 * @file
34 * Pixel format helpers.
35 */
36
37 #include <llvm-c/Core.h>
38
39 #include "pipe/p_format.h"
40
41 struct util_format_description;
42 struct lp_type;
43
44
45 void
46 lp_build_format_swizzle_soa(const struct util_format_description *format_desc,
47 struct lp_type type,
48 const LLVMValueRef *unswizzled,
49 LLVMValueRef *swizzled);
50
51
52 LLVMValueRef
53 lp_build_unpack_rgba_aos(LLVMBuilderRef builder,
54 const struct util_format_description *desc,
55 LLVMValueRef packed);
56
57
58 LLVMValueRef
59 lp_build_unpack_rgba8_aos(LLVMBuilderRef builder,
60 const struct util_format_description *desc,
61 struct lp_type type,
62 LLVMValueRef packed);
63
64
65 LLVMValueRef
66 lp_build_pack_rgba_aos(LLVMBuilderRef builder,
67 const struct util_format_description *desc,
68 LLVMValueRef rgba);
69
70
71 void
72 lp_build_unpack_rgba_soa(LLVMBuilderRef builder,
73 const struct util_format_description *format_desc,
74 struct lp_type type,
75 LLVMValueRef packed,
76 LLVMValueRef *rgba);
77
78
79 #endif /* !LP_BLD_FORMAT_H */