diff options
author | José Fonseca <[email protected]> | 2009-11-26 11:16:19 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2009-11-26 11:16:35 +0000 |
commit | 953b74d116c88f2b93740b6d1f713bb1b5989e98 (patch) | |
tree | 2f58989a0d92ba17079e8ecf578e4f40466dde4b | |
parent | da1c40260d8cb49eacbb6c394198dc37e020e75a (diff) |
llvmpipe: Fake missing SSSE3 when simulation less capabable machines.
SSE3 != SSSE3 and so far we only use the later.
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_jit.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_jit.c b/src/gallium/drivers/llvmpipe/lp_jit.c index c601c79480f..bce3baec164 100644 --- a/src/gallium/drivers/llvmpipe/lp_jit.c +++ b/src/gallium/drivers/llvmpipe/lp_jit.c @@ -154,6 +154,7 @@ lp_jit_screen_init(struct llvmpipe_screen *screen) #if 0 /* For simulating less capable machines */ util_cpu_caps.has_sse3 = 0; + util_cpu_caps.has_ssse3 = 0; util_cpu_caps.has_sse4_1 = 0; #endif |