Home | History | Annotate | Download | only in base

Lines Matching refs:slot

48   FT_GlyphSlot_Oblique( FT_GlyphSlot  slot )
54 if ( !slot )
57 outline = &slot->outline;
60 if ( slot->format != FT_GLYPH_FORMAT_OUTLINE )
90 FT_GlyphSlot_Embolden( FT_GlyphSlot slot )
98 if ( !slot )
101 library = slot->library;
102 face = slot->face;
104 if ( slot->format != FT_GLYPH_FORMAT_OUTLINE &&
105 slot->format != FT_GLYPH_FORMAT_BITMAP )
113 if ( slot->format == FT_GLYPH_FORMAT_OUTLINE )
114 FT_Outline_EmboldenXY( &slot->outline, xstr, ystr );
116 else /* slot->format == FT_GLYPH_FORMAT_BITMAP */
136 error = FT_GlyphSlot_Own_Bitmap( slot );
140 error = FT_Bitmap_Embolden( library, &slot->bitmap, xstr, ystr );
145 if ( slot->advance.x )
146 slot->advance.x += xstr;
148 if ( slot->advance.y )
149 slot->advance.y += ystr;
151 slot->metrics.width += xstr;
152 slot->metrics.height += ystr;
153 slot->metrics.horiAdvance += xstr;
154 slot->metrics.vertAdvance += ystr;
155 slot->metrics.horiBearingY += ystr;
158 if ( slot->format == FT_GLYPH_FORMAT_BITMAP )
159 slot->bitmap_top += (FT_Int)( ystr >> 6 );