Fix wxMemoryDC::Blit() with itself as source in wxMSW

Don't use StretchDIBits() native function as it doesn't seem to handle the
case when its source and destination are the same correctly.

Closes #17666.
This commit is contained in:
Tim Roberts
2016-09-21 22:56:16 +02:00
committed by Vadim Zeitlin
parent 6bd6c94511
commit 607b800444
3 changed files with 44 additions and 1 deletions

View File

@@ -134,6 +134,7 @@ wxMSW:
- Fix wxGraphicsMatrix::TransformDistance for Direct2D renderer.
- Fix wxDC::Clear() for rotated DC.
- Fix wxDC::GetClippingBox() for transformed wxDC.
- Fix wxMemoryDC::Blit() with itself as source (Tim Roberts).
wxOSX: