Skip to content

Commit

Permalink
Fixed a situation where CTRL+Tab or Modal can occasionally lead to th…
Browse files Browse the repository at this point in the history
…e creation of ImDrawCmd with zero triangles, (#4857)

(amended)
  • Loading branch information
ocornut committed Jan 3, 2022
1 parent 2402958 commit 9aa764c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/CHANGELOG.txt
Expand Up @@ -46,6 +46,8 @@ Breaking Changes:

Other Changes:

- Fixed a situation where CTRL+Tab or Modal can occasionally lead to the creation of ImDrawCmd with zero triangles,
which would makes the draw operation of some backends assert (e.g. Metal with debugging). (#4857)
- Tables, ImDrawListSplitter: Fixed erroneously stripping trailing ImDrawList::AddCallback() when submitted in
last column or last channel and when there are no other drawing operation. (#4843, #4844) [@hoffstadt]
- Backends: OpenGL3: Fixed a buffer overflow in imgui_impl_opengl3_loader.h init (added in 1.86). (#4468, #4830) [@dymk]
Expand Down
1 change: 1 addition & 0 deletions imgui.cpp
Expand Up @@ -4528,6 +4528,7 @@ static void ImGui::RenderDimmedBackgrounds()
window->DrawList->PushClipRect(viewport->Pos, viewport->Pos + viewport->Size);
window->DrawList->AddRect(bb.Min, bb.Max, GetColorU32(ImGuiCol_NavWindowingHighlight, g.NavWindowingHighlightAlpha), window->WindowRounding, 0, 3.0f);
window->DrawList->PopClipRect();
window->DrawList->_PopUnusedDrawCmd(); // Since are past the calls to AddDrawListToDrawData() we don't have a _PopUnusedDrawCmd() running on commands, let's simply avoid creating empty commands.
}
}

Expand Down

0 comments on commit 9aa764c

Please sign in to comment.