diff options
author | Brian Paul <[email protected]> | 2013-09-12 15:09:10 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-10-03 14:05:26 -0600 |
commit | 550f9ee64ce2eea7b76a8e4551e398aa8c780c4e (patch) | |
tree | 06e36af31bad7c65a017e72f64ae11552de9a975 /src | |
parent | 8280b29d7c9fa472e2e7e10e5f920e04075186e2 (diff) |
softpipe: implement pipe_context::bind_sampler_states()
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_state_sampler.c | 1 |
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 aeb2b9da899..ea592399fbe 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; |