Scroll to navigation

SDL_GetRenderTarget(3) SDL3 FUNCTIONS SDL_GetRenderTarget(3)

NAME

SDL_GetRenderTarget - Get the current render target.

SYNOPSIS

#include "SDL3/SDL.h"
SDL_Texture* SDL_GetRenderTarget(SDL_Renderer *renderer);

DESCRIPTION

The default render target is the window for which the renderer was created, and is reported a NULL here.

FUNCTION PARAMETERS

the rendering context

RETURN VALUE

Returns the current render target or NULL for the default render target.

AVAILABILITY

This function is available since SDL 3.0.0.

SEE ALSO

SDL_SetRenderTarget(3)

SDL 3.1.0 SDL