Blame docs/gegl-operation-area-filter.h.html

Packit bc1512
Packit bc1512
<HTML>
Packit bc1512
<HEAD>
Packit bc1512
<TITLE>Enscript Output</TITLE>
Packit bc1512
</HEAD>
Packit bc1512
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#1F00FF" ALINK="#FF0000" VLINK="#9900DD">
Packit bc1512
Packit bc1512
Packit bc1512

../gegl/operation/gegl-operation-area-filter.h

Packit bc1512
Packit bc1512
Packit bc1512
<FONT COLOR="#B22222">/* This file is part of GEGL
Packit bc1512
 *
Packit bc1512
 * GEGL is free software; you can redistribute it and/or
Packit bc1512
 * modify it under the terms of the GNU Lesser General Public
Packit bc1512
 * License as published by the Free Software Foundation; either
Packit bc1512
 * version 3 of the License, or (at your option) any later version.
Packit bc1512
 *
Packit bc1512
 * GEGL is distributed in the hope that it will be useful,
Packit bc1512
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit bc1512
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit bc1512
 * Lesser General Public License for more details.
Packit bc1512
 *
Packit bc1512
 * You should have received a copy of the GNU Lesser General Public
Packit bc1512
 * License along with GEGL; if not, see <http://www.gnu.org/licenses/>.
Packit bc1512
 *
Packit bc1512
 * Copyright 2007 Øyvind Kolås
Packit bc1512
 */</FONT>
Packit bc1512
Packit bc1512
<FONT COLOR="#B22222">/* GeglOperationAreaFilter
Packit bc1512
 * The AreaFilter base class allows defining operations where the output data depends on a neighbourhood
Packit bc1512
 * with an input window that extends beyond the output window, the information about needed extra pixels
Packit bc1512
 * in different directions should be set up in the prepare callback for the operation.
Packit bc1512
*/</FONT>
Packit bc1512
Packit bc1512
#<FONT COLOR="#5F9EA0">ifndef</FONT> <FONT COLOR="#B8860B">__GEGL_OPERATION_AREA_FILTER_H__</FONT>
Packit bc1512
#<FONT COLOR="#5F9EA0">define</FONT> <FONT COLOR="#B8860B">__GEGL_OPERATION_AREA_FILTER_H__</FONT>
Packit bc1512
Packit bc1512
#<FONT COLOR="#5F9EA0">include</FONT> <FONT COLOR="#BC8F8F">"gegl-operation-filter.h"</FONT>
Packit bc1512
Packit bc1512
G_BEGIN_DECLS
Packit bc1512
Packit bc1512
#<FONT COLOR="#5F9EA0">define</FONT> <FONT COLOR="#B8860B">GEGL_TYPE_OPERATION_AREA_FILTER</FONT>            (gegl_operation_area_filter_get_type ())
Packit bc1512
#<FONT COLOR="#5F9EA0">define</FONT> <FONT COLOR="#0000FF">GEGL_OPERATION_AREA_FILTER</FONT>(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), GEGL_TYPE_OPERATION_AREA_FILTER, GeglOperationAreaFilter))
Packit bc1512
#<FONT COLOR="#5F9EA0">define</FONT> <FONT COLOR="#0000FF">GEGL_OPERATION_AREA_FILTER_CLASS</FONT>(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass),  GEGL_TYPE_OPERATION_AREA_FILTER, GeglOperationAreaFilterClass))
Packit bc1512
#<FONT COLOR="#5F9EA0">define</FONT> <FONT COLOR="#0000FF">GEGL_IS_OPERATION_AREA_FILTER</FONT>(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GEGL_TYPE_OPERATION_AREA_FILTER))
Packit bc1512
#<FONT COLOR="#5F9EA0">define</FONT> <FONT COLOR="#0000FF">GEGL_IS_OPERATION_AREA_FILTER_CLASS</FONT>(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass),  GEGL_TYPE_OPERATION_AREA_FILTER))
Packit bc1512
#<FONT COLOR="#5F9EA0">define</FONT> <FONT COLOR="#0000FF">GEGL_OPERATION_AREA_FILTER_GET_CLASS</FONT>(obj)  (G_TYPE_INSTANCE_GET_CLASS ((obj),  GEGL_TYPE_OPERATION_AREA_FILTER, GeglOperationAreaFilterClass))
Packit bc1512
Packit bc1512
<FONT COLOR="#228B22">typedef</FONT> <FONT COLOR="#228B22">struct</FONT> _GeglOperationAreaFilter  GeglOperationAreaFilter;
Packit bc1512
<FONT COLOR="#228B22">struct</FONT> _GeglOperationAreaFilter
Packit bc1512
{
Packit bc1512
  GeglOperationFilter parent_instance;
Packit bc1512
Packit bc1512
  gint                left;   <FONT COLOR="#B22222">/* extra pixels needed in each direction */</FONT>
Packit bc1512
  gint                right;
Packit bc1512
  gint                top;
Packit bc1512
  gint                bottom;
Packit bc1512
};
Packit bc1512
Packit bc1512
<FONT COLOR="#228B22">typedef</FONT> <FONT COLOR="#228B22">struct</FONT> _GeglOperationAreaFilterClass GeglOperationAreaFilterClass;
Packit bc1512
<FONT COLOR="#228B22">struct</FONT> _GeglOperationAreaFilterClass
Packit bc1512
{
Packit bc1512
  GeglOperationFilterClass parent_class;
Packit bc1512
  gpointer                 pad[4];
Packit bc1512
};
Packit bc1512
Packit bc1512
GType <FONT COLOR="#0000FF">gegl_operation_area_filter_get_type</FONT> (<FONT COLOR="#228B22">void</FONT>) G_GNUC_CONST;
Packit bc1512
Packit bc1512
G_END_DECLS
Packit bc1512
Packit bc1512
#<FONT COLOR="#5F9EA0">endif</FONT>
Packit bc1512
Packit bc1512

Packit bc1512
<ADDRESS>Generated by GNU Enscript 1.6.5.90.</ADDRESS>
Packit bc1512
</BODY>
Packit bc1512
</HTML>