Revert "freedreno/a4xx: better occlusion/sample counting"

This reverts commit 62fa868728.

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 <robclark@freedesktop.org>
This commit is contained in:
Rob Clark 2016-04-12 16:06:17 -04:00
parent 46e9bbc918
commit c53a12fedc
1 changed files with 1 additions and 6 deletions

View File

@ -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