Class VkPhysicalDeviceExternalMemoryHostPropertiesEXT

  • All Implemented Interfaces:
    java.lang.AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer

    public class VkPhysicalDeviceExternalMemoryHostPropertiesEXT
    extends org.lwjgl.system.Struct
    implements org.lwjgl.system.NativeResource
    Structure describing external memory host pointer limits that can be supported by an implementation.
    Description

    If the VkPhysicalDeviceExternalMemoryHostPropertiesEXT structure is included in the pNext chain of VkPhysicalDeviceProperties2, it is filled with the implementation-dependent limits.

    Valid Usage (Implicit)

    Member documentation

    • sType – the type of this structure.
    • pNextNULL or a pointer to an extension-specific structure.
    • minImportedHostPointerAlignment – the minimum required: alignment, in bytes, for the base address and size of host pointers that can be imported to a Vulkan memory object.

    Layout

    
     struct VkPhysicalDeviceExternalMemoryHostPropertiesEXT {
         VkStructureType sType;
         void * pNext;
         VkDeviceSize minImportedHostPointerAlignment;
     }