Searched refs:preview_value (Results 1 – 2 of 2) sorted by relevance
/external/mesa3d/src/imgui/ |
D | imgui_widgets.cpp | 1280 bool ImGui::BeginCombo(const char* label, const char* preview_value, ImGuiComboFlags flags) in BeginCombo() argument 1320 if (preview_value != NULL && !(flags & ImGuiComboFlags_NoPreview)) in BeginCombo() 1321 …RenderTextClipped(frame_bb.Min + style.FramePadding, value_bb.Max, preview_value, NULL, NULL, ImVe… in BeginCombo() 1423 const char* preview_value = NULL; in Combo() local 1425 items_getter(data, *current_item, &preview_value); in Combo() 1431 if (!BeginCombo(label, preview_value, ImGuiComboFlags_None)) in Combo()
|
D | imgui.h | 402 …IMGUI_API bool BeginCombo(const char* label, const char* preview_value, ImGuiComboFlags f…
|