Blame gegl/gegl-config.h

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
Packit Service 2781ba
#ifndef __GEGL_CONFIG_H__
Packit Service 2781ba
#define __GEGL_CONFIG_H__
Packit Service 2781ba
Packit Service 2781ba
#include <glib.h>
Packit Service 2781ba
#include <glib-object.h>
Packit Service 2781ba
Packit Service 2781ba
G_BEGIN_DECLS
Packit Service 2781ba
Packit Service 2781ba
#define GEGL_TYPE_CONFIG            (gegl_config_get_type ())
Packit Service 2781ba
#define GEGL_CONFIG(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GEGL_TYPE_CONFIG, GeglConfig))
Packit Service 2781ba
#define GEGL_CONFIG_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass),  GEGL_TYPE_CONFIG, GeglConfigClass))
Packit Service 2781ba
#define GEGL_IS_CONFIG(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GEGL_TYPE_CONFIG))
Packit Service 2781ba
#define GEGL_IS_CONFIG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass),  GEGL_TYPE_CONFIG))
Packit Service 2781ba
#define GEGL_CONFIG_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj),  GEGL_TYPE_CONFIG, GeglConfigClass))
Packit Service 2781ba
Packit Service 2781ba
typedef struct _GeglConfigClass GeglConfigClass;
Packit Service 2781ba
Packit Service 2781ba
struct _GeglConfig
Packit Service 2781ba
{
Packit Service 2781ba
  GObject  parent_instance;
Packit Service 2781ba
Packit Service 2781ba
  gchar   *swap;
Packit Service 2781ba
  gint     cache_size;
Packit Service 2781ba
  gint     chunk_size; /* The size of elements being processed at once */
Packit Service 2781ba
  gdouble  quality;
Packit Service 2781ba
  gdouble  babl_tolerance;
Packit Service 2781ba
  gint     tile_width;
Packit Service 2781ba
  gint     tile_height;
Packit Service 2781ba
  gint     threads;
Packit Service 2781ba
  gboolean use_opencl;
Packit Service 2781ba
};
Packit Service 2781ba
Packit Service 2781ba
struct _GeglConfigClass
Packit Service 2781ba
{
Packit Service 2781ba
  GObjectClass parent_class;
Packit Service 2781ba
};
Packit Service 2781ba
Packit Service 2781ba
GType gegl_config_get_type (void) G_GNUC_CONST;
Packit Service 2781ba
Packit Service 2781ba
GeglConfig   * gegl_config            (void);
Packit Service 2781ba
Packit Service 2781ba
G_END_DECLS
Packit Service 2781ba
Packit Service 2781ba
#endif