diff options
author | Marek Olšák <[email protected]> | 2011-03-08 22:13:29 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2011-03-12 22:04:17 +0100 |
commit | 954787cee1c5ad32beb071445ea388e050be533d (patch) | |
tree | 15cfae61de6fe67593f8d9cd40d3313f19a4530f | |
parent | 75fd54e7bda8f862fd6b283e481b42a729dabdf3 (diff) |
r300/compiler: remove unused variables
(cherry picked from commit ff8baec5bc377cab716b0510d98195fb5564fb1a)
-rw-r--r-- | src/mesa/drivers/dri/r300/compiler/radeon_program_tex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/r300/compiler/radeon_program_tex.c b/src/mesa/drivers/dri/r300/compiler/radeon_program_tex.c index 80d89543e55..1cf77d9cf73 100644 --- a/src/mesa/drivers/dri/r300/compiler/radeon_program_tex.c +++ b/src/mesa/drivers/dri/r300/compiler/radeon_program_tex.c @@ -150,7 +150,7 @@ int radeonTransformTEX( return 1; } else { struct rc_instruction * inst_rcp = NULL; - struct rc_instruction *inst_mul, *inst_add, *inst_cmp, *inst_cmp2, *inst_mul2; + struct rc_instruction *inst_mul, *inst_add, *inst_cmp; unsigned tmp_texsample; unsigned tmp_sum; int pass, fail; |