summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe
diff options
context:
space:
mode:
authorVinson Lee <vlee@vmware.com>2010-04-25 13:10:02 -0700
committerVinson Lee <vlee@vmware.com>2010-04-25 13:10:02 -0700
commit8352983e2ab9523345f2b2b3db62db19f01fab62 (patch)
tree4d09b4c98f874ca9c79289d1c4c2399e82694441 /src/gallium/drivers/llvmpipe
parent7951630d0877fc3c293151ad6476bec7288e63c6 (diff)
llvmpipe: Remove unused variable.
Diffstat (limited to 'src/gallium/drivers/llvmpipe')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_state_fs.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_state_fs.c b/src/gallium/drivers/llvmpipe/lp_state_fs.c
index 3eb25d4127..9e9d9bcfb5 100644
--- a/src/gallium/drivers/llvmpipe/lp_state_fs.c
+++ b/src/gallium/drivers/llvmpipe/lp_state_fs.c
@@ -404,7 +404,6 @@ generate_fs(struct llvmpipe_context *lp,
{
const struct tgsi_token *tokens = shader->base.tokens;
LLVMTypeRef vec_type;
- LLVMTypeRef int_vec_type;
LLVMValueRef consts_ptr;
LLVMValueRef outputs[PIPE_MAX_SHADER_OUTPUTS][NUM_CHANNELS];
LLVMValueRef z = interp->pos[2];
@@ -422,7 +421,6 @@ generate_fs(struct llvmpipe_context *lp,
stencil_refs[1] = lp_jit_context_stencil_ref_back_value(builder, context_ptr);
vec_type = lp_build_vec_type(type);
- int_vec_type = lp_build_int_vec_type(type);
consts_ptr = lp_jit_context_constants(builder, context_ptr);