gdi32: Revert an unrelated part of 028617b90b
.
It was not a very nice idea to break bitmap fonts which request a custom width (therefore a transformation) in a patch that pretended to do something unrelated.
This commit is contained in:
parent
8dfbaf6703
commit
b3e65ba399
|
@ -4606,9 +4606,9 @@ DWORD WineEngGetGlyphOutline(GdiFont *incoming_font, UINT glyph, UINT format,
|
|||
}
|
||||
|
||||
if(ft_face->glyph->format != ft_glyph_format_outline &&
|
||||
(needsTransform || format == GGO_NATIVE || format == GGO_BEZIER ||
|
||||
format == GGO_GRAY2_BITMAP || format == GGO_GRAY4_BITMAP ||
|
||||
format == GGO_GRAY8_BITMAP))
|
||||
(format == GGO_NATIVE || format == GGO_BEZIER ||
|
||||
format == GGO_GRAY2_BITMAP || format == GGO_GRAY4_BITMAP ||
|
||||
format == GGO_GRAY8_BITMAP))
|
||||
{
|
||||
TRACE("loaded a bitmap\n");
|
||||
LeaveCriticalSection( &freetype_cs );
|
||||
|
|
Loading…
Reference in New Issue