diff options
author | Roland Scheidegger <[email protected]> | 2009-12-08 17:51:19 +0100 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2009-12-08 19:58:46 +0100 |
commit | 47c780180b888e115b630cd940fe9c29dd53b4c5 (patch) | |
tree | d76ef4f86737b80c28943dab0d617b621fcf35d3 /src/gallium/drivers/nv50 | |
parent | 849a0644ada6ed7c3576babc3b348bee227118ff (diff) |
nouveau: use boolean instead of bool
Diffstat (limited to 'src/gallium/drivers/nv50')
-rw-r--r-- | src/gallium/drivers/nv50/nv50_context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/nv50/nv50_context.h b/src/gallium/drivers/nv50/nv50_context.h index 4b0f0622953..79135f2f362 100644 --- a/src/gallium/drivers/nv50/nv50_context.h +++ b/src/gallium/drivers/nv50/nv50_context.h @@ -65,7 +65,7 @@ struct nv50_rasterizer_stateobj { }; struct nv50_sampler_stateobj { - bool normalized; + boolean normalized; unsigned tsc[8]; }; |