summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_bld_interp.h
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-04-20 11:23:53 -0600
committerBrian Paul <brianp@vmware.com>2010-04-20 11:23:53 -0600
commitab065b933bde4fd1079f0d37a4571cdfd1619407 (patch)
tree51859006ebe2baf15cacc90b0bf9e8978c5d5d24 /src/gallium/drivers/llvmpipe/lp_bld_interp.h
parent3acb2b6b2f97dade44efdd81f482d6aa82ce338b (diff)
llvmpipe: rename mode -> interp
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_bld_interp.h')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_bld_interp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_bld_interp.h b/src/gallium/drivers/llvmpipe/lp_bld_interp.h
index d9e3fd1cd8..99a432957c 100644
--- a/src/gallium/drivers/llvmpipe/lp_bld_interp.h
+++ b/src/gallium/drivers/llvmpipe/lp_bld_interp.h
@@ -56,8 +56,8 @@ struct lp_build_interp_soa_context
struct lp_build_context base;
unsigned num_attribs;
- unsigned mask[1 + PIPE_MAX_SHADER_INPUTS];
- unsigned mode[1 + PIPE_MAX_SHADER_INPUTS];
+ unsigned mask[1 + PIPE_MAX_SHADER_INPUTS]; /**< TGSI_WRITE_MASK_x */
+ unsigned interp[1 + PIPE_MAX_SHADER_INPUTS]; /**< TGSI_INTERPOLATE_x */
LLVMValueRef a0 [1 + PIPE_MAX_SHADER_INPUTS][NUM_CHANNELS];
LLVMValueRef dadx[1 + PIPE_MAX_SHADER_INPUTS][NUM_CHANNELS];