radv: fix queries with WAIT_BIT returning VK_NOT_READY
authorAndres Rodriguez <andresx7@gmail.com>
Sat, 27 Jul 2019 13:44:44 +0000 (09:44 -0400)
committerAndres Rodriguez <andresx7@gmail.com>
Sat, 27 Jul 2019 14:19:19 +0000 (10:19 -0400)
commit2b71b4e79374ee0243de2d83409adab05ee71c69
tree9544dc7d3f57ba27b96117f6b934ae5570ff2c1f
parentc9b86cf52692f1d76314dce345080af8ce786792
radv: fix queries with WAIT_BIT returning VK_NOT_READY

When vkGetQueryPoolResults() is called with VK_QUERY_RESULT_WAIT_BIT
set, the driver is supposed to wait for the query to become available
before returning.

Currently, radv returns once the query is indeed ready, but it returns
VK_NOT_READY. It also fails to populate the results.

The problem is a missing volatile in the secondary check for query
availability. This patch removes the secondary check altogether since it
is redundant with the preceding loop.

This bug was found with an unreleased version of SteamVR.

Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl>
src/amd/vulkan/radv_query.c