Blame gegl/gegl-dot.h

Packit bc1512
/* This file is the public GEGL API
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
 * 2006 © Øyvind Kolås.
Packit bc1512
 */
Packit bc1512
Packit bc1512
#ifndef GEGL_DOT_H
Packit bc1512
#define GEGL_DOT_H
Packit bc1512
Packit bc1512
#include "gegl.h"
Packit bc1512
Packit bc1512
Packit bc1512
gchar *gegl_to_dot                       (GeglNode       *node);
Packit bc1512
void   gegl_dot_util_add_node            (GString        *string,
Packit bc1512
                                          GeglNode       *node);
Packit bc1512
void   gegl_dot_util_add_node_sink_edges (GString        *string,
Packit bc1512
                                          GeglNode       *node);
Packit bc1512
void   gegl_dot_util_add_connection      (GString        *string,
Packit bc1512
                                          GeglConnection *connection);
Packit bc1512
void   gegl_dot_node_to_png              (GeglNode       *node,
Packit bc1512
                                          const gchar    *png_path);
Packit bc1512
void   gegl_dot_node_to_png_default      (GeglNode       *node);
Packit bc1512
Packit bc1512
Packit bc1512
#endif