hb_draw_line function

void hb_draw_line(
  1. Pointer<hb_draw_funcs_t> dfuncs,
  2. Pointer<Void> draw_data,
  3. Pointer<hb_draw_state_t> st,
  4. double x0,
  5. double y0,
  6. double w0,
  7. double x1,
  8. double y1,
  9. double w1,
  10. hb_draw_line_cap_t cap,
)

Implementation

void hb_draw_line(
  ffi.Pointer<hb_draw_funcs_t> dfuncs,
  ffi.Pointer<ffi.Void> draw_data,
  ffi.Pointer<hb_draw_state_t> st,
  double x0,
  double y0,
  double w0,
  double x1,
  double y1,
  double w1,
  hb_draw_line_cap_t cap,
) => _hb_draw_line(dfuncs, draw_data, st, x0, y0, w0, x1, y1, w1, cap.value);