[gimp/mypaint-brush: 2/5] app: make a copy of the drawable's buffer in MyPaint native format
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/mypaint-brush: 2/5] app: make a copy of the drawable's buffer in MyPaint native format
- Date: Tue, 29 Apr 2014 23:55:46 +0000 (UTC)
commit 8fbac85e247465b1235f07b79bb787dfcb044f27
Author: Michael Natterer <mitch gimp org>
Date: Tue Apr 8 23:52:05 2014 +0200
app: make a copy of the drawable's buffer in MyPaint native format
app/paint/gimpmybrush.c | 35 ++++++++++++++++++++++++++++-------
1 files changed, 28 insertions(+), 7 deletions(-)
---
diff --git a/app/paint/gimpmybrush.c b/app/paint/gimpmybrush.c
index aee5bba..e4499b5 100644
--- a/app/paint/gimpmybrush.c
+++ b/app/paint/gimpmybrush.c
@@ -112,13 +112,22 @@ gimp_mybrush_paint (GimpPaintCore *paint_core,
{
GimpMybrush *mybrush = GIMP_MYBRUSH (paint_core);
GimpMybrushOptions *options = GIMP_MYBRUSH_OPTIONS (paint_options);
+ GeglBuffer *buffer;
switch (paint_state)
{
case GIMP_PAINT_STATE_INIT:
mybrush->private->surface = mypaint_gegl_tiled_surface_new ();
- mypaint_gegl_tiled_surface_set_buffer (mybrush->private->surface,
- gimp_drawable_get_buffer (drawable));
+
+ buffer = mypaint_gegl_tiled_surface_get_buffer (mybrush->private->surface);
+ buffer = gegl_buffer_new (GEGL_RECTANGLE (0, 0,
+ gimp_item_get_width (GIMP_ITEM (drawable)),
+ gimp_item_get_height (GIMP_ITEM (drawable))),
+ gegl_buffer_get_format (buffer));
+ gegl_buffer_copy (gimp_drawable_get_buffer (drawable), NULL,
+ buffer, NULL);
+ mypaint_gegl_tiled_surface_set_buffer (mybrush->private->surface, buffer);
+ g_object_unref (buffer);
mybrush->private->brush = mypaint_brush_new ();
mypaint_brush_from_defaults (mybrush->private->brush);
@@ -217,10 +226,22 @@ gimp_mybrush_motion (GimpPaintCore *paint_core,
g_printerr ("painted rect: %d %d %d %d\n",
rect.x, rect.y, rect.width, rect.height);
- paint_core->x1 = MIN (paint_core->x1, rect.x);
- paint_core->y1 = MIN (paint_core->y1, rect.y);
- paint_core->x2 = MAX (paint_core->x2, rect.x + rect.width);
- paint_core->y2 = MAX (paint_core->y2, rect.y + rect.height);
+ if (rect.width > 0 && rect.height > 0)
+ {
+ GeglBuffer *src;
+
+ src = mypaint_gegl_tiled_surface_get_buffer (mybrush->private->surface);
- gimp_drawable_update (drawable, rect.x, rect.y, rect.width, rect.height);
+ gegl_buffer_copy (src,
+ (GeglRectangle *) &rect,
+ gimp_drawable_get_buffer (drawable),
+ NULL);
+
+ paint_core->x1 = MIN (paint_core->x1, rect.x);
+ paint_core->y1 = MIN (paint_core->y1, rect.y);
+ paint_core->x2 = MAX (paint_core->x2, rect.x + rect.width);
+ paint_core->y2 = MAX (paint_core->y2, rect.y + rect.height);
+
+ gimp_drawable_update (drawable, rect.x, rect.y, rect.width, rect.height);
+ }
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]