diff options
author | Brian Paul <[email protected]> | 2013-09-12 15:16:07 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-10-03 14:05:27 -0600 |
commit | 6e640545aca37822e586c9f60c78a9516c82ead3 (patch) | |
tree | aa0be8af80e548bcd62af7f4a8237dde17a2df62 /src/gallium | |
parent | 93e6694f2cdc3a93d1f33d178639aadfa7edb431 (diff) |
softpipe: remove old bind_*_sampler_states() functions
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_state_sampler.c | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/src/gallium/drivers/softpipe/sp_state_sampler.c b/src/gallium/drivers/softpipe/sp_state_sampler.c index ea592399fbe..be9d6457c88 100644 --- a/src/gallium/drivers/softpipe/sp_state_sampler.c +++ b/src/gallium/drivers/softpipe/sp_state_sampler.c @@ -90,34 +90,6 @@ softpipe_bind_sampler_states(struct pipe_context *pipe, } - -static void -softpipe_bind_fragment_sampler_states(struct pipe_context *pipe, - unsigned num, void **samplers) -{ - softpipe_bind_sampler_states(pipe, PIPE_SHADER_FRAGMENT, 0, num, samplers); -} - - -static void -softpipe_bind_vertex_sampler_states(struct pipe_context *pipe, - unsigned num, - void **samplers) -{ - softpipe_bind_sampler_states(pipe, PIPE_SHADER_VERTEX, 0, num, samplers); -} - - -static void -softpipe_bind_geometry_sampler_states(struct pipe_context *pipe, - unsigned num, - void **samplers) -{ - softpipe_bind_sampler_states(pipe, PIPE_SHADER_GEOMETRY, 0, num, samplers); -} - - - static void softpipe_sampler_view_destroy(struct pipe_context *pipe, struct pipe_sampler_view *view) @@ -233,9 +205,6 @@ 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; pipe->delete_sampler_state = softpipe_delete_sampler_state; pipe->set_fragment_sampler_views = softpipe_set_fragment_sampler_views; |