+ int width = bmp.GetWidth(),
+ height = bmp.GetHeight();
+
+ if ( !(::GetDeviceCaps(GetHdc(), RASTERCAPS) & RC_STRETCHDIB) ||
+ !DrawBitmapUsingStretchDIBits(GetHdc(), bmp, x, y) )
+ {
+ // no support for StretchDIBits() or an error occurred if we got here
+ wxMemoryDC memDC;
+
+ memDC.SelectObjectAsSource(bmp);
+
+ GetOwner()->Blit(x, y, width, height, &memDC, 0, 0, wxCOPY, useMask);
+
+ memDC.SelectObject(wxNullBitmap);
+ }
+}
+
+bool wxPrinterDCImpl::DoBlit(wxCoord xdest, wxCoord ydest,
+ wxCoord width, wxCoord height,
+ wxDC *source,
+ wxCoord WXUNUSED(xsrc), wxCoord WXUNUSED(ysrc),
+ wxRasterOperationMode WXUNUSED(rop), bool useMask,
+ wxCoord WXUNUSED(xsrcMask), wxCoord WXUNUSED(ysrcMask))
+{
+ wxDCImpl *impl = source->GetImpl();
+ wxMSWDCImpl *msw_impl = wxDynamicCast(impl, wxMSWDCImpl);
+ if (!msw_impl)
+ return false;
+
+ wxBitmap& bmp = msw_impl->GetSelectedBitmap();
+ wxMask *mask = useMask ? bmp.GetMask() : NULL;
+ if ( mask )