| 1221 | } ovrPerfStats1; |
| 1222 | |
| 1223 | OVR_PUBLIC_FUNCTION(ovrResult) ovr_GetPerfStats(ovrSession session, ovrPerfStats* outStats) |
| 1224 | { |
| 1225 | REV_TRACE(ovr_GetPerfStats); |
| 1226 | |
| 1227 | if (Runtime::Get().MinorVersion < 11) |
| 1228 | memset(outStats, 0, sizeof(ovrPerfStats1)); |
| 1229 | else |
| 1230 | memset(outStats, 0, sizeof(ovrPerfStats)); |
| 1231 | return ovrSuccess; |
| 1232 | } |
| 1233 | |
| 1234 | OVR_PUBLIC_FUNCTION(ovrResult) ovr_ResetPerfStats(ovrSession session) |
| 1235 | { |
nothing calls this directly
no outgoing calls
no test coverage detected