Scroll to navigation

SDL_RenderLines(3) SDL3 FUNCTIONS SDL_RenderLines(3)

NAME

SDL_RenderLines - Draw a series of connected lines on the current rendering target at subpixel precision.

SYNOPSIS

#include "SDL3/SDL.h"
int SDL_RenderLines(SDL_Renderer *renderer, const SDL_FPoint *points, int count);

FUNCTION PARAMETERS

The renderer which should draw multiple lines.
The points along the lines
The number of points, drawing count-1 lines

RETURN VALUE

Returns 0 on success or a negative error code on failure; call

SDL_GetError () for more information.

AVAILABILITY

This function is available since SDL 3.0.0.

SEE ALSO

SDL_RenderLine(3)

SDL 3.1.0 SDL