Home
last modified time | relevance | path

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

/external/mesa3d/src/imgui/
Dimstb_truetype.h1785 int comp_num_verts = 0, i; in stbtt__GetGlyphShapeTT() local
1824 comp_num_verts = stbtt_GetGlyphShape(info, gidx, &comp_verts); in stbtt__GetGlyphShapeTT()
1825 if (comp_num_verts > 0) { in stbtt__GetGlyphShapeTT()
1827 for (i = 0; i < comp_num_verts; ++i) { in stbtt__GetGlyphShapeTT()
1838 …tmp = (stbtt_vertex*)STBTT_malloc((num_vertices+comp_num_verts)*sizeof(stbtt_vertex), info->userda… in stbtt__GetGlyphShapeTT()
1845 STBTT_memcpy(tmp+num_vertices, comp_verts, comp_num_verts*sizeof(stbtt_vertex)); in stbtt__GetGlyphShapeTT()
1849 num_vertices += comp_num_verts; in stbtt__GetGlyphShapeTT()