Class VkPhysicalDeviceLayeredApiPropertiesKHR

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

public class VkPhysicalDeviceLayeredApiPropertiesKHR extends org.lwjgl.system.Struct<VkPhysicalDeviceLayeredApiPropertiesKHR> implements org.lwjgl.system.NativeResource
Structure describing a single layered implementation underneath the Vulkan physical device.
Description

If layeredAPI is PHYSICAL_DEVICE_LAYERED_API_VULKAN_KHR, additional Vulkan-specific information can be queried by including the VkPhysicalDeviceLayeredApiVulkanPropertiesKHR structure in the pNext chain. Otherwise if such a structure is included in the pNext chain, it is ignored.

Valid Usage (Implicit)
See Also

VkPhysicalDeviceLayeredApiPropertiesListKHR

Layout


 struct VkPhysicalDeviceLayeredApiPropertiesKHR {
     VkStructureType sType();
     void * pNext();
     uint32_t vendorID();
     uint32_t deviceID();
     VkPhysicalDeviceLayeredApiKHR layeredAPI();
     char deviceName()[VK_MAX_PHYSICAL_DEVICE_NAME_SIZE];
 }