MCPcopy Create free account
hub / github.com/MKXJun/DirectX11-With-Windows-SDK / SetWindowConditionAllowFlags

Function SetWindowConditionAllowFlags

ImGui/imgui.cpp:5266–5271  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5264}
5265
5266static void SetWindowConditionAllowFlags(ImGuiWindow* window, ImGuiCond flags, bool enabled)
5267{
5268 window->SetWindowPosAllowFlags = enabled ? (window->SetWindowPosAllowFlags | flags) : (window->SetWindowPosAllowFlags & ~flags);
5269 window->SetWindowSizeAllowFlags = enabled ? (window->SetWindowSizeAllowFlags | flags) : (window->SetWindowSizeAllowFlags & ~flags);
5270 window->SetWindowCollapsedAllowFlags = enabled ? (window->SetWindowCollapsedAllowFlags | flags) : (window->SetWindowCollapsedAllowFlags & ~flags);
5271}
5272
5273ImGuiWindow* ImGui::FindWindowByID(ImGuiID id)
5274{

Callers 2

CreateNewWindowFunction · 0.85
BeginMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected