/* This file is an image processing operation for GEGL * * GEGL is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 3 of the License, or (at your option) any later version. * * GEGL is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with GEGL; if not, see . * * Copyright 2006 Øyvind Kolås */ #include "config.h" #include #ifdef GEGL_CHANT_PROPERTIES gegl_chant_object (buffer, _("Buffer location"), _("Write to an existing GeglBuffer")) #else #define GEGL_CHANT_TYPE_SINK #define GEGL_CHANT_C_FILE "write-buffer.c" #include "gegl-chant.h" #include "graph/gegl-node.h" #include "gegl/gegl-debug.h" #include "opencl/gegl-cl.h" static gboolean process (GeglOperation *operation, GeglBuffer *input, const GeglRectangle *result, gint level) { GeglChantO *o = GEGL_CHANT_PROPERTIES (operation); if (o->buffer) { GeglBuffer *output = GEGL_BUFFER (o->buffer); if (gegl_cl_is_accelerated () && gegl_cl_color_supported (input->soft_format, output->soft_format) == GEGL_CL_COLOR_CONVERT) { size_t size; gboolean err; cl_int cl_err; gint j; GeglBufferClIterator *i = gegl_buffer_cl_iterator_new (output, result, output->soft_format, GEGL_CL_BUFFER_WRITE, GEGL_ABYSS_NONE); gint read = gegl_buffer_cl_iterator_add (i, input, result, output->soft_format, GEGL_CL_BUFFER_READ, GEGL_ABYSS_NONE); gegl_cl_color_babl (output->soft_format, &size); GEGL_NOTE (GEGL_DEBUG_OPENCL, "write-buffer: %p %p %s %s {%d %d %d %d}", input, output, babl_get_name(input->soft_format), babl_get_name(output->soft_format), result->x, result->y, result->width, result->height); while (gegl_buffer_cl_iterator_next (i, &err)) { if (err) break; for (j=0; j < i->n; j++) { cl_err = gegl_clEnqueueCopyBuffer (gegl_cl_get_command_queue (), i->tex[read][j], i->tex[0][j], 0, 0, i->size[0][j] * size, 0, NULL, NULL); if (cl_err != CL_SUCCESS) { GEGL_NOTE (GEGL_DEBUG_OPENCL, "Error in gegl_buffer_copy: %s", gegl_cl_errstring(cl_err)); break; } } } if (cl_err || err) gegl_buffer_copy (input, result, output, result); } else gegl_buffer_copy (input, result, output, result); gegl_buffer_flush (output); gegl_node_emit_computed (operation->node, result); } return TRUE; } static void dispose (GObject *object) { GeglChantO *o = GEGL_CHANT_PROPERTIES (object); if (o->buffer) { g_object_unref (o->buffer); o->buffer = NULL; } G_OBJECT_CLASS (gegl_chant_parent_class)->dispose (object); } static void gegl_chant_class_init (GeglChantClass *klass) { GeglOperationClass *operation_class; GeglOperationSinkClass *sink_class; operation_class = GEGL_OPERATION_CLASS (klass); sink_class = GEGL_OPERATION_SINK_CLASS (klass); sink_class->process = process; sink_class->needs_full = FALSE; G_OBJECT_CLASS (klass)->dispose = dispose; gegl_operation_class_set_keys (operation_class, "name" , "gegl:write-buffer", "categories" , "programming:output", "description", _("A GEGL buffer destination surface."), NULL); } #endif