summaryrefslogtreecommitdiff
path: root/common/glyph_assemble.h
blob: 80354dcf906bc5bec423ef82335f52bcc0b32b07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef GLYPH_ASSEMBLE_H
#define GLYPH_ASSEMBLE_H

struct glyph_render {
	PicturePtr picture;
	xPoint glyph_pos;
	BoxRec dest_box;
};

int glyphs_assemble(ScreenPtr pScreen, struct glyph_render **gp,
	BoxPtr extents, int nlist, GlyphListPtr list, GlyphPtr *glyphs);

#endif