Skip to content

Commit

Permalink
process: Remove trailing white spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
debarshiray committed Jan 14, 2016
1 parent 907e728 commit 1c614ae
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions gegl/process/gegl-graph-traversal.c
Original file line number Diff line number Diff line change
Expand Up @@ -156,19 +156,19 @@ gegl_graph_get_bounding_box (GeglGraphTraversal *path)
/**
* gegl_graph_prepare:
* @path: The traversal path
*
*
* Prepare all nodes, initializing their output formats and have rects.
*/
void
gegl_graph_prepare (GeglGraphTraversal *path)
{
GList *list_iter = NULL;

for (list_iter = path->dfs_path; list_iter; list_iter = list_iter->next)
{
GeglNode *node = GEGL_NODE (list_iter->data);
GeglOperation *operation = node->operation;

g_mutex_lock (&node->mutex);

gegl_operation_prepare (operation);
Expand All @@ -182,11 +182,11 @@ gegl_graph_prepare (GeglGraphTraversal *path)
}

g_mutex_unlock (&node->mutex);

if (!g_hash_table_contains (path->contexts, node))
{
GeglOperationContext *context = gegl_operation_context_new (node->operation);

g_hash_table_insert (path->contexts,
node,
context);
Expand All @@ -198,7 +198,7 @@ gegl_graph_prepare (GeglGraphTraversal *path)
* gegl_graph_prepare_request:
* @path: The traversal path
* @request_roi: The request rect
*
*
* Prepare the graph to render request_roi, this will calculate
* the area that needs to be rendered from each node in the
* graph to fulfill this request.
Expand Down

0 comments on commit 1c614ae

Please sign in to comment.