summaryrefslogtreecommitdiff
path: root/src/gallium
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2013-09-12 15:38:06 -0600
committerBrian Paul <brianp@vmware.com>2013-10-03 14:05:28 -0600
commitedd9af675c4a30841940a9493848dad4797bf833 (patch)
treef260ac32728f13a47158e2d1b0d97379ecf3965d /src/gallium
parentf233ee0cd6ba296d38f4f4dccdef67929cf8739a (diff)
noop: remove old bind_*_sampler_states() functions
Diffstat (limited to 'src/gallium')
-rw-r--r--src/gallium/drivers/noop/noop_state.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/gallium/drivers/noop/noop_state.c b/src/gallium/drivers/noop/noop_state.c
index 0278e1ce739..173e2cc6ba8 100644
--- a/src/gallium/drivers/noop/noop_state.c
+++ b/src/gallium/drivers/noop/noop_state.c
@@ -140,10 +140,6 @@ static void noop_bind_sampler_states(struct pipe_context *ctx, unsigned shader,
{
}
-static void noop_bind_sampler(struct pipe_context *ctx, unsigned count, void **states)
-{
-}
-
static void noop_set_clip_state(struct pipe_context *ctx,
const struct pipe_clip_state *state)
{
@@ -302,11 +298,9 @@ void noop_init_state_functions(struct pipe_context *ctx)
ctx->bind_blend_state = noop_bind_state;
ctx->bind_depth_stencil_alpha_state = noop_bind_state;
ctx->bind_sampler_states = noop_bind_sampler_states;
- ctx->bind_fragment_sampler_states = noop_bind_sampler;
ctx->bind_fs_state = noop_bind_state;
ctx->bind_rasterizer_state = noop_bind_state;
ctx->bind_vertex_elements_state = noop_bind_state;
- ctx->bind_vertex_sampler_states = noop_bind_sampler;
ctx->bind_vs_state = noop_bind_state;
ctx->delete_blend_state = noop_delete_state;
ctx->delete_depth_stencil_alpha_state = noop_delete_state;