mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 05:42:59 +00:00
[WIN32K]
- add a missing break and reshuffle the code a tiny bit to fix CIDs 514466 and 513487 - don't skip the terminating debug print for ft_glyph_format_bitmap svn path=/trunk/; revision=64847
This commit is contained in:
parent
923584ae2a
commit
7d9706dd1f
1 changed files with 14 additions and 12 deletions
|
@ -2083,7 +2083,7 @@ ftGdiGetGlyphOutline(
|
||||||
src += ft_face->glyph->bitmap.pitch;
|
src += ft_face->glyph->bitmap.pitch;
|
||||||
dst += pitch;
|
dst += pitch;
|
||||||
}
|
}
|
||||||
return needed;
|
break;
|
||||||
}
|
}
|
||||||
case ft_glyph_format_outline:
|
case ft_glyph_format_outline:
|
||||||
{
|
{
|
||||||
|
@ -2113,11 +2113,7 @@ ftGdiGetGlyphOutline(
|
||||||
{
|
{
|
||||||
return GDI_ERROR;
|
return GDI_ERROR;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
default:
|
|
||||||
DPRINT1("Loaded glyph format %x\n", ft_face->glyph->format);
|
|
||||||
return GDI_ERROR;
|
|
||||||
}
|
|
||||||
start = pvBuf;
|
start = pvBuf;
|
||||||
for (row = 0; row < height; row++)
|
for (row = 0; row < height; row++)
|
||||||
{
|
{
|
||||||
|
@ -2128,8 +2124,14 @@ ftGdiGetGlyphOutline(
|
||||||
}
|
}
|
||||||
start += pitch;
|
start += pitch;
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
default:
|
||||||
|
DPRINT1("Loaded glyph format %x\n", ft_face->glyph->format);
|
||||||
|
return GDI_ERROR;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
case GGO_NATIVE:
|
case GGO_NATIVE:
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue