Method

GeglNodeconnect_to

Declaration [src]

gboolean
gegl_node_connect_to (
  GeglNode* source,
  const gchar* output_pad_name,
  GeglNode* sink,
  const gchar* input_pad_name
)

Description [src]

Makes a connection between the pads of two nodes.

Returns TRUE if the connection was successfully made.

Parameters

output_pad_name

Type: const gchar*

The output pad we want to use on the source.

The data is owned by the caller of the function.
The value is a NUL terminated UTF-8 string.
sink

Type: GeglNode

The node we’re connecting an input to.

The data is owned by the caller of the function.
input_pad_name

Type: const gchar*

The name of the input pad we are connecting to.

The data is owned by the caller of the function.
The value is a NUL terminated UTF-8 string.

Return value

Type: gboolean

No description available.