From: Bas Nieuwenhuizen Date: Sun, 26 Feb 2017 21:36:10 +0000 (+0100) Subject: radv: Use correct size for availability flag. X-Git-Tag: upstream/17.1.0~1900 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=43d833ae97daa73a2422b5696b587a7b46750e07;p=platform%2Fupstream%2Fmesa.git radv: Use correct size for availability flag. Per spec, VK_QUERY_RESULT_64_BIT specifies the integer size and the availability flag is an integer. We apparently handled this correctly already for the copy to buffer case. Signed-off-by: Bas Nieuwenhuizen Reviewed-by: Dave Airlie Cc: 13.0 17.0 --- diff --git a/src/amd/vulkan/radv_query.c b/src/amd/vulkan/radv_query.c index a2d0889..288bd43 100644 --- a/src/amd/vulkan/radv_query.c +++ b/src/amd/vulkan/radv_query.c @@ -205,8 +205,11 @@ VkResult radv_GetQueryPoolResults( } if (flags & VK_QUERY_RESULT_WITH_AVAILABILITY_BIT) { - *(uint32_t*)dest = available; - dest += 4; + if (flags & VK_QUERY_RESULT_64_BIT) { + *(uint64_t*)dest = available; + } else { + *(uint32_t*)dest = available; + } } }