From: Brian Paul Date: Wed, 24 Mar 2010 14:18:13 +0000 (-0600) Subject: st/mesa: rename st_clear() to st_Clear() X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3374b26f52313f629b69876bbca30845fb78b371;p=mesa.git st/mesa: rename st_clear() to st_Clear() To be consistent with other Mesa driver functions. --- diff --git a/src/mesa/state_tracker/st_cb_clear.c b/src/mesa/state_tracker/st_cb_clear.c index 27775059fa6..08c3e08097b 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; }