MCPcopy Create free account
hub / github.com/LibreVR/Revive / ovr_GetTextureSwapChainDesc

Function ovr_GetTextureSwapChainDesc

ReviveXR/REV_CAPI.cpp:780–790  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

778}
779
780OVR_PUBLIC_FUNCTION(ovrResult) ovr_GetTextureSwapChainDesc(ovrSession session, ovrTextureSwapChain chain, ovrTextureSwapChainDesc* out_Desc)
781{
782 REV_TRACE(ovr_GetTextureSwapChainDesc);
783
784 if (!chain)
785 return ovrError_InvalidParameter;
786
787 MICROPROFILE_META_CPU("Identifier", PtrToInt(chain->Swapchain));
788 *out_Desc = chain->Desc;
789 return ovrSuccess;
790}
791
792OVR_PUBLIC_FUNCTION(ovrResult) ovr_CommitTextureSwapChain(ovrSession session, ovrTextureSwapChain chain)
793{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected