Home
last modified time | relevance | path

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

/lvgl-latest/libs/nema_gfx/include/
Dnema_provisional.h47 void nema_fill_triangle_strip_f(float* vertices, int num_vertices, int stride, uint32_t rgba8888);
58 void nema_fill_triangle_fan_f(float* vertices, int num_vertices, int stride, uint32_t rgba8888);
/lvgl-latest/src/libs/tiny_ttf/
Dstb_truetype_htcw.h874 …tt_GetCodepointShape(const stbtt_fontinfo * info, int unicode_codepoint, stbtt_vertex ** vertices);
875 …EF int stbtt_GetGlyphShape(const stbtt_fontinfo * info, int glyph_index, stbtt_vertex ** vertices);
886 STBTT_DEF void stbtt_FreeShape(const stbtt_fontinfo * info, stbtt_vertex * vertices);
976 stbtt_vertex * vertices, // array of vertices defining shape
1789 …btt_GetCodepointShape(const stbtt_fontinfo * info, int unicode_codepoint, stbtt_vertex * *vertices) argument
1791 return stbtt_GetGlyphShape(info, stbtt_FindGlyphIndex(info, unicode_codepoint), vertices);
1861 static int stbtt__close_shape(stbtt_vertex * vertices, int num_vertices, int was_off, int start_off, argument
1866 …stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve, (cx + scx) >> 1, (cy + scy) >> 1, cx, cy);
1867 stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve, sx, sy, scx, scy);
1871 stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve, sx, sy, cx, cy);
[all …]
/lvgl-latest/src/libs/thorvg/
DtvgSwRasterTexmap.h1126 Vertex vertices[4]; in _rasterTexmapPolygon() local
1127 vertices[0] = {{0.0f, 0.0f}, {0.0f, 0.0f}}; in _rasterTexmapPolygon()
1128 vertices[1] = {{float(image->w), 0.0f}, {float(image->w), 0.0f}}; in _rasterTexmapPolygon()
1129 vertices[2] = {{float(image->w), float(image->h)}, {float(image->w), float(image->h)}}; in _rasterTexmapPolygon()
1130 vertices[3] = {{0.0f, float(image->h)}, {0.0f, float(image->h)}}; in _rasterTexmapPolygon()
1134 vertices[i].pt *= transform; in _rasterTexmapPolygon()
1135 if (vertices[i].pt.y < ys) ys = vertices[i].pt.y; in _rasterTexmapPolygon()
1136 if (vertices[i].pt.y > ye) ye = vertices[i].pt.y; in _rasterTexmapPolygon()
1145 polygon.vertex[0] = vertices[0]; in _rasterTexmapPolygon()
1146 polygon.vertex[1] = vertices[1]; in _rasterTexmapPolygon()
[all …]