diff options
author | Brian Paul <brianp@vmware.com> | 2013-09-12 13:57:42 -0600 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2013-10-03 14:05:26 -0600 |
commit | 9b99451da2451c0e6d8eeb118ef3284603f58f08 (patch) | |
tree | ae16dfcf5e5dcdf5e041120e2b90c735b99fd4aa /src/gallium/drivers/r300/r300_state.c | |
parent | c368479e38783100f1e525ac6398bf8eb2233b4c (diff) |
r300g: rename r300_bind_sampler_states to r300_bind_fragment_sampler_states
Diffstat (limited to 'src/gallium/drivers/r300/r300_state.c')
-rw-r--r-- | src/gallium/drivers/r300/r300_state.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/drivers/r300/r300_state.c b/src/gallium/drivers/r300/r300_state.c index e69a605097..249ee8beed 100644 --- a/src/gallium/drivers/r300/r300_state.c +++ b/src/gallium/drivers/r300/r300_state.c @@ -1522,9 +1522,9 @@ static void* return (void*)sampler; } -static void r300_bind_sampler_states(struct pipe_context* pipe, - unsigned count, - void** states) +static void r300_bind_fragment_sampler_states(struct pipe_context* pipe, + unsigned count, + void** states) { struct r300_context* r300 = r300_context(pipe); struct r300_textures_state* state = @@ -2157,7 +2157,7 @@ void r300_init_state_functions(struct r300_context* r300) r300->context.delete_rasterizer_state = r300_delete_rs_state; r300->context.create_sampler_state = r300_create_sampler_state; - r300->context.bind_fragment_sampler_states = r300_bind_sampler_states; + r300->context.bind_fragment_sampler_states = r300_bind_fragment_sampler_states; r300->context.bind_vertex_sampler_states = r300_lacks_vertex_textures; r300->context.delete_sampler_state = r300_delete_sampler_state; |