diff options
author | Nicolai Hähnle <[email protected]> | 2015-12-11 15:55:20 -0500 |
---|---|---|
committer | Nicolai Hähnle <[email protected]> | 2015-12-15 11:23:40 -0500 |
commit | 149d04967637572cf8d0a83eaf9cc4f987313636 (patch) | |
tree | 212eac524463c8773340b961ffb7fc22890cd572 /src | |
parent | 819543adb44b9ef8e6ea337f1afdc3d109d7e388 (diff) |
gallium/radeon: remove unnecessary test in r600_pc_query_add_result
This test is a left-over of the initial development. It is unneeded and
misleading, so let's get rid of it.
Reviewed-by: Edward O'Callaghan <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/radeon/r600_perfcounter.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/gallium/drivers/radeon/r600_perfcounter.c b/src/gallium/drivers/radeon/r600_perfcounter.c index a835aee993b..fad7bdec40a 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; |