Searched refs:lock_threshold (Results 1 – 5 of 5) sorted by relevance
/third_party/flutter/skia/third_party/externals/imgui/ |
D | imgui.cpp | 4063 bool ImGui::IsMouseDragging(int button, float lock_threshold) in IsMouseDragging() argument 4069 if (lock_threshold < 0.0f) in IsMouseDragging() 4070 lock_threshold = g.IO.MouseDragThreshold; in IsMouseDragging() 4071 return g.IO.MouseDragMaxDistanceSqr[button] >= lock_threshold * lock_threshold; in IsMouseDragging() 4100 ImVec2 ImGui::GetMouseDragDelta(int button, float lock_threshold) in GetMouseDragDelta() argument 4104 if (lock_threshold < 0.0f) in GetMouseDragDelta() 4105 lock_threshold = g.IO.MouseDragThreshold; in GetMouseDragDelta() 4107 if (g.IO.MouseDragMaxDistanceSqr[button] >= lock_threshold * lock_threshold) in GetMouseDragDelta()
|
D | imgui.h | 646 …IMGUI_API bool IsMouseDragging(int button = 0, float lock_threshold = -1.0f); // is … 651 …IMGUI_API ImVec2 GetMouseDragDelta(int button = 0, float lock_threshold = -1.0f); // ret…
|
/third_party/skia/third_party/externals/imgui/ |
D | imgui.cpp | 4773 bool ImGui::IsMouseDragPastThreshold(ImGuiMouseButton button, float lock_threshold) in IsMouseDragPastThreshold() argument 4777 if (lock_threshold < 0.0f) in IsMouseDragPastThreshold() 4778 lock_threshold = g.IO.MouseDragThreshold; in IsMouseDragPastThreshold() 4779 return g.IO.MouseDragMaxDistanceSqr[button] >= lock_threshold * lock_threshold; in IsMouseDragPastThreshold() 4782 bool ImGui::IsMouseDragging(ImGuiMouseButton button, float lock_threshold) in IsMouseDragging() argument 4788 return IsMouseDragPastThreshold(button, lock_threshold); in IsMouseDragging() 4829 ImVec2 ImGui::GetMouseDragDelta(ImGuiMouseButton button, float lock_threshold) in GetMouseDragDelta() argument 4833 if (lock_threshold < 0.0f) in GetMouseDragDelta() 4834 lock_threshold = g.IO.MouseDragThreshold; in GetMouseDragDelta() 4836 if (g.IO.MouseDragMaxDistanceSqr[button] >= lock_threshold * lock_threshold) in GetMouseDragDelta()
|
D | imgui.h | 908 …IMGUI_API bool IsMouseDragging(ImGuiMouseButton button, float lock_threshold = -1.0f); … 909 …IMGUI_API ImVec2 GetMouseDragDelta(ImGuiMouseButton button = 0, float lock_threshold = -1.0…
|
D | imgui_internal.h | 2551 …IMGUI_API bool IsMouseDragPastThreshold(ImGuiMouseButton button, float lock_threshold = -…
|