mirror of https://github.com/GNOME/gimp.git
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:
parent
a2b9b16968
commit
1cc7de69e9
|
@ -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
|
||||
|
|
|
@ -4335,18 +4335,24 @@ initial_sub_region (struct initial_regions_struct *st,
|
|||
ctx.dissolve.x = src->x;
|
||||
ctx.dissolve.y = src->y + h;
|
||||
ctx.dissolve.opacity = opacity;
|
||||
gimp_composite_dispatch(&ctx);
|
||||
} else {
|
||||
gimp_composite_dispatch (&ctx);
|
||||
}
|
||||
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:
|
||||
|
@ -4372,18 +4378,23 @@ initial_sub_region (struct initial_regions_struct *st,
|
|||
ctx.dissolve.x = src->x;
|
||||
ctx.dissolve.y = src->y + h;
|
||||
ctx.dissolve.opacity = opacity;
|
||||
gimp_composite_dispatch(&ctx);
|
||||
} else {
|
||||
gimp_composite_dispatch (&ctx);
|
||||
}
|
||||
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);
|
||||
{
|
||||
initial_inten_a_pixels (s, d, m, opacity, affect, src->w, src->bytes);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -4596,42 +4607,42 @@ combine_sub_region (struct combine_regions_struct *st,
|
|||
alms.bytes1 = src1->bytes;
|
||||
alms.bytes2 = src2->bytes;
|
||||
|
||||
if (gimp_composite_options.bits & GIMP_COMPOSITE_OPTION_USE)
|
||||
{
|
||||
GimpCompositeContext ctx;
|
||||
if (gimp_composite_options.bits & GIMP_COMPOSITE_OPTION_USE)
|
||||
{
|
||||
GimpCompositeContext ctx;
|
||||
|
||||
ctx.A = s1;
|
||||
ctx.pixelformat_A = (src1->bytes == 1 ? GIMP_PIXELFORMAT_V8
|
||||
: src1->bytes == 2 ? GIMP_PIXELFORMAT_VA8
|
||||
: src1->bytes == 3 ? GIMP_PIXELFORMAT_RGB8
|
||||
: src1->bytes == 4 ? GIMP_PIXELFORMAT_RGBA8
|
||||
: GIMP_PIXELFORMAT_ANY);
|
||||
ctx.B = s2;
|
||||
ctx.pixelformat_B = (src2->bytes == 1 ? GIMP_PIXELFORMAT_V8
|
||||
: src2->bytes == 2 ? GIMP_PIXELFORMAT_VA8
|
||||
: src2->bytes == 3 ? GIMP_PIXELFORMAT_RGB8
|
||||
: src2->bytes == 4 ? GIMP_PIXELFORMAT_RGBA8
|
||||
: GIMP_PIXELFORMAT_ANY);
|
||||
ctx.D = s;
|
||||
ctx.pixelformat_D = ctx.pixelformat_A;
|
||||
ctx.A = s1;
|
||||
ctx.pixelformat_A = (src1->bytes == 1 ? GIMP_PIXELFORMAT_V8
|
||||
: src1->bytes == 2 ? GIMP_PIXELFORMAT_VA8
|
||||
: src1->bytes == 3 ? GIMP_PIXELFORMAT_RGB8
|
||||
: src1->bytes == 4 ? GIMP_PIXELFORMAT_RGBA8
|
||||
: GIMP_PIXELFORMAT_ANY);
|
||||
ctx.B = s2;
|
||||
ctx.pixelformat_B = (src2->bytes == 1 ? GIMP_PIXELFORMAT_V8
|
||||
: src2->bytes == 2 ? GIMP_PIXELFORMAT_VA8
|
||||
: src2->bytes == 3 ? GIMP_PIXELFORMAT_RGB8
|
||||
: src2->bytes == 4 ? GIMP_PIXELFORMAT_RGBA8
|
||||
: GIMP_PIXELFORMAT_ANY);
|
||||
ctx.D = s;
|
||||
ctx.pixelformat_D = ctx.pixelformat_A;
|
||||
|
||||
ctx.M = layer_mode_mask;
|
||||
ctx.pixelformat_M = GIMP_PIXELFORMAT_ANY;
|
||||
ctx.M = layer_mode_mask;
|
||||
ctx.pixelformat_M = GIMP_PIXELFORMAT_ANY;
|
||||
|
||||
ctx.n_pixels = src1->w;
|
||||
ctx.combine = combine;
|
||||
ctx.op = mode;
|
||||
ctx.dissolve.x = src1->x;
|
||||
ctx.dissolve.y = src1->y + h;
|
||||
ctx.dissolve.opacity = layer_mode_opacity;
|
||||
ctx.n_pixels = src1->w;
|
||||
ctx.combine = combine;
|
||||
ctx.op = mode;
|
||||
ctx.dissolve.x = src1->x;
|
||||
ctx.dissolve.y = src1->y + h;
|
||||
ctx.dissolve.opacity = layer_mode_opacity;
|
||||
|
||||
mode_affect = gimp_composite_operation_effects[mode].affect_opacity;
|
||||
gimp_composite_dispatch(&ctx);
|
||||
s = ctx.D;
|
||||
combine = (ctx.combine == NO_COMBINATION) ? type : ctx.combine;
|
||||
}
|
||||
else
|
||||
{
|
||||
mode_affect = gimp_composite_operation_effects[mode].affect_opacity;
|
||||
gimp_composite_dispatch (&ctx);
|
||||
s = ctx.D;
|
||||
combine = (ctx.combine == NO_COMBINATION) ? type : ctx.combine;
|
||||
}
|
||||
else
|
||||
{
|
||||
/* Determine whether the alpha channel of the destination
|
||||
* can be affected by the specified mode. -- This keeps
|
||||
* consistency with varying opacities.
|
||||
|
@ -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.");
|
||||
|
|
Loading…
Reference in New Issue