summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2013-09-12 17:31:28 -0600
committerBrian Paul <brianp@vmware.com>2013-09-12 18:14:27 -0600
commitce74369c073f1bfe22613a1878476da873212bbb (patch)
tree0fb98d5a3932c1b00ef327061c39b6737328bade
parent0f065c0745546785412766928b225f36183dccf3 (diff)
gallium: remove old bind_*_sampler_states() functions
The new bind_sampler_states() function takes a shader argument to specify the shader stage.
-rw-r--r--src/gallium/include/pipe/p_context.h15
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 c2bcefa4e4..39bab3d68c 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 *,