Home
last modified time | relevance | path

Searched refs:text_strings (Results 1 – 2 of 2) sorted by relevance

/external/zopfli/src/zopflipng/lodepng/
Dlodepng.cpp2696 info->text_strings = NULL; in LodePNGText_init()
2705 string_cleanup(&info->text_strings[i]); in LodePNGText_cleanup()
2708 lodepng_free(info->text_strings); in LodePNGText_cleanup()
2715 dest->text_strings = 0; in LodePNGText_copy()
2719 CERROR_TRY_RETURN(lodepng_add_text(dest, source->text_keys[i], source->text_strings[i])); in LodePNGText_copy()
2732 …char** new_strings = (char**)(lodepng_realloc(info->text_strings, sizeof(char*) * (info->text_num … in lodepng_add_text()
2742 info->text_strings = new_strings; in lodepng_add_text()
2747 string_init(&info->text_strings[info->text_num - 1]); in lodepng_add_text()
2748 string_set(&info->text_strings[info->text_num - 1], str); in lodepng_add_text()
5792 addChunk_zTXt(&outv, info.text_keys[i], info.text_strings[i], &state->encoder.zlibsettings); in lodepng_encode()
[all …]
Dlodepng.h441 char** text_strings; /*the actual text*/ member