Module: Mesa Branch: master Commit: 049b84246e762f1566ab69c7fde17396a4df4776 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=049b84246e762f1566ab69c7fde17396a4df4776
Author: Jason Ekstrand <[email protected]> Date: Mon Nov 27 18:28:51 2017 -0800 radv: Use the suffixed versions of VK_QUEUE_GLOBAL_PRIORITY_* Acked-by: Dave Airlie <[email protected]> --- src/amd/vulkan/radv_device.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index 722c768aa0..8e5ae0bc46 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -895,13 +895,13 @@ radv_get_queue_global_priority(const VkDeviceQueueGlobalPriorityCreateInfoEXT *p return RADEON_CTX_PRIORITY_MEDIUM; switch(pObj->globalPriority) { - case VK_QUEUE_GLOBAL_PRIORITY_REALTIME: + case VK_QUEUE_GLOBAL_PRIORITY_REALTIME_EXT: return RADEON_CTX_PRIORITY_REALTIME; - case VK_QUEUE_GLOBAL_PRIORITY_HIGH: + case VK_QUEUE_GLOBAL_PRIORITY_HIGH_EXT: return RADEON_CTX_PRIORITY_HIGH; - case VK_QUEUE_GLOBAL_PRIORITY_MEDIUM: + case VK_QUEUE_GLOBAL_PRIORITY_MEDIUM_EXT: return RADEON_CTX_PRIORITY_MEDIUM; - case VK_QUEUE_GLOBAL_PRIORITY_LOW: + case VK_QUEUE_GLOBAL_PRIORITY_LOW_EXT: return RADEON_CTX_PRIORITY_LOW; default: unreachable("Illegal global priority value"); _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
