Lines Matching refs:pRawBitmap
664 const RawBitmap* const pRawBitmap = rGlyphPeer.GetRawBitmap( rFont, nGlyph ); in DrawServerAAForcedString() local
665 if( !pRawBitmap ) in DrawServerAAForcedString()
668 const int nX1 = aPos.X() + pRawBitmap->mnXOffset; in DrawServerAAForcedString()
669 const int nY1 = aPos.Y() + pRawBitmap->mnYOffset; in DrawServerAAForcedString()
670 const int nX2 = nX1 + pRawBitmap->mnWidth; in DrawServerAAForcedString()
671 const int nY2 = nY1 + pRawBitmap->mnHeight; in DrawServerAAForcedString()
814 const RawBitmap* const pRawBitmap = rGlyphPeer.GetRawBitmap( rFont, nGlyph ); in DrawServerAAForcedString() local
815 if( !pRawBitmap ) in DrawServerAAForcedString()
818 const int nX1 = aPos.X() + pRawBitmap->mnXOffset; in DrawServerAAForcedString()
819 const int nY1 = aPos.Y() + pRawBitmap->mnYOffset; in DrawServerAAForcedString()
821 if( (nX1 <= nXmax) && (int(nX1 + pRawBitmap->mnWidth) > nXmin) in DrawServerAAForcedString()
822 && (nY1 <= nYmax) && (int(nY1 + pRawBitmap->mnHeight) > nYmin) ) in DrawServerAAForcedString()
824 const unsigned char* p10 = pRawBitmap->mpBits; in DrawServerAAForcedString()
828 int y = pRawBitmap->mnHeight; in DrawServerAAForcedString()
838 for( int x = pRawBitmap->mnWidth; (--x >= 0) && (p22 > pDst); ++pSrc ) in DrawServerAAForcedString()
860 p10 += pRawBitmap->mnScanlineSize; in DrawServerAAForcedString()