mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2025-12-20 10:30:08 +01:00
Cairo trivial typos
Found using `codespell -q 3 -I cairo-whitelist.txt` whereby whitelist contained: ``` amin iff lod writen ``` Reviewed-by: Bryce Harrington <bryce@osg.samsung.com>
This commit is contained in:
parent
33a348d698
commit
12cb59be7d
17 changed files with 19 additions and 19 deletions
|
|
@ -12,7 +12,7 @@ AC_DEFUN([AX_C_FLOAT_WORDS_BIGENDIAN],
|
|||
[AC_CACHE_CHECK(whether float word ordering is bigendian,
|
||||
ax_cv_c_float_words_bigendian, [
|
||||
|
||||
# The endianess is detected by first compiling C code that contains a special
|
||||
# The endianness is detected by first compiling C code that contains a special
|
||||
# double float value, then grepping the resulting object file for certain
|
||||
# strings of ascii values. The double is specially crafted to have a
|
||||
# binary representation that corresponds with a simple string. In this
|
||||
|
|
|
|||
|
|
@ -355,7 +355,7 @@ cairo_perf_reports_compare (cairo_perf_report_t *reports,
|
|||
diff = &diffs[i];
|
||||
|
||||
/* Discard as uninteresting a change which is less than the
|
||||
* minimum change required, (default may be overriden on
|
||||
* minimum change required, (default may be overridden on
|
||||
* command-line). */
|
||||
if (fabs (diff->change) - 1.0 < options->min_change)
|
||||
continue;
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@
|
|||
/* This test case is designed to illustrate a performance bug in
|
||||
* drawing very long lines, where most of the line is out of bounds of
|
||||
* the destination surface, (but some portion of the line is
|
||||
* visibile). These results are in the "long-lines-uncropped" report.
|
||||
* visible). These results are in the "long-lines-uncropped" report.
|
||||
*
|
||||
* For comparison, this test also renders the visible portions of the
|
||||
* same lines, (this is the "long-lines-cropped" report).
|
||||
|
|
|
|||
|
|
@ -517,7 +517,7 @@ _cairo_cogl_surface_allocate_buffer_space (cairo_cogl_surface_t *surface,
|
|||
void **pointer)
|
||||
{
|
||||
/* XXX: In the Cogl journal we found it more efficient to have a pool of
|
||||
* buffers that we re-cycle but for now we simply thow away our stack
|
||||
* buffers that we re-cycle but for now we simply throw away our stack
|
||||
* buffer each time we flush. */
|
||||
if (unlikely (surface->buffer_stack &&
|
||||
(surface->buffer_stack_size - surface->buffer_stack_offset) < size)) {
|
||||
|
|
|
|||
|
|
@ -140,7 +140,7 @@ _cairo_pdf_operators_flush (cairo_pdf_operators_t *pdf_operators)
|
|||
* assumptions will be made about the state. The next time a
|
||||
* particular graphics state is required (eg line width) the state
|
||||
* operator is always emitted and then remembered for subsequent
|
||||
* operatations.
|
||||
* operations.
|
||||
*
|
||||
* This should be called when starting a new stream or after emitting
|
||||
* the 'Q' operator (where pdf-operators functions were called inside
|
||||
|
|
|
|||
|
|
@ -110,7 +110,7 @@ typedef struct _cairo_pdf_pattern {
|
|||
|
||||
/* PDF pattern space is the pattern matrix concatenated with the
|
||||
* initial space of the parent object. If the parent object is the
|
||||
* page, the intial space does not include the Y-axis flipping
|
||||
* page, the initial space does not include the Y-axis flipping
|
||||
* matrix emitted at the start of the page content stream. If the
|
||||
* parent object is not the page content stream, the initial space
|
||||
* will have a flipped Y-axis. The inverted_y_axis flag is true
|
||||
|
|
|
|||
|
|
@ -4194,7 +4194,7 @@ cairo_pdf_surface_emit_transparency_group (cairo_pdf_surface_t *surface,
|
|||
|
||||
/* When emitting a shading operator we are in cairo pattern
|
||||
* coordinates. _cairo_pdf_surface_paint_gradient has set the
|
||||
* ctm to the pattern matrix (including the convertion from
|
||||
* ctm to the pattern matrix (including the conversion from
|
||||
* pdf to cairo coordinates) */
|
||||
_cairo_box_from_rectangle (&box, &pdf_pattern->extents);
|
||||
_cairo_box_to_doubles (&box, &x1, &y1, &x2, &y2);
|
||||
|
|
|
|||
|
|
@ -3283,7 +3283,7 @@ _cairo_ps_surface_emit_eps (cairo_ps_surface_t *surface,
|
|||
params->approx_size = eps_data_len;
|
||||
surface->contains_eps = TRUE;
|
||||
|
||||
/* Find number of occurences of SUBFILE_FILTER_EOD in the EPS data.
|
||||
/* Find number of occurrences of SUBFILE_FILTER_EOD in the EPS data.
|
||||
* We will need it before emitting the data if a ReusableStream is used.
|
||||
*/
|
||||
params->eod_count = count_eod_strings (eps_data, eps_data_len);
|
||||
|
|
|
|||
|
|
@ -1886,7 +1886,7 @@ static cairo_bool_t valid_size (int width, int height)
|
|||
/* Note: the minimum surface size allowed in the X protocol is 1x1.
|
||||
* However, as we historically did not check the minimum size we
|
||||
* allowed applications to lie and set the correct size later (one hopes).
|
||||
* To preserve compatability we must allow applications to use
|
||||
* To preserve compatibility we must allow applications to use
|
||||
* 0x0 surfaces.
|
||||
*/
|
||||
return (width >= 0 && width <= XLIB_COORD_MAX &&
|
||||
|
|
|
|||
|
|
@ -256,7 +256,7 @@
|
|||
* no operations are enclosed, the y coordidate is 0.
|
||||
*
|
||||
* @internal: A boolean that if true, the destination name may be
|
||||
* ommitted from PDF where possible. In this case, links
|
||||
* omitted from PDF where possible. In this case, links
|
||||
* refer directly to the page and position instead of via
|
||||
* the named destination table. Note that if this
|
||||
* destination is referenced by another PDF (see [File Links][file-link]),
|
||||
|
|
@ -279,10 +279,10 @@
|
|||
* # Document Structure (PDF) # {#doc-struct}
|
||||
*
|
||||
* The document structure tags provide a means of specifying structural information
|
||||
* such as headers, paragraphs, tables, and figures. The inclusion of structural information faciliates:
|
||||
* such as headers, paragraphs, tables, and figures. The inclusion of structural information facilitates:
|
||||
* * Extraction of text and graphics for copy and paste
|
||||
* * Reflow of text and graphics in the viewer
|
||||
* * Proccessing text eg searching and indexing
|
||||
* * Processing text eg searching and indexing
|
||||
* * Conversion to other formats
|
||||
* * Accessability support
|
||||
*
|
||||
|
|
|
|||
|
|
@ -398,7 +398,7 @@ typedef enum _cairo_content {
|
|||
* @CAIRO_FORMAT_A1: each pixel is a 1-bit quantity holding
|
||||
* an alpha value. Pixels are packed together into 32-bit
|
||||
* quantities. The ordering of the bits matches the
|
||||
* endianess of the platform. On a big-endian machine, the
|
||||
* endianness of the platform. On a big-endian machine, the
|
||||
* first pixel is in the uppermost bit, on a little-endian
|
||||
* machine the first pixel is in the least-significant bit. (Since 1.0)
|
||||
* @CAIRO_FORMAT_RGB16_565: each pixel is a 16-bit quantity
|
||||
|
|
|
|||
|
|
@ -1518,7 +1518,7 @@ _cairo_surface_release_device_reference (cairo_surface_t *surface);
|
|||
* for that, even without being considered "valid" for the sake of
|
||||
* things like cairo_image_surface_create().
|
||||
*
|
||||
* Since 1.2.0 we ran into the same situtation with X servers with BGR
|
||||
* Since 1.2.0 we ran into the same situation with X servers with BGR
|
||||
* visuals. This time we invented #cairo_internal_format_t instead,
|
||||
* (see it for more discussion).
|
||||
*
|
||||
|
|
|
|||
|
|
@ -288,7 +288,7 @@ static SkShader::TileMode
|
|||
extend_to_sk (cairo_extend_t extend)
|
||||
{
|
||||
static const SkShader::TileMode modeMap[] = {
|
||||
SkShader::kClamp_TileMode, // NONE behaves like PAD, because noone wants NONE
|
||||
SkShader::kClamp_TileMode, // NONE behaves like PAD, because no one wants NONE
|
||||
SkShader::kRepeat_TileMode,
|
||||
SkShader::kMirror_TileMode,
|
||||
SkShader::kClamp_TileMode
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@
|
|||
|
||||
/* This is a test case for the following bug:
|
||||
*
|
||||
* Crash in cairo_stroke_extents whe line width is 0 and line cap is ROUND
|
||||
* Crash in cairo_stroke_extents when line width is 0 and line cap is ROUND
|
||||
* (_cairo_pen_find_active_cw_vertex_index)
|
||||
* https://bugs.freedesktop.org/show_bug.cgi?id=10231
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -238,7 +238,7 @@ paint_ccitt_file (cairo_t *cr, int x, int y)
|
|||
return cairo_test_status_from_status (ctx, status);
|
||||
}
|
||||
|
||||
/* Set the CCITT image paramaters */
|
||||
/* Set the CCITT image parameters */
|
||||
status = cairo_surface_set_mime_data (image, CAIRO_MIME_TYPE_CCITT_FAX_PARAMS,
|
||||
(unsigned char *)ccitt_image_params,
|
||||
strlen (ccitt_image_params),
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@
|
|||
* d\_\c
|
||||
*
|
||||
* and the bug is that _cairo_traps_tessellate_convex_quad is
|
||||
* comparing b.x as less then d.x and therfore determining that the bc
|
||||
* comparing b.x as less then d.x and therefore determining that the bc
|
||||
* edge is left of the ad edge. The fix is simply to compare c.x to
|
||||
* d.x instead of b.x to d.x .
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -196,7 +196,7 @@ static char** translate_addresses_buf(bfd * abfd, bfd_vma *addr, int naddr)
|
|||
char *buf = &b;
|
||||
int len = 0;
|
||||
char **ret_buf = NULL;
|
||||
/* iterate over the formating twice.
|
||||
/* iterate over the formatting twice.
|
||||
* the first time we count how much space we need
|
||||
* the second time we do the actual printing */
|
||||
for (state=Count; state<=Print; state++) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue