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