mirror of https://github.com/encounter/SDL.git
Fixed bug 4426 - allows re-creation of software renderer
Switching between renderers "software -> opengl -> opengles2 -> software" fails. "opengl -> opengles2" calls SDL_RecreateWindow() and frees "window->surface" without marking it as "surface_invalid".
This commit is contained in:
parent
1829692753
commit
1ed6021960
|
@ -1636,6 +1636,7 @@ SDL_RecreateWindow(SDL_Window * window, Uint32 flags)
|
||||||
window->surface->flags &= ~SDL_DONTFREE;
|
window->surface->flags &= ~SDL_DONTFREE;
|
||||||
SDL_FreeSurface(window->surface);
|
SDL_FreeSurface(window->surface);
|
||||||
window->surface = NULL;
|
window->surface = NULL;
|
||||||
|
window->surface_valid = SDL_FALSE;
|
||||||
}
|
}
|
||||||
if (_this->DestroyWindowFramebuffer) {
|
if (_this->DestroyWindowFramebuffer) {
|
||||||
_this->DestroyWindowFramebuffer(_this, window);
|
_this->DestroyWindowFramebuffer(_this, window);
|
||||||
|
|
Loading…
Reference in New Issue