summaryrefslogtreecommitdiff
path: root/src/mesa/state_tracker/st_cb_clear.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-03-24 08:18:13 -0600
committerBrian Paul <brianp@vmware.com>2010-03-24 08:18:21 -0600
commit3374b26f52313f629b69876bbca30845fb78b371 (patch)
treea6741baa1029df3f65a18115ec08e85d2742e65c /src/mesa/state_tracker/st_cb_clear.c
parentf66d70b930e2a5026b0d6d7bdb047a2a78a10d7a (diff)
st/mesa: rename st_clear() to st_Clear()
To be consistent with other Mesa driver functions.
Diffstat (limited to 'src/mesa/state_tracker/st_cb_clear.c')
-rw-r--r--src/mesa/state_tracker/st_cb_clear.c4
1 files changed, 2 insertions, 2 deletions
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;
}