diff options
author | Marek Olšák <[email protected]> | 2011-12-17 22:54:29 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-01-08 19:09:37 +0100 |
commit | ed22f8ed2c12d2cbeae245ea51e44cb308994ec2 (patch) | |
tree | 46c1fc9888cc2bca60b55cf283a764b0c4eb8312 /src/gallium | |
parent | a56a732c6991f47d63f5ccbb27a45467541c43f8 (diff) |
nvfx: remove unused-but-set variables
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/nvfx/nv30_fragtex.c | 3 | ||||
-rw-r--r-- | src/gallium/drivers/nvfx/nv40_fragtex.c | 2 |
2 files changed, 0 insertions, 5 deletions
diff --git a/src/gallium/drivers/nvfx/nv30_fragtex.c b/src/gallium/drivers/nvfx/nv30_fragtex.c index 6fe5932df90..dd454b56e47 100644 --- a/src/gallium/drivers/nvfx/nv30_fragtex.c +++ b/src/gallium/drivers/nvfx/nv30_fragtex.c @@ -9,8 +9,6 @@ nv30_sampler_state_init(struct pipe_context *pipe, struct nvfx_sampler_state *ps, const struct pipe_sampler_state *cso) { - float limit; - if (cso->max_anisotropy >= 2) { if (cso->max_anisotropy >= 8) @@ -21,7 +19,6 @@ nv30_sampler_state_init(struct pipe_context *pipe, ps->en |= NV30_3D_TEX_ENABLE_ANISO_2X; } - limit = CLAMP(cso->lod_bias, -16.0, 15.0 + (255.0 / 256.0)); ps->filt |= (int)(cso->lod_bias * 256.0) & 0x1fff; ps->max_lod = (int)CLAMP(cso->max_lod, 0.0, 15.0); diff --git a/src/gallium/drivers/nvfx/nv40_fragtex.c b/src/gallium/drivers/nvfx/nv40_fragtex.c index 563183d9d0c..a2da4457324 100644 --- a/src/gallium/drivers/nvfx/nv40_fragtex.c +++ b/src/gallium/drivers/nvfx/nv40_fragtex.c @@ -8,7 +8,6 @@ nv40_sampler_state_init(struct pipe_context *pipe, struct nvfx_sampler_state *ps, const struct pipe_sampler_state *cso) { - float limit; if (cso->max_anisotropy >= 2) { /* no idea, binary driver sets it, works without it.. meh.. */ ps->wrap |= (1 << 5); @@ -29,7 +28,6 @@ nv40_sampler_state_init(struct pipe_context *pipe, ps->en |= NV40_3D_TEX_ENABLE_ANISO_2X; } - limit = CLAMP(cso->lod_bias, -16.0, 15.0 + (255.0 / 256.0)); ps->filt |= (int)(cso->lod_bias * 256.0) & 0x1fff; ps->max_lod = (int)(CLAMP(cso->max_lod, 0.0, 15.0 + (255.0 / 256.0)) * 256.0); |