vkGetRandROutputDisplayEXT(3)
C Specification
When acquiring displays from an X11 server, an application may also wish to
enumerate and identify them using a native handle rather than a
VkDisplayKHR handle.
To determine the VkDisplayKHR handle corresponding to an X11 RandR
Output, call:
// Provided by VK_EXT_acquire_xlib_display
VkResult vkGetRandROutputDisplayEXT(
VkPhysicalDevice physicalDevice,
Display* dpy,
RROutput rrOutput,
VkDisplayKHR* pDisplay);
Parameters
-
physicalDeviceis the physical device to query the display handle on. -
dpyis a connection to the X11 server from whichrrOutputwas queried. -
rrOutputis an X11 RandR output ID. -
pDisplayis a pointer to a VkDisplayKHR handle where the display is returned.
Description
If there is no VkDisplayKHR corresponding to rrOutput on
physicalDevice, VK_NULL_HANDLE will be returned in
pDisplay.
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.