mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-06 14:23:23 +02:00
only initialize plugin if oculus store starting
This commit is contained in:
parent
1c6521486e
commit
09770920a8
1 changed files with 6 additions and 2 deletions
|
@ -17,11 +17,15 @@
|
|||
QString OculusAPIPlugin::NAME { "Oculus Rift" };
|
||||
|
||||
OculusAPIPlugin::OculusAPIPlugin() {
|
||||
_session = hifi::ovr::acquireRenderSession();
|
||||
if (isRunning()) {
|
||||
_session = hifi::ovr::acquireRenderSession();
|
||||
}
|
||||
}
|
||||
|
||||
OculusAPIPlugin::~OculusAPIPlugin() {
|
||||
hifi::ovr::releaseRenderSession(_session);
|
||||
if (isRunning()) {
|
||||
hifi::ovr::releaseRenderSession(_session);
|
||||
}
|
||||
}
|
||||
|
||||
bool OculusAPIPlugin::isRunning() const {
|
||||
|
|
Loading…
Reference in a new issue