-
Notifications
You must be signed in to change notification settings - Fork 5.1k
vulkan: fix SIGSEGV on Android when using buffer_device_address #3590
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
@0cc4m Does this patch look OK? |
|
That would be a question for @jeffbolznv, who implemented buffer_device_address. |
|
Wait before merge, I think it breaks Android emulator: |
|
Please share a vulkaninfo log. I think we should only be calling this function if it's enabled in the 1.2 features, in which case the extension shouldn't be necessary. |
7622b03 to
1ee93ca
Compare
I updated my PR text with both vulkaninfo (arm64 and x86_64 emulator). |
|
I think what's happening is this device doesn't actually support Vulkan 1.2: so it's technically out of spec for what we intended to support, but if it's simple to get it working I don't mind. I'll leave a few suggestions in a review. |
ggml/src/ggml-vulkan/ggml-vulkan.cpp
Outdated
| getenv("GGML_VK_ENABLE_MEMORY_PRIORITY")) { | ||
| device->memory_priority = true; | ||
| } else if (strcmp("VK_KHR_buffer_device_address", properties.extensionName) == 0) { | ||
| buffer_device_address_ext = true; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suggest renaming this to buffer_device_address_khr, to avoid confusion with VK_EXT_buffer_device_address.
|
|
||
| device_extensions.push_back("VK_KHR_16bit_storage"); | ||
| if (fp16_storage) { | ||
| device_extensions.push_back("VK_KHR_16bit_storage"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This extension was promoted to Vulkan 1.1. Is this change necessary?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
on x86_64 emulator, without this change:
Abort message: 'terminating due to uncaught exception of type vk::ExtensionNotPresentError: vk::PhysicalDevice::createDevice: ErrorExtensionNotPresent'
#00 abort+191 libc.so
#01 abort_message libcxxabi/src/abort_message.cpp:78
#02 demangling_terminate_handler() libcxxabi/src/cxa_default_handlers.cpp:72
#03 ggml_uncaught_exception() ggml/src/ggml.cpp:11
#04 std::__terminate() libcxxabi/src/cxa_handlers.cpp:59
#05 __cxxabiv1::failed_throw() libcxxabi/src/cxa_exception.cpp:152
#06 __cxa_throw libcxxabi/src/cxa_exception.cpp:294
#07 vk::throwResultException() vulkan/vulkan.hpp:6544
vk::resultCheck() vulkan/vulkan.hpp:6738
vk::PhysicalDevice::createDevice() vulkan/vulkan_funcs.hpp:412
ggml_vk_get_device() ggml-vulkan/ggml-vulkan.cpp:4935
#08 ggml_backend_vk_buffer_type ggml-vulkan/ggml-vulkan.cpp:12636
#09 ggml_backend_vk_device_get_buffer_type() ggml-vulkan/ggml-vulkan.cpp:14002
#10 ggml_backend_dev_buffer_type ggml-backend.cpp:517
#11 make_buft_list() whisper.cpp:1374
#12 whisper_model_load() whisper.cpp:1712
#13 whisper_init_with_params_no_state whisper.cpp:3723
#14 whisper_init_with_params whisper.cpp:3766
#15 process_load_model_command jni.c:523
worker_thread_func jni.c:752
#16 __pthread_start libc.so
#17 __start_thread libc.so
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it ought to work if we don't push this extension string at all, but this change is fine.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The capability is definitely required, the backend cannot run without fp16_storage. If the way we are currently initialising it with the extension does not work for you, please find another way (like not pushing the string at all). Making it conditional is just confusing.
ggml/src/ggml-vulkan/ggml-vulkan.cpp
Outdated
| #endif | ||
|
|
||
| if (device->fp16) { | ||
| if (device->fp16 && fp16_compute) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is redundant since device->fp16 = !force_disable_f16 && fp16_storage && fp16_compute;
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
indeed
ggml/src/ggml-vulkan/ggml-vulkan.cpp
Outdated
| // Required on some Android devices, if extension exists (it's core in Vulkan 1.2) | ||
| if (device->buffer_device_address && buffer_device_address_ext) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggest changing to comment to something like:
// Required for physical devices that only support Vulkan 1.1
and removing the device->buffer_device_address check.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where we currently set device->buffer_device_address = vk12_features.bufferDeviceAddress;, I think you should change this to ... || buffer_device_address_khr. I'm surprised it comes back as supported, it might just be an uninitialized value.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see #3590 (comment)
It seems, we need to push the extension even if we don't use it ? Ok that's weird.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AH no, that's not the same crash, we were crashing when using the function pointer that was NULL here.
so: vk12_features.bufferDeviceAddress is true, but fp was NULL. Without pushExt and dispatcher.init(device).
| device->device = device->physical_device.createDevice(device_create_info); | ||
|
|
||
| // optionally initialize the dispatcher with a vk::Device to get | ||
| // device-specific function pointers (needed on Android) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this actually needed? Do you know why?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is needed, I double-checked by removing it and keeping other fixes: same crash.
Note that this is also needed on a WIP branch on VLC for android, I use volk and I had to call volkLoadDevice(device) (in addition to volkLoadInstance(instance), see https://github.com/zeux/volk?tab=readme-ov-file#optimizing-device-calls (but that does not say why it is needed)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm concerned this won't work on systems with multiple vulkan devices.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Indeed, that's a problem...
vkGetBufferDeviceAddress is not loaded without explicit VK_KHR_buffer_device_address extension Also init disaptcher with device as (optionally) documented in https://github.com/KhronosGroup/Vulkan-Hpp?tab=readme-ov-file#extensions--per-device-function-pointers- ``` ********** Crash dump: ********** #00 0x0000000000000000 <unknown> ggml-org#1 0x000000000317c7b4 libggml-vulkan.so vk::Device::getBufferAddress<vk::DispatchLoaderDynamic>(vk::BufferDeviceAddressInfo const&, vk::DispatchLoaderDynamic const&) const vulkan/vulkan_funcs.hpp:6563:30 ggml_vk_create_buffer(std::shared_ptr<vk_device_struct>&, unsigned long, std::initializer_list<vk::Flags<vk::MemoryPropertyFlagBits>> const&) ggml/src/ggml-vulkan/ggml-vulkan.cpp:2469:40 ggml-org#2 0x000000000317b728 libggml-vulkan.so ggml_vk_create_buffer_device(std::shared_ptr<vk_device_struct>&, unsigned long) ggml/src/ggml-vulkan/ggml-vulkan.cpp:2497:19 ggml-org#3 0x000000000317b4b0 libggml-vulkan.so ggml_backend_vk_buffer_type_alloc_buffer(ggml_backend_buffer_type*, unsigned long) ggml/src/ggml-vulkan/ggml-vulkan.cpp:12591:22 ggml-org#4 0x000000000006f3a8 libggml-base.so alloc_tensor_range ggml/src/ggml-alloc.c:1135:36 ggml-org#5 0x000000000006e608 libggml-base.so ggml_backend_alloc_ctx_tensors_from_buft_impl ggml/src/ggml-alloc.c:1206:27 ggml-org#6 0x000000000006e70c libggml-base.so ggml_backend_alloc_ctx_tensors_from_buft ggml/src/ggml-alloc.c:1244:12 ggml-org#7 0x0000000000037d04 libwhisper.so whisper_model_load(whisper_model_loader*, whisper_context&) src/whisper.cpp:1852:37 ggml-org#8 0x000000000003653c libwhisper.so whisper_init_with_params_no_state src/whisper.cpp:3723:10 ggml-org#9 0x0000000000038768 libwhisper.so whisper_init_with_params src/whisper.cpp:3766:29 ```
Fix SIGABRT on Android emulator: ``` terminating due to uncaught exception of type vk::ExtensionNotPresentError: vk::PhysicalDevice::createDevice: ErrorExtensionNotPresent ```
1ee93ca to
2d7a110
Compare
| device->device = device->physical_device.createDevice(device_create_info); | ||
|
|
||
| // optionally initialize the dispatcher with a vk::Device to get | ||
| // device-specific function pointers (needed on Android) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm concerned this won't work on systems with multiple vulkan devices.
|
|
||
| device_extensions.push_back("VK_KHR_16bit_storage"); | ||
| if (fp16_storage) { | ||
| device_extensions.push_back("VK_KHR_16bit_storage"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it ought to work if we don't push this extension string at all, but this change is fine.
| } | ||
|
|
||
| // Required for physical devices that only support Vulkan 1.1 | ||
| if (device->buffer_device_address && buffer_device_address_khr) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you check whether buffer_device_address is initialized based on stack garbage in VkPhysicalDeviceVulkan12Features? Another option might be to just zero-init that structure and then you don't need the getBufferDeviceAddress function pointer.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same isssue if I do VkPhysicalDeviceVulkan12Features vk12_features {}; (and all other Features structs)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If this was not the case, then how did we get buffer_device_address set to true in the first place?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure if I understand your comment.
Locally, I initialized all Features structures to 0. buffer_device_address was set to true, so this means this extension is present. This is confirmed by vulkaninfo.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
My question is why, without any of your changes, is device->buffer_device_address == true?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your review.
I will try to get a better understanding and try to propose a non-hackish fix.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Enabling VK Validation layer on Android shows the clear pictures.
- So, yes, it works by "chance" for few 1.1 GPU devices, and fail (Device Lost) on some other 1.1 GPU devices.
- SPIR-V 1.5 work on some 1.1 GPU devices too, that's also surprising
Since it works as it is for few 1.1 GPU, I'm wondering If I can adapt ggml for Vulkan 1.1, the task will be:
- Use SPIR-V 1.3, by disabling RTE support
- Check and enable all required extensions that are in Vulkan 1.3 Core
- Fail if a mandatory extension/core feature is not present
- Am I missing something ?
Would you be interested in a PR ? Maybe you don't want to add more complexity, by supporting older Vulkan, but it would benefit a lot of android devices.
Validation logs when loading a model:
VUID-VkPhysicalDeviceProperties2-pNext-pNext(ERROR / SPEC): msgNum: -579609649 - Validation Error: [ VUID-VkPhysicalDeviceProperties2-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xdd73dbcf | vkGetPhysicalDeviceProperties2(): pProperties->pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_1_PROPERTIES) which was added in VK_API_VERSION_1_2 but the current effective API version is 1.1.177 (0x004010b1).
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid struct for extending VkPhysicalDeviceProperties2 (***************************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkPhysicalDeviceProperties2-pNext-pNext(ERROR / SPEC): msgNum: -579609649 - Validation Error: [ VUID-VkPhysicalDeviceProperties2-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xdd73dbcf | vkGetPhysicalDeviceProperties2(): pProperties->pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_2_PROPERTIES) which was added in VK_API_VERSION_1_2 but the current effective API version is 1.1.177 (0x004010b1).
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid struct for extending VkPhysicalDeviceProperties2 (***************************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkDeviceCreateInfo-pNext-pNext(ERROR / SPEC): msgNum: -1876993556 - Validation Error: [ VUID-VkDeviceCreateInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0x901f59ec | vkCreateDevice(): pCreateInfo->pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_1_FEATURES) which was added in VK_API_VERSION_1_2 but the current effective API version is 1.1.177 (0x004010b1).
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid struct for extending VkDeviceCreateInfo (******************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkDeviceCreateInfo-pNext-pNext(ERROR / SPEC): msgNum: -1876993556 - Validation Error: [ VUID-VkDeviceCreateInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0x901f59ec | vkCreateDevice(): pCreateInfo->pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_VULKAN_1_2_FEATURES) which was added in VK_API_VERSION_1_2 but the current effective API version is 1.1.177 (0x004010b1).
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid struct for extending VkDeviceCreateInfo (******************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkDescriptorSetLayoutCreateInfo-pNext-pNext(ERROR / SPEC): msgNum: 729054019 - Validation Error: [ VUID-VkDescriptorSetLayoutCreateInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0x2b747b43 | vkCreateDescriptorSetLayout(): pCreateInfo->pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_BINDING_FLAGS_CREATE_INFO), but its parent extension VK_EXT_descriptor_indexing has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkDescriptorSetLayoutBindingFlagsCreateInfo or VkMutableDescriptorTypeCreateInfoEXT (*******************************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkDescriptorSetLayoutCreateInfo-pNext-pNext(ERROR / SPEC): msgNum: 729054019 - Validation Error: [ VUID-VkDescriptorSetLayoutCreateInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0x2b747b43 | vkCreateDescriptorSetLayout(): pCreateInfo->pNext<VkDescriptorSetLayoutBindingFlagsCreateInfo> extended struct requires the extensions VK_EXT_descriptor_indexing.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkDescriptorSetLayoutBindingFlagsCreateInfo or VkMutableDescriptorTypeCreateInfoEXT (*******************************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV - So, yes, it works by "chance" for few 1.1 gpu devices. I confirm it can fail (Device Lost) on other 1.1 gpu devices.(************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, - So, yes, it works by "chance" for few 1.1 gpu devices. I confirm it can fail (Device Lost) on other 1.1 gpu devices.VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
VUID-VkSubmitInfo-pNext-pNext(ERROR / SPEC): msgNum: -61378218 - Validation Error: [ VUID-VkSubmitInfo-pNext-pNext ] Object 0: handle = 0x74c896ecc0, type = VK_OBJECT_TYPE_INSTANCE; | MessageID = 0xfc577156 | vkQueueSubmit(): pSubmits[0].pNext includes a pointer to a VkStructureType (VK_STRUCTURE_TYPE_TIMELINE_SEMAPHORE_SUBMIT_INFO), but its parent extension VK_KHR_timeline_semaphore has not been enabled.
The Vulkan spec states: Each pNext member of any structure (including this one) in the pNext chain must be either NULL or a pointer to a valid instance of VkAmigoProfilingSubmitInfoSEC, VkD3D12FenceSubmitInfoKHR, VkDeviceGroupSubmitInfo, VkFrameBoundaryEXT, VkLatencySubmissionPresentIdNV, VkPerformanceQuerySubmitInfoKHR, VkProtectedSubmitInfo, VkTimelineSemaphoreSubmitInfo, VkWin32KeyedMutexAcquireReleaseInfoKHR, or VkWin32KeyedMutexAcquireReleaseInfoNV (************************************************************************************************************
Objects: 1
[0] 0x74c896ecc0, type: 1, name: NULL
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Enabling VK Validation layer on Android shows the clear pictures.
* So, yes, it works by "chance" for few 1.1 GPU devices, and fail (Device Lost) on some other 1.1 GPU devices. * SPIR-V 1.5 work on some 1.1 GPU devices too, that's also surprisingSince it works as it is for few 1.1 GPU, I'm wondering If I can adapt ggml for Vulkan 1.1, the task will be:
* Use SPIR-V 1.3, by disabling RTE support * Check and enable all required extensions that are in Vulkan 1.3 Core * Fail if a mandatory extension/core feature is not present * Am I missing something ?Would you be interested in a PR ? Maybe you don't want to add more complexity, by supporting older Vulkan, but it would benefit a lot of android devices.
My opinion is the same as Jeff's, we don't officially support devices below Vulkan 1.2, but if you have a simple way of making the backend work on all or some of them, that's okay with me. If it's more complex, I'd rather not. Changing SPIR-V version for example sounds intrusive and extensive.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK, I have something working, I don't think it's too complex, I will try to clean it up and propose it this week.
In the meantime, I can close this PR, that work with luck on some 1.1 GPUs.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- Use SPIR-V 1.3, by disabling RTE support
Rather than disabling this (which will fail test-backend-ops on some devices), we could do:
-spirv_execution_mode(capabilities = [4467], 4462, 16); // RoundingModeRTE, 16 bits
+spirv_execution_mode(extensions = ["SPV_KHR_float_controls"], capabilities = [4467], 4462, 16); // RoundingModeRTE, 16 bits
This device supports shaderRoundingModeRTEFloat16 so this should be fine. Then switching to SPIR-V 1.3 is just changing --target-env=vulkan1.2 to --target-env=vulkan1.1. There's a risk this could trigger some compiler bugs, but I think it's a relatively low risk.
I don't really mind trying to support vulkan 1.1 devices, with the caveat that I don't have access to any such devices and wouldn't be able to directly debug any issues.
I'd like it if we could eventually require bufferDeviceAddress support, it would make it easier to write some fusion code. And I'd also like to eventually require maxPushConstantsSize==256, since we sometimes run out of space (and if we used bufferDeviceAddress for bindings, we'd need more space). But both of these can be supported on 1.1 devices, so I guess that's fine.
vkGetBufferDeviceAddress is not loaded without explicit VK_KHR_buffer_device_address extension
Also init disaptcher with device as (optionally) documented in https://github.com/KhronosGroup/Vulkan-Hpp?tab=readme-ov-file#extensions--per-device-function-pointers-
Android arm64:
Android x86_64 emulator:
Tested on Linux desktop and Android.