From a805e4e9de2540ec7a7115efb76337f39826e017 Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Wed, 29 Aug 2018 15:24:26 +0200 Subject: [PATCH] st/mesa: use real bool for can_ubo MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit We're doing full c99 now, so there's no point in using the old boolean type. Signed-off-by: Erik Faye-Lund Reviewed-by: Marek Olšák Reviewed-by: Gurchetan Singh --- src/mesa/state_tracker/st_extensions.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mesa/state_tracker/st_extensions.c b/src/mesa/state_tracker/st_extensions.c index 29a3251..8cb80f9 100644 --- a/src/mesa/state_tracker/st_extensions.c +++ b/src/mesa/state_tracker/st_extensions.c @@ -81,7 +81,7 @@ void st_init_limits(struct pipe_screen *screen, { int supported_irs; unsigned sh; - boolean can_ubo = TRUE; + bool can_ubo = true; int temp; bool ssbo_atomic = true; @@ -160,7 +160,7 @@ void st_init_limits(struct pipe_screen *screen, c->MaxUniformBlockSize = MIN2(c->MaxUniformBlockSize, INT_MAX - 127); if (c->MaxUniformBlockSize < 16384) { - can_ubo = FALSE; + can_ubo = false; } for (sh = 0; sh < PIPE_SHADER_TYPES; ++sh) { @@ -301,7 +301,7 @@ void st_init_limits(struct pipe_screen *screen, if (pc->MaxNativeInstructions && (options->EmitNoIndirectUniform || pc->MaxUniformBlocks < 12)) { - can_ubo = FALSE; + can_ubo = false; } if (options->EmitNoLoops) -- 2.7.4