mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-05-19 19:28:28 +00:00
Fixed bug 4542 - Image flipped vertically when rendering on texture
Have to recompute viewport because projection/glOrtho is different wether rendering is on target texture or not
This commit is contained in:
parent
28f54ee439
commit
b28e956b8c
3 changed files with 7 additions and 1 deletions
|
@ -503,6 +503,8 @@ GLES_SetRenderTarget(SDL_Renderer * renderer, SDL_Texture * texture)
|
|||
return SDL_SetError("Can't enable render target support in this renderer");
|
||||
}
|
||||
|
||||
data->drawstate.viewport_dirty = SDL_TRUE;
|
||||
|
||||
if (texture == NULL) {
|
||||
data->glBindFramebufferOES(GL_FRAMEBUFFER_OES, data->window_framebuffer);
|
||||
return 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue