Class VkDirectDriverLoadingListLUNARG

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<VkDirectDriverLoadingListLUNARG>
org.lwjgl.vulkan.VkDirectDriverLoadingListLUNARG
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

public class VkDirectDriverLoadingListLUNARG extends org.lwjgl.system.Struct<VkDirectDriverLoadingListLUNARG> implements org.lwjgl.system.NativeResource
Structure specifying additional drivers to load.
Description

When creating a Vulkan instance for which additional drivers are to be included, add a VkDirectDriverLoadingListLUNARG structure to the pNext chain of the VkInstanceCreateInfo structure, and include in it the list of VkDirectDriverLoadingInfoLUNARG structures which contain the information necessary to load additional drivers.

Valid Usage (Implicit)
See Also

VkDirectDriverLoadingInfoLUNARG

Layout


 struct VkDirectDriverLoadingListLUNARG {
     VkStructureType sType();
     void const * pNext();
     VkDirectDriverLoadingModeLUNARG mode();
     uint32_t driverCount();
     VkDirectDriverLoadingInfoLUNARG const * pDrivers();
 }