mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-18 11:38:06 +02:00
This also fixes a small bug on RADV for RDNA3 where counters might be stuck. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38577>
46 lines
1.2 KiB
C
46 lines
1.2 KiB
C
/*
|
|
* Copyright © 2016 Red Hat.
|
|
* Copyright © 2016 Bas Nieuwenhuizen
|
|
*
|
|
* based in part on anv driver which is:
|
|
* Copyright © 2015 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
#ifndef RADV_PERFCOUNTER_H
|
|
#define RADV_PERFCOUNTER_H
|
|
|
|
#include "radv_radeon_winsys.h"
|
|
|
|
#include "radv_query.h"
|
|
|
|
struct radv_physical_device;
|
|
struct radv_device;
|
|
|
|
struct radv_pc_query_pool {
|
|
struct radv_query_pool b;
|
|
|
|
uint32_t *pc_regs;
|
|
unsigned num_pc_regs;
|
|
|
|
unsigned num_passes;
|
|
|
|
unsigned num_counters;
|
|
struct radv_perfcounter_impl *counters;
|
|
};
|
|
|
|
void radv_perfcounter_emit_shaders(struct radv_device *device, struct radv_cmd_stream *cs, unsigned shaders);
|
|
|
|
void radv_pc_deinit_query_pool(struct radv_pc_query_pool *pool);
|
|
|
|
VkResult radv_pc_init_query_pool(struct radv_physical_device *pdev, const VkQueryPoolCreateInfo *pCreateInfo,
|
|
struct radv_pc_query_pool *pool);
|
|
|
|
void radv_pc_begin_query(struct radv_cmd_buffer *cmd_buffer, struct radv_pc_query_pool *pool, uint64_t va);
|
|
|
|
void radv_pc_end_query(struct radv_cmd_buffer *cmd_buffer, struct radv_pc_query_pool *pool, uint64_t va);
|
|
|
|
void radv_pc_get_results(const struct radv_pc_query_pool *pc_pool, const uint64_t *data, void *out);
|
|
|
|
#endif /* RADV_PERFCOUNTER_H */
|