| Top |  |  |  |  | 
| gimpparasiteiogimpparasiteio — Utility functions to (de)serialize certain C structures to/from GimpParasite's. | 
| void | gimp_pixpipe_params_init () | 
| void | gimp_pixpipe_params_free () | 
| void | gimp_pixpipe_params_parse () | 
| gchar * | gimp_pixpipe_params_build () | 
void gimp_pixpipe_params_parse (const gchar *parameters,GimpPixPipeParams *params);
struct GimpPixPipeParams {
  gint      step;
  gint      ncells;
  gint      dim;
  gint      cols;
  gint      rows;
  gint      cellwidth;
  gint      cellheight;
  gchar    *placement;
  gboolean  free_placement_string;
  gint      rank[GIMP_PIXPIPE_MAXDIM];
  gchar    *selection[GIMP_PIXPIPE_MAXDIM];
  /* this flag is now useless. All selection strings are allocated. */
  gboolean  free_selection_string;
};
PLease somebody help documenting this.
| gint  | Step | |
| gint  | Number of cells | |
| gint  | Dimension | |
| gint  | Columns | |
| gint  | Rows | |
| gint  | Cell width | |
| gint  | Cell height | |
| gchar * | Placement | |
| gboolean  | Unused, ignore | |
| gint  | Rank | |
| gchar * | Selection | |
| gboolean  | Unused, ignore |