mirror of
https://gitlab.freedesktop.org/cairo/cairo.git
synced 2026-01-28 04:50:27 +01:00
Fix accidental reversal of condition in previous patch.
This commit is contained in:
parent
66af5f9f36
commit
f6dcd38c8c
3 changed files with 8 additions and 2 deletions
|
|
@ -1,3 +1,9 @@
|
|||
2005-03-04 Carl Worth <cworth@cworth.org>
|
||||
|
||||
* src/cairo_glitz_surface.c
|
||||
(_cairo_glitz_pattern_acquire_surface): Fix accidental reversal of
|
||||
condition in previous patch.
|
||||
|
||||
2005-03-04 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* src/cairoint.h src/cairo_pattern.c src/cairo_glitz_surface.c:
|
||||
|
|
|
|||
|
|
@ -556,7 +556,7 @@ _cairo_glitz_pattern_acquire_surface (cairo_pattern_t *pattern,
|
|||
|
||||
/* can't do alpha as gradient color interpolation must be done to
|
||||
unpremultiplied colors. */
|
||||
if (_cairo_pattern_is_opaque (pattern))
|
||||
if (!_cairo_pattern_is_opaque (pattern))
|
||||
break;
|
||||
|
||||
/* glitz doesn't support inner and outer circle with different
|
||||
|
|
|
|||
|
|
@ -556,7 +556,7 @@ _cairo_glitz_pattern_acquire_surface (cairo_pattern_t *pattern,
|
|||
|
||||
/* can't do alpha as gradient color interpolation must be done to
|
||||
unpremultiplied colors. */
|
||||
if (_cairo_pattern_is_opaque (pattern))
|
||||
if (!_cairo_pattern_is_opaque (pattern))
|
||||
break;
|
||||
|
||||
/* glitz doesn't support inner and outer circle with different
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue