Blame operations/core/nop.c

Packit Service 2781ba
/* This file is an image processing operation for GEGL
Packit Service 2781ba
 *
Packit Service 2781ba
 * GEGL is free software; you can redistribute it and/or
Packit Service 2781ba
 * modify it under the terms of the GNU Lesser General Public
Packit Service 2781ba
 * License as published by the Free Software Foundation; either
Packit Service 2781ba
 * version 3 of the License, or (at your option) any later version.
Packit Service 2781ba
 *
Packit Service 2781ba
 * GEGL is distributed in the hope that it will be useful,
Packit Service 2781ba
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 2781ba
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 2781ba
 * Lesser General Public License for more details.
Packit Service 2781ba
 *
Packit Service 2781ba
 * You should have received a copy of the GNU Lesser General Public
Packit Service 2781ba
 * License along with GEGL; if not, see <http://www.gnu.org/licenses/>.
Packit Service 2781ba
 *
Packit Service 2781ba
 * Copyright 2006 Øyvind Kolås <pippin@gimp.org>
Packit Service 2781ba
 */
Packit Service 2781ba
Packit Service 2781ba
#include "config.h"
Packit Service 2781ba
#include <glib/gi18n-lib.h>
Packit Service 2781ba
Packit Service 2781ba
Packit Service 2781ba
#ifdef GEGL_CHANT_PROPERTIES
Packit Service 2781ba
Packit Service 2781ba
   /* no properties */
Packit Service 2781ba
Packit Service 2781ba
#else
Packit Service 2781ba
Packit Service 2781ba
#define GEGL_CHANT_TYPE_FILTER
Packit Service 2781ba
#define GEGL_CHANT_C_FILE       "nop.c"
Packit Service 2781ba
Packit Service 2781ba
#include "gegl-chant.h"
Packit Service 2781ba
Packit Service 2781ba
Packit Service 2781ba
static gboolean
Packit Service 2781ba
gegl_nop_process (GeglOperation        *operation,
Packit Service 2781ba
                  GeglOperationContext *context,
Packit Service 2781ba
                  const gchar          *output_prop,
Packit Service 2781ba
                  const GeglRectangle  *result,
Packit Service 2781ba
                  gint                  level)
Packit Service 2781ba
{
Packit Service 2781ba
  GeglBuffer *input;
Packit Service 2781ba
Packit Service 2781ba
  if (strcmp (output_prop, "output"))
Packit Service 2781ba
    {
Packit Service 2781ba
      g_warning ("requested processing of %s pad on a nop", output_prop);
Packit Service 2781ba
      return FALSE;
Packit Service 2781ba
    }
Packit Service 2781ba
Packit Service 2781ba
  input = GEGL_BUFFER (gegl_operation_context_get_object (context, "input"));
Packit Service 2781ba
  if (!input)
Packit Service 2781ba
    {
Packit Service 2781ba
      g_warning ("nop received NULL input");
Packit Service 2781ba
      return FALSE;
Packit Service 2781ba
    }
Packit Service 2781ba
Packit Service 2781ba
  gegl_operation_context_take_object (context, "output", g_object_ref (G_OBJECT (input)));
Packit Service 2781ba
  return TRUE;
Packit Service 2781ba
}
Packit Service 2781ba
Packit Service 2781ba
static void
Packit Service 2781ba
gegl_chant_class_init (GeglChantClass *klass)
Packit Service 2781ba
{
Packit Service 2781ba
  GeglOperationClass *operation_class;
Packit Service 2781ba
Packit Service 2781ba
  operation_class = GEGL_OPERATION_CLASS (klass);
Packit Service 2781ba
  operation_class->process = gegl_nop_process;
Packit Service 2781ba
Packit Service 2781ba
  gegl_operation_class_set_keys (operation_class,
Packit Service 2781ba
              "name",        "gegl:nop",
Packit Service 2781ba
              "categories",  "core",
Packit Service 2781ba
              "description", _("No operation (can be used as a routing point)"),
Packit Service 2781ba
              NULL);
Packit Service 2781ba
}
Packit Service 2781ba
Packit Service 2781ba
#endif