mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 09:08:10 +02:00
nouveau: use boolean instead of bool
This commit is contained in:
parent
849a0644ad
commit
47c780180b
6 changed files with 6 additions and 6 deletions
|
|
@ -11,7 +11,7 @@
|
|||
struct nv04_transfer {
|
||||
struct pipe_transfer base;
|
||||
struct pipe_surface *surface;
|
||||
bool direct;
|
||||
boolean direct;
|
||||
};
|
||||
|
||||
static void
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
struct nv10_transfer {
|
||||
struct pipe_transfer base;
|
||||
struct pipe_surface *surface;
|
||||
bool direct;
|
||||
boolean direct;
|
||||
};
|
||||
|
||||
static void
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
struct nv20_transfer {
|
||||
struct pipe_transfer base;
|
||||
struct pipe_surface *surface;
|
||||
bool direct;
|
||||
boolean direct;
|
||||
};
|
||||
|
||||
static void
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
struct nv30_transfer {
|
||||
struct pipe_transfer base;
|
||||
struct pipe_surface *surface;
|
||||
bool direct;
|
||||
boolean direct;
|
||||
};
|
||||
|
||||
static void
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
struct nv40_transfer {
|
||||
struct pipe_transfer base;
|
||||
struct pipe_surface *surface;
|
||||
bool direct;
|
||||
boolean direct;
|
||||
};
|
||||
|
||||
static void
|
||||
|
|
|
|||
|
|
@ -65,7 +65,7 @@ struct nv50_rasterizer_stateobj {
|
|||
};
|
||||
|
||||
struct nv50_sampler_stateobj {
|
||||
bool normalized;
|
||||
boolean normalized;
|
||||
unsigned tsc[8];
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue