diff options
author | Brian Paul <[email protected]> | 2013-09-12 17:31:28 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-10-03 14:05:29 -0600 |
commit | 379deaf5c65c03b78714f225954bce5a16c22905 (patch) | |
tree | f3792164343c2ce31b77449ac525b58ac2fb86a0 /src/gallium | |
parent | 55e81b06e75e1a16af6cf8de0cae1f5f188fbdf8 (diff) |
gallium: remove old bind_*_sampler_states() functions
The new bind_sampler_states() function takes a shader argument to
specify the shader stage.
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/include/pipe/p_context.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/src/gallium/include/pipe/p_context.h b/src/gallium/include/pipe/p_context.h index 2a8e03c0b32..9d6b9b5db49 100644 --- a/src/gallium/include/pipe/p_context.h +++ b/src/gallium/include/pipe/p_context.h @@ -139,24 +139,9 @@ struct pipe_context { void * (*create_sampler_state)(struct pipe_context *, const struct pipe_sampler_state *); - void (*bind_sampler_states)(struct pipe_context *, unsigned shader, unsigned start_slot, unsigned num_samplers, void **samplers); - - void (*bind_fragment_sampler_states)(struct pipe_context *, - unsigned num_samplers, - void **samplers); - void (*bind_vertex_sampler_states)(struct pipe_context *, - unsigned num_samplers, - void **samplers); - void (*bind_geometry_sampler_states)(struct pipe_context *, - unsigned num_samplers, - void **samplers); - void (*bind_compute_sampler_states)(struct pipe_context *, - unsigned start_slot, - unsigned num_samplers, - void **samplers); void (*delete_sampler_state)(struct pipe_context *, void *); void * (*create_rasterizer_state)(struct pipe_context *, |