summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/r300/r300_state.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2013-09-12 13:57:42 -0600
committerBrian Paul <brianp@vmware.com>2013-10-03 14:05:26 -0600
commit9b99451da2451c0e6d8eeb118ef3284603f58f08 (patch)
treeae16dfcf5e5dcdf5e041120e2b90c735b99fd4aa /src/gallium/drivers/r300/r300_state.c
parentc368479e38783100f1e525ac6398bf8eb2233b4c (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.c8
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;