llvmpipe: defer attribute interpolation until after mask and ztest
[mesa.git] / src / gallium / drivers / llvmpipe / lp_bld_interp.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 /**
29 * @file
30 * Position and shader input interpolation.
31 *
32 * Special attention is given to the interpolation of side by side quads.
33 * Multiplications are made only for the first quad. Interpolation of
34 * inputs for posterior quads are done exclusively with additions, and
35 * perspective divide if necessary.
36 *
37 * @author Jose Fonseca <jfonseca@vmware.com>
38 */
39
40 #ifndef LP_BLD_INTERP_H
41 #define LP_BLD_INTERP_H
42
43
44 #include "gallivm/lp_bld.h"
45 #include "gallivm/lp_bld_type.h"
46
47 #include "tgsi/tgsi_exec.h"
48
49 #include "lp_setup.h"
50
51
52 struct lp_build_interp_soa_context
53 {
54 /* QUAD_SIZE x float */
55 struct lp_build_context coeff_bld;
56
57 unsigned num_attribs;
58 unsigned mask[1 + PIPE_MAX_SHADER_INPUTS]; /**< TGSI_WRITE_MASK_x */
59 enum lp_interp interp[1 + PIPE_MAX_SHADER_INPUTS];
60
61 LLVMValueRef x;
62 LLVMValueRef y;
63
64 LLVMValueRef a [1 + PIPE_MAX_SHADER_INPUTS][NUM_CHANNELS];
65 LLVMValueRef dadq[1 + PIPE_MAX_SHADER_INPUTS][NUM_CHANNELS];
66
67 LLVMValueRef oow;
68
69 LLVMValueRef attribs[1 + PIPE_MAX_SHADER_INPUTS][NUM_CHANNELS];
70
71 /*
72 * Convenience pointers. Callers may access this one.
73 */
74 const LLVMValueRef *pos;
75 const LLVMValueRef (*inputs)[NUM_CHANNELS];
76 };
77
78
79 void
80 lp_build_interp_soa_init(struct lp_build_interp_soa_context *bld,
81 unsigned num_inputs,
82 const struct lp_shader_input *inputs,
83 LLVMBuilderRef builder,
84 struct lp_type type,
85 LLVMValueRef a0_ptr,
86 LLVMValueRef dadx_ptr,
87 LLVMValueRef dady_ptr,
88 LLVMValueRef x,
89 LLVMValueRef y);
90
91 void
92 lp_build_interp_soa_update_inputs(struct lp_build_interp_soa_context *bld,
93 int quad_index);
94
95 void
96 lp_build_interp_soa_update_pos(struct lp_build_interp_soa_context *bld,
97 int quad_index);
98
99
100 #endif /* LP_BLD_INTERP_H */