MCPcopy Create free account
hub / github.com/danoon2/Boxedwine / SetWindowConditionAllowFlags

Function SetWindowConditionAllowFlags

lib/imgui/imgui.cpp:4751–4756  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4749}
4750
4751static void SetWindowConditionAllowFlags(ImGuiWindow* window, ImGuiCond flags, bool enabled)
4752{
4753 window->SetWindowPosAllowFlags = enabled ? (window->SetWindowPosAllowFlags | flags) : (window->SetWindowPosAllowFlags & ~flags);
4754 window->SetWindowSizeAllowFlags = enabled ? (window->SetWindowSizeAllowFlags | flags) : (window->SetWindowSizeAllowFlags & ~flags);
4755 window->SetWindowCollapsedAllowFlags = enabled ? (window->SetWindowCollapsedAllowFlags | flags) : (window->SetWindowCollapsedAllowFlags & ~flags);
4756}
4757
4758ImGuiWindow* ImGui::FindWindowByID(ImGuiID id)
4759{

Callers 2

CreateNewWindowFunction · 0.85
BeginMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected