Lines Matching refs:charInfo
73 FSXCharInfo *charInfo,
106 (((long) charInfo->width) * 72000L) / (pointSize * yResolution));
107 fprintf(outFile, "DWIDTH %d 0\n", charInfo->width);
109 charInfo->right - charInfo->left,
110 charInfo->ascent + charInfo->descent,
111 charInfo->left,
112 -charInfo->descent);
113 if (charInfo->attributes)
114 fprintf(outFile, "ATTRIBUTES %04x\n", charInfo->attributes);
120 for (unsigned row = 0; row < (charInfo->ascent + charInfo->descent); row++) {
130 for (bit = 0; bit < (charInfo->right - charInfo->left); bit++) {
152 FSXCharInfo *charInfo;
178 charInfo = extents;
182 if ((charInfo->width != 0) || (charInfo->left != charInfo->right))
184 charInfo++;
193 charInfo = extents;
197 int bpr = GLWIDTHBYTESPADDED((charInfo->right - charInfo->left),
201 if ((charInfo->width != 0) || (charInfo->right != charInfo->left))
202 EmitBitmap(outFile, fontHeader, charInfo, encoding, bpr, glyph);
206 charInfo++;