Fixing warnings

This commit is contained in:
Brad Davis 2016-02-16 16:57:45 -08:00
parent d61f4fbb25
commit d1583e8cbe
2 changed files with 1 additions and 1 deletions

View file

@ -46,7 +46,6 @@ private:
mutable ovrTrackingState _trackingState;
ovrEyeRenderDesc _eyeRenderDescs[2];
ovrFovPort _eyeFovs[2];
mutable ovrPosef _eyePoses[2];
//ovrTexture _eyeTextures[2]; // FIXME - not currently in use
mutable int _hmdScreen { -1 };
bool _hswDismissed { false };

View file

@ -16,6 +16,7 @@
Q_DECLARE_LOGGING_CATEGORY(displayplugins)
Q_LOGGING_CATEGORY(displayplugins, "hifi.plugins.display")
using Mutex = std::mutex;
using Lock = std::unique_lock<Mutex>;