mirror of
https://github.com/overte-org/overte.git
synced 2025-04-05 19:00:28 +02:00
Add missing namespace
This commit is contained in:
parent
1b95f97457
commit
84055beba1
1 changed files with 3 additions and 0 deletions
|
@ -2388,7 +2388,10 @@ void Application::update(float deltaTime) {
|
|||
PerformanceTimer perfTimer("squeezeVision");
|
||||
_visionSqueeze.updateVisionSqueeze(myAvatar->getSensorToWorldMatrix(), deltaTime);
|
||||
|
||||
// XRTODO: won't this impact performance, especially on slower CPUs?
|
||||
// I think it will also affect OpenVR
|
||||
// FIXME HACK: OpenXR doesn't limit the game rate for some reason and wastes cpu time
|
||||
using namespace std::chrono_literals;
|
||||
std::this_thread::sleep_for(5ms);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue