diff options
author | Brad Davis <[email protected]> | 2014-09-04 14:32:18 -0700 |
---|---|---|
committer | Brad Davis <[email protected]> | 2014-09-04 14:32:18 -0700 |
commit | 32dc394487af8e4fb1b43fb852f1d5448eaf7f31 (patch) | |
tree | be53f49e96e8e2bba1dada04197cf508b60b4eaf /LibOVR/Src/Tracking/Tracking_SensorState.h | |
parent | 85d370840fa4d49a63331a203460fe763288d417 (diff) |
Updating to windows 0.4.2
Diffstat (limited to 'LibOVR/Src/Tracking/Tracking_SensorState.h')
-rw-r--r-- | LibOVR/Src/Tracking/Tracking_SensorState.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/LibOVR/Src/Tracking/Tracking_SensorState.h b/LibOVR/Src/Tracking/Tracking_SensorState.h index 12072c0..b7c87ea 100644 --- a/LibOVR/Src/Tracking/Tracking_SensorState.h +++ b/LibOVR/Src/Tracking/Tracking_SensorState.h @@ -89,6 +89,11 @@ public: // Sensor status described by ovrStatusBits. uint32_t StatusFlags; + + //// 0.4.1 + + // Time spent processing the last vision frame + double LastVisionProcessingTime; }; @@ -110,6 +115,7 @@ struct LocklessSensorState // ImuFromCpf for HMD pose tracking Posed ImuFromCpf; + double LastVisionProcessingTime; // Initialized to invalid state LocklessSensorState() : @@ -119,7 +125,7 @@ struct LocklessSensorState LocklessSensorState& operator = (const LocklessSensorStatePadding& rhs); }; - + // Padded out version stored in the updater slots // Designed to be a larger fixed size to allow the data to grow in the future // without breaking older compiled code. |