From 925ad847008f12b888b9949fffa8df23347f0d13 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Kristian=20H=C3=B8gsberg=20Kristensen?= Date: Sat, 9 Jan 2016 00:51:14 -0800 Subject: [PATCH] vk: Advertise number of timestamp bits We have 36 bits. --- src/vulkan/anv_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vulkan/anv_device.c b/src/vulkan/anv_device.c index 57232298e3d..1da0cb4367c 100644 --- a/src/vulkan/anv_device.c +++ b/src/vulkan/anv_device.c @@ -540,7 +540,7 @@ void anv_GetPhysicalDeviceQueueFamilyProperties( VK_QUEUE_COMPUTE_BIT | VK_QUEUE_TRANSFER_BIT, .queueCount = 1, - .timestampValidBits = 0, /* XXX: Real value here */ + .timestampValidBits = 36, /* XXX: Real value here */ .minImageTransferGranularity = (VkExtent3D) { 1, 1, 1 }, }; } -- 2.30.2