r300: Zero-initialize register for NV_vertex_program
[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_H
29 #define LP_BLD_H
30
31
32 /**
33 * @file
34 * LLVM IR building helpers interfaces.
35 *
36 * We use LLVM-C bindings for now. They are not documented, but follow the C++
37 * interfaces very closely, and appear to be complete enough for code
38 * genration. See
39 * http://npcontemplation.blogspot.com/2008/06/secret-of-llvm-c-bindings.html
40 * for a standalone example.
41 */
42
43 #include <llvm-c/Core.h>
44
45 #include "pipe/p_format.h"
46
47
48 union lp_type;
49
50
51 /**
52 * Unpack a pixel into its RGBA components.
53 *
54 * @param packed integer.
55 *
56 * @return RGBA in a 4 floats vector.
57 */
58 LLVMValueRef
59 lp_build_unpack_rgba(LLVMBuilderRef builder,
60 enum pipe_format format,
61 LLVMValueRef packed);
62
63
64 /**
65 * Pack a pixel.
66 *
67 * @param rgba 4 float vector with the unpacked components.
68 */
69 LLVMValueRef
70 lp_build_pack_rgba(LLVMBuilderRef builder,
71 enum pipe_format format,
72 LLVMValueRef rgba);
73
74
75 /**
76 * Load a pixel into its RGBA components.
77 *
78 * @param ptr value with the pointer to the packed pixel. Pointer type is
79 * irrelevant.
80 *
81 * @return RGBA in a 4 floats vector.
82 */
83 LLVMValueRef
84 lp_build_load_rgba(LLVMBuilderRef builder,
85 enum pipe_format format,
86 LLVMValueRef ptr);
87
88
89 /**
90 * Store a pixel.
91 *
92 * @param rgba 4 float vector with the unpacked components.
93 */
94 void
95 lp_build_store_rgba(LLVMBuilderRef builder,
96 enum pipe_format format,
97 LLVMValueRef ptr,
98 LLVMValueRef rgba);
99
100
101 #endif /* !LP_BLD_H */