]>
git.saurik.com Git - wxWidgets.git/blob - src/dfb/dc.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/dfb/dc.cpp
4 // Author: Vaclav Slavik
7 // Copyright: (c) 2006 REA Elektronik GmbH
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // ===========================================================================
13 // ===========================================================================
15 // ---------------------------------------------------------------------------
17 // ---------------------------------------------------------------------------
19 // For compilers that support precompilation, includes "wx.h".
20 #include "wx/wxprec.h"
31 #include "wx/dfb/private.h"
33 // these values are used to initialize newly created DC
34 #define DEFAULT_FONT (*wxNORMAL_FONT)
35 #define DEFAULT_PEN (*wxBLACK_PEN)
36 #define DEFAULT_BRUSH (*wxWHITE_BRUSH)
38 // ===========================================================================
40 // ===========================================================================
42 //-----------------------------------------------------------------------------
44 //-----------------------------------------------------------------------------
46 IMPLEMENT_ABSTRACT_CLASS(wxDC
, wxDCBase
)
48 // Default constructor
54 wxDC::wxDC(const wxIDirectFBSurfacePtr
& surface
)
59 void wxDC::Init(const wxIDirectFBSurfacePtr
& surface
)
61 m_ok
= (surface
!= NULL
);
62 wxCHECK_RET( surface
!= NULL
, _T("invalid surface") );
66 m_mm_to_pix_x
= (double)wxGetDisplaySize().GetWidth() /
67 (double)wxGetDisplaySizeMM().GetWidth();
68 m_mm_to_pix_y
= (double)wxGetDisplaySize().GetHeight() /
69 (double)wxGetDisplaySizeMM().GetHeight();
71 SetFont(DEFAULT_FONT
);
73 SetBrush(DEFAULT_BRUSH
);
77 // ---------------------------------------------------------------------------
79 // ---------------------------------------------------------------------------
81 void wxDC::DoSetClippingRegion(wxCoord cx
, wxCoord cy
, wxCoord cw
, wxCoord ch
)
83 wxCHECK_RET( Ok(), wxT("invalid dc") );
85 wxSize
size(GetSize());
87 wxASSERT_MSG( !m_clipping
,
88 _T("narrowing clipping region not implemented yet") );
90 // NB: We intersect the clipping rectangle with surface's area here because
91 // DirectFB will return an error if you try to set clipping rectangle
92 // that is partially outside of the surface.
94 r
.x1
= wxMax(0, XLOG2DEV(cx
));
95 r
.y1
= wxMax(0, YLOG2DEV(cy
));
96 r
.x2
= wxMin(r
.x1
+ XLOG2DEVREL(cw
), size
.x
) - 1;
97 r
.y2
= wxMin(r
.y1
+ YLOG2DEVREL(ch
), size
.y
) - 1;
99 if ( !m_surface
->SetClip(&r
) )
104 m_clipX2
= cx
+ cw
- 1;
105 m_clipY2
= cy
+ ch
-1;
109 void wxDC::DoSetClippingRegionAsRegion(const wxRegion
& region
)
111 // NB: this can be done because wxDFB only supports rectangular regions
112 SetClippingRegion(region
.AsRect());
115 void wxDC::DestroyClippingRegion()
117 wxCHECK_RET( Ok(), wxT("invalid dc") );
119 m_surface
->SetClip(NULL
);
124 // ---------------------------------------------------------------------------
125 // query capabilities
126 // ---------------------------------------------------------------------------
128 int wxDC::GetDepth() const
130 return m_surface
->GetDepth();
133 // ---------------------------------------------------------------------------
135 // ---------------------------------------------------------------------------
139 wxCHECK_RET( Ok(), wxT("invalid dc") );
141 if ( m_backgroundBrush
.GetStyle() == wxTRANSPARENT
)
144 wxColour clr
= m_backgroundBrush
.GetColour();
145 m_surface
->Clear(clr
.Red(), clr
.Green(), clr
.Blue(), clr
.Alpha());
147 wxSize
size(GetSize());
148 CalcBoundingBox(XDEV2LOG(0), YDEV2LOG(0));
149 CalcBoundingBox(XDEV2LOG(size
.x
), YDEV2LOG(size
.y
));
152 extern bool wxDoFloodFill(wxDC
*dc
, wxCoord x
, wxCoord y
,
153 const wxColour
& col
, int style
);
155 bool wxDC::DoFloodFill(wxCoord x
, wxCoord y
,
156 const wxColour
& col
, int style
)
158 return wxDoFloodFill(this, x
, y
, col
, style
);
161 bool wxDC::DoGetPixel(wxCoord x
, wxCoord y
, wxColour
*col
) const
163 wxCHECK_MSG( col
, false, _T("NULL colour parameter in wxDC::GetPixel"));
165 wxFAIL_MSG( _T("GetPixel not implemented") );
169 void wxDC::DoCrossHair(wxCoord x
, wxCoord y
)
171 wxCHECK_RET( Ok(), wxT("invalid dc") );
173 wxFAIL_MSG( _T("CrossHair not implemented") );
176 void wxDC::DoDrawLine(wxCoord x1
, wxCoord y1
, wxCoord x2
, wxCoord y2
)
178 wxCHECK_RET( Ok(), wxT("invalid dc") );
180 if ( m_pen
.GetStyle() == wxTRANSPARENT
)
183 m_surface
->DrawLine(XLOG2DEV(x1
), YLOG2DEV(y1
),
184 XLOG2DEV(x2
), YLOG2DEV(y2
));
186 CalcBoundingBox(x1
, y1
);
187 CalcBoundingBox(x2
, y2
);
190 // Draws an arc of a circle, centred on (xc, yc), with starting point (x1, y1)
191 // and ending at (x2, y2)
192 void wxDC::DoDrawArc(wxCoord x1
, wxCoord y1
,
193 wxCoord x2
, wxCoord y2
,
194 wxCoord xc
, wxCoord yc
)
196 wxCHECK_RET( Ok(), wxT("invalid dc") );
198 wxFAIL_MSG( _T("DrawArc not implemented") );
201 void wxDC::DoDrawPoint(wxCoord x
, wxCoord y
)
203 wxCHECK_RET( Ok(), wxT("invalid dc") );
205 // NB: DirectFB API doesn't provide a function for drawing points, so
206 // implement it as 1px long line. This is inefficient, but then, so is
207 // using DrawPoint() for drawing more than a few points.
208 DoDrawLine(x
, y
, x
, y
);
210 // FIXME_DFB: implement special cases for common formats (RGB24,RGBA/RGB32)
213 void wxDC::DoDrawPolygon(int n
, wxPoint points
[], wxCoord xoffset
, wxCoord yoffset
,int WXUNUSED(fillStyle
))
215 wxCHECK_RET( Ok(), wxT("invalid dc") );
217 wxFAIL_MSG( _T("DrawPolygon not implemented") );
220 void wxDC::DoDrawLines(int n
, wxPoint points
[], wxCoord xoffset
, wxCoord yoffset
)
222 wxCHECK_RET( Ok(), wxT("invalid dc") );
224 // TODO: impl. using DirectDB's DrawLines
225 wxFAIL_MSG( _T("DrawLines not implemented") );
228 void wxDC::DoDrawRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
230 wxCHECK_RET( Ok(), wxT("invalid dc") );
232 wxCoord xx
= XLOG2DEV(x
);
233 wxCoord yy
= YLOG2DEV(y
);
234 wxCoord ww
= m_signX
* XLOG2DEVREL(width
);
235 wxCoord hh
= m_signY
* YLOG2DEVREL(height
);
237 if ( ww
== 0 || hh
== 0 ) return;
250 if ( m_brush
.GetStyle() != wxTRANSPARENT
)
252 SelectColour(m_brush
.GetColour());
253 m_surface
->FillRectangle(xx
, yy
, ww
, hh
);
254 // restore pen's colour, because other drawing functions expect the
255 // colour to be set to the pen:
256 SelectColour(m_pen
.GetColour());
259 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
261 m_surface
->DrawRectangle(xx
, yy
, ww
, hh
);
264 CalcBoundingBox(x
, y
);
265 CalcBoundingBox(x
+ width
, y
+ height
);
268 void wxDC::DoDrawRoundedRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
, double radius
)
270 wxCHECK_RET( Ok(), wxT("invalid dc") );
272 wxFAIL_MSG( _T("DrawRoundedRectangle not implemented") );
275 void wxDC::DoDrawEllipse(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
277 wxCHECK_RET( Ok(), wxT("invalid dc") );
279 wxFAIL_MSG( _T("DrawElipse not implemented") );
282 void wxDC::DoDrawEllipticArc(wxCoord x
,wxCoord y
,wxCoord w
,wxCoord h
,double sa
,double ea
)
284 wxCHECK_RET( Ok(), wxT("invalid dc") );
286 wxFAIL_MSG( _T("DrawElipticArc not implemented") );
289 void wxDC::DoDrawText(const wxString
& text
, wxCoord x
, wxCoord y
)
291 wxCHECK_RET( Ok(), wxT("invalid dc") );
293 wxCoord xx
= XLOG2DEV(x
);
294 wxCoord yy
= YLOG2DEV(y
);
296 // update the bounding box
298 CalcBoundingBox(x
, y
);
299 GetTextExtent(text
, &w
, &h
);
300 CalcBoundingBox(x
+ w
, y
+ h
);
302 // if background mode is solid, DrawText must paint text's background:
303 if ( m_backgroundMode
== wxSOLID
)
305 wxCHECK_RET( m_textBackgroundColour
.Ok(),
306 wxT("invalid background color") );
308 SelectColour(m_textBackgroundColour
);
309 m_surface
->FillRectangle(xx
, yy
, XLOG2DEVREL(w
), YLOG2DEVREL(h
));
312 // finally draw the text itself:
313 wxCHECK_RET( m_textForegroundColour
.Ok(),
314 wxT("invalid foreground color") );
315 SelectColour(m_textForegroundColour
);
316 m_surface
->DrawString(wxSTR_TO_DFB(text
), -1, xx
, yy
, DSTF_LEFT
| DSTF_TOP
);
318 // restore pen's colour, because other drawing functions expect the colour
319 // to be set to the pen:
320 SelectColour(m_pen
.GetColour());
323 void wxDC::DoDrawRotatedText(const wxString
& text
,
324 wxCoord x
, wxCoord y
,
327 wxCHECK_RET( Ok(), wxT("invalid dc") );
329 wxFAIL_MSG( _T("DrawRotatedText not implemented") );
332 // ---------------------------------------------------------------------------
334 // ---------------------------------------------------------------------------
336 void wxDC::SetPen(const wxPen
& pen
)
338 m_pen
= pen
.Ok() ? pen
: DEFAULT_PEN
;
340 SelectColour(m_pen
.GetColour());
343 void wxDC::SetBrush(const wxBrush
& brush
)
345 m_brush
= brush
.Ok() ? brush
: DEFAULT_BRUSH
;
348 void wxDC::SelectColour(const wxColour
& clr
)
350 m_surface
->SetColor(clr
.Red(), clr
.Green(), clr
.Blue(), clr
.Alpha());
351 #warning "use SetColorIndex?"
355 void wxDC::SetPalette(const wxPalette
& WXUNUSED(palette
))
357 wxCHECK_RET( Ok(), wxT("invalid dc") );
359 wxFAIL_MSG( _T("SetPalette not implemented") );
361 #endif // wxUSE_PALETTE
363 void wxDC::SetFont(const wxFont
& font
)
365 wxCHECK_RET( Ok(), wxT("invalid dc") );
367 wxFont
f(font
.Ok() ? font
: DEFAULT_FONT
);
369 if ( !m_surface
->SetFont(f
.GetDirectFBFont()) )
375 void wxDC::SetBackground(const wxBrush
& brush
)
377 wxCHECK_RET( Ok(), wxT("invalid dc") );
379 if (!brush
.Ok()) return;
381 m_backgroundBrush
= brush
;
384 void wxDC::SetBackgroundMode(int mode
)
386 m_backgroundMode
= mode
;
389 void wxDC::SetLogicalFunction(int function
)
391 wxCHECK_RET( Ok(), wxT("invalid dc") );
393 // NB: we could also support XOR, but for blitting only (via DSBLIT_XOR);
394 // and possibly others via SetSrc/DstBlendFunction()
395 wxASSERT_MSG( function
== wxCOPY
,
396 _T("only wxCOPY logical function supported") );
398 m_logicalFunction
= function
;
401 bool wxDC::StartDoc(const wxString
& WXUNUSED(message
))
403 // We might be previewing, so return true to let it continue.
411 void wxDC::StartPage()
419 // ---------------------------------------------------------------------------
421 // ---------------------------------------------------------------------------
423 wxCoord
wxDC::GetCharHeight() const
425 wxCHECK_MSG( Ok(), -1, wxT("invalid dc") );
426 wxCHECK_MSG( m_font
.Ok(), -1, wxT("no font selected") );
429 m_font
.GetDirectFBFont()->GetHeight(&h
);
430 return YDEV2LOGREL(h
);
433 wxCoord
wxDC::GetCharWidth() const
435 wxCHECK_MSG( Ok(), -1, wxT("invalid dc") );
436 wxCHECK_MSG( m_font
.Ok(), -1, wxT("no font selected") );
439 m_font
.GetDirectFBFont()->GetStringWidth("H", 1, &w
);
440 // VS: YDEV is corrent, it should *not* be XDEV, because font's are only
441 // scaled according to m_scaleY
442 return YDEV2LOGREL(w
);
445 void wxDC::DoGetTextExtent(const wxString
& string
, wxCoord
*x
, wxCoord
*y
,
446 wxCoord
*descent
, wxCoord
*externalLeading
,
447 wxFont
*theFont
) const
449 wxCHECK_RET( Ok(), wxT("invalid dc") );
450 wxCHECK_RET( m_font
.Ok(), wxT("no font selected") );
451 wxCHECK_RET( !theFont
|| theFont
->Ok(), wxT("invalid font") );
454 if ( theFont
!= NULL
)
457 wxConstCast(this, wxDC
)->SetFont(*theFont
);
460 wxCoord xx
= 0, yy
= 0;
462 wxIDirectFBFontPtr f
= m_font
.GetDirectFBFont();
464 if ( f
->GetStringExtents(wxSTR_TO_DFB(string
), -1, &rect
, NULL
) )
466 // VS: YDEV is corrent, it should *not* be XDEV, because font's are
467 // only scaled according to m_scaleY
468 xx
= YDEV2LOGREL(rect
.w
);
469 yy
= YDEV2LOGREL(rect
.h
);
474 if ( f
->GetDescender(&d
) )
475 *descent
= YDEV2LOGREL(-d
);
483 if ( externalLeading
) *externalLeading
= 0;
485 if ( theFont
!= NULL
)
486 wxConstCast(this, wxDC
)->SetFont(oldFont
);
491 // ---------------------------------------------------------------------------
493 // ---------------------------------------------------------------------------
495 void wxDC::ComputeScaleAndOrigin()
497 m_scaleX
= m_logicalScaleX
* m_userScaleX
;
498 m_scaleY
= m_logicalScaleY
* m_userScaleY
;
500 // FIXME_DFB: scaling affects pixel size of font, pens, brushes, which
501 // is not currently implemented here; probably makes sense to
502 // switch to Cairo instead of implementing everything for DFB
503 wxASSERT_MSG( m_scaleX
== 1.0 && m_scaleY
== 1.0,
504 _T("scaling is not implemented in wxDFB") );
507 void wxDC::SetMapMode(int mode
)
509 #warning "move this to common code, it's shared by almost all ports!"
513 SetLogicalScale(twips2mm
*m_mm_to_pix_x
, twips2mm
*m_mm_to_pix_y
);
516 SetLogicalScale(pt2mm
*m_mm_to_pix_x
, pt2mm
*m_mm_to_pix_y
);
519 SetLogicalScale(m_mm_to_pix_x
, m_mm_to_pix_y
);
522 SetLogicalScale(m_mm_to_pix_x
/10.0, m_mm_to_pix_y
/10.0);
526 SetLogicalScale(1.0, 1.0);
529 m_mappingMode
= mode
;
532 void wxDC::SetUserScale(double x
, double y
)
534 #warning "move this to common code?"
535 // allow negative ? -> no
538 ComputeScaleAndOrigin();
541 void wxDC::SetLogicalScale(double x
, double y
)
543 #warning "move this to common code?"
547 ComputeScaleAndOrigin();
550 void wxDC::SetLogicalOrigin( wxCoord x
, wxCoord y
)
552 #warning "move this to common code?"
553 m_logicalOriginX
= x
* m_signX
; // is this still correct ?
554 m_logicalOriginY
= y
* m_signY
;
555 ComputeScaleAndOrigin();
558 void wxDC::SetDeviceOrigin( wxCoord x
, wxCoord y
)
560 #warning "move this to common code?"
561 // only wxPostScripDC has m_signX = -1, we override SetDeviceOrigin there
564 ComputeScaleAndOrigin();
567 void wxDC::SetAxisOrientation( bool xLeftRight
, bool yBottomUp
)
569 #warning "move this to common code?"
570 // only wxPostScripDC has m_signX = -1, we override SetAxisOrientation there
571 m_signX
= (xLeftRight
? 1 : -1);
572 m_signY
= (yBottomUp
? -1 : 1);
573 ComputeScaleAndOrigin();
576 // ---------------------------------------------------------------------------
577 // coordinates transformations
578 // ---------------------------------------------------------------------------
580 wxCoord
wxDCBase::DeviceToLogicalX(wxCoord x
) const
582 return ((wxDC
*)this)->XDEV2LOG(x
);
585 wxCoord
wxDCBase::DeviceToLogicalY(wxCoord y
) const
587 return ((wxDC
*)this)->YDEV2LOG(y
);
590 wxCoord
wxDCBase::DeviceToLogicalXRel(wxCoord x
) const
592 return ((wxDC
*)this)->XDEV2LOGREL(x
);
595 wxCoord
wxDCBase::DeviceToLogicalYRel(wxCoord y
) const
597 return ((wxDC
*)this)->YDEV2LOGREL(y
);
600 wxCoord
wxDCBase::LogicalToDeviceX(wxCoord x
) const
602 return ((wxDC
*)this)->XLOG2DEV(x
);
605 wxCoord
wxDCBase::LogicalToDeviceY(wxCoord y
) const
607 return ((wxDC
*)this)->YLOG2DEV(y
);
610 wxCoord
wxDCBase::LogicalToDeviceXRel(wxCoord x
) const
612 return ((wxDC
*)this)->XLOG2DEVREL(x
);
615 wxCoord
wxDCBase::LogicalToDeviceYRel(wxCoord y
) const
617 return ((wxDC
*)this)->YLOG2DEVREL(y
);
621 void wxDC::DoGetSize(int *w
, int *h
) const
623 wxCHECK_RET( Ok(), wxT("invalid dc") );
625 m_surface
->GetSize(w
, h
);
628 void wxDC::DoGetSizeMM(int *width
, int *height
) const
630 #warning "move this to common code?"
634 if ( width
) *width
= int(double(w
) / (m_userScaleX
*m_mm_to_pix_x
));
635 if ( height
) *height
= int(double(h
) / (m_userScaleY
*m_mm_to_pix_y
));
638 wxSize
wxDC::GetPPI() const
640 #warning "move this to common code?"
641 return wxSize(int(double(m_mm_to_pix_x
) * inches2mm
),
642 int(double(m_mm_to_pix_y
) * inches2mm
));
646 // ---------------------------------------------------------------------------
648 // ---------------------------------------------------------------------------
650 bool wxDC::DoBlit(wxCoord xdest
, wxCoord ydest
,
651 wxCoord width
, wxCoord height
,
652 wxDC
*source
, wxCoord xsrc
, wxCoord ysrc
,
653 int rop
, bool useMask
,
654 wxCoord xsrcMask
, wxCoord ysrcMask
)
656 wxCHECK_MSG( Ok(), false, _T("invalid dc") );
657 wxCHECK_MSG( source
, false, _T("invalid source dc") );
659 // NB: we could also support XOR here (via DSBLIT_XOR)
660 // and possibly others via SetSrc/DstBlendFunction()
661 wxCHECK_MSG( rop
== wxCOPY
, false, _T("only wxCOPY function supported") );
663 // transform the source DC coords to the device ones
664 xsrc
= source
->LogicalToDeviceX(xsrc
);
665 ysrc
= source
->LogicalToDeviceY(ysrc
);
667 // FIXME_DFB: use the mask origin when drawing transparently
668 wxASSERT_MSG( xsrcMask
== -1 && ysrcMask
== -1,
669 _T("non-default source mask offset not implemented") );
671 if (xsrcMask
== -1 && ysrcMask
== -1)
673 xsrcMask
= xsrc
; ysrcMask
= ysrc
;
677 xsrcMask
= source
->LogicalToDeviceX(xsrcMask
);
678 ysrcMask
= source
->LogicalToDeviceY(ysrcMask
);
682 wxMemoryDC
*sourceAsMemDC
= wxDynamicCast(source
, wxMemoryDC
);
685 DoDrawSubBitmap(sourceAsMemDC
->GetSelectedObject(),
694 return DoBlitFromSurface(source
->GetDirectFBSurface(),
703 void wxDC::DoDrawBitmap(const wxBitmap
&bmp
, wxCoord x
, wxCoord y
, bool useMask
)
705 wxCHECK_RET( Ok(), wxT("invalid dc") );
706 wxCHECK_RET( bmp
.Ok(), wxT("invalid bitmap") );
709 0, 0, bmp
.GetWidth(), bmp
.GetHeight(),
711 m_logicalFunction
, useMask
);
714 void wxDC::DoDrawIcon(const wxIcon
& icon
, wxCoord x
, wxCoord y
)
716 // VZ: egcs 1.0.3 refuses to compile this without cast, no idea why
717 DoDrawBitmap((const wxBitmap
&)icon
, x
, y
, true);
720 void wxDC::DoDrawSubBitmap(const wxBitmap
&bmp
,
721 wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
,
722 wxCoord destx
, wxCoord desty
, int rop
, bool useMask
)
724 wxCHECK_RET( Ok(), wxT("invalid dc") );
725 wxCHECK_RET( bmp
.Ok(), wxT("invalid bitmap") );
727 // NB: we could also support XOR here (via DSBLIT_XOR)
728 // and possibly others via SetSrc/DstBlendFunction()
729 wxCHECK_RET( rop
== wxCOPY
, _T("only wxCOPY function supported") );
731 if ( bmp
.GetDepth() == 1 )
733 // Mono bitmaps are handled in special way -- all 1s are drawn in
734 // foreground colours, all 0s in background colour.
735 wxFAIL_MSG( _T("drawing mono bitmaps not implemented") );
739 if ( useMask
&& bmp
.GetMask() )
741 // FIXME_DFB: see MGL sources for a way to do it, but it's not directly
742 // applicable because DirectFB doesn't implement ROPs; OTOH,
743 // it has blitting modes that can be useful; finally, see
744 // DFB's SetSrcBlendFunction() and SetSrcColorKey()
745 wxFAIL_MSG( _T("drawing bitmaps with masks not implemented") );
749 DoBlitFromSurface(bmp
.GetDirectFBSurface(),
755 bool wxDC::DoBlitFromSurface(const wxIDirectFBSurfacePtr
& src
,
756 wxCoord srcx
, wxCoord srcy
,
757 wxCoord w
, wxCoord h
,
758 wxCoord dstx
, wxCoord dsty
)
760 // don't do anything if the source rectangle is outside of source surface,
761 // DirectFB would assert in that case:
763 src
->GetSize(&srcsize
.x
, &srcsize
.y
);
764 if ( !wxRect(srcx
, srcy
, w
, h
).Intersects(wxRect(srcsize
)) )
766 wxLogDebug(_T("Blitting from area outside of the source surface, caller code needs fixing."));
770 CalcBoundingBox(dstx
, dsty
);
771 CalcBoundingBox(dstx
+ w
, dsty
+ h
);
773 DFBRectangle srcRect
= { srcx
, srcy
, w
, h
};
774 DFBRectangle dstRect
= { XLOG2DEV(dstx
), YLOG2DEV(dsty
),
775 XLOG2DEVREL(w
), YLOG2DEVREL(h
) };
777 wxIDirectFBSurfacePtr
dst(m_surface
);
779 // FIXME: this will have to be different in useMask case, see above
780 if ( !dst
->SetBlittingFlags(DSBLIT_NOFX
) )
783 if ( srcRect
.w
!= dstRect
.w
|| srcRect
.h
!= dstRect
.h
)
785 // the bitmap is drawn stretched:
786 dst
->StretchBlit(src
, &srcRect
, &dstRect
);
790 // no stretching, size is preserved:
791 dst
->Blit(src
, &srcRect
, dstRect
.x
, dstRect
.y
);