| 2009 | } |
| 2010 | |
| 2011 | void ImFontAtlas::ClearTexData() |
| 2012 | { |
| 2013 | IM_ASSERT(!Locked && "Cannot modify a locked ImFontAtlas between NewFrame() and EndFrame/Render()!"); |
| 2014 | if (TexPixelsAlpha8) |
| 2015 | IM_FREE(TexPixelsAlpha8); |
| 2016 | if (TexPixelsRGBA32) |
| 2017 | IM_FREE(TexPixelsRGBA32); |
| 2018 | TexPixelsAlpha8 = NULL; |
| 2019 | TexPixelsRGBA32 = NULL; |
| 2020 | TexPixelsUseColors = false; |
| 2021 | // Important: we leave TexReady untouched |
| 2022 | } |
| 2023 | |
| 2024 | void ImFontAtlas::ClearFonts() |
| 2025 | { |
no outgoing calls
no test coverage detected