mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-29 22:30:24 +01:00
translate_sse: enable on Win64
According to Vinson, enabling it causes no regressions
This commit is contained in:
parent
a9b20d4597
commit
d3fe699b0b
1 changed files with 1 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue