MCPcopy Create free account
hub / github.com/DISTRHO/Cardinal / ClearTexData

Method ClearTexData

plugins/Cardinal/src/DearImGui/imgui_draw.cpp:2011–2022  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2009}
2010
2011void 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
2024void ImFontAtlas::ClearFonts()
2025{

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected