diff options
author | Ben Skeggs <skeggsb@gmail.com> | 2008-11-10 16:33:31 +1100 |
---|---|---|
committer | Ben Skeggs <skeggsb@gmail.com> | 2008-11-10 16:33:31 +1100 |
commit | 1d6cba6572cc008760e9d4ff803b0b7e1420e41b (patch) | |
tree | 8bdd073ac72b6c171f67f063b3c7ca7b8ada0285 /src/gallium | |
parent | e658950d4e6c0e5f8b09fa89718d358030885e08 (diff) |
nouveau: remove previous hack around x86_64 breakage
This hack now causes breakage *doh*. :)
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_context.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/gallium/auxiliary/draw/draw_context.c b/src/gallium/auxiliary/draw/draw_context.c index b439bc4059..41a4cba1dd 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; |