nouveau: use boolean instead of bool
authorRoland Scheidegger <sroland@vmware.com>
Tue, 8 Dec 2009 16:51:19 +0000 (17:51 +0100)
committerRoland Scheidegger <sroland@vmware.com>
Tue, 8 Dec 2009 18:58:46 +0000 (19:58 +0100)
src/gallium/drivers/nv04/nv04_transfer.c
src/gallium/drivers/nv10/nv10_transfer.c
src/gallium/drivers/nv20/nv20_transfer.c
src/gallium/drivers/nv30/nv30_transfer.c
src/gallium/drivers/nv40/nv40_transfer.c
src/gallium/drivers/nv50/nv50_context.h

index e8ff686..d66d6c6 100644 (file)
@@ -11,7 +11,7 @@
 struct nv04_transfer {
        struct pipe_transfer base;
        struct pipe_surface *surface;
-       bool direct;
+       boolean direct;
 };
 
 static void
index 9e44d37..06bb513 100644 (file)
@@ -11,7 +11,7 @@
 struct nv10_transfer {
        struct pipe_transfer base;
        struct pipe_surface *surface;
-       bool direct;
+       boolean direct;
 };
 
 static void
index f2e0a34..26a73c5 100644 (file)
@@ -11,7 +11,7 @@
 struct nv20_transfer {
        struct pipe_transfer base;
        struct pipe_surface *surface;
-       bool direct;
+       boolean direct;
 };
 
 static void
index c8c3bd1..e29bfbd 100644 (file)
@@ -11,7 +11,7 @@
 struct nv30_transfer {
        struct pipe_transfer base;
        struct pipe_surface *surface;
-       bool direct;
+       boolean direct;
 };
 
 static void
index 1ee5cf3..ed5be1c 100644 (file)
@@ -11,7 +11,7 @@
 struct nv40_transfer {
        struct pipe_transfer base;
        struct pipe_surface *surface;
-       bool direct;
+       boolean direct;
 };
 
 static void
index 4b0f062..79135f2 100644 (file)
@@ -65,7 +65,7 @@ struct nv50_rasterizer_stateobj {
 };
 
 struct nv50_sampler_stateobj {
-       bool normalized;
+       boolean normalized;
        unsigned tsc[8];
 };