translate.c File Reference

Include dependency graph for translate.c:

Go to the source code of this file.

Functions

struct translatetranslate_create (const struct translate_key *key)


Function Documentation

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 }


Generated on Tue Sep 29 06:25:27 2009 for Gallium3D by  doxygen 1.5.4