From 3374b26f52313f629b69876bbca30845fb78b371 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Wed, 24 Mar 2010 08:18:13 -0600 Subject: st/mesa: rename st_clear() to st_Clear() To be consistent with other Mesa driver functions. --- src/mesa/state_tracker/st_cb_clear.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mesa') diff --git a/src/mesa/state_tracker/st_cb_clear.c b/src/mesa/state_tracker/st_cb_clear.c index 27775059fa..08c3e08097 100644 --- a/src/mesa/state_tracker/st_cb_clear.c +++ b/src/mesa/state_tracker/st_cb_clear.c @@ -431,7 +431,7 @@ void st_flush_clear( struct st_context *st ) /** * Called via ctx->Driver.Clear() */ -static void st_clear(GLcontext *ctx, GLbitfield mask) +static void st_Clear(GLcontext *ctx, GLbitfield mask) { static const GLbitfield BUFFER_BITS_DS = (BUFFER_BIT_DEPTH | BUFFER_BIT_STENCIL); @@ -528,5 +528,5 @@ static void st_clear(GLcontext *ctx, GLbitfield mask) void st_init_clear_functions(struct dd_function_table *functions) { - functions->Clear = st_clear; + functions->Clear = st_Clear; } -- cgit v1.2.3