| 2055 | } |
| 2056 | |
| 2057 | void 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 | |
| 2070 | void ImFontAtlas::ClearFonts() |
| 2071 | { |
no outgoing calls
no test coverage detected