Searched refs:comp_num_verts (Results 1 – 1 of 1) sorted by relevance
1391 int comp_num_verts = 0, i; in stbtt_GetGlyphShape() local1430 comp_num_verts = stbtt_GetGlyphShape(info, gidx, &comp_verts); in stbtt_GetGlyphShape()1431 if (comp_num_verts > 0) { in stbtt_GetGlyphShape()1433 for (i = 0; i < comp_num_verts; ++i) { in stbtt_GetGlyphShape()1444 …tmp = (stbtt_vertex*)STBTT_malloc((num_vertices+comp_num_verts)*sizeof(stbtt_vertex), info->userda… in stbtt_GetGlyphShape()1451 STBTT_memcpy(tmp+num_vertices, comp_verts, comp_num_verts*sizeof(stbtt_vertex)); in stbtt_GetGlyphShape()1455 num_vertices += comp_num_verts; in stbtt_GetGlyphShape()