st/mesa: rename st_clear() to st_Clear()
authorBrian Paul <brianp@vmware.com>
Wed, 24 Mar 2010 14:18:13 +0000 (08:18 -0600)
committerBrian Paul <brianp@vmware.com>
Wed, 24 Mar 2010 14:18:21 +0000 (08:18 -0600)
To be consistent with other Mesa driver functions.

src/mesa/state_tracker/st_cb_clear.c

index 27775059fa6f5797ba54eba308c15eb010bdb750..08c3e08097b09ec0b1bf48966dcc342523cad246 100644 (file)
@@ -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;
 }