Lines Matching refs:bitmaps
126 struct bitmaps { struct
202 handle_bitmaps(struct bitmaps *bitmaps) in handle_bitmaps() argument
204 printf("bitmaps count %d\n", bitmaps->glyph_count); in handle_bitmaps()
206 if (bitmaps->glyph_count != extracted_font.count) { in handle_bitmaps()
210 printf("format %x\n", bitmaps->format); in handle_bitmaps()
212 if (bitmaps->format != 2) { in handle_bitmaps()
217 void *bitmaps_start = ((void*) bitmaps) + sizeof(struct bitmaps) in handle_bitmaps()
218 + (bitmaps->glyph_count + 4) * sizeof(int32_t); in handle_bitmaps()
221 for (i = 0; i < bitmaps->glyph_count; ++i) { in handle_bitmaps()
222 int32_t offset = bitmaps->offsets[i]; in handle_bitmaps()
224 glyph->data_format = bitmaps->format; in handle_bitmaps()