* src/base/ftsynth.c (FT_GlyphSlot_Embolden): Don't use internal
macros so that copying the source code into an application works out of the box.
This commit is contained in:
parent
c8c4cc837c
commit
cfc514ea7e
|
@ -1,6 +1,12 @@
|
||||||
2008-12-17 Werner Lemberg <wl@gnu.org>
|
2008-12-17 Werner Lemberg <wl@gnu.org>
|
||||||
|
|
||||||
* include/freetype/ftsynth.h, src/basae/ftsynth.c: Move
|
* src/base/ftsynth.c (FT_GlyphSlot_Embolden): Don't use internal
|
||||||
|
macros so that copying the source code into an application works
|
||||||
|
out of the box.
|
||||||
|
|
||||||
|
2008-12-17 Werner Lemberg <wl@gnu.org>
|
||||||
|
|
||||||
|
* include/freetype/ftsynth.h, src/base/ftsynth.c: Move
|
||||||
FT_GlyphSlot_Own_Bitmap to...
|
FT_GlyphSlot_Own_Bitmap to...
|
||||||
* include/freetype/ftbitmap.h, src/base/ftbitmap.c: These files.
|
* include/freetype/ftbitmap.h, src/base/ftbitmap.c: These files.
|
||||||
|
|
||||||
|
|
|
@ -74,7 +74,7 @@
|
||||||
FT_GlyphSlot_Embolden( FT_GlyphSlot slot )
|
FT_GlyphSlot_Embolden( FT_GlyphSlot slot )
|
||||||
{
|
{
|
||||||
FT_Library library = slot->library;
|
FT_Library library = slot->library;
|
||||||
FT_Face face = FT_SLOT_FACE( slot );
|
FT_Face face = slot->face;
|
||||||
FT_Error error;
|
FT_Error error;
|
||||||
FT_Pos xstr, ystr;
|
FT_Pos xstr, ystr;
|
||||||
|
|
||||||
|
@ -100,10 +100,11 @@
|
||||||
}
|
}
|
||||||
else if ( slot->format == FT_GLYPH_FORMAT_BITMAP )
|
else if ( slot->format == FT_GLYPH_FORMAT_BITMAP )
|
||||||
{
|
{
|
||||||
xstr = FT_PIX_FLOOR( xstr );
|
/* round to full pixels */
|
||||||
|
xstr &= ~63;
|
||||||
if ( xstr == 0 )
|
if ( xstr == 0 )
|
||||||
xstr = 1 << 6;
|
xstr = 1 << 6;
|
||||||
ystr = FT_PIX_FLOOR( ystr );
|
ystr &= ~63;
|
||||||
|
|
||||||
error = FT_GlyphSlot_Own_Bitmap( slot );
|
error = FT_GlyphSlot_Own_Bitmap( slot );
|
||||||
if ( error )
|
if ( error )
|
||||||
|
|
Loading…
Reference in New Issue