| 147 | } |
| 148 | |
| 149 | ovrResult CompositorBase::BeginFrame(ovrSession session, long long frameIndex) |
| 150 | { |
| 151 | MICROPROFILE_SCOPE(BeginFrame); |
| 152 | |
| 153 | if (m_TimingMode == vr::VRCompositorTimingMode_Implicit) |
| 154 | return ovrSuccess; |
| 155 | |
| 156 | return CompositorErrorToOvrError(vr::VRCompositor()->SubmitExplicitTimingData()); |
| 157 | } |
| 158 | |
| 159 | const ovrLayer_Union& CompositorBase::ToUnion(const ovrLayerHeader* layerPtr) |
| 160 | { |
no outgoing calls
no test coverage detected