Searched refs:srcFTBitmap (Results 1 – 1 of 1) sorted by relevance
181 void copyFTBitmap(const FT_Bitmap& srcFTBitmap, SkMask& dstMask) { in copyFTBitmap() argument182 SkASSERTF(dstMask.fBounds.width() == static_cast<int>(srcFTBitmap.width), in copyFTBitmap()186 static_cast<int>(srcFTBitmap.width) in copyFTBitmap()188 SkASSERTF(dstMask.fBounds.height() == static_cast<int>(srcFTBitmap.rows), in copyFTBitmap()192 static_cast<int>(srcFTBitmap.rows) in copyFTBitmap()195 const uint8_t* src = reinterpret_cast<const uint8_t*>(srcFTBitmap.buffer); in copyFTBitmap()196 const FT_Pixel_Mode srcFormat = static_cast<FT_Pixel_Mode>(srcFTBitmap.pixel_mode); in copyFTBitmap()198 const int srcPitch = srcFTBitmap.pitch; in copyFTBitmap()205 const size_t width = srcFTBitmap.width; in copyFTBitmap()206 const size_t height = srcFTBitmap.rows; in copyFTBitmap()[all …]