| 256 | } |
| 257 | |
| 258 | OVR_PUBLIC_FUNCTION(void) ovr_Destroy(ovrSession session) |
| 259 | { |
| 260 | REV_TRACE(ovr_Destroy); |
| 261 | |
| 262 | // Delete the session from the list of sessions |
| 263 | g_Sessions.erase(std::find_if(g_Sessions.begin(), g_Sessions.end(), [session](ovrHmdStruct const& o) { return &o == session; })); |
| 264 | } |
| 265 | |
| 266 | typedef struct ovrSessionStatus1_ { |
| 267 | ovrBool IsVisible; |
nothing calls this directly
no outgoing calls
no test coverage detected