diff options
author | Rob Clark <[email protected]> | 2016-04-12 16:06:17 -0400 |
---|---|---|
committer | Rob Clark <[email protected]> | 2016-04-13 14:16:40 -0400 |
commit | c53a12fedc519a179dd815586f432df7c7180732 (patch) | |
tree | 2909052e8cf871c095c0601ca418aba3ddc848c1 /src/gallium/drivers | |
parent | 46e9bbc9182243c4599aa7dc811d404a18833cd7 (diff) |
Revert "freedreno/a4xx: better occlusion/sample counting"
This reverts commit 62fa868728c729152af0d7cecd1d3e47e831cb7d.
dEQP-GLES3.functional.occlusion_query.* was unhappy about that change.
Still not really sure *what* the other slots in the sample results
buffer are.
Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium/drivers')
-rw-r--r-- | src/gallium/drivers/freedreno/a4xx/fd4_query.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/gallium/drivers/freedreno/a4xx/fd4_query.c b/src/gallium/drivers/freedreno/a4xx/fd4_query.c index 77e203f6c56..69decbcb251 100644 --- a/src/gallium/drivers/freedreno/a4xx/fd4_query.c +++ b/src/gallium/drivers/freedreno/a4xx/fd4_query.c @@ -82,12 +82,7 @@ static uint64_t count_samples(const struct fd_rb_samp_ctrs *start, const struct fd_rb_samp_ctrs *end) { - uint64_t n = 0; - - for (unsigned i = 0; i < 16; i += 4) - n += end->ctr[i] - start->ctr[i]; - - return n / 2; + return end->ctr[0] - start->ctr[0]; } static void |