From a2304cb131353df94812e8a0c537a101e82bf831 Mon Sep 17 00:00:00 2001 From: spencer-lunarg Date: Thu, 16 Feb 2023 15:36:00 +0900 Subject: mockicd: Add Protected Queue --- scripts/mock_icd_generator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/mock_icd_generator.py b/scripts/mock_icd_generator.py index 4e46a9df..7ab503fd 100644 --- a/scripts/mock_icd_generator.py +++ b/scripts/mock_icd_generator.py @@ -714,7 +714,7 @@ CUSTOM_C_INTERCEPTS = { *pQueueFamilyPropertyCount = 1; } else { if (*pQueueFamilyPropertyCount) { - pQueueFamilyProperties[0].queueFlags = VK_QUEUE_GRAPHICS_BIT | VK_QUEUE_COMPUTE_BIT | VK_QUEUE_TRANSFER_BIT | VK_QUEUE_SPARSE_BINDING_BIT; + pQueueFamilyProperties[0].queueFlags = VK_QUEUE_GRAPHICS_BIT | VK_QUEUE_COMPUTE_BIT | VK_QUEUE_TRANSFER_BIT | VK_QUEUE_SPARSE_BINDING_BIT | VK_QUEUE_PROTECTED_BIT; pQueueFamilyProperties[0].queueCount = 1; pQueueFamilyProperties[0].timestampValidBits = 16; pQueueFamilyProperties[0].minImageTransferGranularity = {1,1,1}; -- cgit v1.2.3