mirror of
https://github.com/overte-org/overte.git
synced 2025-04-14 07:27:04 +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 <gl/Config.h>
|
||||||
#include <shared/GlobalAppProperties.h>
|
#include <shared/GlobalAppProperties.h>
|
||||||
|
|
||||||
#define OVRPL_DISABLED
|
|
||||||
#include <OVR_Platform.h>
|
|
||||||
|
|
||||||
#include "OculusHelpers.h"
|
#include "OculusHelpers.h"
|
||||||
|
|
||||||
using namespace hifi;
|
using namespace hifi;
|
||||||
|
|
|
@ -13,6 +13,9 @@
|
||||||
|
|
||||||
#include <OVR_CAPI_GL.h>
|
#include <OVR_CAPI_GL.h>
|
||||||
|
|
||||||
|
#define OVRPL_DISABLED
|
||||||
|
#include <OVR_Platform.h>
|
||||||
|
|
||||||
class OculusBaseDisplayPlugin : public HmdDisplayPlugin {
|
class OculusBaseDisplayPlugin : public HmdDisplayPlugin {
|
||||||
using Parent = HmdDisplayPlugin;
|
using Parent = HmdDisplayPlugin;
|
||||||
public:
|
public:
|
||||||
|
@ -48,7 +51,7 @@ protected:
|
||||||
bool _isViewerEntitled;
|
bool _isViewerEntitled;
|
||||||
QString _nonce;
|
QString _nonce;
|
||||||
QString _user;
|
QString _user;
|
||||||
uint64_t _userID;
|
ovrID _userID;
|
||||||
ovrSession _session{ nullptr };
|
ovrSession _session{ nullptr };
|
||||||
ovrGraphicsLuid _luid;
|
ovrGraphicsLuid _luid;
|
||||||
std::array<ovrEyeRenderDesc, 2> _eyeRenderDescs;
|
std::array<ovrEyeRenderDesc, 2> _eyeRenderDescs;
|
||||||
|
|
Loading…
Reference in a new issue