Home
last modified time | relevance | path

Searched refs:ImGuiCond (Results 1 – 4 of 4) sorted by relevance

/external/mesa3d/src/imgui/
Dimgui_internal.h708 ImGuiCond PosCond;
709 ImGuiCond SizeCond;
710 ImGuiCond ContentSizeCond;
711 ImGuiCond CollapsedCond;
712 ImGuiCond SizeConstraintCond;
713 ImGuiCond FocusCond;
714 ImGuiCond BgAlphaCond;
817 ImGuiCond NextTreeNodeOpenCond;
1170ImGuiCond SetWindowPosAllowFlags; // store acceptable condition flags fo…
1171ImGuiCond SetWindowSizeAllowFlags; // store acceptable condition flags fo…
[all …]
Dimgui.h125 typedef int ImGuiCond; // -> enum ImGuiCond_ // Enum: A condition for Set*() typedef
271 …IMGUI_API void SetNextWindowPos(const ImVec2& pos, ImGuiCond cond = 0, const ImVec2& pivo…
272 …IMGUI_API void SetNextWindowSize(const ImVec2& size, ImGuiCond cond = 0); …
275 …IMGUI_API void SetNextWindowCollapsed(bool collapsed, ImGuiCond cond = 0); …
278 …IMGUI_API void SetWindowPos(const ImVec2& pos, ImGuiCond cond = 0); …
279 …IMGUI_API void SetWindowSize(const ImVec2& size, ImGuiCond cond = 0); …
280 …IMGUI_API void SetWindowCollapsed(bool collapsed, ImGuiCond cond = 0); …
283 …IMGUI_API void SetWindowPos(const char* name, const ImVec2& pos, ImGuiCond cond = 0); …
284 …IMGUI_API void SetWindowSize(const char* name, const ImVec2& size, ImGuiCond cond = 0); …
285 …IMGUI_API void SetWindowCollapsed(const char* name, bool collapsed, ImGuiCond cond = 0); …
[all …]
Dimgui.cpp4459 static void SetWindowConditionAllowFlags(ImGuiWindow* window, ImGuiCond flags, bool enabled) in SetWindowConditionAllowFlags()
6048 void ImGui::SetWindowPos(ImGuiWindow* window, const ImVec2& pos, ImGuiCond cond) in SetWindowPos()
6065 void ImGui::SetWindowPos(const ImVec2& pos, ImGuiCond cond) in SetWindowPos()
6071 void ImGui::SetWindowPos(const char* name, const ImVec2& pos, ImGuiCond cond) in SetWindowPos()
6083 void ImGui::SetWindowSize(ImGuiWindow* window, const ImVec2& size, ImGuiCond cond) in SetWindowSize()
6115 void ImGui::SetWindowSize(const ImVec2& size, ImGuiCond cond) in SetWindowSize()
6120 void ImGui::SetWindowSize(const char* name, const ImVec2& size, ImGuiCond cond) in SetWindowSize()
6126 void ImGui::SetWindowCollapsed(ImGuiWindow* window, bool collapsed, ImGuiCond cond) in SetWindowCollapsed()
6137 void ImGui::SetWindowCollapsed(bool collapsed, ImGuiCond cond) in SetWindowCollapsed()
6154 void ImGui::SetWindowCollapsed(const char* name, bool collapsed, ImGuiCond cond) in SetWindowCollapsed()
[all …]
Dimgui_widgets.cpp1284 ImGuiCond backup_next_window_size_constraint = g.NextWindowData.SizeConstraintCond; in BeginCombo()
4967 void ImGui::SetNextTreeNodeOpen(bool is_open, ImGuiCond cond) in SetNextTreeNodeOpen()