svga: don't hook in old bind_fragment_sampler_states() functions

This commit is contained in:
Brian Paul
2013-09-12 16:10:06 -06:00
parent 27c054edf0
commit 88b17a15f3
@@ -187,14 +187,6 @@ svga_bind_sampler_states(struct pipe_context *pipe,
}
static void
svga_bind_fragment_sampler_states(struct pipe_context *pipe,
unsigned num, void **sampler)
{
svga_bind_sampler_states(pipe, PIPE_SHADER_FRAGMENT, 0, num, sampler);
}
static void svga_delete_sampler_state(struct pipe_context *pipe,
void *sampler)
{
@@ -310,7 +302,6 @@ void svga_init_sampler_functions( struct svga_context *svga )
{
svga->pipe.create_sampler_state = svga_create_sampler_state;
svga->pipe.bind_sampler_states = svga_bind_sampler_states;
svga->pipe.bind_fragment_sampler_states = svga_bind_fragment_sampler_states;
svga->pipe.delete_sampler_state = svga_delete_sampler_state;
svga->pipe.set_fragment_sampler_views = svga_set_fragment_sampler_views;
svga->pipe.create_sampler_view = svga_create_sampler_view;