nouveau: use boolean instead of bool

This commit is contained in:
Roland Scheidegger 2009-12-08 17:51:19 +01:00
parent 849a0644ad
commit 47c780180b
6 changed files with 6 additions and 6 deletions

View file

@ -11,7 +11,7 @@
struct nv04_transfer {
struct pipe_transfer base;
struct pipe_surface *surface;
bool direct;
boolean direct;
};
static void

View file

@ -11,7 +11,7 @@
struct nv10_transfer {
struct pipe_transfer base;
struct pipe_surface *surface;
bool direct;
boolean direct;
};
static void

View file

@ -11,7 +11,7 @@
struct nv20_transfer {
struct pipe_transfer base;
struct pipe_surface *surface;
bool direct;
boolean direct;
};
static void

View file

@ -11,7 +11,7 @@
struct nv30_transfer {
struct pipe_transfer base;
struct pipe_surface *surface;
bool direct;
boolean direct;
};
static void

View file

@ -11,7 +11,7 @@
struct nv40_transfer {
struct pipe_transfer base;
struct pipe_surface *surface;
bool direct;
boolean direct;
};
static void

View file

@ -65,7 +65,7 @@ struct nv50_rasterizer_stateobj {
};
struct nv50_sampler_stateobj {
bool normalized;
boolean normalized;
unsigned tsc[8];
};