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

Function ovr_DestroyTextureSwapChain

ReviveXR/REV_CAPI.cpp:810–821  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

808}
809
810OVR_PUBLIC_FUNCTION(void) ovr_DestroyTextureSwapChain(ovrSession session, ovrTextureSwapChain chain)
811{
812 REV_TRACE(ovr_DestroyTextureSwapChain);
813
814 if (!chain)
815 return;
816
817 XrResult rs = xrDestroySwapchain(chain->Swapchain);
818 assert(XR_SUCCEEDED(rs));
819 delete[] chain->Images;
820 delete chain;
821}
822
823OVR_PUBLIC_FUNCTION(void) ovr_DestroyMirrorTexture(ovrSession session, ovrMirrorTexture mirrorTexture)
824{

Callers 1

ovr_DestroyMirrorTextureFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected