app: rename gimp_gegl_combine_mask() to gimp_gegl_combine_mask_weird()

because it is.
This commit is contained in:
Michael Natterer
2012-05-06 19:57:20 +02:00
parent 0215e76acf
commit 5738c866a1
3 changed files with 64 additions and 64 deletions

View File

@ -425,7 +425,7 @@ gimp_gegl_apply_mask (GeglBuffer *mask_buffer,
}
void
gimp_gegl_combine_mask (GeglBuffer *mask_buffer,
gimp_gegl_combine_mask_weird (GeglBuffer *mask_buffer,
const GeglRectangle *mask_rect,
GeglBuffer *dest_buffer,
const GeglRectangle *dest_rect,

View File

@ -57,7 +57,7 @@ void gimp_gegl_apply_mask (GeglBuffer *mask_buffer,
const GeglRectangle *dest_rect,
gdouble opacity);
void gimp_gegl_combine_mask (GeglBuffer *mask_buffer,
void gimp_gegl_combine_mask_weird (GeglBuffer *mask_buffer,
const GeglRectangle *mask_rect,
GeglBuffer *dest_buffer,
const GeglRectangle *dest_rect,

View File

@ -722,7 +722,7 @@ gimp_paint_core_paste (GimpPaintCore *core,
*/
if (paint_mask != core->canvas_buffer)
{
gimp_gegl_combine_mask (paint_mask, paint_mask_rect,
gimp_gegl_combine_mask_weird (paint_mask, paint_mask_rect,
core->canvas_buffer,
GEGL_RECTANGLE (core->paint_buffer_x,
core->paint_buffer_y,
@ -819,7 +819,7 @@ gimp_paint_core_replace (GimpPaintCore *core,
paint_mask != core->canvas_buffer)
{
/* combine the paint mask and the canvas buffer */
gimp_gegl_combine_mask (paint_mask, paint_mask_rect,
gimp_gegl_combine_mask_weird (paint_mask, paint_mask_rect,
core->canvas_buffer,
GEGL_RECTANGLE (core->paint_buffer_x,
core->paint_buffer_y,