From: José Fonseca Date: Thu, 26 Nov 2009 11:16:19 +0000 (+0000) Subject: llvmpipe: Fake missing SSSE3 when simulation less capabable machines. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=953b74d116c88f2b93740b6d1f713bb1b5989e98;p=mesa.git llvmpipe: Fake missing SSSE3 when simulation less capabable machines. SSE3 != SSSE3 and so far we only use the later. --- 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