diff options
author | Marek Olšák <[email protected]> | 2015-07-30 15:43:09 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2015-08-06 20:11:43 +0200 |
commit | c63e8b1193fd380e999b8ef258a20e57884820f4 (patch) | |
tree | 194f9dd4fdeee9884dbba60a92b74a1ee88107a2 /src/mesa/vbo/vbo_split_inplace.c | |
parent | 115964052b25a958b2ad4ec42ae07133b2768cf9 (diff) |
vbo: pass the stream from DrawTransformFeedbackStream to drivers
Reviewed-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/mesa/vbo/vbo_split_inplace.c')
-rw-r--r-- | src/mesa/vbo/vbo_split_inplace.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/vbo/vbo_split_inplace.c b/src/mesa/vbo/vbo_split_inplace.c index 5887b74d829..cff4bcd30ff 100644 --- a/src/mesa/vbo/vbo_split_inplace.c +++ b/src/mesa/vbo/vbo_split_inplace.c @@ -94,7 +94,7 @@ static void flush_vertex( struct split_context *split ) !split->ib, split->min_index, split->max_index, - NULL, NULL); + NULL, 0, NULL); ctx->Array._DrawArrays = saved_arrays; ctx->NewDriverState |= ctx->DriverFlags.NewArray; |