VkPhysicalDevicePresentationPropertiesOHOS(3)

Name

VkPhysicalDevicePresentationPropertiesOHOS - The presentation properties of a physical device

C Specification

The VkPhysicalDevicePresentationPropertiesOHOS structure is defined as:

// Provided by VK_OHOS_native_buffer
typedef struct VkPhysicalDevicePresentationPropertiesOHOS {
    VkStructureType    sType;
    void*              pNext;
    VkBool32           sharedImage;
} VkPhysicalDevicePresentationPropertiesOHOS;

Members

  • sType is a VkStructureType value identifying this structure.

  • pNext is NULL or a pointer to a structure extending this structure.

  • sharedImage will be set to VK_TRUE if the driver can share the ownership of a image with the display system.

Description

Valid Usage (Implicit)
  • VUID-VkPhysicalDevicePresentationPropertiesOHOS-sType-sType
    sType must be VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PRESENTATION_PROPERTIES_OHOS

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.