From: Michel Dänzer Date: Wed, 2 Jul 2008 10:10:15 +0000 (+0200) Subject: gallium: Allow draw module to work on non-x86 platforms again. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cc31eecbcb90dabacabac3e6be7c01cfe3a7a2a6;p=mesa.git gallium: Allow draw module to work on non-x86 platforms again. --- diff --git a/src/gallium/auxiliary/draw/draw_vs.c b/src/gallium/auxiliary/draw/draw_vs.c index 978954e91c9..f798b204929 100644 --- a/src/gallium/auxiliary/draw/draw_vs.c +++ b/src/gallium/auxiliary/draw/draw_vs.c @@ -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; }