]> git.saurik.com Git - wxWidgets.git/commitdiff
don't blit more than necessary in wxBufferedDC::UnMask() (patch 1943622) [should...
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 17 May 2008 22:13:22 +0000 (22:13 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 17 May 2008 22:13:22 +0000 (22:13 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53624 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/dcbufcmn.cpp

index 8c6c25b40e18d86453f2a827b7f07e171edbe8f5..6ae9f3ef8240df581a5d6707601d971c8c487201 100644 (file)
@@ -128,8 +128,21 @@ void wxBufferedDC::UnMask()
     if ( m_style & wxBUFFER_CLIENT_AREA )
         GetDeviceOrigin(&x, &y);
 
-    m_dc->Blit(0, 0, m_buffer->GetWidth(), m_buffer->GetHeight(),
-               this, -x, -y );
+    // avoid blitting too much: if we were created for a bigger bitmap (and
+    // reused for a smaller one later) we should only blit the real bitmap area
+    // and not the full allocated back buffer
+    int widthDC,
+        heightDC;
+
+    m_dc->GetSize(&widthDC, &heightDC);
+
+    int widthBuf = m_buffer->GetWidth(),
+        heightBuf = m_buffer->GetHeight();
+
+    m_dc->Blit(0, 0,
+               wxMin(widthDC, widthBuf), wxMin(heightDC, heightBuf),
+               this,
+               -x, -y);
     m_dc = NULL;
 
     if ( m_style & wxBUFFER_USES_SHARED_BUFFER )