diff options
author | Lionel Landwerlin <[email protected]> | 2018-06-18 11:40:24 +0100 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2019-04-17 14:10:42 +0100 |
commit | a646485c28b95ce8a6a61d61c2afaeefcdf439a4 (patch) | |
tree | 745d145c2b1f645e494f6912f30e581ef5e0042a /src/intel | |
parent | d855906366564517ad6d9121d2df8ce8b34b2567 (diff) |
i965: perf: add mdapi pipeline statistics queries on gen10/11
The Gen10+ expected format adds an additional counter which we can't
disclose yet. We can still make the size of the expected query result
match.
Signed-off-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Mark Janes <[email protected]>
Diffstat (limited to 'src/intel')
-rw-r--r-- | src/intel/perf/gen_perf_mdapi.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/intel/perf/gen_perf_mdapi.h b/src/intel/perf/gen_perf_mdapi.h index 45fe171b030..3c3aec2c64e 100644 --- a/src/intel/perf/gen_perf_mdapi.h +++ b/src/intel/perf/gen_perf_mdapi.h @@ -124,6 +124,7 @@ struct mdapi_pipeline_metrics { uint64_t HSInvocations; uint64_t DSInvocations; uint64_t CSInvocations; + uint64_t Reserved1; /* Gen10+ */ }; int gen_perf_query_result_write_mdapi(void *data, uint32_t data_size, |