Structures

VkImagePipeSurfaceCreateInfoFUCHSIA

Structure specifying parameters of a newly created ImagePipe surface object

The VkImagePipeSurfaceCreateInfoFUCHSIA structure is defined as:

typedef struct VkImagePipeSurfaceCreateInfoFUCHSIA {
    VkStructureType sType;
    const void* pNext;
    VkImagePipeSurfaceCreateFlagsFUCHSIA flags;
    zx_handle_t imagePipeHandle;
} VkImagePipeSurfaceCreateInfoFUCHSIA;
  • sType is a VkStructureType value identifying this structure.
  • pNext is NULL or a pointer to a structure extending this structure.
  • flags is reserved for future use.
  • imagePipeHandle is a zx_handle_t referring to the ImagePipe to associate with the surface.

Valid Usage

VUID-VkImagePipeSurfaceCreateInfoFUCHSIA-imagePipeHandle-04863

imagePipeHandle must be a valid zx_handle_t

Valid Usage (Implicit)