소스 검색

fix non-i386 builds

tags/mesa_20090313
Ben Skeggs 17 년 전
부모
커밋
6fc530ccda
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2
    0
      src/gallium/auxiliary/translate/translate.c

+ 2
- 0
src/gallium/auxiliary/translate/translate.c 파일 보기

@@ -38,9 +38,11 @@ struct translate *translate_create( const struct translate_key *key )
{
struct translate *translate = NULL;

#if defined(__i386__) || defined(__386__) || defined(i386)
translate = translate_sse2_create( key );
if (translate)
return translate;
#endif

return translate_generic_create( key );
}

Loading…
취소
저장