From: Luca Barbieri Date: Thu, 19 Aug 2010 22:04:30 +0000 (+0200) Subject: translate_sse: enable on Win64 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d3fe699b0b2d46480b699b3fa4c77e41eea8d30d;p=mesa.git translate_sse: enable on Win64 According to Vinson, enabling it causes no regressions --- diff --git a/src/gallium/auxiliary/translate/translate.c b/src/gallium/auxiliary/translate/translate.c index 03a7f050aa2..73287b667db 100644 --- a/src/gallium/auxiliary/translate/translate.c +++ b/src/gallium/auxiliary/translate/translate.c @@ -38,8 +38,7 @@ struct translate *translate_create( const struct translate_key *key ) { struct translate *translate = NULL; -/* TODO: enable Win64 once it has actually been tested */ -#if defined(PIPE_ARCH_X86) || (defined(PIPE_ARCH_X86_64) && !defined(_WIN64)) +#if defined(PIPE_ARCH_X86) || defined(PIPE_ARCH_X86_64) translate = translate_sse2_create( key ); if (translate) return translate;