summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2013-09-12 16:10:06 -0600
committerBrian Paul <[email protected]>2013-10-03 14:05:28 -0600
commit88b17a15f3ce50d4c373908c16b08881916cdabd (patch)
treeb8c8cce7c32019c783419b7ed6eebe5096bcc103 /src
parent27c054edf0ae92c8c498830e7c7510fa94f5dcfd (diff)
svga: don't hook in old bind_fragment_sampler_states() functions
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/svga/svga_pipe_sampler.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/gallium/drivers/svga/svga_pipe_sampler.c b/src/gallium/drivers/svga/svga_pipe_sampler.c
index 9603e0cf0a9..b64e8138efb 100644
--- a/src/gallium/drivers/svga/svga_pipe_sampler.c
+++ b/src/gallium/drivers/svga/svga_pipe_sampler.c
@@ -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;