| 613 | } |
| 614 | |
| 615 | void ImDrawList::PopTextureID() |
| 616 | { |
| 617 | _TextureIdStack.pop_back(); |
| 618 | _CmdHeader.TextureId = (_TextureIdStack.Size == 0) ? (ImTextureID)NULL : _TextureIdStack.Data[_TextureIdStack.Size - 1]; |
| 619 | _OnChangedTextureID(); |
| 620 | } |
| 621 | |
| 622 | // Reserve space for a number of vertices and indices. |
| 623 | // You must finish filling your reserved data before calling PrimReserve() again, as it may reallocate or |
no test coverage detected