From: Ben Skeggs Date: Mon, 10 Nov 2008 05:33:31 +0000 (+1100) Subject: nouveau: remove previous hack around x86_64 breakage X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1d6cba6572cc008760e9d4ff803b0b7e1420e41b;p=mesa.git nouveau: remove previous hack around x86_64 breakage This hack now causes breakage *doh*. :) --- diff --git a/src/gallium/auxiliary/draw/draw_context.c b/src/gallium/auxiliary/draw/draw_context.c index b439bc4059f..41a4cba1ddd 100644 --- a/src/gallium/auxiliary/draw/draw_context.c +++ b/src/gallium/auxiliary/draw/draw_context.c @@ -64,10 +64,8 @@ struct draw_context *draw_create( void ) if (!draw_pt_init( draw )) goto fail; -#ifdef PIPE_ARCH_X86 if (!draw_vs_init( draw )) goto fail; -#endif return draw;