VkExportMetalIOSurfaceInfoEXT(3)
Name
VkExportMetalIOSurfaceInfoEXT - Structure that identifies a VkImage object and corresponding Metal IOSurfaceRef object
C Specification
To export the Metal IOSurfaceRef
object underlying a VkImage
object, include a VkExportMetalIOSurfaceInfoEXT
structure in the
pNext
chain of the pMetalObjectsInfo
parameter of a
vkExportMetalObjectsEXT call.
The VkExportMetalIOSurfaceInfoEXT
structure is defined as:
// Provided by VK_EXT_metal_objects
typedef struct VkExportMetalIOSurfaceInfoEXT {
VkStructureType sType;
const void* pNext;
VkImage image;
IOSurfaceRef ioSurface;
} VkExportMetalIOSurfaceInfoEXT;
Members
-
sType
is a VkStructureType value identifying this structure. -
pNext
isNULL
or a pointer to a structure extending this structure. -
image
is a VkImage. -
ioSurface
is the MetalIOSurfaceRef
object underlying the VkImage object inimage
. The implementation will return theIOSurfaceRef
in this member, or it will returnNULL
if noIOSurfaceRef
could be found underlying the VkImage object.
Document Notes
For more information, see the Vulkan Specification.
This page is extracted from the Vulkan Specification. Fixes and changes should be made to the Specification, not directly.