Exposed GetOverlayDrawList(). (~#545, ~#530)

This commit is contained in:
omar
2017-12-07 12:49:52 +01:00
parent 8f41508c52
commit 20c7aab60c
2 changed files with 6 additions and 0 deletions

View File

@ -2233,6 +2233,11 @@ int ImGui::GetFrameCount()
return GImGui->FrameCount;
}
ImDrawList* ImGui::GetOverlayDrawList()
{
return &GImGui->OverlayDrawList;
}
void ImGui::NewFrame()
{
ImGuiContext& g = *GImGui;