summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/i965/brw_wm_sampler_state.c
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2010-06-09 17:19:40 -0700
committerEric Anholt <eric@anholt.net>2010-06-11 00:16:15 -0700
commit8ad3fdc9678866b40f3d9faaaf7c6333d388907f (patch)
tree2c427adf58852b6bf7648dcc7489b34582b1a0df /src/mesa/drivers/dri/i965/brw_wm_sampler_state.c
parent309c011641c6189dc74bc2f78ba6d6602d8c96b7 (diff)
i965: GC the last two arguments to brw_cache_data.
Now that the binding table is streamed indirect state, they were always NULL/0.
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_wm_sampler_state.c')
-rw-r--r--src/mesa/drivers/dri/i965/brw_wm_sampler_state.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_wm_sampler_state.c b/src/mesa/drivers/dri/i965/brw_wm_sampler_state.c
index 9fbabdc285..1fc802cfa6 100644
--- a/src/mesa/drivers/dri/i965/brw_wm_sampler_state.c
+++ b/src/mesa/drivers/dri/i965/brw_wm_sampler_state.c
@@ -74,7 +74,7 @@ static drm_intel_bo *upload_default_color( struct brw_context *brw,
COPY_4V(sdc.color, color);
return brw_cache_data(&brw->cache, BRW_SAMPLER_DEFAULT_COLOR,
- &sdc, sizeof(sdc), NULL, 0);
+ &sdc, sizeof(sdc));
}