Searched refs:bmpRect (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/wince/
H A DSharedBitmap.cpp588 IntRect bmpRect(0, 0, width(), height());
589 bmpRect.intersect(rect);
593 dst += bmpRect.y() * w + bmpRect.x();
594 int wordsToSet = bmpRect.width();
595 const unsigned short* dstEnd = dst + bmpRect.height() * w;
605 dst += bmpRect.y() * w + bmpRect.x();
606 int wordsToSet = bmpRect.width() * 2;
607 const unsigned* dstEnd = dst + bmpRect
[all...]
H A DGraphicsContextWinCE.cpp268 PassRefPtr<SharedBitmap> getTransparentLayerBitmap(IntRect& origRect, AlphaPaintType alphaPaint, RECT& bmpRect, bool checkClipBox, bool force) const argument
284 SetRect(&bmpRect, 0, 0, origRect.width(), origRect.height());
315 bmpRect = origRect;
319 void paintBackTransparentLayerBitmap(HDC hdc, SharedBitmap* bmp, const IntRect& origRect, AlphaPaintType alphaPaint, const RECT& bmpRect) argument
337 bool success = alphaBlendIfSupported(m_dc, origRect.x(), origRect.y(), origRect.width(), origRect.height(), hdc, 0, 0, bmpRect.right, bmpRect.bottom, blend);
340 StretchBlt(m_dc, origRect.x(), origRect.y(), origRect.width(), origRect.height(), hdc, 0, 0, bmpRect.right, bmpRect.bottom, SRCCOPY);
1551 RECT bmpRect; local
1553 if (RefPtr<SharedBitmap> bmp = m_data->getTransparentLayerBitmap(trRect, alphaPaintType, bmpRect, tru
[all...]

Completed in 40 milliseconds