VKSTRUCTURETYPEDEVICECREATEINFO
VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO is the VkStructureType value that identifies the VkDeviceCreateInfo structure in Vulkan. It is used by setting the sType field of VkDeviceCreateInfo to VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO, indicating to the driver that the provided structure describes parameters for creating a logical device. The VkDeviceCreateInfo structure, in turn, contains all information needed by vkCreateDevice to create a logical device from a physical device.
The VkDeviceCreateInfo structure includes several members. The pNext field can point to a chain of extension-specific
VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO is used exclusively with the vkCreateDevice function. A correctly filled VkDeviceCreateInfo is essential for successful