Home
last modified time | relevance | path

Searched refs:GetMouseDragDelta (Results 1 - 5 of 5) sorted by relevance

/third_party/skia/third_party/externals/imgui/
H A Dimgui_demo.cpp2179 int n_next = n + (ImGui::GetMouseDragDelta(0).y < 0.f ? -1 : 1); in ShowDemoWindowWidgets()
5610 ImGui::TextWrapped("You can use ImGui::GetMouseDragDelta(0) to query for the dragged amount on any widget.");
5625 // threshold using the second parameter of IsMouseDragging() and GetMouseDragDelta().
5626 ImVec2 value_raw = ImGui::GetMouseDragDelta(0, 0.0f);
5627 ImVec2 value_with_lock_threshold = ImGui::GetMouseDragDelta(0);
5629 ImGui::Text("GetMouseDragDelta(0):");
7326 ImVec2 drag_delta = ImGui::GetMouseDragDelta(ImGuiMouseButton_Right);
H A Dimgui.h909 IMGUI_API ImVec2 GetMouseDragDelta(ImGuiMouseButton button = 0, float lock_threshold = -1.0f); // return the delta from the initial clicking position while the mouse button is pressed or was just released. This is locked and return 0.0f until the mouse moves past a distance threshold at least once (if lock_threshold < -1.0f, uses io.MouseDraggingThreshold)
H A Dimgui.cpp4829 ImVec2 ImGui::GetMouseDragDelta(ImGuiMouseButton button, float lock_threshold) in GetMouseDragDelta() function in ImGui
/third_party/mesa3d/src/imgui/
H A Dimgui.h658 IMGUI_API ImVec2 GetMouseDragDelta(int button = 0, float lock_threshold = -1.0f); // return the delta from the initial clicking position. This is locked and return 0.0f until the mouse moves past a distance threshold at least once. If lock_threshold < -1.0f uses io.MouseDraggingThreshold
H A Dimgui.cpp4166 ImVec2 ImGui::GetMouseDragDelta(int button, float lock_threshold) in GetMouseDragDelta() function in ImGui

Completed in 71 milliseconds