| 821 | } |
| 822 | |
| 823 | OVR_PUBLIC_FUNCTION(void) ovr_DestroyMirrorTexture(ovrSession session, ovrMirrorTexture mirrorTexture) |
| 824 | { |
| 825 | REV_TRACE(ovr_DestroyMirrorTexture); |
| 826 | |
| 827 | if (!mirrorTexture) |
| 828 | return; |
| 829 | |
| 830 | ovr_DestroyTextureSwapChain(session, mirrorTexture->Dummy); |
| 831 | delete mirrorTexture; |
| 832 | } |
| 833 | |
| 834 | OVR_PUBLIC_FUNCTION(ovrSizei) ovr_GetFovTextureSize(ovrSession session, ovrEyeType eye, ovrFovPort fov, float pixelsPerDisplayPixel) |
| 835 | { |
nothing calls this directly
no test coverage detected