[gegl/soc-2013-opecl-ops] operations: Fix a neglected color variation in mosaic.c
- From: Carlos Zubieta <czubieta src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gegl/soc-2013-opecl-ops] operations: Fix a neglected color variation in mosaic.c
- Date: Mon, 23 Sep 2013 20:59:37 +0000 (UTC)
commit 5b8e6f8cd107f4629c9e6935cc1c6ba04328c851
Author: Téo Mazars <teo mazars ensimag fr>
Date: Sun Sep 22 11:34:10 2013 +0200
operations: Fix a neglected color variation in mosaic.c
for the non-averaging case
operations/common/mosaic.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/operations/common/mosaic.c b/operations/common/mosaic.c
index 69fbd9a..c67c187 100644
--- a/operations/common/mosaic.c
+++ b/operations/common/mosaic.c
@@ -2098,8 +2098,8 @@ fill_poly_image (Polygon *poly,
else
pixel = buf[b] + (gint) ((mdatas->fore[b] - buf[b]) * contrib);
- /* factor in per-tile intensity variation but alpha*/
- if (NB_CPN < 4)
+ /* factor in per-tile intensity variation but alpha */
+ if (b < NB_CPN - 1)
pixel += vary;
pixel = CLAMP (pixel, 0.0, 1.0);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]