MCPcopy Create free account
hub / github.com/GPUOpen-LibrariesAndSDKs/Cauldron / SetWindowConditionAllowFlags

Function SetWindowConditionAllowFlags

libs/imgui/imgui.cpp:4133–4138  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4131}
4132
4133static void SetWindowConditionAllowFlags(ImGuiWindow* window, ImGuiCond flags, bool enabled)
4134{
4135 window->SetWindowPosAllowFlags = enabled ? (window->SetWindowPosAllowFlags | flags) : (window->SetWindowPosAllowFlags & ~flags);
4136 window->SetWindowSizeAllowFlags = enabled ? (window->SetWindowSizeAllowFlags | flags) : (window->SetWindowSizeAllowFlags & ~flags);
4137 window->SetWindowCollapsedAllowFlags = enabled ? (window->SetWindowCollapsedAllowFlags | flags) : (window->SetWindowCollapsedAllowFlags & ~flags);
4138}
4139
4140ImGuiWindow* ImGui::FindWindowByName(const char* name)
4141{

Callers 2

CreateNewWindowFunction · 0.85
BeginMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected