mirror of
https://github.com/ocornut/imgui.git
synced 2026-09-27 19:43:36 +03:00
Amend b82e99c032
This commit is contained in:
parent
720e94f3da
commit
0c4f50090a
2 changed files with 3 additions and 2 deletions
|
|
@ -478,9 +478,10 @@ void ImDrawList::_ClearFreeMemory()
|
|||
_Splitter.ClearFreeMemory();
|
||||
}
|
||||
|
||||
// Note: For multi-threaded rendering, consider using `imgui_threaded_rendering` from https://github.com/ocornut/imgui_club
|
||||
ImDrawList* ImDrawList::CloneOutput() const
|
||||
{
|
||||
ImDrawList* dst = IM_NEW(ImDrawList(_Data));
|
||||
ImDrawList* dst = IM_NEW(ImDrawList(NULL));
|
||||
dst->CmdBuffer = CmdBuffer;
|
||||
dst->IdxBuffer = IdxBuffer;
|
||||
dst->VtxBuffer = VtxBuffer;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue