diff options
Diffstat (limited to 'src/intel/perf/gen_perf.h')
-rw-r--r-- | src/intel/perf/gen_perf.h | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/src/intel/perf/gen_perf.h b/src/intel/perf/gen_perf.h index b0af49ffb2c..8f6fca16aa1 100644 --- a/src/intel/perf/gen_perf.h +++ b/src/intel/perf/gen_perf.h @@ -241,9 +241,6 @@ struct gen_perf_config { } vtbl; }; -struct gen_perf_query_object; -const struct gen_perf_query_info* gen_perf_query_info(const struct gen_perf_query_object *); - void gen_perf_init_metrics(struct gen_perf_config *perf_cfg, const struct gen_device_info *devinfo, int drm_fd); @@ -283,22 +280,6 @@ void gen_perf_query_result_accumulate(struct gen_perf_query_result *result, const uint32_t *end); void gen_perf_query_result_clear(struct gen_perf_query_result *result); -struct gen_perf_context; -struct gen_perf_context *gen_perf_new_context(void *parent); - -void gen_perf_init_context(struct gen_perf_context *perf_ctx, - struct gen_perf_config *perf_cfg, - void * ctx, /* driver context (eg, brw_context) */ - void * bufmgr, /* eg brw_bufmgr */ - const struct gen_device_info *devinfo, - uint32_t hw_ctx, - int drm_fd); - -struct gen_perf_config *gen_perf_config(struct gen_perf_context *ctx); - -int gen_perf_active_queries(struct gen_perf_context *perf_ctx, - const struct gen_perf_query_info *query); - static inline size_t gen_perf_query_counter_get_size(const struct gen_perf_query_counter *counter) { @@ -325,31 +306,4 @@ gen_perf_new(void *ctx) return perf; } -struct gen_perf_query_object * -gen_perf_new_query(struct gen_perf_context *, unsigned query_index); - - -bool gen_perf_begin_query(struct gen_perf_context *perf_ctx, - struct gen_perf_query_object *query); -void gen_perf_end_query(struct gen_perf_context *perf_ctx, - struct gen_perf_query_object *query); -void gen_perf_wait_query(struct gen_perf_context *perf_ctx, - struct gen_perf_query_object *query, - void *current_batch); -bool gen_perf_is_query_ready(struct gen_perf_context *perf_ctx, - struct gen_perf_query_object *query, - void *current_batch); -void gen_perf_delete_query(struct gen_perf_context *perf_ctx, - struct gen_perf_query_object *query); -void gen_perf_get_query_data(struct gen_perf_context *perf_ctx, - struct gen_perf_query_object *query, - int data_size, - unsigned *data, - unsigned *bytes_written); - -void gen_perf_dump_query_count(struct gen_perf_context *perf_ctx); -void gen_perf_dump_query(struct gen_perf_context *perf_ctx, - struct gen_perf_query_object *obj, - void *current_batch); - #endif /* GEN_PERF_H */ |