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

/xsrc/external/mit/MesaLib.old/dist/src/imgui/
H A Dimgui.h803 ImGuiComboFlags_NoArrowButton = 1 << 5, // Display on the preview box without the square arrow button enumerator in enum:ImGuiComboFlags_
H A Dimgui_widgets.cpp1291 IM_ASSERT((flags & (ImGuiComboFlags_NoArrowButton | ImGuiComboFlags_NoPreview)) != (ImGuiComboFlags_NoArrowButton | ImGuiComboFlags_NoPreview)); // Can't use both flags together
1296 const float arrow_size = (flags & ImGuiComboFlags_NoArrowButton) ? 0.0f : GetFrameHeight();
1314 if (!(flags & ImGuiComboFlags_NoArrowButton))
H A Dimgui_demo.cpp770 if (ImGui::CheckboxFlags("ImGuiComboFlags_NoArrowButton", (unsigned int*)&flags, ImGuiComboFlags_NoArrowButton))
773 flags &= ~ImGuiComboFlags_NoArrowButton; // Clear the other flag, as we cannot combine both
/xsrc/external/mit/MesaLib/dist/src/imgui/
H A Dimgui.h803 ImGuiComboFlags_NoArrowButton = 1 << 5, // Display on the preview box without the square arrow button enumerator in enum:ImGuiComboFlags_
H A Dimgui_widgets.cpp1291 IM_ASSERT((flags & (ImGuiComboFlags_NoArrowButton | ImGuiComboFlags_NoPreview)) != (ImGuiComboFlags_NoArrowButton | ImGuiComboFlags_NoPreview)); // Can't use both flags together
1296 const float arrow_size = (flags & ImGuiComboFlags_NoArrowButton) ? 0.0f : GetFrameHeight();
1314 if (!(flags & ImGuiComboFlags_NoArrowButton))

Completed in 47 milliseconds