diff options
author | Michel Dänzer <michel@tungstengraphics.com> | 2008-07-02 12:10:15 +0200 |
---|---|---|
committer | Michel Dänzer <michel@tungstengraphics.com> | 2008-07-02 12:10:15 +0200 |
commit | cc31eecbcb90dabacabac3e6be7c01cfe3a7a2a6 (patch) | |
tree | 30f2f624b7b8944531cf8463589b3d1952b7da46 /src/gallium/auxiliary/draw | |
parent | d16fcd07f876fe7fb29f5f4e3df4e83ff7de3422 (diff) |
gallium: Allow draw module to work on non-x86 platforms again.
Diffstat (limited to 'src/gallium/auxiliary/draw')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_vs.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/draw/draw_vs.c b/src/gallium/auxiliary/draw/draw_vs.c index 978954e91c..f798b20492 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; } |