mirror of
https://github.com/overte-org/overte.git
synced 2025-04-05 08:52:14 +02:00
Added logging to Oculus Plugin setting
This commit is contained in:
parent
2ad99f91ff
commit
9d5da27101
2 changed files with 6 additions and 0 deletions
|
@ -213,6 +213,7 @@ const OculusPlatformPluginPointer PluginManager::getOculusPlatformPlugin() {
|
|||
std::call_once(once, [&] {
|
||||
// Now grab the dynamic plugins if the setting allows it
|
||||
if (_enableOculusPluginSetting.get()) {
|
||||
qCDebug(plugins) << "PluginManager::getOculusPlatformPlugin: Oculus plugin enabled by a setting";
|
||||
for (auto loader : getLoadedPlugins()) {
|
||||
OculusPlatformProvider* oculusPlatformProvider = qobject_cast<OculusPlatformProvider*>(loader->instance());
|
||||
if (oculusPlatformProvider) {
|
||||
|
@ -220,6 +221,8 @@ const OculusPlatformPluginPointer PluginManager::getOculusPlatformPlugin() {
|
|||
break;
|
||||
}
|
||||
}
|
||||
} else {
|
||||
qCDebug(plugins) << "PluginManager::getOculusPlatformPlugin: Oculus plugin disabled by a setting";
|
||||
}
|
||||
});
|
||||
return oculusPlatformPlugin;
|
||||
|
|
|
@ -55,6 +55,7 @@ bool isOculusPresent() {
|
|||
#ifdef Q_OS_WIN
|
||||
// Only check for Oculus presence if Oculus plugin is enabled
|
||||
if (PluginManager::getInstance()->getEnableOculusPluginSetting()) {
|
||||
qDebug() << "isOculusPresent: Oculus plugin enabled by a setting";
|
||||
HANDLE oculusServiceEvent = ::OpenEventW(SYNCHRONIZE, FALSE, L"OculusHMDConnected");
|
||||
// The existence of the service indicates a running Oculus runtime
|
||||
if (oculusServiceEvent) {
|
||||
|
@ -64,6 +65,8 @@ bool isOculusPresent() {
|
|||
}
|
||||
::CloseHandle(oculusServiceEvent);
|
||||
}
|
||||
} else {
|
||||
qDebug() << "isOculusPresent: Oculus plugin disabled by a setting";
|
||||
}
|
||||
#endif
|
||||
return result;
|
||||
|
|
Loading…
Reference in a new issue