Function gegl::list_operations
source · pub fn list_operations() -> Vec<GString>
Expand description
Returns
An alphabetically sorted array of available operation names. This excludes any compat-name registered by operations. The list should be freed with g_free after use.
gchar **operations; guint n_operations; gint i;
operations = gegl_list_operations (&n_operations);
g_print (“Available operations:\n”);
for (i=0; i < n_operations; i++)
{
g_print (“\ts
\n”, operations[i]);
}
g_free (operations);