Lines Matching refs:ctx
32 sp_print_bind(SPPrintContext *ctx, Geom::Affine const &transform, float opacity)
34 return ctx->module->bind(transform, opacity);
38 sp_print_release(SPPrintContext *ctx)
40 return ctx->module->release();
44 sp_print_comment(SPPrintContext *ctx, char const *comment)
46 return ctx->module->comment(comment);
50 sp_print_fill(SPPrintContext *ctx, Geom::PathVector const &pathv, Geom::Affine const &ctm, SPStyle const *style,
53 return ctx->module->fill(pathv, ctm, style, pbox, dbox, bbox);
57 sp_print_stroke(SPPrintContext *ctx, Geom::PathVector const &pathv, Geom::Affine const &ctm, SPStyle const *style,
60 return ctx->module->stroke(pathv, ctm, style, pbox, dbox, bbox);
64 sp_print_image_R8G8B8A8_N(SPPrintContext *ctx,
68 return ctx->module->image(px, w, h, rs, transform, style);
71 unsigned int sp_print_text(SPPrintContext *ctx, char const *text, Geom::Point p,
74 return ctx->module->text(text, p, style);