From 379deaf5c65c03b78714f225954bce5a16c22905 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 12 Sep 2013 17:31:28 -0600 Subject: [PATCH] gallium: remove old bind_*_sampler_states() functions The new bind_sampler_states() function takes a shader argument to specify the shader stage. --- src/gallium/include/pipe/p_context.h | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/src/gallium/include/pipe/p_context.h b/src/gallium/include/pipe/p_context.h index 2a8e03c..9d6b9b5 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 *, -- 2.7.4