Backend support for appendBezierPathWithPackedGlyphs:.

Implementation of coveredCharacterSet on GSXftFontInfo.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@26436 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2008-04-07 13:51:28 +00:00
parent 9e70cc09f7
commit f2217879fb
7 changed files with 177 additions and 6 deletions

View file

@ -2358,6 +2358,11 @@ static int filters[3][7]=
return NSNullGlyph;
}
- (NSMultibyteGlyphPacking) glyphPacking
{
return NSFourByteGlyphPacking;
}
@end

View file

@ -2095,10 +2095,9 @@ add code to avoid loading bitmaps for glyphs */
#endif
}
- (void) appendBezierPathWithGlyphs: (NSGlyph *)glyphs
count: (int)count
toBezierPath: (NSBezierPath *)path
count: (int)count
toBezierPath: (NSBezierPath *)path
{
int i;
NSGlyph glyph;
@ -2242,6 +2241,11 @@ static int filters[3][7]=
return NSNullGlyph;
}
- (NSMultibyteGlyphPacking) glyphPacking
{
return NSFourByteGlyphPacking;
}
@end