From: Jakob Bornecrantz Date: Fri, 6 Aug 2010 00:14:38 +0000 (-0700) Subject: st/mesa: Only get debug option once X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=981c6bc6a5a7dcf941972939c224dfb7f98b904a;p=mesa.git st/mesa: Only get debug option once --- diff --git a/src/mesa/state_tracker/st_debug.c b/src/mesa/state_tracker/st_debug.c index ebf6ec6e7e2..1260fe04b1b 100644 --- a/src/mesa/state_tracker/st_debug.c +++ b/src/mesa/state_tracker/st_debug.c @@ -55,6 +55,8 @@ static const struct debug_named_value st_debug_flags[] = { { "query", DEBUG_QUERY, NULL }, DEBUG_NAMED_VALUE_END }; + +DEBUG_GET_ONCE_FLAGS_OPTION(st_debug, "ST_DEBUG", st_debug_flags, 0); #endif @@ -62,7 +64,7 @@ void st_debug_init(void) { #ifdef DEBUG - ST_DEBUG = debug_get_flags_option("ST_DEBUG", st_debug_flags, 0 ); + ST_DEBUG = debug_get_option_st_debug(); #endif }