summaryrefslogtreecommitdiff
path: root/pixman/pixman.c
diff options
context:
space:
mode:
Diffstat (limited to 'pixman/pixman.c')
-rw-r--r--pixman/pixman.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pixman/pixman.c b/pixman/pixman.c
index 17015a8..82ec236 100644
--- a/pixman/pixman.c
+++ b/pixman/pixman.c
@@ -182,7 +182,7 @@ clip_general_image (pixman_region32_t * region,
return FALSE;
}
}
- else if (!pixman_region32_not_empty (clip))
+ else if (pixman_region32_empty (clip))
{
return FALSE;
}
@@ -277,7 +277,7 @@ _pixman_compute_composite_region32 (pixman_region32_t * region,
{
return FALSE;
}
- if (!pixman_region32_not_empty (region))
+ if (pixman_region32_empty (region))
return FALSE;
if (dest_image->common.alpha_map->common.have_clip_region)
{