Create Renderer Only When It Doesn't Exist (#1315)

This commit is contained in:
adityaraj 2023-01-12 05:23:23 +05:30 committed by George Sokianos
parent c44a3cd291
commit 8c4f093c41
1 changed files with 5 additions and 4 deletions

View File

@ -17,11 +17,12 @@ static int query_surface_scale(RenWindow *ren) {
static void setup_renderer(RenWindow *ren, int w, int h) {
/* Note that w and h here should always be in pixels and obtained from
a call to SDL_GL_GetDrawableSize(). */
if (ren->renderer) {
SDL_DestroyTexture(ren->texture);
SDL_DestroyRenderer(ren->renderer);
if (!ren->renderer) {
ren->renderer = SDL_CreateRenderer(ren->window, -1, 0);
}
if (ren->texture) {
SDL_DestroyTexture(ren->texture);
}
ren->renderer = SDL_CreateRenderer(ren->window, -1, 0);
ren->texture = SDL_CreateTexture(ren->renderer, SDL_PIXELFORMAT_BGRA32, SDL_TEXTUREACCESS_STREAMING, w, h);
ren->surface_scale = query_surface_scale(ren);
}