From 2e81ec5e009e3fbeef3fe1a76f2dfee428b7c160 Mon Sep 17 00:00:00 2001 From: Rob Clark Date: Mon, 23 Nov 2020 14:29:36 -0800 Subject: [PATCH] gallium/hud: Use do_once for one-time init Signed-off-by: Rob Clark Reviewed-by: Kristian H. Kristensen Part-of: --- src/gallium/auxiliary/hud/hud_context.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/gallium/auxiliary/hud/hud_context.c b/src/gallium/auxiliary/hud/hud_context.c index bb614f76a95..bea30064221 100644 --- a/src/gallium/auxiliary/hud/hud_context.c +++ b/src/gallium/auxiliary/hud/hud_context.c @@ -41,6 +41,7 @@ #include "hud/hud_private.h" #include "cso_cache/cso_context.h" +#include "util/debug.h" #include "util/u_draw_quad.h" #include "util/format/u_format.h" #include "util/u_inlines.h" @@ -1811,8 +1812,10 @@ hud_create(struct cso_context *cso, struct hud_context *share) memset(&action, 0, sizeof(action)); #endif - huds_visible = debug_get_bool_option("GALLIUM_HUD_VISIBLE", TRUE); - hud_scale = debug_get_num_option("GALLIUM_HUD_SCALE", 1); + do_once { + huds_visible = debug_get_bool_option("GALLIUM_HUD_VISIBLE", TRUE); + hud_scale = debug_get_num_option("GALLIUM_HUD_SCALE", 1); + } if (!env || !*env) return NULL;