From 9b99451da2451c0e6d8eeb118ef3284603f58f08 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Thu, 12 Sep 2013 13:57:42 -0600 Subject: r300g: rename r300_bind_sampler_states to r300_bind_fragment_sampler_states --- src/gallium/drivers/r300/r300_state.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/gallium/drivers/r300/r300_state.c') 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; -- cgit v1.2.3