diff options
| author | spencer-lunarg <spencer@lunarg.com> | 2023-02-16 15:36:00 +0900 |
|---|---|---|
| committer | Spencer Fricke <115671160+spencer-lunarg@users.noreply.github.com> | 2023-02-17 14:03:19 +0900 |
| commit | a2304cb131353df94812e8a0c537a101e82bf831 (patch) | |
| tree | 9bd16020f756f73663c8077b2e55c00f05c9b611 /scripts | |
| parent | 4dabd027e93134e4c1571e83f847af1895cd3957 (diff) | |
| download | usermoji-a2304cb131353df94812e8a0c537a101e82bf831.tar.xz | |
mockicd: Add Protected Queue
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/mock_icd_generator.py | 2 |
1 files changed, 1 insertions, 1 deletions
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}; |
