]>
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::DFBInit(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 wxCoord xx1
= XLOG2DEV(x1
);
184 wxCoord yy1
= YLOG2DEV(y1
);
185 wxCoord xx2
= XLOG2DEV(x2
);
186 wxCoord yy2
= YLOG2DEV(y2
);
188 // FIXME: DrawLine() shouldn't draw the last pixel, but DFB's DrawLine()
189 // does draw it. We should undo any change to the last pixel by
190 // using GetPixel() and PutPixel(), but until they are implemented,
191 // handle at least the special case of vertical and horizontal
197 else if ( yy1
> yy2
)
204 else if ( xx1
> xx2
)
208 m_surface
->DrawLine(xx1
, yy1
, xx2
, yy2
);
210 CalcBoundingBox(x1
, y1
);
211 CalcBoundingBox(x2
, y2
);
214 // Draws an arc of a circle, centred on (xc, yc), with starting point (x1, y1)
215 // and ending at (x2, y2)
216 void wxDC::DoDrawArc(wxCoord x1
, wxCoord y1
,
217 wxCoord x2
, wxCoord y2
,
218 wxCoord xc
, wxCoord yc
)
220 wxCHECK_RET( Ok(), wxT("invalid dc") );
222 wxFAIL_MSG( _T("DrawArc not implemented") );
225 void wxDC::DoDrawPoint(wxCoord x
, wxCoord y
)
227 wxCHECK_RET( Ok(), wxT("invalid dc") );
229 // NB: DirectFB API doesn't provide a function for drawing points, so
230 // implement it as 1px long line. This is inefficient, but then, so is
231 // using DrawPoint() for drawing more than a few points.
232 DoDrawLine(x
, y
, x
, y
);
234 // FIXME_DFB: implement special cases for common formats (RGB24,RGBA/RGB32)
237 void wxDC::DoDrawPolygon(int n
, wxPoint points
[], wxCoord xoffset
, wxCoord yoffset
,int WXUNUSED(fillStyle
))
239 wxCHECK_RET( Ok(), wxT("invalid dc") );
241 wxFAIL_MSG( _T("DrawPolygon not implemented") );
244 void wxDC::DoDrawLines(int n
, wxPoint points
[], wxCoord xoffset
, wxCoord yoffset
)
246 wxCHECK_RET( Ok(), wxT("invalid dc") );
248 // TODO: impl. using DirectDB's DrawLines
249 wxFAIL_MSG( _T("DrawLines not implemented") );
252 void wxDC::DoDrawRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
254 wxCHECK_RET( Ok(), wxT("invalid dc") );
256 wxCoord xx
= XLOG2DEV(x
);
257 wxCoord yy
= YLOG2DEV(y
);
258 wxCoord ww
= m_signX
* XLOG2DEVREL(width
);
259 wxCoord hh
= m_signY
* YLOG2DEVREL(height
);
261 if ( ww
== 0 || hh
== 0 ) return;
274 if ( m_brush
.GetStyle() != wxTRANSPARENT
)
276 SelectColour(m_brush
.GetColour());
277 m_surface
->FillRectangle(xx
, yy
, ww
, hh
);
278 // restore pen's colour, because other drawing functions expect the
279 // colour to be set to the pen:
280 SelectColour(m_pen
.GetColour());
283 if ( m_pen
.GetStyle() != wxTRANSPARENT
)
285 m_surface
->DrawRectangle(xx
, yy
, ww
, hh
);
288 CalcBoundingBox(x
, y
);
289 CalcBoundingBox(x
+ width
, y
+ height
);
292 void wxDC::DoDrawRoundedRectangle(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
, double radius
)
294 wxCHECK_RET( Ok(), wxT("invalid dc") );
296 wxFAIL_MSG( _T("DrawRoundedRectangle not implemented") );
299 void wxDC::DoDrawEllipse(wxCoord x
, wxCoord y
, wxCoord width
, wxCoord height
)
301 wxCHECK_RET( Ok(), wxT("invalid dc") );
303 wxFAIL_MSG( _T("DrawElipse not implemented") );
306 void wxDC::DoDrawEllipticArc(wxCoord x
,wxCoord y
,wxCoord w
,wxCoord h
,double sa
,double ea
)
308 wxCHECK_RET( Ok(), wxT("invalid dc") );
310 wxFAIL_MSG( _T("DrawElipticArc not implemented") );
313 void wxDC::DoDrawText(const wxString
& text
, wxCoord x
, wxCoord y
)
315 wxCHECK_RET( Ok(), wxT("invalid dc") );
317 wxCoord xx
= XLOG2DEV(x
);
318 wxCoord yy
= YLOG2DEV(y
);
320 // update the bounding box
322 CalcBoundingBox(x
, y
);
323 GetTextExtent(text
, &w
, &h
);
324 CalcBoundingBox(x
+ w
, y
+ h
);
326 // if background mode is solid, DrawText must paint text's background:
327 if ( m_backgroundMode
== wxSOLID
)
329 wxCHECK_RET( m_textBackgroundColour
.Ok(),
330 wxT("invalid background color") );
332 SelectColour(m_textBackgroundColour
);
333 m_surface
->FillRectangle(xx
, yy
, XLOG2DEVREL(w
), YLOG2DEVREL(h
));
336 // finally draw the text itself:
337 wxCHECK_RET( m_textForegroundColour
.Ok(),
338 wxT("invalid foreground color") );
339 SelectColour(m_textForegroundColour
);
340 m_surface
->DrawString(wxSTR_TO_DFB(text
), -1, xx
, yy
, DSTF_LEFT
| DSTF_TOP
);
342 // restore pen's colour, because other drawing functions expect the colour
343 // to be set to the pen:
344 SelectColour(m_pen
.GetColour());
347 void wxDC::DoDrawRotatedText(const wxString
& text
,
348 wxCoord x
, wxCoord y
,
351 wxCHECK_RET( Ok(), wxT("invalid dc") );
353 wxFAIL_MSG( _T("DrawRotatedText not implemented") );
356 // ---------------------------------------------------------------------------
358 // ---------------------------------------------------------------------------
360 void wxDC::SetPen(const wxPen
& pen
)
362 m_pen
= pen
.Ok() ? pen
: DEFAULT_PEN
;
364 SelectColour(m_pen
.GetColour());
367 void wxDC::SetBrush(const wxBrush
& brush
)
369 m_brush
= brush
.Ok() ? brush
: DEFAULT_BRUSH
;
372 void wxDC::SelectColour(const wxColour
& clr
)
374 m_surface
->SetColor(clr
.Red(), clr
.Green(), clr
.Blue(), clr
.Alpha());
375 #warning "use SetColorIndex?"
379 void wxDC::SetPalette(const wxPalette
& WXUNUSED(palette
))
381 wxCHECK_RET( Ok(), wxT("invalid dc") );
383 wxFAIL_MSG( _T("SetPalette not implemented") );
385 #endif // wxUSE_PALETTE
387 void wxDC::SetFont(const wxFont
& font
)
389 wxCHECK_RET( Ok(), wxT("invalid dc") );
391 wxFont
f(font
.Ok() ? font
: DEFAULT_FONT
);
393 wxFont
oldfont(m_font
);
397 if ( !m_surface
->SetFont(GetCurrentFont()) )
404 wxIDirectFBFontPtr
wxDC::GetCurrentFont() const
406 bool aa
= (GetDepth() > 8);
407 return m_font
.GetDirectFBFont(aa
);
410 void wxDC::SetBackground(const wxBrush
& brush
)
412 wxCHECK_RET( Ok(), wxT("invalid dc") );
414 if (!brush
.Ok()) return;
416 m_backgroundBrush
= brush
;
419 void wxDC::SetBackgroundMode(int mode
)
421 m_backgroundMode
= mode
;
424 void wxDC::SetLogicalFunction(int function
)
426 wxCHECK_RET( Ok(), wxT("invalid dc") );
428 // NB: we could also support XOR, but for blitting only (via DSBLIT_XOR);
429 // and possibly others via SetSrc/DstBlendFunction()
430 wxASSERT_MSG( function
== wxCOPY
,
431 _T("only wxCOPY logical function supported") );
433 m_logicalFunction
= function
;
436 bool wxDC::StartDoc(const wxString
& WXUNUSED(message
))
438 // We might be previewing, so return true to let it continue.
446 void wxDC::StartPage()
454 // ---------------------------------------------------------------------------
456 // ---------------------------------------------------------------------------
458 wxCoord
wxDC::GetCharHeight() const
460 wxCHECK_MSG( Ok(), -1, wxT("invalid dc") );
461 wxCHECK_MSG( m_font
.Ok(), -1, wxT("no font selected") );
464 GetCurrentFont()->GetHeight(&h
);
465 return YDEV2LOGREL(h
);
468 wxCoord
wxDC::GetCharWidth() const
470 wxCHECK_MSG( Ok(), -1, wxT("invalid dc") );
471 wxCHECK_MSG( m_font
.Ok(), -1, wxT("no font selected") );
474 GetCurrentFont()->GetStringWidth("H", 1, &w
);
475 // VS: YDEV is corrent, it should *not* be XDEV, because font's are only
476 // scaled according to m_scaleY
477 return YDEV2LOGREL(w
);
480 void wxDC::DoGetTextExtent(const wxString
& string
, wxCoord
*x
, wxCoord
*y
,
481 wxCoord
*descent
, wxCoord
*externalLeading
,
482 wxFont
*theFont
) const
484 wxCHECK_RET( Ok(), wxT("invalid dc") );
485 wxCHECK_RET( m_font
.Ok(), wxT("no font selected") );
486 wxCHECK_RET( !theFont
|| theFont
->Ok(), wxT("invalid font") );
489 if ( theFont
!= NULL
)
492 wxConstCast(this, wxDC
)->SetFont(*theFont
);
495 wxCoord xx
= 0, yy
= 0;
497 wxIDirectFBFontPtr f
= GetCurrentFont();
499 if ( f
->GetStringExtents(wxSTR_TO_DFB(string
), -1, &rect
, NULL
) )
501 // VS: YDEV is corrent, it should *not* be XDEV, because font's are
502 // only scaled according to m_scaleY
503 xx
= YDEV2LOGREL(rect
.w
);
504 yy
= YDEV2LOGREL(rect
.h
);
509 if ( f
->GetDescender(&d
) )
510 *descent
= YDEV2LOGREL(-d
);
518 if ( externalLeading
) *externalLeading
= 0;
520 if ( theFont
!= NULL
)
521 wxConstCast(this, wxDC
)->SetFont(oldFont
);
526 // ---------------------------------------------------------------------------
528 // ---------------------------------------------------------------------------
530 void wxDC::ComputeScaleAndOrigin()
532 m_scaleX
= m_logicalScaleX
* m_userScaleX
;
533 m_scaleY
= m_logicalScaleY
* m_userScaleY
;
535 // FIXME_DFB: scaling affects pixel size of font, pens, brushes, which
536 // is not currently implemented here; probably makes sense to
537 // switch to Cairo instead of implementing everything for DFB
538 wxASSERT_MSG( m_scaleX
== 1.0 && m_scaleY
== 1.0,
539 _T("scaling is not implemented in wxDFB") );
542 void wxDC::SetMapMode(int mode
)
544 #warning "move this to common code, it's shared by almost all ports!"
548 SetLogicalScale(twips2mm
*m_mm_to_pix_x
, twips2mm
*m_mm_to_pix_y
);
551 SetLogicalScale(pt2mm
*m_mm_to_pix_x
, pt2mm
*m_mm_to_pix_y
);
554 SetLogicalScale(m_mm_to_pix_x
, m_mm_to_pix_y
);
557 SetLogicalScale(m_mm_to_pix_x
/10.0, m_mm_to_pix_y
/10.0);
561 SetLogicalScale(1.0, 1.0);
564 m_mappingMode
= mode
;
567 void wxDC::SetUserScale(double x
, double y
)
569 #warning "move this to common code?"
570 // allow negative ? -> no
573 ComputeScaleAndOrigin();
576 void wxDC::SetLogicalScale(double x
, double y
)
578 #warning "move this to common code?"
582 ComputeScaleAndOrigin();
585 void wxDC::SetLogicalOrigin( wxCoord x
, wxCoord y
)
587 #warning "move this to common code?"
588 m_logicalOriginX
= x
* m_signX
; // is this still correct ?
589 m_logicalOriginY
= y
* m_signY
;
590 ComputeScaleAndOrigin();
593 void wxDC::SetDeviceOrigin( wxCoord x
, wxCoord y
)
595 #warning "move this to common code?"
596 // only wxPostScripDC has m_signX = -1, we override SetDeviceOrigin there
599 ComputeScaleAndOrigin();
602 void wxDC::SetAxisOrientation( bool xLeftRight
, bool yBottomUp
)
604 #warning "move this to common code?"
605 // only wxPostScripDC has m_signX = -1, we override SetAxisOrientation there
606 m_signX
= (xLeftRight
? 1 : -1);
607 m_signY
= (yBottomUp
? -1 : 1);
608 ComputeScaleAndOrigin();
611 // ---------------------------------------------------------------------------
612 // coordinates transformations
613 // ---------------------------------------------------------------------------
615 wxCoord
wxDCBase::DeviceToLogicalX(wxCoord x
) const
617 return ((wxDC
*)this)->XDEV2LOG(x
);
620 wxCoord
wxDCBase::DeviceToLogicalY(wxCoord y
) const
622 return ((wxDC
*)this)->YDEV2LOG(y
);
625 wxCoord
wxDCBase::DeviceToLogicalXRel(wxCoord x
) const
627 return ((wxDC
*)this)->XDEV2LOGREL(x
);
630 wxCoord
wxDCBase::DeviceToLogicalYRel(wxCoord y
) const
632 return ((wxDC
*)this)->YDEV2LOGREL(y
);
635 wxCoord
wxDCBase::LogicalToDeviceX(wxCoord x
) const
637 return ((wxDC
*)this)->XLOG2DEV(x
);
640 wxCoord
wxDCBase::LogicalToDeviceY(wxCoord y
) const
642 return ((wxDC
*)this)->YLOG2DEV(y
);
645 wxCoord
wxDCBase::LogicalToDeviceXRel(wxCoord x
) const
647 return ((wxDC
*)this)->XLOG2DEVREL(x
);
650 wxCoord
wxDCBase::LogicalToDeviceYRel(wxCoord y
) const
652 return ((wxDC
*)this)->YLOG2DEVREL(y
);
656 void wxDC::DoGetSize(int *w
, int *h
) const
658 wxCHECK_RET( Ok(), wxT("invalid dc") );
660 m_surface
->GetSize(w
, h
);
663 void wxDC::DoGetSizeMM(int *width
, int *height
) const
665 #warning "move this to common code?"
669 if ( width
) *width
= int(double(w
) / (m_userScaleX
*m_mm_to_pix_x
));
670 if ( height
) *height
= int(double(h
) / (m_userScaleY
*m_mm_to_pix_y
));
673 wxSize
wxDC::GetPPI() const
675 #warning "move this to common code?"
676 return wxSize(int(double(m_mm_to_pix_x
) * inches2mm
),
677 int(double(m_mm_to_pix_y
) * inches2mm
));
681 // ---------------------------------------------------------------------------
683 // ---------------------------------------------------------------------------
685 bool wxDC::DoBlit(wxCoord xdest
, wxCoord ydest
,
686 wxCoord width
, wxCoord height
,
687 wxDC
*source
, wxCoord xsrc
, wxCoord ysrc
,
688 int rop
, bool useMask
,
689 wxCoord xsrcMask
, wxCoord ysrcMask
)
691 wxCHECK_MSG( Ok(), false, _T("invalid dc") );
692 wxCHECK_MSG( source
, false, _T("invalid source dc") );
694 // NB: we could also support XOR here (via DSBLIT_XOR)
695 // and possibly others via SetSrc/DstBlendFunction()
696 wxCHECK_MSG( rop
== wxCOPY
, false, _T("only wxCOPY function supported") );
698 // transform the source DC coords to the device ones
699 xsrc
= source
->LogicalToDeviceX(xsrc
);
700 ysrc
= source
->LogicalToDeviceY(ysrc
);
702 // FIXME_DFB: use the mask origin when drawing transparently
703 wxASSERT_MSG( xsrcMask
== -1 && ysrcMask
== -1,
704 _T("non-default source mask offset not implemented") );
706 if (xsrcMask
== -1 && ysrcMask
== -1)
708 xsrcMask
= xsrc
; ysrcMask
= ysrc
;
712 xsrcMask
= source
->LogicalToDeviceX(xsrcMask
);
713 ysrcMask
= source
->LogicalToDeviceY(ysrcMask
);
717 wxMemoryDC
*sourceAsMemDC
= wxDynamicCast(source
, wxMemoryDC
);
720 DoDrawSubBitmap(sourceAsMemDC
->GetSelectedObject(),
729 return DoBlitFromSurface(source
->GetDirectFBSurface(),
738 void wxDC::DoDrawBitmap(const wxBitmap
&bmp
, wxCoord x
, wxCoord y
, bool useMask
)
740 wxCHECK_RET( Ok(), wxT("invalid dc") );
741 wxCHECK_RET( bmp
.Ok(), wxT("invalid bitmap") );
744 0, 0, bmp
.GetWidth(), bmp
.GetHeight(),
746 m_logicalFunction
, useMask
);
749 void wxDC::DoDrawIcon(const wxIcon
& icon
, wxCoord x
, wxCoord y
)
751 // VZ: egcs 1.0.3 refuses to compile this without cast, no idea why
752 DoDrawBitmap((const wxBitmap
&)icon
, x
, y
, true);
755 void wxDC::DoDrawSubBitmap(const wxBitmap
&bmp
,
756 wxCoord x
, wxCoord y
, wxCoord w
, wxCoord h
,
757 wxCoord destx
, wxCoord desty
, int rop
, bool useMask
)
759 wxCHECK_RET( Ok(), wxT("invalid dc") );
760 wxCHECK_RET( bmp
.Ok(), wxT("invalid bitmap") );
762 // NB: we could also support XOR here (via DSBLIT_XOR)
763 // and possibly others via SetSrc/DstBlendFunction()
764 wxCHECK_RET( rop
== wxCOPY
, _T("only wxCOPY function supported") );
766 if ( bmp
.GetDepth() == 1 )
768 // Mono bitmaps are handled in special way -- all 1s are drawn in
769 // foreground colours, all 0s in background colour.
770 wxFAIL_MSG( _T("drawing mono bitmaps not implemented") );
774 if ( useMask
&& bmp
.GetMask() )
776 // FIXME_DFB: see MGL sources for a way to do it, but it's not directly
777 // applicable because DirectFB doesn't implement ROPs; OTOH,
778 // it has blitting modes that can be useful; finally, see
779 // DFB's SetSrcBlendFunction() and SetSrcColorKey()
780 wxFAIL_MSG( _T("drawing bitmaps with masks not implemented") );
784 DoBlitFromSurface(bmp
.GetDirectFBSurface(),
790 bool wxDC::DoBlitFromSurface(const wxIDirectFBSurfacePtr
& src
,
791 wxCoord srcx
, wxCoord srcy
,
792 wxCoord w
, wxCoord h
,
793 wxCoord dstx
, wxCoord dsty
)
795 // don't do anything if the source rectangle is outside of source surface,
796 // DirectFB would assert in that case:
798 src
->GetSize(&srcsize
.x
, &srcsize
.y
);
799 if ( !wxRect(srcx
, srcy
, w
, h
).Intersects(wxRect(srcsize
)) )
801 wxLogDebug(_T("Blitting from area outside of the source surface, caller code needs fixing."));
805 CalcBoundingBox(dstx
, dsty
);
806 CalcBoundingBox(dstx
+ w
, dsty
+ h
);
808 DFBRectangle srcRect
= { srcx
, srcy
, w
, h
};
809 DFBRectangle dstRect
= { XLOG2DEV(dstx
), YLOG2DEV(dsty
),
810 XLOG2DEVREL(w
), YLOG2DEVREL(h
) };
812 wxIDirectFBSurfacePtr
dst(m_surface
);
814 // FIXME: this will have to be different in useMask case, see above
815 if ( !dst
->SetBlittingFlags(DSBLIT_NOFX
) )
818 if ( srcRect
.w
!= dstRect
.w
|| srcRect
.h
!= dstRect
.h
)
820 // the bitmap is drawn stretched:
821 dst
->StretchBlit(src
, &srcRect
, &dstRect
);
825 // no stretching, size is preserved:
826 dst
->Blit(src
, &srcRect
, dstRect
.x
, dstRect
.y
);