diff options
author | Chia-I Wu <[email protected]> | 2013-06-20 11:38:28 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2013-06-20 11:40:20 +0800 |
commit | bbd2d575e649c0929d125c7dd44723aeabcb2323 (patch) | |
tree | cea70738356b8cab1b072aebe9bf37f3e21117d7 | |
parent | 8b2cba8f97cf7df428fc91098ebacfac749a31b0 (diff) |
ilo: replace a boolean by bool
bool is used internally. This is just cosmetic.
-rw-r--r-- | src/gallium/drivers/ilo/ilo_3d.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/ilo/ilo_3d.h b/src/gallium/drivers/ilo/ilo_3d.h index e9888e1b3ec..2c86153c2cd 100644 --- a/src/gallium/drivers/ilo/ilo_3d.h +++ b/src/gallium/drivers/ilo/ilo_3d.h @@ -53,7 +53,7 @@ struct ilo_3d { struct { struct pipe_query *query; unsigned mode; - boolean cond; + bool cond; } render_condition; struct list_head occlusion_queries; |