diff options
author | Bryce Harrington <b.harrington@samsung.com> | 2014-02-26 18:55:25 -0800 |
---|---|---|
committer | Bryce Harrington <b.harrington@samsung.com> | 2014-02-26 18:55:25 -0800 |
commit | f1709c298c355499a18796f389fa0fd9bc52b8c3 (patch) | |
tree | 63fd9dde53821403ad0b6fb99d1a5fb4f1cbb749 | |
parent | 273210683f182d72789f88df80fec8c4d08bb30f (diff) | |
download | cairo-f1709c298c355499a18796f389fa0fd9bc52b8c3.tar.gz |
Correct spelling of "tessellator" throughout code
Based on patch suggested by Homer Hsing
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=50411
-rw-r--r-- | src/cairo-cogl-surface.c | 6 | ||||
-rw-r--r-- | src/cairo-fixed-private.h | 2 | ||||
-rw-r--r-- | src/cairo-fixed-type-private.h | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/cairo-cogl-surface.c b/src/cairo-cogl-surface.c index 27c3676de..7389c3e8e 100644 --- a/src/cairo-cogl-surface.c +++ b/src/cairo-cogl-surface.c @@ -143,7 +143,7 @@ typedef struct _cairo_cogl_path_fill_meta { * and translations but not for different scales. * * one idea is to track the diagonal lenghts of a unit rectangle - * transformed through the original ctm use to tesselate the geometry + * transformed through the original ctm use to tessellate the geometry * so we can check what the lengths are for any new ctm to know if * this geometry is compatible. */ @@ -167,7 +167,7 @@ typedef struct _cairo_cogl_path_stroke_meta { * and translations but not for different scales. * * one idea is to track the diagonal lenghts of a unit rectangle - * transformed through the original ctm use to tesselate the geometry + * transformed through the original ctm use to tessellate the geometry * so we can check what the lengths are for any new ctm to know if * this geometry is compatible. */ @@ -805,7 +805,7 @@ _cairo_cogl_journal_flush (cairo_cogl_surface_t *surface) _cairo_path_fixed_approximate_clip_extents (&path->path, &extents); /* TODO - maintain a fifo of the last 10 used clips with cached - * primitives to see if we can avoid tesselating the path and + * primitives to see if we can avoid tessellating the path and * uploading the vertices... */ #if 0 diff --git a/src/cairo-fixed-private.h b/src/cairo-fixed-private.h index 62dc61ad9..9ff8f7503 100644 --- a/src/cairo-fixed-private.h +++ b/src/cairo-fixed-private.h @@ -46,7 +46,7 @@ #if (CAIRO_FIXED_BITS != 32) # error CAIRO_FIXED_BITS must be 32, and the type must be a 32-bit type. -# error To remove this limitation, you will have to fix the tesselator. +# error To remove this limitation, you will have to fix the tessellator. #endif #define CAIRO_FIXED_ONE ((cairo_fixed_t)(1 << CAIRO_FIXED_FRAC_BITS)) diff --git a/src/cairo-fixed-type-private.h b/src/cairo-fixed-type-private.h index 2bbd5f786..e9f26f615 100644 --- a/src/cairo-fixed-type-private.h +++ b/src/cairo-fixed-type-private.h @@ -50,7 +50,7 @@ typedef cairo_int128_t cairo_fixed_64_64_t; typedef cairo_int128_t cairo_fixed_96_32_t; /* Eventually, we should allow changing this, but I think - * there are some assumptions in the tesselator about the + * there are some assumptions in the tessellator about the * size of a fixed type. For now, it must be 32. */ #define CAIRO_FIXED_BITS 32 |