mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0025691: Visualization, TKService - fix font corruption on FreeType 2.5.4
This commit is contained in:
parent
c857a60abe
commit
49297cb6bd
@ -160,7 +160,7 @@ bool Font_FTFont::RenderGlyph (const Standard_Utf32Char theUChar)
|
||||
|
||||
FT_Bitmap aBitmap = myFTFace->glyph->bitmap;
|
||||
if (aBitmap.pixel_mode != FT_PIXEL_MODE_GRAY
|
||||
|| aBitmap.buffer == NULL || aBitmap.width <= 0 || aBitmap.rows <= 0)
|
||||
|| aBitmap.buffer == NULL || aBitmap.width == 0 || aBitmap.rows == 0)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
@ -171,11 +171,11 @@ public:
|
||||
//! Retrieve glyph bitmap rectangle
|
||||
inline void GlyphRect (Font_FTFont::Rect& theRect) const
|
||||
{
|
||||
FT_Bitmap aBitmap = myFTFace->glyph->bitmap;
|
||||
const FT_Bitmap& aBitmap = myFTFace->glyph->bitmap;
|
||||
theRect.Left = float(myFTFace->glyph->bitmap_left);
|
||||
theRect.Top = float(myFTFace->glyph->bitmap_top);
|
||||
theRect.Right = float(myFTFace->glyph->bitmap_left + aBitmap.width);
|
||||
theRect.Bottom = float(myFTFace->glyph->bitmap_top - aBitmap.rows);
|
||||
theRect.Right = float(myFTFace->glyph->bitmap_left + (int )aBitmap.width);
|
||||
theRect.Bottom = float(myFTFace->glyph->bitmap_top - (int )aBitmap.rows);
|
||||
}
|
||||
|
||||
protected:
|
||||
|
Loading…
x
Reference in New Issue
Block a user