Go to the source code of this file.
Functions | |
struct translate * | translate_create (const struct translate_key *key) |
struct translate* translate_create | ( | const struct translate_key * | key | ) | [read] |
Definition at line 37 of file translate.c.
References translate_generic_create(), and translate_sse2_create().
00038 { 00039 struct translate *translate = NULL; 00040 00041 #if defined(PIPE_ARCH_X86) 00042 translate = translate_sse2_create( key ); 00043 if (translate) 00044 return translate; 00045 #endif 00046 00047 return translate_generic_create( key ); 00048 }