coding style and indentation.

2003-09-02  Sven Neumann  <sven@gimp.org>

	* app/paint-funcs/paint-funcs.c: coding style and indentation.
This commit is contained in:
Sven Neumann 2003-09-02 09:10:59 +00:00 committed by Sven Neumann
parent a2b9b16968
commit 1cc7de69e9
2 changed files with 54 additions and 39 deletions

View file

@ -1,3 +1,7 @@
2003-09-02 Sven Neumann <sven@gimp.org>
* app/paint-funcs/paint-funcs.c: coding style and indentation.
2003-09-01 Helvetix Victorinox <helvetix@gimp.org>
* app/composite/gimp-composite-mmx.c

View file

@ -4336,17 +4336,23 @@ initial_sub_region (struct initial_regions_struct *st,
ctx.dissolve.y = src->y + h;
ctx.dissolve.opacity = opacity;
gimp_composite_dispatch (&ctx);
} else {
}
else
{
dissolve_pixels (s, m, buf, src->x, src->y + h,
opacity, src->w,
src->bytes, src->bytes + 1,
FALSE);
}
initial_inten_a_pixels (buf, d, NULL, OPAQUE_OPACITY, affect,
src->w, src->bytes + 1);
}
else
initial_inten_pixels (s, d, m, &no_mask, opacity, affect, src->w, src->bytes);
{
initial_inten_pixels (s, d, m, &no_mask, opacity, affect,
src->w, src->bytes);
}
break;
case INITIAL_INTENSITY_ALPHA:
@ -4373,17 +4379,22 @@ initial_sub_region (struct initial_regions_struct *st,
ctx.dissolve.y = src->y + h;
ctx.dissolve.opacity = opacity;
gimp_composite_dispatch (&ctx);
} else {
}
else
{
dissolve_pixels (s, m, buf, src->x, src->y + h,
opacity, src->w,
src->bytes, src->bytes,
TRUE);
}
initial_inten_a_pixels (buf, d, NULL, OPAQUE_OPACITY, affect,
src->w, src->bytes);
}
else
{
initial_inten_a_pixels (s, d, m, opacity, affect, src->w, src->bytes);
}
break;
}
@ -4643,8 +4654,8 @@ combine_sub_region (struct combine_regions_struct *st,
combine = (alms.combine == NO_COMBINATION ?
type : alms.combine);
}
break;
}
break;
default:
g_warning ("combine_sub_region: unhandled combine-type.");