diff options
author | Dave Airlie <[email protected]> | 2015-05-27 17:22:13 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2019-04-09 11:19:38 +1000 |
commit | 333746011d0ac8e7a99587b61fdada3e351b30a3 (patch) | |
tree | 35239160869a6d654c2a533563cd2da524b928ab /src/gallium/drivers/softpipe | |
parent | 63b823130dfe0be2670c83b365e7e997a1957c8b (diff) |
draw: add stream member to stats callback
This just adds space for the member to the callback, doesn't
change anything else.
Reviewed-by: Roland Scheidegger <[email protected]>
Signed-off-by: Dave Airlie <[email protected]>
Diffstat (limited to 'src/gallium/drivers/softpipe')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_prim_vbuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/softpipe/sp_prim_vbuf.c b/src/gallium/drivers/softpipe/sp_prim_vbuf.c index 1ce04a2f11d..783adf4f448 100644 --- a/src/gallium/drivers/softpipe/sp_prim_vbuf.c +++ b/src/gallium/drivers/softpipe/sp_prim_vbuf.c @@ -597,7 +597,7 @@ sp_vbuf_draw_arrays(struct vbuf_render *vbr, uint start, uint nr) * increase too should call this from outside streamout code. */ static void -sp_vbuf_so_info(struct vbuf_render *vbr, uint primitives, uint prim_generated) +sp_vbuf_so_info(struct vbuf_render *vbr, uint stream, uint primitives, uint prim_generated) { struct softpipe_vbuf_render *cvbr = softpipe_vbuf_render(vbr); struct softpipe_context *softpipe = cvbr->softpipe; |