diff options
author | Zack Rusin <[email protected]> | 2010-06-16 14:42:17 -0400 |
---|---|---|
committer | Zack Rusin <[email protected]> | 2010-06-16 14:43:56 -0400 |
commit | 287531772ccea82c8a6c4dab5656d751a8943524 (patch) | |
tree | f5f0a8bf809e8aa5853d971e0854230e8ddbe695 /src/gallium/auxiliary/draw/draw_vbuf.h | |
parent | 668fa68019ec09fcd0486e612d01d61a0c9a4b2f (diff) |
draw: rewrite stream output to handle all the dark corners
register masks, multiple output buffers, multiple primitives,
non-linear vertices (elts) and stride semantics.
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_vbuf.h')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_vbuf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_vbuf.h b/src/gallium/auxiliary/draw/draw_vbuf.h index 8d9768246ed..e32803c0720 100644 --- a/src/gallium/auxiliary/draw/draw_vbuf.h +++ b/src/gallium/auxiliary/draw/draw_vbuf.h @@ -123,7 +123,7 @@ struct vbuf_render { * Called after writing data to the stream out buffers */ void (*set_stream_output_info)( struct vbuf_render *vbufr, - unsigned buffer_index, + unsigned primitive_count, unsigned vertices_count ); }; |