| 2000 | } |
| 2001 | |
| 2002 | void ImFontAtlas::ClearTexData() |
| 2003 | { |
| 2004 | IM_ASSERT(!Locked && "Cannot modify a locked ImFontAtlas between NewFrame() and EndFrame/Render()!"); |
| 2005 | if (TexPixelsAlpha8) |
| 2006 | IM_FREE(TexPixelsAlpha8); |
| 2007 | if (TexPixelsRGBA32) |
| 2008 | IM_FREE(TexPixelsRGBA32); |
| 2009 | TexPixelsAlpha8 = NULL; |
| 2010 | TexPixelsRGBA32 = NULL; |
| 2011 | TexPixelsUseColors = false; |
| 2012 | // Important: we leave TexReady untouched |
| 2013 | } |
| 2014 | |
| 2015 | void ImFontAtlas::ClearFonts() |
| 2016 | { |
no outgoing calls
no test coverage detected