I am trying to create a window with SDL3 using the following code
unsigned int sdlFlags = 0;
sdlFlags |= SDL_WINDOW_RESIZABLE;
sdlFlags |= SDL_WINDOW_BORDERLESS;
sdlWindow = SDL_CreateWindow(InTitle, InWidth, InHeight, sdlFlags);
But when you try to resize the window, white stripes appear that do not disappear
The problem arose when switching from SDL2 to SDL3
New contributor
DirtyCode is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.