mirror of
https://github.com/ocornut/imgui.git
synced 2025-04-05 05:25:08 +00:00
WIP - Fixed _OnChangedTextureID() asserting when calling on e.g. finalized drawlists.
This commit is contained in:
parent
810f905469
commit
4f236b0361
1 changed files with 4 additions and 1 deletions
|
@ -602,7 +602,10 @@ void ImDrawList::_OnChangedTextureID()
|
|||
AddDrawCmd();
|
||||
return;
|
||||
}
|
||||
IM_ASSERT(curr_cmd->UserCallback == NULL);
|
||||
|
||||
// Unlike other _OnChangedXXX functions this may be called by ImFontAtlasUpdateDrawListsTextures() in more locations so we need to handle this case.
|
||||
if (curr_cmd->UserCallback != NULL)
|
||||
return;
|
||||
|
||||
// Try to merge with previous command if it matches, else use current command
|
||||
ImDrawCmd* prev_cmd = curr_cmd - 1;
|
||||
|
|
Loading…
Add table
Reference in a new issue