From 4a0913eb52be9aa0c8bda89652f47a5e17f4eeb6 Mon Sep 17 00:00:00 2001 From: Chris Wilson Date: Fri, 2 Dec 2011 16:16:32 +0000 Subject: [PATCH] doc: Add new antialias symbols Signed-off-by: Chris Wilson --- src/cairo.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/cairo.h b/src/cairo.h index bc5abcfdf..867c6711e 100644 --- a/src/cairo.h +++ b/src/cairo.h @@ -642,6 +642,12 @@ cairo_set_tolerance (cairo_t *cr, double tolerance); * @CAIRO_ANTIALIAS_SUBPIXEL: Perform antialiasing by taking * advantage of the order of subpixel elements on devices * such as LCD panels + * @CAIRO_ANTIALIAS_FAST: Hint that the backend should perform some + * antialiasing but prefer speed over quality, since 1.12 + * @CAIRO_ANTIALIAS_GOOD: The backend should balance quality against + * performance, since 1.12 + * @CAIRO_ANTIALIAS_BEST: Hint that the backend should render at the highest + * quality, sacrificing speed if necessary, since 1.12 * * Specifies the type of antialiasing to do when rendering text or shapes. *