pub unsafe extern "C" fn SDL_RenderDrawLine(
    renderer: *mut SDL_Renderer,
    x1: c_int,
    y1: c_int,
    x2: c_int,
    y2: c_int
) -> c_int
Expand description

Draw a line on the current rendering target.

  • renderer The renderer which should draw a line.
  • x1 The x coordinate of the start point.
  • y1 The y coordinate of the start point.
  • x2 The x coordinate of the end point.
  • y2 The y coordinate of the end point.

Returns: 0 on success, or -1 on error