nvfx: remove unused-but-set variables
authorMarek Olšák <maraeo@gmail.com>
Sat, 17 Dec 2011 21:54:29 +0000 (22:54 +0100)
committerMarek Olšák <maraeo@gmail.com>
Sun, 8 Jan 2012 18:09:37 +0000 (19:09 +0100)
src/gallium/drivers/nvfx/nv30_fragtex.c
src/gallium/drivers/nvfx/nv40_fragtex.c

index 6fe5932df90c0d716d7c47a645eab3bd193d95ac..dd454b56e47974a873ab4a2f93038e4ab0d443b7 100644 (file)
@@ -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);
index 563183d9d0ca460cd1717f868c5c53d29db9f3ac..a2da4457324ade9c0e77b51c4aa1cd1ce195439f 100644 (file)
@@ -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);