IM_ASSERT(g.Style.Alpha>=0.0f&&g.Style.Alpha<=1.0f);// Invalid style setting. Alpha cannot be negative (allows us to avoid a few clamps in color computations)
IMGUI_APIvoidEndFrame();// Ends the ImGui frame. Automatically called by Render()! you most likely don't need to ever call that yourself directly. If you don't need to render you can call EndFrame() but you'll have wasted CPU already. If you don't need to render, don't create any windows instead!