Blame gegl/buffer/gegl-tile-source.c

Packit Service 2781ba
/* This file is part of GEGL.
Packit Service 2781ba
 *
Packit Service 2781ba
 * This library 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
 * This library 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,2007 Øyvind Kolås <pippin@gimp.org>
Packit Service 2781ba
 */
Packit Service 2781ba
#include "config.h"
Packit Service 2781ba
#include <glib.h>
Packit Service 2781ba
#include <glib-object.h>
Packit Service 2781ba
#include "gegl-buffer-types.h"
Packit Service 2781ba
#include "gegl-tile-source.h"
Packit Service 2781ba
Packit Service 2781ba
G_DEFINE_TYPE (GeglTileSource, gegl_tile_source, G_TYPE_OBJECT)
Packit Service 2781ba
Packit Service 2781ba
static gpointer
Packit Service 2781ba
gegl_tile_source_command_eek (GeglTileSource  *gegl_tile_source,
Packit Service 2781ba
         GeglTileCommand  command,
Packit Service 2781ba
         gint             x,
Packit Service 2781ba
         gint             y,
Packit Service 2781ba
         gint             z,
Packit Service 2781ba
         gpointer         data)
Packit Service 2781ba
{
Packit Service 2781ba
  g_warning ("Unimplemented %s %i, %i, %i, %p", G_STRFUNC, command, x, y, data);
Packit Service 2781ba
  return NULL;
Packit Service 2781ba
}
Packit Service 2781ba
Packit Service 2781ba
static void
Packit Service 2781ba
gegl_tile_source_class_init (GeglTileSourceClass *klass)
Packit Service 2781ba
{
Packit Service 2781ba
}
Packit Service 2781ba
Packit Service 2781ba
static void
Packit Service 2781ba
gegl_tile_source_init (GeglTileSource *self)
Packit Service 2781ba
{
Packit Service 2781ba
  self->command = gegl_tile_source_command_eek;
Packit Service 2781ba
}