Searched refs:limitHz (Results 1 – 3 of 3) sorted by relevance
210 …constexpr auto limitHz = duration_cast<microseconds>(duration<float, std::ratio<1, 15u>>(1)).count… in TickFrame() local211 if (deltaTime_ > limitHz) { in TickFrame()212 deltaTime_ = limitHz; // clamp the time step to no longer than 15hz. in TickFrame()
1016 …constexpr auto limitHz = duration_cast<microseconds>(duration<float, std::ratio<1, 15u>>(1)).count… in Tick() local1017 if (deltaTime_ > limitHz) { in Tick()1018 deltaTime_ = limitHz; // clamp the time step to no longer than 15hz. in Tick()
348 …constexpr auto limitHz = duration_cast<microseconds>(duration<float, std::ratio<1, 15u>>(1)).count… in RenderCameras() local349 if (deltaTime > limitHz) { in RenderCameras()350 deltaTime = limitHz; // clampthe time step to no longer than 15hz. in RenderCameras()