diff options
author | Carl Worth <cworth@cworth.org> | 2008-04-06 01:07:32 -0700 |
---|---|---|
committer | Carl Worth <cworth@cworth.org> | 2008-04-06 01:07:32 -0700 |
commit | b61d1b01e94b3d8daa288b8d5d183f093d989582 (patch) | |
tree | 2affe9a71a7304f47f45e14c7124f85f7f58b9ae | |
parent | 14b056945cef7e016ec07c87725348f3f0649d9f (diff) |
Change default filter from BEST to GOOD
Right now the two filters are implemented identically, so there's
no real change for now. But in the future, it's conceivable that an
X server could implement some crazy, high-quality filter for BEST
without regard to performance, (since that's what BEST means).
Meanwhile, GOOD actually captures what we want by default which is
a good mix of both quality and performance.
-rw-r--r-- | src/cairoint.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cairoint.h b/src/cairoint.h index 01ad5675..0389c266 100644 --- a/src/cairoint.h +++ b/src/cairoint.h @@ -761,7 +761,7 @@ struct _cairo_color { #define CAIRO_EXTEND_SURFACE_DEFAULT CAIRO_EXTEND_NONE #define CAIRO_EXTEND_GRADIENT_DEFAULT CAIRO_EXTEND_PAD -#define CAIRO_FILTER_DEFAULT CAIRO_FILTER_BEST +#define CAIRO_FILTER_DEFAULT CAIRO_FILTER_GOOD struct _cairo_pattern { cairo_pattern_type_t type; |