| 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 | XrResult rs = xrDestroySwapchain(chain->Swapchain); |
| 818 | assert(XR_SUCCEEDED(rs)); |
| 819 | delete[] chain->Images; |
| 820 | delete chain; |
| 821 | } |
| 822 | |
| 823 | OVR_PUBLIC_FUNCTION(void) ovr_DestroyMirrorTexture(ovrSession session, ovrMirrorTexture mirrorTexture) |
| 824 | { |
no outgoing calls
no test coverage detected