• Home
  • Raw
  • Download

Lines Matching refs:DeltaTime

1153     DeltaTime = 1.0f/60.0f;  in ImGuiIO()
3221 …] ? (g.IO.MouseDownDuration[i] < 0.0f ? 0.0f : g.IO.MouseDownDuration[i] + g.IO.DeltaTime) : -1.0f; in UpdateMouseInputs()
3369 …IM_ASSERT((g.IO.DeltaTime > 0.0f || g.FrameCount == 0) && "Need a positive DeltaTime!… in NewFrame()
3399 g.SettingsDirtyTimer -= g.IO.DeltaTime; in NewFrame()
3410 g.Time += g.IO.DeltaTime; in NewFrame()
3441 g.HoveredIdTimer += g.IO.DeltaTime; in NewFrame()
3443 g.HoveredIdNotActiveTimer += g.IO.DeltaTime; in NewFrame()
3450 g.ActiveIdTimer += g.IO.DeltaTime; in NewFrame()
3451 g.LastActiveIdTimer += g.IO.DeltaTime; in NewFrame()
3470 …[i] ? (g.IO.KeysDownDuration[i] < 0.0f ? 0.0f : g.IO.KeysDownDuration[i] + g.IO.DeltaTime) : -1.0f; in NewFrame()
3479 … g.FramerateSecPerFrameAccum += g.IO.DeltaTime - g.FramerateSecPerFrame[g.FramerateSecPerFrameIdx]; in NewFrame()
3480 g.FramerateSecPerFrame[g.FramerateSecPerFrameIdx] = g.IO.DeltaTime; in NewFrame()
3490 g.DimBgRatio = ImMin(g.DimBgRatio + g.IO.DeltaTime * 6.0f, 1.0f); in NewFrame()
3492 g.DimBgRatio = ImMax(g.DimBgRatio - g.IO.DeltaTime * 10.0f, 0.0f); in NewFrame()
4054 return CalcTypematicPressedRepeatAmount(t, t - g.IO.DeltaTime, repeat_delay, repeat_rate); in GetKeyPressedAmount()
4106 …if ((ImFmod(t - delay, rate) > rate*0.5f) != (ImFmod(t - delay - g.IO.DeltaTime, rate) > rate*0.5f… in IsMouseClicked()
4783 …nav_resize_delta *= ImFloor(NAV_RESIZE_SPEED * g.IO.DeltaTime * ImMin(g.IO.DisplayFramebufferScale… in UpdateManualResize()
7514 …return (float)CalcTypematicPressedRepeatAmount(t, t - g.IO.DeltaTime, g.IO.KeyRepeatDelay * 0.80f,… in GetNavInputAmount()
7516 …return (float)CalcTypematicPressedRepeatAmount(t, t - g.IO.DeltaTime, g.IO.KeyRepeatDelay * 1.00f,… in GetNavInputAmount()
7518 …return (float)CalcTypematicPressedRepeatAmount(t, t - g.IO.DeltaTime, g.IO.KeyRepeatDelay * 0.80f,… in GetNavInputAmount()
7603 …O.NavInputsDownDuration[i] < 0.0f ? 0.0f : g.IO.NavInputsDownDuration[i] + g.IO.DeltaTime) : -1.0f; in NavUpdate()
7779 …const float scroll_speed = ImFloor(window->CalcFontSize() * 100 * g.IO.DeltaTime + 0.5f); // We ne… in NavUpdate()
7990 … g.NavWindowingHighlightAlpha = ImMax(g.NavWindowingHighlightAlpha - g.IO.DeltaTime * 10.0f, 0.0f); in NavUpdateWindowing()
8008 g.NavWindowingTimer += g.IO.DeltaTime; in NavUpdateWindowing()
8062 …const float move_speed = ImFloor(NAV_MOVE_SPEED * g.IO.DeltaTime * ImMin(g.IO.DisplayFramebufferSc… in NavUpdateWindowing()