llvmpipe: Per quad interpolation.
[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 attribs[1 + PIPE_MAX_SHADER_INPUTS][NUM_CHANNELS];
68
69 /*
70 * Convenience pointers. Callers may access this one.
71 */
72 const LLVMValueRef *pos;
73 const LLVMValueRef (*inputs)[NUM_CHANNELS];
74 };
75
76
77 void
78 lp_build_interp_soa_init(struct lp_build_interp_soa_context *bld,
79 unsigned num_inputs,
80 const struct lp_shader_input *inputs,
81 LLVMBuilderRef builder,
82 struct lp_type type,
83 LLVMValueRef a0_ptr,
84 LLVMValueRef dadx_ptr,
85 LLVMValueRef dady_ptr,
86 LLVMValueRef x,
87 LLVMValueRef y);
88
89 void
90 lp_build_interp_soa_update(struct lp_build_interp_soa_context *bld,
91 int quad_index);
92
93
94 #endif /* LP_BLD_INTERP_H */