| /lvgl-latest/src/draw/nema_gfx/ |
| D | lv_nema_gfx_path.c | 136 void lv_nema_gfx_path_cubic_to(lv_nema_gfx_path_t * path, float cx1, float cy1, float cx2, float cy… in lv_nema_gfx_path_cubic_to() argument 144 path->data[data_point++] = cx2; in lv_nema_gfx_path_cubic_to()
|
| D | lv_nema_gfx_path.h | 83 float cx2, float cy2,
|
| /lvgl-latest/src/draw/vg_lite/ |
| D | lv_vg_lite_path.h | 101 float cx2, float cy2,
|
| D | lv_vg_lite_path.c | 387 float cx2, float cy2, in lv_vg_lite_path_cubic_to() argument 394 lv_vg_lite_path_append_point(path, cx2, cy2); in lv_vg_lite_path_cubic_to()
|
| /lvgl-latest/src/libs/thorvg/ |
| D | tvgSwRle.cpp | 777 auto cx2 = cx1 + temp->len; in _intersectSpansRegion() local 780 if (cx2 < sx1 || sx2 < cx1) { in _intersectSpansRegion() 787 auto len = (sx2 < cx2 ? sx2 : cx2) - x; in _intersectSpansRegion()
|
| D | tvgShape.h | 195 void cubicTo(float cx1, float cy1, float cx2, float cy2, float x, float y) in cubicTo() 199 rs.path.pts.push({cx2, cy2}); in cubicTo()
|
| D | tvgShape.cpp | 123 Result Shape::cubicTo(float cx1, float cy1, float cx2, float cy2, float x, float y) noexcept in cubicTo() argument 125 pImpl->cubicTo(cx1, cy1, cx2, cy2, x, y); in cubicTo()
|
| D | tvgCapi.cpp | 301 TVG_API Tvg_Result tvg_shape_cubic_to(Tvg_Paint* paint, float cx1, float cy1, float cx2, float cy2,… in tvg_shape_cubic_to() argument 304 return (Tvg_Result) reinterpret_cast<Shape*>(paint)->cubicTo(cx1, cy1, cx2, cy2, x, y); in tvg_shape_cubic_to()
|
| D | thorvg_capi.h | 1154 TVG_API Tvg_Result tvg_shape_cubic_to(Tvg_Paint* paint, float cx1, float cy1, float cx2, float cy2,…
|
| D | thorvg.h | 909 Result cubicTo(float cx1, float cy1, float cx2, float cy2, float x, float y) noexcept;
|
| /lvgl-latest/src/others/vg_lite_tvg/ |
| D | vg_lite_tvg.cpp | 2427 float cx2 = VLC_GET_ARG(cur, 2); in shape_append_path() local 2431 TVG_CHECK_RETURN_RESULT(shape->cubicTo(cx1, cy1, cx2, cy2, x, y)); in shape_append_path()
|
| /lvgl-latest/src/libs/tiny_ttf/ |
| D | stb_truetype_htcw.h | 2198 float cx2 = cx1 + dx2; local 2200 ctx->x = cx2 + dx3; 2202 …stbtt__csctx_v(ctx, STBTT_vcubic, (int)ctx->x, (int)ctx->y, (int)cx1, (int)cy1, (int)cx2, (int)cy2…
|