Scroll to navigation

SDL_CreateWindowAndRenderer(3) SDL3 FUNCTIONS SDL_CreateWindowAndRenderer(3)

NAME

SDL_CreateWindowAndRenderer - Create a window and default renderer.

HEADER FILE

Defined in SDL3/SDL_render.h

SYNOPSIS

#include "SDL3/SDL.h"
int SDL_CreateWindowAndRenderer(const char *title, int width, int height, SDL_WindowFlags window_flags, SDL_Window **window, SDL_Renderer **renderer);

FUNCTION PARAMETERS

the title of the window, in UTF-8 encoding
the width of the window
the height of the window
the flags used to create the window (see SDL_CreateWindow ())
a pointer filled with the window, or NULL on error
a pointer filled with the renderer, or NULL on error

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_CreateRenderer(3), SDL_CreateWindow(3)

SDL 3.1.2 Simple Directmedia Layer