mirror of
https://github.com/reactos/reactos.git
synced 2026-05-30 23:33:24 +08:00
[FONT][WIN32SS] Re-add casts for gcc
This commit is contained in:
@@ -256,7 +256,7 @@ RemoveCachedEntry(PFONT_CACHE_ENTRY Entry)
|
||||
{
|
||||
ASSERT_FREETYPE_LOCK_HELD();
|
||||
|
||||
FT_Done_Glyph(Entry->BitmapGlyph);
|
||||
FT_Done_Glyph((FT_Glyph)Entry->BitmapGlyph);
|
||||
RemoveEntryList(&Entry->ListEntry);
|
||||
ExFreePoolWithTag(Entry, TAG_FONT);
|
||||
g_FontCacheNumEntries--;
|
||||
@@ -2950,7 +2950,7 @@ ftGdiGlyphSet(
|
||||
if (FT_Bitmap_Convert(GlyphSlot->library, &BitmapGlyph->bitmap, &AlignedBitmap, 4))
|
||||
{
|
||||
DPRINT1("Conversion failed\n");
|
||||
FT_Done_Glyph(BitmapGlyph);
|
||||
FT_Done_Glyph((FT_Glyph)BitmapGlyph);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@@ -3007,7 +3007,7 @@ ftGdiGlyphCacheSet(
|
||||
DPRINT1("Conversion failed\n");
|
||||
ExFreePoolWithTag(NewEntry, TAG_FONT);
|
||||
FT_Bitmap_Done(GlyphSlot->library, &AlignedBitmap);
|
||||
FT_Done_Glyph(BitmapGlyph);
|
||||
FT_Done_Glyph((FT_Glyph)BitmapGlyph);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
@@ -4091,7 +4091,7 @@ TextIntGetTextExtentPoint(PDC dc,
|
||||
/* Bold and italic do not use the cache */
|
||||
if (EmuBold || EmuItalic)
|
||||
{
|
||||
FT_Done_Glyph(realglyph);
|
||||
FT_Done_Glyph((FT_Glyph)realglyph);
|
||||
}
|
||||
|
||||
previous = glyph_index;
|
||||
@@ -5876,7 +5876,7 @@ GreExtTextOutW(
|
||||
|
||||
previous = glyph_index;
|
||||
|
||||
FT_Done_Glyph(realglyph);
|
||||
FT_Done_Glyph((FT_Glyph)realglyph);
|
||||
}
|
||||
|
||||
TextWidth = TextLeft - RealXStart;
|
||||
@@ -6053,7 +6053,7 @@ GreExtTextOutW(
|
||||
bResult = FALSE;
|
||||
if (EmuBold || EmuItalic)
|
||||
{
|
||||
FT_Done_Glyph(realglyph);
|
||||
FT_Done_Glyph((FT_Glyph)realglyph);
|
||||
}
|
||||
|
||||
break;
|
||||
@@ -6066,7 +6066,7 @@ GreExtTextOutW(
|
||||
bResult = FALSE;
|
||||
if (EmuBold || EmuItalic)
|
||||
{
|
||||
FT_Done_Glyph(realglyph);
|
||||
FT_Done_Glyph((FT_Glyph)realglyph);
|
||||
}
|
||||
|
||||
break;
|
||||
@@ -6119,7 +6119,7 @@ GreExtTextOutW(
|
||||
{
|
||||
if (EmuBold || EmuItalic)
|
||||
{
|
||||
FT_Done_Glyph(realglyph);
|
||||
FT_Done_Glyph((FT_Glyph)realglyph);
|
||||
}
|
||||
|
||||
break;
|
||||
@@ -6195,7 +6195,7 @@ GreExtTextOutW(
|
||||
/* No cache, so clean up */
|
||||
if (EmuBold || EmuItalic)
|
||||
{
|
||||
FT_Done_Glyph(realglyph);
|
||||
FT_Done_Glyph((FT_Glyph)realglyph);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user