Mesa (master): st/mesa: use real bool for can_ubo

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Wed Sep 5 10:26:01 UTC 2018


Module: Mesa
Branch: master
Commit: a805e4e9de2540ec7a7115efb76337f39826e017
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=a805e4e9de2540ec7a7115efb76337f39826e017

Author: Erik Faye-Lund <erik.faye-lund at collabora.com>
Date:   Wed Aug 29 15:24:26 2018 +0200

st/mesa: use real bool for can_ubo

We're doing full c99 now, so there's no point in using the old boolean
type.

Signed-off-by: Erik Faye-Lund <erik.faye-lund at collabora.com>
Reviewed-by: Marek Olšák <marek.olsak at amd.com>
Reviewed-by: Gurchetan Singh <gurchetansingh at chromium.org>

---

 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 29a3251308..8cb80f9932 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)




More information about the mesa-commit mailing list