diff options
author | Luca Barbieri <luca@luca-barbieri.com> | 2010-08-20 00:04:30 +0200 |
---|---|---|
committer | Luca Barbieri <luca@luca-barbieri.com> | 2010-08-20 00:09:37 +0200 |
commit | d3fe699b0b2d46480b699b3fa4c77e41eea8d30d (patch) | |
tree | bbea8344e43a5a8f61c346bb901272cdbe623fae /src/gallium/auxiliary | |
parent | a9b20d45974045397b95b08a7a26e2b0aa8e32cf (diff) |
translate_sse: enable on Win64
According to Vinson, enabling it causes no regressions
Diffstat (limited to 'src/gallium/auxiliary')
-rw-r--r-- | src/gallium/auxiliary/translate/translate.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/translate/translate.c b/src/gallium/auxiliary/translate/translate.c index 03a7f050aa..73287b667d 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; |