Lines Matching defs:face
30 #include "sp-font-face.h"
47 cairo_font_face_t* face = cairo_scaled_font_get_font_face(scaled_font);
48 SvgFont* instance = static_cast<SvgFont*>(cairo_font_face_get_user_data(face, &key));
60 cairo_font_face_t* face = cairo_scaled_font_get_font_face(scaled_font);
61 SvgFont* instance = static_cast<SvgFont*>(cairo_font_face_get_user_data(face, &key));
69 cairo_font_face_t* face = cairo_scaled_font_get_font_face(scaled_font);
70 SvgFont* instance = static_cast<SvgFont*>(cairo_font_face_get_user_data(face, &key));
75 this->face = cairo_user_font_face_create ();
76 cairo_user_font_face_set_init_func (this->face, font_init_cb);
77 cairo_user_font_face_set_render_glyph_func (this->face, font_render_glyph_cb);
78 cairo_user_font_face_set_text_to_glyphs_func(this->face, font_text_to_glyphs_cb);
80 cairo_font_face_set_user_data (this->face, &key, (void*)instance, (cairo_destroy_func_t) NULL);
389 return this->userfont->face;