Home
last modified time | relevance | path

Searched refs:DragBehaviorT (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/imgui/
Dimgui_widgets.cpp1730 bool ImGui::DragBehaviorT(ImGuiDataType data_type, TYPE* v, float v_speed, const TYPE v_min, const … in DragBehaviorT() function in ImGui
1849 …case ImGuiDataType_S32: return DragBehaviorT<ImS32, ImS32, float >(data_type, (ImS32*)v, v_spe… in DragBehavior()
1850 …case ImGuiDataType_U32: return DragBehaviorT<ImU32, ImS32, float >(data_type, (ImU32*)v, v_spe… in DragBehavior()
1851 …case ImGuiDataType_S64: return DragBehaviorT<ImS64, ImS64, double>(data_type, (ImS64*)v, v_spe… in DragBehavior()
1852 …case ImGuiDataType_U64: return DragBehaviorT<ImU64, ImS64, double>(data_type, (ImU64*)v, v_spe… in DragBehavior()
1853 …case ImGuiDataType_Float: return DragBehaviorT<float, float, float >(data_type, (float*)v, v_spe… in DragBehavior()
1854 …case ImGuiDataType_Double: return DragBehaviorT<double,double,double>(data_type, (double*)v, v_spe… in DragBehavior()
Dimgui_internal.h1482 …template<typename T, typename SIGNED_T, typename FLOAT_T> IMGUI_API bool DragBehaviorT(ImGuiDat…