Scroll to navigation

SDL_RenderClear(3) SDL3 FUNCTIONS SDL_RenderClear(3)

NAME

SDL_RenderClear - Clear the current rendering target with the drawing color.

SYNOPSIS

#include "SDL3/SDL.h"
int SDL_RenderClear(SDL_Renderer *renderer);

DESCRIPTION

This function clears the entire rendering target, ignoring the viewport and the clip rectangle.

FUNCTION PARAMETERS

the rendering context

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_SetRenderDrawColor(3)

SDL 3.1.0 SDL