Function Prototype

vkGetPhysicalDeviceUbmPresentationSupportSEC

Query physical device for presentation to UBM

To determine whether a queue family of a physical device supports presentation to a UBM compositor, call:

VkBool32 vkGetPhysicalDeviceUbmPresentationSupportSEC(
    VkPhysicalDevice physicalDevice,
    uint32_t queueFamilyIndex,
    struct ubm_device* device);
  • physicalDevice is the physical device.
  • queueFamilyIndex is the queue family index.
  • device is a pointer to the ubm_device associated with a UBM compositor.

This platform-specific function can be called prior to creating a surface.

Valid Usage

VUID-vkGetPhysicalDeviceUbmPresentationSupportSEC-device-12368

device must point to a valid UBM ubm_device

VUID-vkGetPhysicalDeviceUbmPresentationSupportSEC-queueFamilyIndex-12369

queueFamilyIndex must be less than pQueueFamilyPropertyCount returned by vkGetPhysicalDeviceQueueFamilyProperties for the given physicalDevice

Valid Usage (Implicit)