Lines Matching refs:cr

301     void destroy(cairo_t *cr) { (*mp_destroy)(cr); }  in destroy()  argument
302 void clip(cairo_t *cr) { (*mp_clip)(cr); } in clip() argument
303 void rectangle(cairo_t *cr, double x, double y, double width, double height) in rectangle() argument
304 { (*mp_rectangle)(cr, x, y, width, height); } in rectangle()
307 void set_font_face(cairo_t *cr, cairo_font_face_t *font_face) in set_font_face() argument
308 { (*mp_set_font_face)(cr, font_face); } in set_font_face()
317 void set_font_matrix(cairo_t *cr, const cairo_matrix_t *matrix) in set_font_matrix() argument
318 { (*mp_set_font_matrix)(cr, matrix); } in set_font_matrix()
319 void show_glyphs(cairo_t *cr, const cairo_glyph_t *glyphs, int no_glyphs) in show_glyphs() argument
320 { (*mp_show_glyphs)(cr, glyphs, no_glyphs); } in show_glyphs()
321 void set_source_rgb(cairo_t *cr, double red, double green, double blue) in set_source_rgb() argument
322 { (*mp_set_source_rgb)(cr, red, green, blue); } in set_source_rgb()
323 void set_font_options(cairo_t *cr, const void *options) in set_font_options() argument
324 { (*mp_set_font_options)(cr, options); } in set_font_options()
518 cairo_t *cr = rCairo.create(surface); in DrawCairoAAFontString() local
522 rCairo.set_font_options( cr, pOptions); in DrawCairoAAFontString()
528 rCairo.rectangle(cr, in DrawCairoAAFontString()
534 rCairo.clip(cr); in DrawCairoAAFontString()
537 rCairo.set_source_rgb(cr, in DrawCairoAAFontString()
554 rCairo.set_font_face(cr, font_face); in DrawCairoAAFontString()
569 rCairo.set_font_matrix(cr, &m); in DrawCairoAAFontString()
570 rCairo.show_glyphs(cr, &cairo_glyphs[0], cairo_glyphs.size()); in DrawCairoAAFontString()
571 rCairo.destroy(cr); in DrawCairoAAFontString()