projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f66d70b
)
st/mesa: rename st_clear() to st_Clear()
author
Brian Paul
<brianp@vmware.com>
Wed, 24 Mar 2010 14:18:13 +0000
(08:18 -0600)
committer
Brian 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
patch
|
blob
|
history
diff --git
a/src/mesa/state_tracker/st_cb_clear.c
b/src/mesa/state_tracker/st_cb_clear.c
index 27775059fa6f5797ba54eba308c15eb010bdb750..08c3e08097b09ec0b1bf48966dcc342523cad246 100644
(file)
--- 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_
c
lear(GLcontext *ctx, GLbitfield mask)
+static void st_
C
lear(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_
c
lear;
+ functions->Clear = st_
C
lear;
}