Blast-Radius Aware AI Code Review for Business-Critical Systems
LiveReview LiveReview Explore LiveReview

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

Availability

       This function is available since SDL 3.2.0.

Function Parameters

renderer
              the renderer which should draw multiple lines.

       points the points along the lines.

       count  the number of points, drawing count-1 lines.

Header File

       Defined in SDL3/SDL_render.h

Name

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

Return Value

       Returns true on success or false on failure; call

       SDL_GetError () for more information.

See Also

(3), SDL_RenderLine(3)

Simple Directmedia Layer                           SDL 3.2.10                                 SDL_RenderLines(3)

Synopsis

#include"SDL3/SDL.h"boolSDL_RenderLines(SDL_Renderer*renderer,constSDL_FPoint*points,intcount);

Thread Safety

       This function should only be called on the main thread.

See Also