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

\brief Draw a line on the current rendering target.

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

\return 0 on success, or -1 on error