mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-05-05 01:48:07 +02:00
From Travis Spencer <tspencer@cs.pdx.edu>:
Fix typo causing a syntax error.
This commit is contained in:
parent
eacc1e95a5
commit
bdd8cbddee
2 changed files with 10 additions and 2 deletions
|
|
@ -1,3 +1,11 @@
|
|||
2005-08-10 Carl Worth <cworth@cworth.org>
|
||||
|
||||
From Travis Spencer <tspencer@cs.pdx.edu>:
|
||||
|
||||
* src/cairo-xcb-surface.c:
|
||||
(_cairo_xcb_surface_composite_trapezoids): Fix typo causing a
|
||||
syntax error.
|
||||
|
||||
2005-08-10 Keith Packard <keithp@keithp.com>
|
||||
|
||||
* test/Makefile.am:
|
||||
|
|
|
|||
|
|
@ -983,10 +983,10 @@ _cairo_xcb_surface_composite_trapezoids (cairo_operator_t operator,
|
|||
|
||||
switch (antialias) {
|
||||
case CAIRO_ANTIALIAS_NONE:
|
||||
render_format = _format_from_cairo (dst->dpy, CAIRO_FORMAT_A1),
|
||||
render_format = _format_from_cairo (dst->dpy, CAIRO_FORMAT_A1);
|
||||
break;
|
||||
default:
|
||||
render_format = _format_from_cairo (dst->dpy, CAIRO_FORMAT_A8),
|
||||
render_format = _format_from_cairo (dst->dpy, CAIRO_FORMAT_A8);
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue