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

/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui_demo.cpp513 ImGui::DragFloat("drag float", &f1, 0.005f);
514 ImGui::DragFloat("drag small float", &f2, 0.0001f, 0.0f, 0.0f, "%.06f ns");
1648 ImGui::DragFloat("float##1", &f);
1654 ImGui::DragFloat("float##2", &f);
1660 ImGui::DragFloat("float##3", &f);
1666 ImGui::DragFloat("float##4", &f);
1672 ImGui::DragFloat("float##5", &f);
2145 ImGui::DragFloat("##Value", &value, 0.1f, 0.0f, 0.0f);
2930 ImGui::DragFloat("Font scale", &font->Scale, 0.005f, 0.3f, 2.0f, "%.1f"); // Scale only this font
2990 if (ImGui::DragFloat("thi
[all...]
H A Dimgui.h413 IMGUI_API bool DragFloat(const char* label, float* v, float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* format = "%.3f", float power = 1.0f); // If v_min >= v_max we have no bound
H A Dimgui_widgets.cpp14 // [SECTION] Widgets: DragScalar, DragFloat, DragInt, etc.
1710 // [SECTION] Widgets: DragScalar, DragFloat, DragInt, etc.
1716 // - DragFloat()
1965 bool ImGui::DragFloat(const char* label, float* v, float v_speed, float v_min, float v_max, const char* format, float power) function in class:ImGui
1996 bool value_changed = DragFloat("##min", v_current_min, v_speed, (v_min >= v_max) ? -FLT_MAX : v_min, (v_min >= v_max) ? *v_current_max : ImMin(v_max, *v_current_max), format, power);
1999 value_changed |= DragFloat("##max", v_current_max, v_speed, (v_min >= v_max) ? *v_current_min : ImMax(v_min, *v_current_min), (v_min >= v_max) ? FLT_MAX : v_max, format_max ? format_max : format, power);
3906 value_changed |= DragFloat(ids[n], &f[n], 1.0f/255.0f, 0.0f, hdr ? 0.0f : 1.0f, fmt_table_float[fmt_idx][n]);
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui.h413 IMGUI_API bool DragFloat(const char* label, float* v, float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* format = "%.3f", float power = 1.0f); // If v_min >= v_max we have no bound
H A Dimgui_widgets.cpp14 // [SECTION] Widgets: DragScalar, DragFloat, DragInt, etc.
1710 // [SECTION] Widgets: DragScalar, DragFloat, DragInt, etc.
1716 // - DragFloat()
1965 bool ImGui::DragFloat(const char* label, float* v, float v_speed, float v_min, float v_max, const char* format, float power) function in class:ImGui
1996 bool value_changed = DragFloat("##min", v_current_min, v_speed, (v_min >= v_max) ? -FLT_MAX : v_min, (v_min >= v_max) ? *v_current_max : ImMin(v_max, *v_current_max), format, power);
1999 value_changed |= DragFloat("##max", v_current_max, v_speed, (v_min >= v_max) ? *v_current_min : ImMax(v_min, *v_current_min), (v_min >= v_max) ? FLT_MAX : v_max, format_max ? format_max : format, power);
3906 value_changed |= DragFloat(ids[n], &f[n], 1.0f/255.0f, 0.0f, hdr ? 0.0f : 1.0f, fmt_table_float[fmt_idx][n]);

Completed in 45 milliseconds