| 1188 | } ovrViewScaleDesc1; |
| 1189 | |
| 1190 | OVR_PUBLIC_FUNCTION(ovrResult) ovr_SubmitFrame(ovrSession session, long long frameIndex, const ovrViewScaleDesc1* viewScaleDesc, |
| 1191 | ovrLayerHeader const * const * layerPtrList, unsigned int layerCount) |
| 1192 | { |
| 1193 | // TODO: We don't ever use viewScaleDesc so no need to do any conversion. |
| 1194 | return ovr_SubmitFrame2(session, frameIndex, nullptr, layerPtrList, layerCount); |
| 1195 | } |
| 1196 | |
| 1197 | typedef struct OVR_ALIGNAS(4) ovrPerfStatsPerCompositorFrame1_ |
| 1198 | { |
nothing calls this directly
no test coverage detected