i965: Drop unused 'ss_index' parameter from gen7_update_sampler_state.
authorKenneth Graunke <kenneth@whitecape.org>
Sat, 26 Jul 2014 18:42:27 +0000 (11:42 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Sat, 2 Aug 2014 12:14:42 +0000 (05:14 -0700)
This was copied from the Gen4-6 code, but is unused.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Topi Pohjolainen <topi.pohjolainen@intel.com>
src/mesa/drivers/dri/i965/gen7_sampler_state.c

index 77a74e1dbaf3fbbc24e061d64059c5bf8848e1bb..b6d45cc0d3f10c535746a72ce8237dfa3ad26566 100644 (file)
@@ -34,7 +34,7 @@
  * Sets the sampler state for a single unit.
  */
 static void
-gen7_update_sampler_state(struct brw_context *brw, int unit, int ss_index,
+gen7_update_sampler_state(struct brw_context *brw, int unit,
                          struct gen7_sampler_state *sampler)
 {
    struct gl_context *ctx = &brw->ctx;
@@ -207,7 +207,7 @@ gen7_upload_sampler_state_table(struct brw_context *brw,
       if (SamplersUsed & (1 << s)) {
          const unsigned unit = prog->SamplerUnits[s];
          if (ctx->Texture.Unit[unit]._Current)
-            gen7_update_sampler_state(brw, unit, s, &samplers[s]);
+            gen7_update_sampler_state(brw, unit, &samplers[s]);
       }
    }