gallium: Allow draw module to work on non-x86 platforms again.

This commit is contained in:
Michel Dänzer 2008-07-02 12:10:15 +02:00
parent d16fcd07f8
commit cc31eecbcb

View file

@ -160,8 +160,10 @@ draw_vs_init( struct draw_context *draw )
return FALSE;
draw->vs.aos_machine = draw_vs_aos_machine();
#ifdef PIPE_ARCH_X86
if (!draw->vs.aos_machine)
return FALSE;
#endif
return TRUE;
}