summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChia-I Wu <olvaffe@gmail.com>2011-03-25 00:59:32 +0800
committerChia-I Wu <olv@lunarg.com>2011-12-03 12:39:48 +0800
commitdf288db4053d1aca5dc1ce11e21c5a07b69eb810 (patch)
tree6724d02c51adca6f4f4ad8a15f53f88bfd1711fa
parent3e6fd288454ac8f18966bf349f30b3b7657bb332 (diff)
android: disable SSE translate
It does not support FIXED and will fail anyway.
-rw-r--r--src/gallium/auxiliary/translate/translate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/translate/translate.c b/src/gallium/auxiliary/translate/translate.c
index 73287b667d..05e455388b 100644
--- a/src/gallium/auxiliary/translate/translate.c
+++ b/src/gallium/auxiliary/translate/translate.c
@@ -39,7 +39,7 @@ struct translate *translate_create( const struct translate_key *key )
struct translate *translate = NULL;
#if defined(PIPE_ARCH_X86) || defined(PIPE_ARCH_X86_64)
- translate = translate_sse2_create( key );
+ /*translate = translate_sse2_create( key );*/
if (translate)
return translate;
#else