Mesa (master): st/mesa: minor clean-ups in st_atom.c

Brian Paul brianp at kemper.freedesktop.org
Wed Jan 6 22:54:10 UTC 2016


Module: Mesa
Branch: master
Commit: b59fad8478787665b7dc1618ca2a8b8df02feade
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=b59fad8478787665b7dc1618ca2a8b8df02feade

Author: Brian Paul <brianp at vmware.com>
Date:   Wed Jan  6 15:45:08 2016 -0700

st/mesa: minor clean-ups in st_atom.c

Remove useless comment.  Reformat code.

---

 src/mesa/state_tracker/st_atom.c |   24 ++++++++++--------------
 1 file changed, 10 insertions(+), 14 deletions(-)

diff --git a/src/mesa/state_tracker/st_atom.c b/src/mesa/state_tracker/st_atom.c
index 337213c..0309722 100644
--- a/src/mesa/state_tracker/st_atom.c
+++ b/src/mesa/state_tracker/st_atom.c
@@ -95,27 +95,26 @@ void st_destroy_atoms( struct st_context *st )
 }
 
 
-/***********************************************************************
- */
 
-static GLboolean check_state( const struct st_state_flags *a,
-			      const struct st_state_flags *b )
+static bool
+check_state(const struct st_state_flags *a, const struct st_state_flags *b)
 {
-   return ((a->mesa & b->mesa) ||
-	   (a->st & b->st));
+   return (a->mesa & b->mesa) || (a->st & b->st);
 }
 
-static void accumulate_state( struct st_state_flags *a,
-			      const struct st_state_flags *b )
+
+static void
+accumulate_state(struct st_state_flags *a, const struct st_state_flags *b)
 {
    a->mesa |= b->mesa;
    a->st |= b->st;
 }
 
 
-static void xor_states( struct st_state_flags *result,
-			     const struct st_state_flags *a,
-			      const struct st_state_flags *b )
+static void
+xor_states(struct st_state_flags *result,
+           const struct st_state_flags *a,
+           const struct st_state_flags *b)
 {
    result->mesa = a->mesa ^ b->mesa;
    result->st = a->st ^ b->st;
@@ -241,6 +240,3 @@ void st_validate_state( struct st_context *st )
 
    memset(state, 0, sizeof(*state));
 }
-
-
-




More information about the mesa-commit mailing list