MCPcopy Create free account
hub / github.com/KhronosGroup/KTX-Software / LodePNGText_cleanup

Function LodePNGText_cleanup

external/lodepng/lodepng.cpp:3179–3187  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3177}
3178
3179static void LodePNGText_cleanup(LodePNGInfo* info) {
3180 size_t i;
3181 for(i = 0; i != info->text_num; ++i) {
3182 string_cleanup(&info->text_keys[i]);
3183 string_cleanup(&info->text_strings[i]);
3184 }
3185 lodepng_free(info->text_keys);
3186 lodepng_free(info->text_strings);
3187}
3188
3189static unsigned LodePNGText_copy(LodePNGInfo* dest, const LodePNGInfo* source) {
3190 size_t i = 0;

Callers 2

lodepng_clear_textFunction · 0.85
lodepng_info_cleanupFunction · 0.85

Calls 2

string_cleanupFunction · 0.85
lodepng_freeFunction · 0.70

Tested by

no test coverage detected