Class VkPhysicalDeviceBufferDeviceAddressFeaturesEXT

java.lang.Object
org.lwjgl.system.Pointer.Default
org.lwjgl.system.Struct<VkPhysicalDeviceBufferDeviceAddressFeaturesEXT>
org.lwjgl.vulkan.VkPhysicalDeviceBufferDeviceAddressFeaturesEXT
All Implemented Interfaces:
AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer
Direct Known Subclasses:
VkPhysicalDeviceBufferAddressFeaturesEXT

public class VkPhysicalDeviceBufferDeviceAddressFeaturesEXT extends org.lwjgl.system.Struct<VkPhysicalDeviceBufferDeviceAddressFeaturesEXT> implements org.lwjgl.system.NativeResource
Structure describing buffer address features that can be supported by an implementation.
Description

If the VkPhysicalDeviceBufferDeviceAddressFeaturesEXT structure is included in the pNext chain of the VkPhysicalDeviceFeatures2 structure passed to GetPhysicalDeviceFeatures2, it is filled in to indicate whether each corresponding feature is supported. VkPhysicalDeviceBufferDeviceAddressFeaturesEXT can also be used in the pNext chain of VkDeviceCreateInfo to selectively enable these features.

Note

The VkPhysicalDeviceBufferDeviceAddressFeaturesEXT structure has the same members as the VkPhysicalDeviceBufferDeviceAddressFeatures structure, but the functionality indicated by the members is expressed differently. The features indicated by the VkPhysicalDeviceBufferDeviceAddressFeatures structure requires additional flags to be passed at memory allocation time, and the capture and replay mechanism is built around opaque capture addresses for buffer and memory objects.

Valid Usage (Implicit)

Layout


 struct VkPhysicalDeviceBufferDeviceAddressFeaturesEXT {
     VkStructureType sType();
     void * pNext();
     VkBool32 bufferDeviceAddress();
     VkBool32 bufferDeviceAddressCaptureReplay();
     VkBool32 bufferDeviceAddressMultiDevice();
 }