diff options
author | Brian Paul <[email protected]> | 2013-09-12 18:09:33 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-10-03 14:05:27 -0600 |
commit | 3f0627c2ad605b006737312c478907859411ffa8 (patch) | |
tree | 83c4a04fadb97ab0f47188592a6bd01771c027b9 /src/gallium/drivers/nouveau/nvc0 | |
parent | 550f9ee64ce2eea7b76a8e4551e398aa8c780c4e (diff) |
nouveau: implement pipe_context::bind_sampler_states()
Diffstat (limited to 'src/gallium/drivers/nouveau/nvc0')
-rw-r--r-- | src/gallium/drivers/nouveau/nvc0/nvc0_state.c | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/gallium/drivers/nouveau/nvc0/nvc0_state.c b/src/gallium/drivers/nouveau/nvc0/nvc0_state.c index e56ef0160f2..e3117d443a2 100644 --- a/src/gallium/drivers/nouveau/nvc0/nvc0_state.c +++ b/src/gallium/drivers/nouveau/nvc0/nvc0_state.c @@ -540,6 +540,32 @@ nvc0_cp_sampler_states_bind(struct pipe_context *pipe, nvc0_context(pipe)->dirty_cp |= NVC0_NEW_CP_SAMPLERS; } +static void +nvc0_bind_sampler_states(struct pipe_context *pipe, unsigned shader, + unsigned start, unsigned nr, void **s) +{ + switch (shader) { + case PIPE_SHADER_VERTEX: + assert(start == 0); + nvc0_stage_sampler_states_bind(nvc0_context(pipe), 0, nr, s); + break; + case PIPE_SHADER_GEOMETRY: + assert(start == 0); + nvc0_stage_sampler_states_bind(nvc0_context(pipe), 3, nr, s); + break; + case PIPE_SHADER_FRAGMENT: + assert(start == 0); + nvc0_stage_sampler_states_bind(nvc0_context(pipe), 4, nr, s); + break; + case PIPE_SHADER_COMPUTE: + nvc0_stage_sampler_states_bind_range(nvc0_context(pipe), 5, + start, nr, s); + nvc0_context(pipe)->dirty_cp |= NVC0_NEW_CP_SAMPLERS; + break; + } +} + + /* NOTE: only called when not referenced anywhere, won't be bound */ static void nvc0_sampler_view_destroy(struct pipe_context *pipe, @@ -1194,6 +1220,7 @@ nvc0_init_state_functions(struct nvc0_context *nvc0) pipe->create_sampler_state = nv50_sampler_state_create; pipe->delete_sampler_state = nvc0_sampler_state_delete; + pipe->bind_sampler_states = nvc0_bind_sampler_states; pipe->bind_vertex_sampler_states = nvc0_vp_sampler_states_bind; pipe->bind_fragment_sampler_states = nvc0_fp_sampler_states_bind; pipe->bind_geometry_sampler_states = nvc0_gp_sampler_states_bind; |