mirror of
https://github.com/overte-org/overte.git
synced 2025-08-05 22:09:02 +02:00
rebase fix
This commit is contained in:
parent
ed13c02075
commit
8a7871e15b
2 changed files with 5 additions and 1 deletions
|
@ -191,7 +191,7 @@ void OctreeServer::trackPacketSendingTime(float time) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void OctreeServer::trackProcessWaitTime(float time)
|
void OctreeServer::trackProcessWaitTime(float time) {
|
||||||
const float MAX_SHORT_TIME = 10.0f;
|
const float MAX_SHORT_TIME = 10.0f;
|
||||||
const float MAX_LONG_TIME = 100.0f;
|
const float MAX_LONG_TIME = 100.0f;
|
||||||
if (time == SKIP_TIME) {
|
if (time == SKIP_TIME) {
|
||||||
|
|
|
@ -70,3 +70,7 @@ void HMDScriptingInterface::toggleMagnifier() {
|
||||||
bool HMDScriptingInterface::getMagnifier() const {
|
bool HMDScriptingInterface::getMagnifier() const {
|
||||||
return qApp->getApplicationCompositor().hasMagnifier();
|
return qApp->getApplicationCompositor().hasMagnifier();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool HMDScriptingInterface::isHMDMode() const {
|
||||||
|
return qApp->isHMDMode();
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue