summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/svga
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2013-09-12 15:08:42 -0600
committerBrian Paul <[email protected]>2013-10-03 14:05:26 -0600
commit0de99d52b7953a90da69cc33dfaf2f15467a0d2b (patch)
treed22118083ed7c2341eb60f7d4696ae1b42aa0be7 /src/gallium/drivers/svga
parent6ef9fc791e289de2cec036fa4d648d061b47b35e (diff)
svga: implement pipe_context::bind_sampler_states()
Diffstat (limited to 'src/gallium/drivers/svga')
-rw-r--r--src/gallium/drivers/svga/svga_pipe_sampler.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/svga/svga_pipe_sampler.c b/src/gallium/drivers/svga/svga_pipe_sampler.c
index 03d604d97c5..9603e0cf0a9 100644
--- a/src/gallium/drivers/svga/svga_pipe_sampler.c
+++ b/src/gallium/drivers/svga/svga_pipe_sampler.c
@@ -309,6 +309,7 @@ svga_set_fragment_sampler_views(struct pipe_context *pipe,
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;