| 808 | } |
| 809 | |
| 810 | OVR_PUBLIC_FUNCTION(void) ovr_DestroyTextureSwapChain(ovrSession session, ovrTextureSwapChain chain) |
| 811 | { |
| 812 | REV_TRACE(ovr_DestroyTextureSwapChain); |
| 813 | |
| 814 | if (!chain) |
| 815 | return; |
| 816 | |
| 817 | MICROPROFILE_META_CPU("Identifier", chain->Identifier); |
| 818 | vr::VROverlay()->DestroyOverlay(chain->Overlay); |
| 819 | delete chain; |
| 820 | } |
| 821 | |
| 822 | OVR_PUBLIC_FUNCTION(void) ovr_DestroyMirrorTexture(ovrSession session, ovrMirrorTexture mirrorTexture) |
| 823 | { |
nothing calls this directly
no outgoing calls
no test coverage detected