| 881 | } |
| 882 | |
| 883 | OVR_PUBLIC_FUNCTION(ovrResult) ovr_WaitToBeginFrame(ovrSession session, long long frameIndex) |
| 884 | { |
| 885 | REV_TRACE(ovr_WaitToBeginFrame); |
| 886 | MICROPROFILE_META_CPU("Wait Frame", (int)frameIndex); |
| 887 | |
| 888 | if (!session || !session->Compositor) |
| 889 | return ovrError_InvalidSession; |
| 890 | |
| 891 | return session->Compositor->WaitToBeginFrame(session, frameIndex); |
| 892 | } |
| 893 | |
| 894 | OVR_PUBLIC_FUNCTION(ovrResult) ovr_BeginFrame(ovrSession session, long long frameIndex) |
| 895 | { |
nothing calls this directly
no test coverage detected