mirror of
https://github.com/overte-org/overte.git
synced 2025-04-06 21:12:50 +02:00
changing user id variable type
This commit is contained in:
parent
a24ebe2718
commit
704f005604
2 changed files with 4 additions and 4 deletions
|
@ -14,9 +14,6 @@
|
|||
#include <gl/Config.h>
|
||||
#include <shared/GlobalAppProperties.h>
|
||||
|
||||
#define OVRPL_DISABLED
|
||||
#include <OVR_Platform.h>
|
||||
|
||||
#include "OculusHelpers.h"
|
||||
|
||||
using namespace hifi;
|
||||
|
|
|
@ -13,6 +13,9 @@
|
|||
|
||||
#include <OVR_CAPI_GL.h>
|
||||
|
||||
#define OVRPL_DISABLED
|
||||
#include <OVR_Platform.h>
|
||||
|
||||
class OculusBaseDisplayPlugin : public HmdDisplayPlugin {
|
||||
using Parent = HmdDisplayPlugin;
|
||||
public:
|
||||
|
@ -48,7 +51,7 @@ protected:
|
|||
bool _isViewerEntitled;
|
||||
QString _nonce;
|
||||
QString _user;
|
||||
uint64_t _userID;
|
||||
ovrID _userID;
|
||||
ovrSession _session{ nullptr };
|
||||
ovrGraphicsLuid _luid;
|
||||
std::array<ovrEyeRenderDesc, 2> _eyeRenderDescs;
|
||||
|
|
Loading…
Reference in a new issue