summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/rtasm/rtasm_cpu.c
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2008-04-21 19:48:08 +0100
committerKeith Whitwell <keith@tungstengraphics.com>2008-04-21 19:48:08 +0100
commit73706deef59c35472d2410411403f30c9603f22f (patch)
treeaf812fb904f269ae91fb805f2dd4919757cd2ea4 /src/gallium/auxiliary/rtasm/rtasm_cpu.c
parent73c2711bb186692b866720058a09f5eb05950213 (diff)
rtasm: quieten sse_enabled debug
Diffstat (limited to 'src/gallium/auxiliary/rtasm/rtasm_cpu.c')
-rw-r--r--src/gallium/auxiliary/rtasm/rtasm_cpu.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/rtasm/rtasm_cpu.c b/src/gallium/auxiliary/rtasm/rtasm_cpu.c
index 175245a9f6..f01e12faa0 100644
--- a/src/gallium/auxiliary/rtasm/rtasm_cpu.c
+++ b/src/gallium/auxiliary/rtasm/rtasm_cpu.c
@@ -32,7 +32,16 @@
static boolean rtasm_sse_enabled(void)
{
- return !debug_get_bool_option("GALLIUM_NOSSE", FALSE);
+ static boolean firsttime = 1;
+ static boolean enabled;
+
+ /* This gets called quite often at the moment:
+ */
+ if (firsttime) {
+ enabled = !debug_get_bool_option("GALLIUM_NOSSE", FALSE);
+ firsttime = FALSE;
+ }
+ return enabled;
}
int rtasm_cpu_has_sse(void)