diff options
author | Gert Wollny <[email protected]> | 2019-07-23 07:07:14 +0200 |
---|---|---|
committer | Gert Wollny <[email protected]> | 2019-08-01 05:58:53 +0000 |
commit | 78ba12f40f79f94d082b7f32e121b3d149792bed (patch) | |
tree | efa6e0d0b5d475d5bfbf5934d7fe0f27ac02c505 /src/mesa | |
parent | 7fb47195d820cd4de9a311371a079e2577eac966 (diff) |
mesa/st: replace boolean declarations by bool
Signed-off-by: Gert Wollny <[email protected]>
Reviewed-by: Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/state_tracker/st_program.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/state_tracker/st_program.h b/src/mesa/state_tracker/st_program.h index caaa779287a..3da3f625e3c 100644 --- a/src/mesa/state_tracker/st_program.h +++ b/src/mesa/state_tracker/st_program.h @@ -179,10 +179,10 @@ struct st_fragment_program struct st_vp_variant_key { struct st_context *st; /**< variants are per-context */ - boolean passthrough_edgeflags; + bool passthrough_edgeflags; /** for ARB_color_buffer_float */ - boolean clamp_color; + bool clamp_color; }; |