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

Function ovr_GetTextureSwapChainDesc

Revive/REV_CAPI.cpp:771–781  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

769}
770
771OVR_PUBLIC_FUNCTION(ovrResult) ovr_GetTextureSwapChainDesc(ovrSession session, ovrTextureSwapChain chain, ovrTextureSwapChainDesc* out_Desc)
772{
773 REV_TRACE(ovr_GetTextureSwapChainDesc);
774
775 if (!chain)
776 return ovrError_InvalidParameter;
777
778 MICROPROFILE_META_CPU("Identifier", chain->Identifier);
779 *out_Desc = chain->Desc;
780 return ovrSuccess;
781}
782
783OVR_PUBLIC_FUNCTION(ovrResult) ovr_CommitTextureSwapChain(ovrSession session, ovrTextureSwapChain chain)
784{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected