summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/draw/draw_context.c
diff options
context:
space:
mode:
authorBen Skeggs <skeggsb@gmail.com>2008-09-12 20:37:33 +1000
committerBen Skeggs <skeggsb@gmail.com>2008-09-12 20:37:33 +1000
commitcbe05a4734a7df7dd9d8e52f79d0ed5e6c28ae60 (patch)
treee4f67e46334b43f051a0605c7762cac36ad7c1f6 /src/gallium/auxiliary/draw/draw_context.c
parent522139dd146450edfd3d2f07c627b32512a2c27e (diff)
parent81335d0f1760fe172a106f79e81281c1f0d7dedf (diff)
Merge remote branch 'nouveau/gallium-0.1' into nouveau-gallium-0.2
Conflicts: configs/linux-dri
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_context.c')
-rw-r--r--src/gallium/auxiliary/draw/draw_context.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/draw/draw_context.c b/src/gallium/auxiliary/draw/draw_context.c
index 36751c2621..78249054f2 100644
--- a/src/gallium/auxiliary/draw/draw_context.c
+++ b/src/gallium/auxiliary/draw/draw_context.c
@@ -64,8 +64,10 @@ 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;