diff options
author | Brian Paul <[email protected]> | 2009-06-19 09:39:56 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-06-19 09:39:56 -0600 |
commit | 157d52143a2b541ca9552de2e3323261fc0238cb (patch) | |
tree | 4f4bf161789f480e655ccebd0b1b7053c56e0fc1 | |
parent | b0b8832e6f7db287f7251d626d6ae8fb134f0906 (diff) |
gallium/util: s/boolean/unsigned/
-rw-r--r-- | src/gallium/auxiliary/util/u_prim.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_prim.h b/src/gallium/auxiliary/util/u_prim.h index d7c3995dbf0..a9b533eea70 100644 --- a/src/gallium/auxiliary/util/u_prim.h +++ b/src/gallium/auxiliary/util/u_prim.h @@ -119,7 +119,7 @@ static INLINE boolean u_trim_pipe_prim( unsigned pipe_prim, unsigned *nr ) } -static INLINE boolean u_reduced_prim( unsigned pipe_prim ) +static INLINE unsigned u_reduced_prim( unsigned pipe_prim ) { switch (pipe_prim) { case PIPE_PRIM_POINTS: |