diff options
author | Nicolai Hähnle <[email protected]> | 2015-11-25 12:32:23 +0100 |
---|---|---|
committer | Nicolai Hähnle <[email protected]> | 2015-11-26 10:57:43 +0100 |
commit | 80a16dece614ef3763e2817d10a45462367af8b2 (patch) | |
tree | 7a3f11c6dfd8e7c4011d30bccfaccd7908410f06 /src/gallium/drivers/radeon/r600_query.h | |
parent | ca976e6900dc8ff457ed9dba661d037c616abc59 (diff) |
radeon: delay the generation of driver query names until first use
This shaves a bit more time off the startup of programs that don't
actually use performance counters.
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeon/r600_query.h')
-rw-r--r-- | src/gallium/drivers/radeon/r600_query.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gallium/drivers/radeon/r600_query.h b/src/gallium/drivers/radeon/r600_query.h index 64ac916dbb6..e5a98bfe5bd 100644 --- a/src/gallium/drivers/radeon/r600_query.h +++ b/src/gallium/drivers/radeon/r600_query.h @@ -247,11 +247,11 @@ int r600_get_perfcounter_group_info(struct r600_common_screen *, struct pipe_driver_query_group_info *info); boolean r600_perfcounters_init(struct r600_perfcounters *, unsigned num_blocks); -boolean r600_perfcounters_add_block(struct r600_common_screen *, - struct r600_perfcounters *, - const char *name, unsigned flags, - unsigned counters, unsigned selectors, - unsigned instances, void *data); +void r600_perfcounters_add_block(struct r600_common_screen *, + struct r600_perfcounters *, + const char *name, unsigned flags, + unsigned counters, unsigned selectors, + unsigned instances, void *data); void r600_perfcounters_do_destroy(struct r600_perfcounters *); #endif /* R600_QUERY_H */ |