aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/nouveau/nv50
diff options
context:
space:
mode:
authorBrian Paul <[email protected]>2013-09-12 18:09:33 -0600
committerBrian Paul <[email protected]>2013-10-03 14:05:27 -0600
commit3f0627c2ad605b006737312c478907859411ffa8 (patch)
tree83c4a04fadb97ab0f47188592a6bd01771c027b9 /src/gallium/drivers/nouveau/nv50
parent550f9ee64ce2eea7b76a8e4551e398aa8c780c4e (diff)
nouveau: implement pipe_context::bind_sampler_states()
Diffstat (limited to 'src/gallium/drivers/nouveau/nv50')
-rw-r--r--src/gallium/drivers/nouveau/nv50/nv50_state.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/gallium/drivers/nouveau/nv50/nv50_state.c b/src/gallium/drivers/nouveau/nv50/nv50_state.c
index 7dceb51c19e..03a2ebb63b9 100644
--- a/src/gallium/drivers/nouveau/nv50/nv50_state.c
+++ b/src/gallium/drivers/nouveau/nv50/nv50_state.c
@@ -606,6 +606,27 @@ nv50_gp_sampler_states_bind(struct pipe_context *pipe, unsigned nr, void **s)
nv50_stage_sampler_states_bind(nv50_context(pipe), 1, nr, s);
}
+static void
+nv50_bind_sampler_states(struct pipe_context *pipe,
+ unsigned shader, unsigned start,
+ unsigned num_samplers, void **samplers)
+{
+ assert(start == 0);
+ switch (shader) {
+ case PIPE_SHADER_VERTEX:
+ nv50_vp_sampler_states_bind(pipe, num_samplers, samplers);
+ break;
+ case PIPE_SHADER_GEOMETRY:
+ nv50_gp_sampler_states_bind(pipe, num_samplers, samplers);
+ break;
+ case PIPE_SHADER_FRAGMENT:
+ nv50_fp_sampler_states_bind(pipe, num_samplers, samplers);
+ break;
+ }
+}
+
+
+
/* NOTE: only called when not referenced anywhere, won't be bound */
static void
nv50_sampler_view_destroy(struct pipe_context *pipe,
@@ -1067,6 +1088,7 @@ nv50_init_state_functions(struct nv50_context *nv50)
pipe->create_sampler_state = nv50_sampler_state_create;
pipe->delete_sampler_state = nv50_sampler_state_delete;
+ pipe->bind_sampler_states = nv50_bind_sampler_states;
pipe->bind_vertex_sampler_states = nv50_vp_sampler_states_bind;
pipe->bind_fragment_sampler_states = nv50_fp_sampler_states_bind;
pipe->bind_geometry_sampler_states = nv50_gp_sampler_states_bind;