HomeSort by relevance Sort by last modified time
    Searched refs:bmpRect (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/wince/
SharedBitmap.cpp 588 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.height() * w
    [all...]
GraphicsContextWinCE.cpp 268 PassRefPtr<SharedBitmap> getTransparentLayerBitmap(IntRect& origRect, AlphaPaintType alphaPaint, RECT& bmpRect, bool checkClipBox, bool force) const
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)
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);
    [all...]

Completed in 35 milliseconds