radv: Timestamps are not valid on dedicated sparse queue.

Signed-off-by: Hans-Kristian Arntzen <post@arntzen-software.no>
Reviewed-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Cc: mesa-stable
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/35766>
(cherry picked from commit ac16b8c439)
This commit is contained in:
Hans-Kristian Arntzen 2025-06-26 16:29:15 +02:00 committed by Eric Engestrom
parent e9629998aa
commit 11bc07dcf5
2 changed files with 2 additions and 2 deletions

View file

@ -2154,7 +2154,7 @@
"description": "radv: Timestamps are not valid on dedicated sparse queue.",
"nominated": true,
"nomination_type": 1,
"resolution": 0,
"resolution": 1,
"main_sha": null,
"because_sha": null,
"notes": null

View file

@ -2485,7 +2485,7 @@ radv_get_physical_device_queue_family_properties(struct radv_physical_device *pd
*pQueueFamilyProperties[idx] = (VkQueueFamilyProperties){
.queueFlags = VK_QUEUE_SPARSE_BINDING_BIT,
.queueCount = 1,
.timestampValidBits = 64,
.timestampValidBits = 0,
.minImageTransferGranularity = (VkExtent3D){1, 1, 1},
};
idx++;