diff options
author | Brian Paul <[email protected]> | 2010-03-24 08:18:13 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-03-24 08:18:21 -0600 |
commit | 3374b26f52313f629b69876bbca30845fb78b371 (patch) | |
tree | a6741baa1029df3f65a18115ec08e85d2742e65c /src | |
parent | f66d70b930e2a5026b0d6d7bdb047a2a78a10d7a (diff) |
st/mesa: rename st_clear() to st_Clear()
To be consistent with other Mesa driver functions.
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/state_tracker/st_cb_clear.c | 4 |
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 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; } |