Package org.lwjgl.vulkan
Class EXTDirectModeDisplay
java.lang.Object
org.lwjgl.vulkan.EXTDirectModeDisplay
This is extension, along with related platform extensions, allows applications to take exclusive control of displays associated with a native windowing system. This is especially useful for virtual reality applications that wish to hide HMDs (head mounted displays) from the native platform’s display management system, desktop, and/or other applications.
- Name String
VK_EXT_direct_mode_display- Extension Type
- Instance extension
- Registered Extension Number
- 89
- Revision
- 1
- Extension and Version Dependencies
VK_KHR_display- Contact
- James Jones cubanismo
Other Extension Metadata
- Last Modified Date
- 2016-12-13
- IP Status
- No known IP claims.
- Contributors
- Pierre Boudier, NVIDIA
- James Jones, NVIDIA
- Damien Leone, NVIDIA
- Pierre-Loup Griffais, Valve
- Liam Middlebrook, NVIDIA
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringThe extension name.static final intThe extension specification version. -
Method Summary
Modifier and TypeMethodDescriptionstatic intvkReleaseDisplayEXT(org.lwjgl.vulkan.VkPhysicalDevice physicalDevice, long display) Release access to an acquired VkDisplayKHR.
-
Field Details
-
VK_EXT_DIRECT_MODE_DISPLAY_SPEC_VERSION
public static final int VK_EXT_DIRECT_MODE_DISPLAY_SPEC_VERSIONThe extension specification version.- See Also:
-
VK_EXT_DIRECT_MODE_DISPLAY_EXTENSION_NAME
The extension name.- See Also:
-
-
Method Details
-
vkReleaseDisplayEXT
public static int vkReleaseDisplayEXT(org.lwjgl.vulkan.VkPhysicalDevice physicalDevice, long display) Release access to an acquired VkDisplayKHR.C Specification
To release a previously acquired display, call:
VkResult vkReleaseDisplayEXT( VkPhysicalDevice physicalDevice, VkDisplayKHR display);Valid Usage (Implicit)
physicalDevicemust be a validVkPhysicalDevicehandledisplaymust be a validVkDisplayKHRhandledisplaymust have been created, allocated, or retrieved fromphysicalDevice
Return Codes
- On success, this command returns
- Parameters:
physicalDevice- The physical device the display is on.display- The display to release control of.
-