Class VkExternalImageFormatProperties

  • All Implemented Interfaces:
    java.lang.AutoCloseable, org.lwjgl.system.NativeResource, org.lwjgl.system.Pointer
    Direct Known Subclasses:
    VkExternalImageFormatPropertiesKHR

    public class VkExternalImageFormatProperties
    extends org.lwjgl.system.Struct
    implements org.lwjgl.system.NativeResource
    Structure specifying supported external handle properties.
    Valid Usage (Implicit)
    See Also

    VkExternalMemoryProperties

    Member documentation

    • sType – the type of this structure.
    • pNextNULL or a pointer to an extension-specific structure.
    • externalMemoryProperties – an instance of the VkExternalMemoryProperties structure specifying various capabilities of the external handle type when used with the specified image creation parameters.

    Layout

    
     struct VkExternalImageFormatProperties {
         VkStructureType sType;
         void * pNext;
         VkExternalMemoryProperties externalMemoryProperties;
     }