mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 09:38:07 +02:00
anv: Add documentation to some fields in anv_query_pool
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Signed-off-by: José Roberto de Souza <jose.souza@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/31239>
This commit is contained in:
parent
96b9f695d4
commit
ac95745dc4
1 changed files with 4 additions and 1 deletions
|
|
@ -6064,7 +6064,7 @@ struct anv_sampler {
|
|||
struct anv_query_pool {
|
||||
struct vk_query_pool vk;
|
||||
|
||||
/** Stride between slots, in bytes */
|
||||
/** Stride between queries, in bytes */
|
||||
uint32_t stride;
|
||||
/** Number of slots in this query pool */
|
||||
struct anv_bo * bo;
|
||||
|
|
@ -6078,8 +6078,11 @@ struct anv_query_pool {
|
|||
uint32_t khr_perf_preamble_stride;
|
||||
|
||||
/* KHR perf queries : */
|
||||
/** Query pass size in bytes(availability + padding + query data) */
|
||||
uint32_t pass_size;
|
||||
/** Offset of the query data within a pass */
|
||||
uint32_t data_offset;
|
||||
/** query data / 2 */
|
||||
uint32_t snapshot_size;
|
||||
uint32_t n_counters;
|
||||
struct intel_perf_counter_pass *counter_pass;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue