summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/softpipe/sp_context.c
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2011-11-19 21:44:24 +0100
committerChristoph Bumiller <[email protected]>2011-12-15 18:50:44 +0100
commit4f4a1be2009863ea34a69b22f58aa1ca08cd710f (patch)
tree48eb1c6819340fb06c92b5ccd6d069e3c90671ab /src/gallium/drivers/softpipe/sp_context.c
parent14bb957b996dcc5392b8fa589bd3ffa5c55cb6b4 (diff)
gallium: disable stream output in drivers that support it
I am going to make interface changes and I don't want to break compilation.
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_context.c')
-rw-r--r--src/gallium/drivers/softpipe/sp_context.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/softpipe/sp_context.c b/src/gallium/drivers/softpipe/sp_context.c
index 3a83e5870dc..a7206000ddc 100644
--- a/src/gallium/drivers/softpipe/sp_context.c
+++ b/src/gallium/drivers/softpipe/sp_context.c
@@ -257,7 +257,7 @@ softpipe_create_context( struct pipe_screen *screen,
softpipe->pipe.set_framebuffer_state = softpipe_set_framebuffer_state;
softpipe->pipe.draw_vbo = softpipe_draw_vbo;
- softpipe->pipe.draw_stream_output = softpipe_draw_stream_output;
+ /* XXX softpipe->pipe.draw_stream_output = softpipe_draw_stream_output; */
softpipe->pipe.clear = softpipe_clear;
softpipe->pipe.flush = softpipe_flush_wrapped;