diff options
author | Roland Scheidegger <[email protected]> | 2013-08-23 23:08:43 +0200 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2013-08-27 16:59:39 +0200 |
commit | bd3909f265908e30ef0e569fab57e9a042750b3a (patch) | |
tree | c98086d22693a9eab4900a7df27046573b831e0e /src/gallium/drivers/softpipe/sp_context.h | |
parent | aff2ecf09a92eb79eef560f17d77badf69782e7c (diff) |
draw: clean up setting stream out information a bit
In particular noone is interested in the vertex count, so drop that,
and also drop the duplicated num_primitives_generated /
so.primitives_storage_needed variables in drivers. I am unable for now to figure
out if primitives_storage_needed in SO stats (used for d3d10) should
increase if SO is disabled, though the equivalent num_primitives_generated
used for OpenGL definitely should increase. In any case we were only counting
when SO is active both in softpipe and llvmpipe anyway so don't pretend there's
an independent num_primitives_generated counter which would count always.
(This means the PIPE_QUERY_PRIMITIVES_GENERATED count will still be wrong just
as before, should eventually fix this by doing either separate counting for this
query or adjust the code so it always counts this even if SO is inactive depending
on what's correct for d3d10.)
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_context.h')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_context.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gallium/drivers/softpipe/sp_context.h b/src/gallium/drivers/softpipe/sp_context.h index e8de81a4c70..7f5272db7f8 100644 --- a/src/gallium/drivers/softpipe/sp_context.h +++ b/src/gallium/drivers/softpipe/sp_context.h @@ -90,7 +90,6 @@ struct softpipe_context { unsigned num_so_targets; struct pipe_query_data_so_statistics so_stats; - unsigned num_primitives_generated; struct pipe_query_data_pipeline_statistics pipeline_statistics; unsigned active_statistics_queries; |