[Mesa-dev] [PATCH 2/3] gallium/radeon: remove unnecessary test in r600_pc_query_add_result
Nicolai Hähnle
nhaehnle at gmail.com
Mon Dec 14 09:06:29 PST 2015
From: Nicolai Hähnle <nicolai.haehnle at amd.com>
This test is a left-over of the initial development. It is unneeded and
misleading, so let's get rid of it.
---
src/gallium/drivers/radeon/r600_perfcounter.c | 3 ---
1 file changed, 3 deletions(-)
diff --git a/src/gallium/drivers/radeon/r600_perfcounter.c b/src/gallium/drivers/radeon/r600_perfcounter.c
index a835aee..fad7bde 100644
--- a/src/gallium/drivers/radeon/r600_perfcounter.c
+++ b/src/gallium/drivers/radeon/r600_perfcounter.c
@@ -202,9 +202,6 @@ static void r600_pc_query_add_result(struct r600_common_context *ctx,
for (i = 0; i < query->num_counters; ++i) {
struct r600_pc_counter *counter = &query->counters[i];
- if (counter->base == ~0)
- continue;
-
for (j = 0; j < counter->dwords; ++j) {
uint32_t value = results[counter->base + j * counter->stride];
result->batch[i].u32 += value;
--
2.5.0
More information about the mesa-dev
mailing list