MCPcopy Create free account
hub / github.com/KebsCS/KBotExt / ClearTexData

Method ClearTexData

KBotExt/imgui/imgui_draw.cpp:2057–2068  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2055}
2056
2057void ImFontAtlas::ClearTexData()
2058{
2059 IM_ASSERT(!Locked && "Cannot modify a locked ImFontAtlas between NewFrame() and EndFrame/Render()!");
2060 if (TexPixelsAlpha8)
2061 IM_FREE(TexPixelsAlpha8);
2062 if (TexPixelsRGBA32)
2063 IM_FREE(TexPixelsRGBA32);
2064 TexPixelsAlpha8 = NULL;
2065 TexPixelsRGBA32 = NULL;
2066 TexPixelsUseColors = false;
2067 // Important: we leave TexReady untouched
2068}
2069
2070void ImFontAtlas::ClearFonts()
2071{

Callers 2

Calls

no outgoing calls

Tested by

no test coverage detected