summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2013-09-12 15:09:10 -0600
committerBrian Paul <brianp@vmware.com>2013-09-12 18:07:54 -0600
commit88efd6228c07cd37b5b60d37de4c6985b8e95b01 (patch)
tree7111032781ec017a050f61f9d85aa0daf7a3f731
parent2b8dc3cc8f16baf709530db19fbadb3bce687937 (diff)
softpipe: implement pipe_context::bind_sampler_states()
-rw-r--r--src/gallium/drivers/softpipe/sp_state_sampler.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/softpipe/sp_state_sampler.c b/src/gallium/drivers/softpipe/sp_state_sampler.c
index aeb2b9da89..ea592399fb 100644
--- a/src/gallium/drivers/softpipe/sp_state_sampler.c
+++ b/src/gallium/drivers/softpipe/sp_state_sampler.c
@@ -232,6 +232,7 @@ void
softpipe_init_sampler_funcs(struct pipe_context *pipe)
{
pipe->create_sampler_state = softpipe_create_sampler_state;
+ pipe->bind_sampler_states = softpipe_bind_sampler_states;
pipe->bind_fragment_sampler_states = softpipe_bind_fragment_sampler_states;
pipe->bind_vertex_sampler_states = softpipe_bind_vertex_sampler_states;
pipe->bind_geometry_sampler_states = softpipe_bind_geometry_sampler_states;