Lines Matching defs:bitmap
389 int FontManager::UpdateAtlas(FontDefs::Glyph& glyph, const FT_Bitmap& bitmap, bool inColor)
391 uint32_t width = bitmap.width + BORDER_WIDTH_X2;
392 uint32_t height = bitmap.rows + BORDER_WIDTH_X2;
417 AddGlyphToColumn(glyph, bestFitAtlas, hdr, bitmap, bestFitColumnPos);
428 AddGlyphToColumn(glyph, i, hdr, bitmap, 0);
480 Glyph& glyph, size_t atlasIndex, ColumnHeader& hdr, const FT_Bitmap& bitmap, uint32_t columnX)
482 uint32_t width = bitmap.width;
483 uint32_t height = bitmap.rows;
499 if (width > 0 && height > 0 && bitmap.pitch / bpp >= width) {
505 { bitmap.buffer, bitmap.buffer + bitmap.pitch * bitmap.rows },