gegl-0.0.0.5: Haskell bindings to GEGL library

Safe HaskellSafe
LanguageHaskell2010

GEGL.FFI.Connection

Description

FFI module for handling connections between nodes

Synopsis

Documentation

c_gegl_node_connect_from #

Arguments

:: Ptr ()

Sink node representation

-> CString

Name of the input pad at the sink node

-> Ptr ()

Source node representation

-> CString

Name of the output pad at the source node

-> IO CInt 

Interface to the gegl_node_connect_from function in C

c_gegl_node_connect_to #

Arguments

:: Ptr ()

Source node representation

-> CString

Name of the output pad at the source node

-> Ptr ()

Sink node representation

-> CString

Name of input pad at the sink node

-> IO CInt 

Interface to the gegl_node_connect_to function in C

c_gegl_node_link #

Arguments

:: Ptr ()

Source node representation

-> Ptr ()

Sink node representation

-> IO () 

Interface to the gegl_node_link function in C

c_gegl_node_disconnect :: Ptr () -> CString -> IO CInt #