Lines Matching refs:cairo_matrix_t
85 struct cairo_matrix_t { struct
280 void (*mp_matrix_init_identity)(cairo_matrix_t *);
281 void (*mp_matrix_scale)(cairo_matrix_t *, double, double);
282 void (*mp_matrix_rotate)(cairo_matrix_t *, double);
283 void (*mp_set_font_matrix)(cairo_t *, const cairo_matrix_t *);
311 void matrix_init_identity(cairo_matrix_t *matrix) in matrix_init_identity()
313 void matrix_scale(cairo_matrix_t *matrix, double sx, double sy) in matrix_scale()
315 void matrix_rotate(cairo_matrix_t *matrix, double radians) in matrix_rotate()
317 void set_font_matrix(cairo_t *cr, const cairo_matrix_t *matrix) in set_font_matrix()
379 mp_matrix_init_identity = (void (*)(cairo_matrix_t *)) in CairoWrapper()
381 mp_matrix_scale = (void (*)(cairo_matrix_t *, double, double)) in CairoWrapper()
383 mp_matrix_rotate = (void (*)(cairo_matrix_t *, double)) in CairoWrapper()
385 mp_set_font_matrix = (void (*)(cairo_t *, const cairo_matrix_t *)) in CairoWrapper()
556 cairo_matrix_t m; in DrawCairoAAFontString()