Home
last modified time | relevance | path

Searched refs:ImGuiCond_Always (Results 1 - 8 of 8) sorted by relevance

/third_party/mesa3d/src/vulkan/overlay-layer/
H A Doverlay.cpp904 ImGui::SetNextWindowSize(data->window_size, ImGuiCond_Always); in position_layer()
907 ImGui::SetNextWindowPos(ImVec2(margin, margin), ImGuiCond_Always); in position_layer() local
911 ImGuiCond_Always); in position_layer()
915 ImGuiCond_Always); in position_layer() local
920 ImGuiCond_Always); in position_layer()
/third_party/mesa3d/src/imgui/
H A Dimgui.cpp2534 SetWindowPosAllowFlags = SetWindowSizeAllowFlags = SetWindowCollapsedAllowFlags = ImGuiCond_Always | ImGuiCond_Once | ImGuiCond_FirstUseEver | ImGuiCond_Appearing; in ImGuiWindow()
3121 SetWindowPos(moving_window, pos, ImGuiCond_Always); in UpdateMouseMovingWindowNewFrame()
6184 g.NextWindowData.PosCond = cond ? cond : ImGuiCond_Always; in SetNextWindowPos()
6192 g.NextWindowData.SizeCond = cond ? cond : ImGuiCond_Always; in SetNextWindowSize()
6198 g.NextWindowData.SizeConstraintCond = ImGuiCond_Always; in SetNextWindowSizeConstraints()
6208 g.NextWindowData.ContentSizeCond = ImGuiCond_Always; in SetNextWindowContentSize()
6216 g.NextWindowData.CollapsedCond = cond ? cond : ImGuiCond_Always; in SetNextWindowCollapsed()
6222 g.NextWindowData.FocusCond = ImGuiCond_Always; // Using a Cond member for consistency (may transition all of them to single flag set for fast Clear() op) in SetNextWindowFocus()
6229 g.NextWindowData.BgAlphaCond = ImGuiCond_Always; // Using a Cond member for consistency (may transition all of them to single flag set for fast Clear() op) in SetNextWindowBgAlpha()
8130 SetNextWindowPos(g.IO.DisplaySize * 0.5f, ImGuiCond_Always, ImVec in NavUpdateWindowingList()
[all...]
H A Dimgui.h1151 // Important: Treat as a regular enum! Do NOT combine multiple values using binary operators! All the functions above treat 0 as a shortcut to ImGuiCond_Always.
1154 ImGuiCond_Always = 1 << 0, // Set the variable enumerator
1161 , ImGuiSetCond_Always = ImGuiCond_Always, ImGuiSetCond_Once = ImGuiCond_Once, ImGuiSetCond_FirstUseEver = ImGuiCond_FirstUseEver, ImGuiSetCond_Appearing = ImGuiCond_Appearing
H A Dimgui_widgets.cpp4725 if (g.NextTreeNodeOpenCond & ImGuiCond_Always)
4973 g.NextTreeNodeOpenCond = cond ? cond : ImGuiCond_Always;
5718 SetNextWindowPos(popup_pos, ImGuiCond_Always);
/third_party/skia/third_party/externals/imgui/
H A Dimgui.cpp582 - 2017/08/11 (1.51) - renamed ImGuiSetCond_Always to ImGuiCond_Always, ImGuiSetCond_Once to ImGuiCond_Once, ImGuiSetCond_FirstUseEver to ImGuiCond_FirstUseEver, ImGuiSetCond_Appearing to ImGuiCond_Appearing. Kept redirection enums (will obsolete).
2949 SetWindowPosAllowFlags = SetWindowSizeAllowFlags = SetWindowCollapsedAllowFlags = ImGuiCond_Always | ImGuiCond_Once | ImGuiCond_FirstUseEver | ImGuiCond_Appearing; in ImGuiWindow()
3592 SetWindowPos(moving_window, pos, ImGuiCond_Always); in UpdateMouseMovingWindowNewFrame()
6974 g.NextWindowData.PosCond = cond ? cond : ImGuiCond_Always; in SetNextWindowPos()
6983 g.NextWindowData.SizeCond = cond ? cond : ImGuiCond_Always; in SetNextWindowSize()
7017 g.NextWindowData.CollapsedCond = cond ? cond : ImGuiCond_Always; in SetNextWindowCollapsed()
9996 SetWindowPos(moving_window, moving_window->Pos + move_delta * move_speed, ImGuiCond_Always); in NavUpdateWindowing()
10081 SetNextWindowPos(viewport->GetCenter(), ImGuiCond_Always, ImVec2(0.5f, 0.5f)); in NavUpdateWindowingOverlay()
10257 cond = ImGuiCond_Always; in SetDragDropPayload()
10262 IM_ASSERT(cond == ImGuiCond_Always || con in SetDragDropPayload()
[all...]
H A Dimgui_widgets.cpp5783 if (g.NextItemData.OpenCond & ImGuiCond_Always)
6065 g.NextItemData.OpenCond = cond ? cond : ImGuiCond_Always;
6974 SetNextWindowPos(popup_pos, ImGuiCond_Always); // Note: this is super misleading! The value will serve as reference for FindBestWindowPosForPopup(), not actual pos.
H A Dimgui.h1653 // Important: Treat as a regular enum! Do NOT combine multiple values using binary operators! All the functions above treat 0 as a shortcut to ImGuiCond_Always.
1657 ImGuiCond_Always = 1 << 0, // No condition (always set the variable) enumerator
H A Dimgui_demo.cpp7042 ImGui::SetNextWindowPos(window_pos, ImGuiCond_Always, window_pos_pivot);

Completed in 134 milliseconds