Searched refs:KeyRepeatDelay (Results 1 – 3 of 3) sorted by relevance
/external/mesa3d/src/imgui/ |
D | imgui.cpp | 1161 KeyRepeatDelay = 0.250f; in ImGuiIO() 4066 if (repeat && t > g.IO.KeyRepeatDelay) in IsKeyPressed() 4067 return GetKeyPressedAmount(user_key_index, g.IO.KeyRepeatDelay, g.IO.KeyRepeatRate) > 0; in IsKeyPressed() 4103 if (repeat && t > g.IO.KeyRepeatDelay) in IsMouseClicked() 4105 float delay = g.IO.KeyRepeatDelay, rate = g.IO.KeyRepeatRate; in IsMouseClicked() 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()
|
D | imgui_widgets.cpp | 470 … & ImGuiButtonFlags_Repeat) && g.IO.MouseDownDurationPrev[0] >= g.IO.KeyRepeatDelay)) // Repeat m… in ButtonBehavior() 523 … & ImGuiButtonFlags_Repeat) && g.IO.MouseDownDurationPrev[0] >= g.IO.KeyRepeatDelay)) // Repeat m… in ButtonBehavior() 6228 const float backup_repeat_delay = g.IO.KeyRepeatDelay; in TabBarScrollingButtons() 6230 g.IO.KeyRepeatDelay = 0.250f; in TabBarScrollingButtons() 6240 g.IO.KeyRepeatDelay = backup_repeat_delay; in TabBarScrollingButtons()
|
D | imgui.h | 1297 …float KeyRepeatDelay; // = 0.250f // When holding a key/button, time… member
|