Home
last modified time | relevance | path

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

/external/mesa3d/src/imgui/
Dimgui_draw.cpp1644 …ddFontFromMemoryCompressedTTF(const void* compressed_ttf_data, int compressed_ttf_size, float size… in AddFontFromMemoryCompressedTTF() argument
1648 …f_decompressed_data, (const unsigned char*)compressed_ttf_data, (unsigned int)compressed_ttf_size); in AddFontFromMemoryCompressedTTF()
1658 int compressed_ttf_size = (((int)strlen(compressed_ttf_data_base85) + 4) / 5) * 4; in AddFontFromMemoryCompressedBase85TTF() local
1659 void* compressed_ttf = ImGui::MemAlloc((size_t)compressed_ttf_size); in AddFontFromMemoryCompressedBase85TTF()
1661 …ImFont* font = AddFontFromMemoryCompressedTTF(compressed_ttf, compressed_ttf_size, size_pixels, fo… in AddFontFromMemoryCompressedBase85TTF()