PNEXT
pNext is a convention used in the Vulkan API to allow extending core structures with optional, vendor-specific, or future features without changing the core definitions. It is a member named pNext that appears in many Vulkan structures and serves as a pointer to a linked list of additional structures.
The primary purpose of pNext is to enable structure chaining. Each structure that participates in a chain
Usage examples include augmenting create info or feature queries with extension structures. For instance, a base
Important considerations include ensuring correct sType values for each chained structure, maintaining a valid, NULL-terminated chain,