gallium: use boolean instead of bool in p_refcnt.h
authorRoland Scheidegger <sroland@vmware.com>
Tue, 8 Dec 2009 16:42:49 +0000 (17:42 +0100)
committerRoland Scheidegger <sroland@vmware.com>
Tue, 8 Dec 2009 18:58:28 +0000 (19:58 +0100)
all code in gallium should use boolean not bool

src/gallium/include/pipe/p_refcnt.h

index f1875b6b822f9847fe748d8573bcbc7c9ae4ffae..e252f5590065a1c5920a9b1fe4ca3cb589d3e5d5 100644 (file)
@@ -51,7 +51,7 @@ pipe_reference_init(struct pipe_reference *reference, unsigned count)
 }
 
 
-static INLINE bool
+static INLINE boolean
 pipe_is_referenced(struct pipe_reference *reference)
 {
    return p_atomic_read(&reference->count) != 0;
@@ -63,10 +63,10 @@ pipe_is_referenced(struct pipe_reference *reference)
  * The old thing pointed to, if any, will be unreferenced.
  * Both 'ptr' and 'reference' may be NULL.
  */
-static INLINE bool
+static INLINE boolean
 pipe_reference(struct pipe_reference *ptr, struct pipe_reference *reference)
 {
-   bool destroy = FALSE;
+   boolean destroy = FALSE;
 
    if(ptr != reference) {
       /* bump the reference.count first */