Class VkDeviceGroupPresentCapabilitiesKHR

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

public class VkDeviceGroupPresentCapabilitiesKHR extends org.lwjgl.system.Struct<VkDeviceGroupPresentCapabilitiesKHR> implements org.lwjgl.system.NativeResource
Present capabilities from other physical devices.
Description

modes always has DEVICE_GROUP_PRESENT_MODE_LOCAL_BIT_KHR set.

The present mode flags are also used when presenting an image, in VkDeviceGroupPresentInfoKHR::mode.

If a device group only includes a single physical device, then modes must equal DEVICE_GROUP_PRESENT_MODE_LOCAL_BIT_KHR.

Valid Usage (Implicit)
See Also

GetDeviceGroupPresentCapabilitiesKHR

Layout


 struct VkDeviceGroupPresentCapabilitiesKHR {
     VkStructureType sType();
     void * pNext();
     uint32_t presentMask()[VK_MAX_DEVICE_GROUP_SIZE];
     VkDeviceGroupPresentModeFlagsKHR modes();
 }