mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 05:08:08 +02:00
softpipe/so: use the correct variable for reporting stream out
we were using the wrong vars, reporting incorrect stream output statistics. Signed-off-by: Zack Rusin <zackr@vmware.com> Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
This commit is contained in:
parent
cb58c79efb
commit
6bb217a489
1 changed files with 15 additions and 5 deletions
|
|
@ -98,6 +98,10 @@ softpipe_begin_query(struct pipe_context *pipe, struct pipe_query *q)
|
|||
break;
|
||||
case PIPE_QUERY_SO_STATISTICS:
|
||||
sq->so.primitives_storage_needed = 0;
|
||||
sq->num_primitives_generated = 0;
|
||||
softpipe->num_primitives_generated = 0;
|
||||
sq->so.num_primitives_written = 0;
|
||||
softpipe->so_stats.num_primitives_written = 0;
|
||||
case PIPE_QUERY_PRIMITIVES_EMITTED:
|
||||
sq->so.num_primitives_written = 0;
|
||||
softpipe->so_stats.num_primitives_written = 0;
|
||||
|
|
@ -147,8 +151,11 @@ softpipe_end_query(struct pipe_context *pipe, struct pipe_query *q)
|
|||
sq->end = os_time_get_nano();
|
||||
break;
|
||||
case PIPE_QUERY_SO_STATISTICS:
|
||||
sq->so.primitives_storage_needed =
|
||||
softpipe->so_stats.primitives_storage_needed;
|
||||
sq->num_primitives_generated =
|
||||
softpipe->num_primitives_generated;
|
||||
sq->so.num_primitives_written =
|
||||
softpipe->so_stats.num_primitives_written;
|
||||
break;
|
||||
case PIPE_QUERY_PRIMITIVES_EMITTED:
|
||||
sq->so.num_primitives_written =
|
||||
softpipe->so_stats.num_primitives_written;
|
||||
|
|
@ -196,9 +203,12 @@ softpipe_get_query_result(struct pipe_context *pipe,
|
|||
uint64_t *result = (uint64_t*)vresult;
|
||||
|
||||
switch (sq->type) {
|
||||
case PIPE_QUERY_SO_STATISTICS:
|
||||
memcpy(vresult, &sq->so,
|
||||
sizeof(struct pipe_query_data_so_statistics));
|
||||
case PIPE_QUERY_SO_STATISTICS: {
|
||||
struct pipe_query_data_so_statistics *stats =
|
||||
(struct pipe_query_data_so_statistics *)vresult;
|
||||
stats->num_primitives_written = sq->so.num_primitives_written;
|
||||
stats->primitives_storage_needed = sq->num_primitives_generated;
|
||||
}
|
||||
break;
|
||||
case PIPE_QUERY_PIPELINE_STATISTICS:
|
||||
memcpy(vresult, &sq->stats,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue