Add missing namespace

This commit is contained in:
Karol Suprynowicz 2025-03-07 22:21:53 +01:00 committed by Ada
parent 1b95f97457
commit 84055beba1

View file

@ -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);
}
}