Searched refs:KeyRepeatRate (Results 1 – 10 of 10) sorted by relevance
/third_party/flutter/skia/third_party/externals/imgui/ |
D | imgui.cpp | 1151 KeyRepeatRate = 0.050f; in ImGuiIO() 4003 return GetKeyPressedAmount(user_key_index, g.IO.KeyRepeatDelay, g.IO.KeyRepeatRate) > 0; in IsKeyPressed() 4041 float delay = g.IO.KeyRepeatDelay, rate = g.IO.KeyRepeatRate; in IsMouseClicked() 7369 …ressedRepeatAmount(t, t - g.IO.DeltaTime, g.IO.KeyRepeatDelay * 0.80f, g.IO.KeyRepeatRate * 0.80f); in GetNavInputAmount() 7371 …ressedRepeatAmount(t, t - g.IO.DeltaTime, g.IO.KeyRepeatDelay * 1.00f, g.IO.KeyRepeatRate * 2.00f); in GetNavInputAmount() 7373 …ressedRepeatAmount(t, t - g.IO.DeltaTime, g.IO.KeyRepeatDelay * 0.80f, g.IO.KeyRepeatRate * 0.30f); in GetNavInputAmount()
|
D | imgui.h | 1289 …float KeyRepeatRate; // = 0.050f // When holding a key/button, rate… member
|
D | imgui_widgets.cpp | 6184 const float backup_repeat_rate = g.IO.KeyRepeatRate; in TabBarScrollingButtons() 6186 g.IO.KeyRepeatRate = 0.200f; in TabBarScrollingButtons() 6194 g.IO.KeyRepeatRate = backup_repeat_rate; in TabBarScrollingButtons()
|
/third_party/mesa3d/src/imgui/ |
D | imgui.cpp | 1162 KeyRepeatRate = 0.050f; in ImGuiIO() 4067 return GetKeyPressedAmount(user_key_index, g.IO.KeyRepeatDelay, g.IO.KeyRepeatRate) > 0; in IsKeyPressed() 4105 float delay = g.IO.KeyRepeatDelay, rate = g.IO.KeyRepeatRate; in IsMouseClicked() 7514 …ressedRepeatAmount(t, t - g.IO.DeltaTime, g.IO.KeyRepeatDelay * 0.80f, g.IO.KeyRepeatRate * 0.80f); in GetNavInputAmount() 7516 …ressedRepeatAmount(t, t - g.IO.DeltaTime, g.IO.KeyRepeatDelay * 1.00f, g.IO.KeyRepeatRate * 2.00f); in GetNavInputAmount() 7518 …ressedRepeatAmount(t, t - g.IO.DeltaTime, g.IO.KeyRepeatDelay * 0.80f, g.IO.KeyRepeatRate * 0.30f); in GetNavInputAmount()
|
D | imgui.h | 1298 …float KeyRepeatRate; // = 0.050f // When holding a key/button, rate… member
|
D | imgui_widgets.cpp | 6229 const float backup_repeat_rate = g.IO.KeyRepeatRate; in TabBarScrollingButtons() 6231 g.IO.KeyRepeatRate = 0.200f; in TabBarScrollingButtons() 6239 g.IO.KeyRepeatRate = backup_repeat_rate; in TabBarScrollingButtons()
|
/third_party/skia/third_party/externals/imgui/ |
D | imgui.cpp | 1090 KeyRepeatRate = 0.050f; in ImGuiIO() 4720 return GetKeyPressedAmount(user_key_index, g.IO.KeyRepeatDelay, g.IO.KeyRepeatRate) > 0; in IsKeyPressed() 4750 … CalcTypematicRepeatAmount(t - g.IO.DeltaTime, t, g.IO.KeyRepeatDelay, g.IO.KeyRepeatRate * 0.50f); in IsMouseClicked() 9248 …ematicRepeatAmount(t - g.IO.DeltaTime, t, g.IO.KeyRepeatDelay * 0.72f, g.IO.KeyRepeatRate * 0.80f); in GetNavInputAmount() 9250 …ematicRepeatAmount(t - g.IO.DeltaTime, t, g.IO.KeyRepeatDelay * 1.25f, g.IO.KeyRepeatRate * 2.00f); in GetNavInputAmount() 9252 …ematicRepeatAmount(t - g.IO.DeltaTime, t, g.IO.KeyRepeatDelay * 0.72f, g.IO.KeyRepeatRate * 0.30f); in GetNavInputAmount()
|
D | imgui.h | 1838 …float KeyRepeatRate; // = 0.050f // When holding a key/button, rate… member
|
D | imgui_widgets.cpp | 7710 const float backup_repeat_rate = g.IO.KeyRepeatRate; in TabBarScrollingButtons() 7712 g.IO.KeyRepeatRate = 0.200f; in TabBarScrollingButtons() 7721 g.IO.KeyRepeatRate = backup_repeat_rate; in TabBarScrollingButtons()
|
/third_party/skia/third_party/externals/imgui/docs/ |
D | CHANGELOG.txt | 1111 If you were using a non-default value for io.KeyRepeatRate (previous default was 0.250), you can 1114 …Effectively it made io.KeyRepeatRate behave like it was set to (io.KeyRepeatRate + io.KeyRepeatDel… 1115 …Fixed the code and altered default io.KeyRepeatRate,Delay from 0.250,0.050 to 0.300,0.050 to compe… 1116 If you never altered io.KeyRepeatRate nor used GetKeyPressedAmount() this won't affect you. 3228 - Added configurable io.KeyRepeatDelay, io.KeyRepeatRate keyboard and mouse repeat rate.
|