Class OVRVk
- java.lang.Object
-
- org.lwjgl.ovr.OVRVk
-
public class OVRVk extends java.lang.ObjectNative bindings to libOVR, using the Oculus SDK C API.This class contains Vulkan specific functionality.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static intnovr_CreateMirrorTextureWithOptionsVk(long session, long device, long desc, long out_MirrorTexture)Unsafe version of:CreateMirrorTextureWithOptionsVkstatic intnovr_CreateTextureSwapChainVk(long session, long device, long desc, long out_TextureSwapChain)Unsafe version of:CreateTextureSwapChainVkstatic intnovr_GetDeviceExtensionsVk(long luid, long extensionNames, int[] inoutExtensionNamesSize)Array version of:novr_GetDeviceExtensionsVk(long, long, long)static intnovr_GetDeviceExtensionsVk(long luid, long extensionNames, long inoutExtensionNamesSize)Unsafe version of:GetDeviceExtensionsVkstatic intnovr_GetInstanceExtensionsVk(long luid, long extensionNames, int[] inoutExtensionNamesSize)Array version of:novr_GetInstanceExtensionsVk(long, long, long)static intnovr_GetInstanceExtensionsVk(long luid, long extensionNames, long inoutExtensionNamesSize)Unsafe version of:GetInstanceExtensionsVkstatic intnovr_GetMirrorTextureBufferVk(long session, long mirrorTexture, long out_Image)Unsafe version of:GetMirrorTextureBufferVkstatic intnovr_GetMirrorTextureBufferVk(long session, long mirrorTexture, long[] out_Image)Array version of:novr_GetMirrorTextureBufferVk(long, long, long)static intnovr_GetSessionPhysicalDeviceVk(long session, long luid, long instance, long out_physicalDevice)Unsafe version of:GetSessionPhysicalDeviceVkstatic intnovr_GetTextureSwapChainBufferVk(long session, long chain, int index, long out_Image)Unsafe version of:GetTextureSwapChainBufferVkstatic intnovr_GetTextureSwapChainBufferVk(long session, long chain, int index, long[] out_Image)Array version of:novr_GetTextureSwapChainBufferVk(long, long, int, long)static intnovr_SetSynchronizationQueueVk(long session, long queue)Unsafe version of:SetSynchronizationQueueVkstatic intovr_CreateMirrorTextureWithOptionsVk(long session, org.lwjgl.vulkan.VkDevice device, OVRMirrorTextureDesc desc, org.lwjgl.PointerBuffer out_MirrorTexture)Creates Mirror Texture which is auto-refreshed to mirror Rift contents produced by this application.static intovr_CreateTextureSwapChainVk(long session, org.lwjgl.vulkan.VkDevice device, OVRTextureSwapChainDesc desc, org.lwjgl.PointerBuffer out_TextureSwapChain)Creates Texture Swap Chain suitable for use with Vulkan.static intovr_GetDeviceExtensionsVk(OVRGraphicsLuid luid, java.nio.ByteBuffer extensionNames, int[] inoutExtensionNamesSize)Array version of:GetDeviceExtensionsVkstatic intovr_GetDeviceExtensionsVk(OVRGraphicsLuid luid, java.nio.ByteBuffer extensionNames, java.nio.IntBuffer inoutExtensionNamesSize)Gets a list of VulkanvkDeviceextensions required for VR.static intovr_GetInstanceExtensionsVk(OVRGraphicsLuid luid, java.nio.ByteBuffer extensionNames, int[] inoutExtensionNamesSize)Array version of:GetInstanceExtensionsVkstatic intovr_GetInstanceExtensionsVk(OVRGraphicsLuid luid, java.nio.ByteBuffer extensionNames, java.nio.IntBuffer inoutExtensionNamesSize)Gets a list of VulkanvkInstanceextensions required for VR.static intovr_GetMirrorTextureBufferVk(long session, long mirrorTexture, long[] out_Image)Array version of:GetMirrorTextureBufferVkstatic intovr_GetMirrorTextureBufferVk(long session, long mirrorTexture, java.nio.LongBuffer out_Image)Gets the underlying mirrorVkImage.static intovr_GetSessionPhysicalDeviceVk(long session, OVRGraphicsLuid luid, org.lwjgl.vulkan.VkInstance instance, org.lwjgl.PointerBuffer out_physicalDevice)FindsVkPhysicalDevicematchingovrGraphicsLuid.static intovr_GetTextureSwapChainBufferVk(long session, long chain, int index, long[] out_Image)Array version of:GetTextureSwapChainBufferVkstatic intovr_GetTextureSwapChainBufferVk(long session, long chain, int index, java.nio.LongBuffer out_Image)Gets a specificVkImagewithin the chain.static intovr_SetSynchronizationQueueVk(long session, org.lwjgl.vulkan.VkQueue queue)SelectsVkQueueto block on till rendering is complete.
-
-
-
Method Detail
-
novr_GetInstanceExtensionsVk
public static int novr_GetInstanceExtensionsVk(long luid, long extensionNames, long inoutExtensionNamesSize)Unsafe version of:GetInstanceExtensionsVk- Parameters:
inoutExtensionNamesSize- indicates on input the capacity ofextensionNamesin chars. On output it returns the number of characters written toextensionNames, including the terminating 0 char. In the case of this function returningError_InsufficientArraySize, the requiredinoutExtensionNamesSizeis returned.
-
ovr_GetInstanceExtensionsVk
public static int ovr_GetInstanceExtensionsVk(OVRGraphicsLuid luid, java.nio.ByteBuffer extensionNames, java.nio.IntBuffer inoutExtensionNamesSize)
Gets a list of VulkanvkInstanceextensions required for VR.Returns a list of strings delimited by a single space identifying Vulkan extensions that must be enabled in order for the VR runtime to support Vulkan-based applications. The returned list reflects the current runtime version and the GPU the VR system is currently connected to.
Example code:
char extensionNames[4096]; uint32_t extensionNamesSize = sizeof(extensionNames); ovr_GetInstanceExtensionsVk(luid, extensionsnames, &extensionNamesSize); uint32_t extensionCount = 0; const char* extensionNamePtrs[256]; for(const char* p = extensionNames; *p; ++p) { if((p == extensionNames) || (p[-1] == ' ')) { extensionNamePtrs[extensionCount++] = p; if (p[-1] == ' ') p[-1] = '\0'; } } VkInstanceCreateInfo info = { ... }; info.enabledExtensionCount = extensionCount; info.ppEnabledExtensionNames = extensionNamePtrs; [...]- Parameters:
luid- specifies theluidfor the relevant GPU, which is returned fromCreate.extensionNames- a character buffer which will receive a list of extension name strings, separated by a single space char between each extensioninoutExtensionNamesSize- indicates on input the capacity ofextensionNamesin chars. On output it returns the number of characters written toextensionNames, including the terminating 0 char. In the case of this function returningError_InsufficientArraySize, the requiredinoutExtensionNamesSizeis returned.- Returns:
- an
ovrResultindicating success or failure. In the case of failure, useGetLastErrorInfoto get more information. ReturnsError_InsufficientArraySizein the case thatinoutExtensionNameSizedidn't have enough space, in which caseinoutExtensionNameSizewill return the requiredinoutExtensionNamesSize.
-
novr_GetDeviceExtensionsVk
public static int novr_GetDeviceExtensionsVk(long luid, long extensionNames, long inoutExtensionNamesSize)Unsafe version of:GetDeviceExtensionsVk- Parameters:
inoutExtensionNamesSize- indicates on input the capacity ofextensionNamesin chars. On output it returns the number of characters written toextensionNames, including the terminating 0 char. In the case of this function returningError_InsufficientArraySize, the requiredinoutExtensionNamesSizeis returned.
-
ovr_GetDeviceExtensionsVk
public static int ovr_GetDeviceExtensionsVk(OVRGraphicsLuid luid, java.nio.ByteBuffer extensionNames, java.nio.IntBuffer inoutExtensionNamesSize)
Gets a list of VulkanvkDeviceextensions required for VR.Returns a list of strings delimited by a single space identifying Vulkan extensions that must be enabled in order for the VR runtime to support Vulkan-based applications. The returned list reflects the current runtime version and the GPU the VR system is currently connected to.
- Parameters:
luid- specifies theluidfor the relevant GPU, which is returned fromCreate.extensionNames- a character buffer which will receive a list of extension name strings, separated by a single space char between each extensioninoutExtensionNamesSize- indicates on input the capacity ofextensionNamesin chars. On output it returns the number of characters written toextensionNames, including the terminating 0 char. In the case of this function returningError_InsufficientArraySize, the requiredinoutExtensionNamesSizeis returned.- Returns:
- an
ovrResultindicating success or failure. In the case of failure, useGetLastErrorInfoto get more information. ReturnsError_InsufficientArraySizein the case thatinoutExtensionNameSizedidn't have enough space, in which caseinoutExtensionNameSizewill return the requiredinoutExtensionNamesSize.
-
novr_GetSessionPhysicalDeviceVk
public static int novr_GetSessionPhysicalDeviceVk(long session, long luid, long instance, long out_physicalDevice)Unsafe version of:GetSessionPhysicalDeviceVk
-
ovr_GetSessionPhysicalDeviceVk
public static int ovr_GetSessionPhysicalDeviceVk(long session, OVRGraphicsLuid luid, org.lwjgl.vulkan.VkInstance instance, org.lwjgl.PointerBuffer out_physicalDevice)FindsVkPhysicalDevicematchingovrGraphicsLuid.Note
This function enumerates the current physical devices and returns the one matching the
luid. It must be called at least once prior to anyCreateTextureSwapChainVkorCreateMirrorTextureWithOptionsVkcalls, and the instance must remain valid for the lifetime of the returned objects. It is assumed theVkDevicecreated by the application will be for the returned physical device.- Parameters:
session- anovrSessionpreviously returned byCreateluid- theluidreturned fromCreateinstance- aVkInstanceto search for matchingluidsinout_physicalDevice- returns theVkPhysicalDevicematching the instance andluid- Returns:
- an
ovrResultindicating success or failure. In the case of failure, useGetLastErrorInfoto get more information.
-
novr_SetSynchronizationQueueVk
public static int novr_SetSynchronizationQueueVk(long session, long queue)Unsafe version of:SetSynchronizationQueueVk
-
ovr_SetSynchronizationQueueVk
public static int ovr_SetSynchronizationQueueVk(long session, org.lwjgl.vulkan.VkQueue queue)SelectsVkQueueto block on till rendering is complete.Note
The queue may be changed at any time but only the value at the time
SubmitFrameis called will be used.ovr_SetSynchronizationQueueVkmust be called with a validVkQueuecreated on the sameVkDevicethe texture sets were created on prior to the first call toSubmitFrame. An internally createdVkFenceobject will be signalled by the completion of operations on queue and waited on to synchronize the VR compositor.- Parameters:
session- anovrSessionpreviously returned byCreatequeue- aVkQueueto add aVkFenceoperation to and wait on- Returns:
- an
ovrResultindicating success or failure. In the case of failure, useGetLastErrorInfoto get more information.
-
novr_CreateTextureSwapChainVk
public static int novr_CreateTextureSwapChainVk(long session, long device, long desc, long out_TextureSwapChain)Unsafe version of:CreateTextureSwapChainVk
-
ovr_CreateTextureSwapChainVk
public static int ovr_CreateTextureSwapChainVk(long session, org.lwjgl.vulkan.VkDevice device, OVRTextureSwapChainDesc desc, org.lwjgl.PointerBuffer out_TextureSwapChain)Creates Texture Swap Chain suitable for use with Vulkan.Note
The texture format provided in
descshould be thought of as the format the distortion-compositor will use for theShaderResourceViewwhen reading the contents of the texture. To that end, it is highly recommended that the application requests texture swapchain formats that are in sRGB-space (e.g.OVR.OVR_FORMAT_R8G8B8A8_UNORM_SRGB) as the compositor does sRGB-correct rendering. As such, the compositor relies on the GPU's hardware sampler to do the sRGB-to-linear conversion. If the application still prefers to render to a linear format (e.g.OVR.OVR_FORMAT_R8G8B8A8_UNORM) while handling the linear-to-gamma conversion via SPIRV code, then the application must still request the corresponding sRGB format and also use theTextureMisc_DX_Typelessflag in theovrTextureSwapChainDesc'sFlagfield. This will allow the application to create aRenderTargetViewthat is the desired linear format while the compositor continues to treat it as sRGB. Failure to do so will cause the compositor to apply unexpected gamma conversions leading to gamma-curve artifacts. TheTextureMisc_DX_Typelessflag for depth buffer formats (e.g.OVR.OVR_FORMAT_D32_FLOAT) is ignored as they are always converted to be typeless.- Parameters:
session- anovrSessionpreviously returned byCreatedevice- the application'sVkDeviceto create resources withdesc- specifies requested texture properties. See notes for more info about texture format.out_TextureSwapChain- returns the createdovrTextureSwapChain, which will be valid upon a successful return value, else it will beNULL. This texture chain must be eventually destroyed viaDestroyTextureSwapChainbefore destroying the session withDestroy.- Returns:
- an
ovrResultindicating success or failure. In the case of failure, useGetLastErrorInfoto get more information.
-
novr_GetTextureSwapChainBufferVk
public static int novr_GetTextureSwapChainBufferVk(long session, long chain, int index, long out_Image)Unsafe version of:GetTextureSwapChainBufferVk
-
ovr_GetTextureSwapChainBufferVk
public static int ovr_GetTextureSwapChainBufferVk(long session, long chain, int index, java.nio.LongBuffer out_Image)Gets a specificVkImagewithin the chain.- Parameters:
session- anovrSessionpreviously returned byCreatechain- anovrTextureSwapChainpreviously returned byCreateTextureSwapChainVkindex- the index within the chain to retrieve. Must be between 0 and length (seeGetTextureSwapChainLength), or may pass -1 to get the buffer at theCurrentIndexlocation (saving a call toGetTextureSwapChainCurrentIndex).- Returns:
- an
ovrResultindicating success or failure. In the case of failure, useGetLastErrorInfoto get more information.
-
novr_CreateMirrorTextureWithOptionsVk
public static int novr_CreateMirrorTextureWithOptionsVk(long session, long device, long desc, long out_MirrorTexture)Unsafe version of:CreateMirrorTextureWithOptionsVk
-
ovr_CreateMirrorTextureWithOptionsVk
public static int ovr_CreateMirrorTextureWithOptionsVk(long session, org.lwjgl.vulkan.VkDevice device, OVRMirrorTextureDesc desc, org.lwjgl.PointerBuffer out_MirrorTexture)Creates Mirror Texture which is auto-refreshed to mirror Rift contents produced by this application.A second call to
ovr_CreateMirrorTextureWithOptionsVkfor a givenovrSessionbefore destroying the first one is not supported and will result in an error return.Note
The texture format provided in
descshould be thought of as the format the compositor will use for theVkImageViewwhen writing into mirror texture. To that end, it is highly recommended that the application requests a mirror texture format that is in sRGB-space (e.g.OVR.OVR_FORMAT_R8G8B8A8_UNORM_SRGB) as the compositor does sRGB-correct rendering. If however the application wants to still read the mirror texture as a linear format (e.g.OVR.OVR_FORMAT_R8G8B8A8_UNORM) and handle the sRGB-to-linear conversion in SPIRV code, then it is recommended the application still requests an sRGB format and also use theTextureMisc_DX_Typelessflag in theovrMirrorTextureDesc'sFlagsfield. This will allow the application to bind aShaderResourceViewthat is a linear format while the compositor continues to treat is as sRGB. Failure to do so will cause the compositor to apply unexpected gamma conversions leading to gamma-curve artifacts.- Parameters:
session- anovrSessionpreviously returned byCreatedevice- theVkDeviceto create resources withdesc- specifies requested texture properties. See notes for more info about texture format.out_MirrorTexture- returns the createdovrMirrorTexture, which will be valid upon a successful return value, else it will beNULL. This texture must be eventually destroyed viaDestroyMirrorTexturebefore destroying the session withDestroy.- Returns:
- an
ovrResultindicating success or failure. In the case of failure, useGetLastErrorInfoto get more information.
-
novr_GetMirrorTextureBufferVk
public static int novr_GetMirrorTextureBufferVk(long session, long mirrorTexture, long out_Image)Unsafe version of:GetMirrorTextureBufferVk
-
ovr_GetMirrorTextureBufferVk
public static int ovr_GetMirrorTextureBufferVk(long session, long mirrorTexture, java.nio.LongBuffer out_Image)Gets the underlying mirrorVkImage.- Parameters:
session- anovrSessionpreviously returned byCreatemirrorTexture- anovrMirrorTexturepreviously returned byCreateMirrorTextureWithOptionsVkout_Image- returns theVkImagepointer retrieved- Returns:
- an
ovrResultindicating success or failure. In the case of failure, useGetLastErrorInfoto get more information.
-
novr_GetInstanceExtensionsVk
public static int novr_GetInstanceExtensionsVk(long luid, long extensionNames, int[] inoutExtensionNamesSize)Array version of:novr_GetInstanceExtensionsVk(long, long, long)
-
ovr_GetInstanceExtensionsVk
public static int ovr_GetInstanceExtensionsVk(OVRGraphicsLuid luid, java.nio.ByteBuffer extensionNames, int[] inoutExtensionNamesSize)
Array version of:GetInstanceExtensionsVk
-
novr_GetDeviceExtensionsVk
public static int novr_GetDeviceExtensionsVk(long luid, long extensionNames, int[] inoutExtensionNamesSize)Array version of:novr_GetDeviceExtensionsVk(long, long, long)
-
ovr_GetDeviceExtensionsVk
public static int ovr_GetDeviceExtensionsVk(OVRGraphicsLuid luid, java.nio.ByteBuffer extensionNames, int[] inoutExtensionNamesSize)
Array version of:GetDeviceExtensionsVk
-
novr_GetTextureSwapChainBufferVk
public static int novr_GetTextureSwapChainBufferVk(long session, long chain, int index, long[] out_Image)Array version of:novr_GetTextureSwapChainBufferVk(long, long, int, long)
-
ovr_GetTextureSwapChainBufferVk
public static int ovr_GetTextureSwapChainBufferVk(long session, long chain, int index, long[] out_Image)Array version of:GetTextureSwapChainBufferVk
-
novr_GetMirrorTextureBufferVk
public static int novr_GetMirrorTextureBufferVk(long session, long mirrorTexture, long[] out_Image)Array version of:novr_GetMirrorTextureBufferVk(long, long, long)
-
ovr_GetMirrorTextureBufferVk
public static int ovr_GetMirrorTextureBufferVk(long session, long mirrorTexture, long[] out_Image)Array version of:GetMirrorTextureBufferVk
-
-