mirror of
https://github.com/encounter/rust-sdl2.git
synced 2026-03-30 11:37:10 -07:00
ed1ced7cbe
- There is a problem with the SDL2 libraries software renderer such
that `RenderCopyEx` will draw a flipped or rotated rect in the wrong
place if;
- the position of both source and destination are 0, or;
- the dimensions of source and destination are the same.
- a workaround if using the software renderer is to make the destination
1 pixel larger x,y, or shift the source over 1 pixel. Not ideal.
Issue #492 contains more details.