Home
last modified time | relevance | path

Searched refs:vg_font (Results 1 – 5 of 5) sorted by relevance

/external/mesa3d/src/gallium/state_trackers/vega/
Dtext.h33 struct vg_font;
37 struct vg_font *font_create(VGint glyphCapacityHint);
38 void font_destroy(struct vg_font *font);
40 void font_set_glyph_to_path(struct vg_font *font,
47 void font_set_glyph_to_image(struct vg_font *font,
53 void font_clear_glyph(struct vg_font *font,
56 void font_draw_glyph(struct vg_font *font,
61 void font_draw_glyphs(struct vg_font *font,
69 VGint font_num_glyphs(struct vg_font *font);
Dtext.c36 struct vg_font { struct
48 static VGboolean del_glyph(struct vg_font *font, in del_glyph() argument
61 static void add_glyph(struct vg_font *font, in add_glyph()
82 static struct vg_glyph *get_glyph(struct vg_font *font, in get_glyph()
132 struct vg_font *font_create(VGint glyphCapacityHint) in font_create()
135 struct vg_font *font; in font_create()
137 font = CALLOC_STRUCT(vg_font); in font_create()
146 void font_destroy(struct vg_font *font) in font_destroy()
164 void font_set_glyph_to_path(struct vg_font *font, in font_set_glyph_to_path()
175 void font_set_glyph_to_image(struct vg_font *font, in font_set_glyph_to_image()
[all …]
Dapi_text.c52 struct vg_font *font = handle_to_font(f); in vegaDestroyFont()
76 struct vg_font *f; in vegaSetGlyphToPath()
109 struct vg_font *f; in vegaSetGlyphToImage()
137 struct vg_font *f; in vegaClearGlyph()
155 struct vg_font *f; in vegaDrawGlyph()
179 struct vg_font *f; in vegaDrawGlyphs()
Dhandle.h49 struct vg_font;
95 font_to_handle(struct vg_font *font) in font_to_handle()
129 static INLINE struct vg_font *
132 return (struct vg_font *) handle_to_pointer(h); in handle_to_font()
Dapi_params.c1509 struct vg_font *font = handle_to_font(object); in vegaGetParameteri()