From: Kristian Høgsberg Kristensen Date: Sat, 9 Jan 2016 08:51:14 +0000 (-0800) Subject: vk: Advertise number of timestamp bits X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=925ad847008f12b888b9949fffa8df23347f0d13;p=mesa.git vk: Advertise number of timestamp bits We have 36 bits. --- 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 }, }; }