Create a 2D rendering context for a window.
Defined in <SDL3/SDL_render.h>
const char *name); SDL_Renderer * SDL_CreateRenderer(SDL_Window *window,
SDL_Window * | window | the window where rendering is displayed. |
const char * | name | the name of the rendering driver to initialize, or NULL to let SDL choose one. |
(SDL_Renderer *) Returns a valid rendering context or NULL if there was an error; call SDL_GetError() for more information.
If you want a specific renderer, you can specify its name here. A list of available renderers can be obtained by calling SDL_GetRenderDriver() multiple times, with indices from 0 to SDL_GetNumRenderDrivers()-1. If you don't need a specific renderer, specify NULL and SDL will attempt to choose the best option for you, based on what is available on the user's system.
By default the rendering size matches the window size in pixels, but you can call SDL_SetRenderLogicalPresentation() to change the content size and scaling options.
You may only call this function from the main thread.
This function is available since SDL 3.1.3.
#include <SDL3/SDL.h>
#include <SDL3/SDL_main.h>
int main(int argc, char *argv[])
{
SDL_Window *win = NULL;
SDL_Renderer *renderer = NULL;
SDL_Texture *bitmapTex = NULL;
SDL_Surface *bitmapSurface = NULL;int width = 320, height = 240;
bool loopShouldStop = false;
SDL_Init(SDL_INIT_VIDEO);
"Hello World", width, height, 0);
win = SDL_CreateWindow(
renderer = SDL_CreateRenderer(win, NULL);
"img/hello.bmp");
bitmapSurface = SDL_LoadBMP(
bitmapTex = SDL_CreateTextureFromSurface(renderer, bitmapSurface);
SDL_DestroySurface(bitmapSurface);
while (!loopShouldStop)
{
SDL_Event event;while (SDL_PollEvent(&event))
{switch (event.type)
{case SDL_EVENT_QUIT:
loopShouldStop = true;break;
}
}
SDL_RenderClear(renderer);
SDL_RenderTexture(renderer, bitmapTex, NULL, NULL);
SDL_RenderPresent(renderer);
}
SDL_DestroyTexture(bitmapTex);
SDL_DestroyRenderer(renderer);
SDL_DestroyWindow(win);
SDL_Quit();
return 0;
}