summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/r600
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2013-09-12 15:09:01 -0600
committerBrian Paul <[email protected]>2013-10-03 14:05:26 -0600
commit8280b29d7c9fa472e2e7e10e5f920e04075186e2 (patch)
tree2e045a2e9dfc1c9ee1a109793fa7402a4c55c6b1 /src/gallium/drivers/r600
parent0de99d52b7953a90da69cc33dfaf2f15467a0d2b (diff)
radeon: implement pipe_context::bind_sampler_states()
Diffstat (limited to 'src/gallium/drivers/r600')
-rw-r--r--src/gallium/drivers/r600/r600_state_common.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/r600/r600_state_common.c b/src/gallium/drivers/r600/r600_state_common.c
index 7371bd611c4..b2688489bf9 100644
--- a/src/gallium/drivers/r600/r600_state_common.c
+++ b/src/gallium/drivers/r600/r600_state_common.c
@@ -2085,6 +2085,7 @@ void r600_init_common_state_functions(struct r600_context *rctx)
rctx->b.b.create_vertex_elements_state = r600_create_vertex_fetch_shader;
rctx->b.b.bind_blend_state = r600_bind_blend_state;
rctx->b.b.bind_depth_stencil_alpha_state = r600_bind_dsa_state;
+ rctx->b.b.bind_sampler_states = r600_bind_sampler_states;
rctx->b.b.bind_fragment_sampler_states = r600_bind_ps_sampler_states;
rctx->b.b.bind_fs_state = r600_bind_ps_state;
rctx->b.b.bind_rasterizer_state = r600_bind_rs_state;