Home | History | Annotate | Download | only in cursor

Lines Matching refs:bitmaps

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