Changeset View
Changeset View
Standalone View
Standalone View
source/blender/compositor/intern/COM_NodeOperationBuilder.cpp
| Show First 20 Lines • Show All 94 Lines • ▼ Show 20 Lines | for (NodeGraph::Links::const_iterator it = m_graph.links().begin(); it != m_graph.links().end(); | ||||
| for (OpInputs::const_iterator it = op_to_list.begin(); it != op_to_list.end(); ++it) { | for (OpInputs::const_iterator it = op_to_list.begin(); it != op_to_list.end(); ++it) { | ||||
| NodeOperationInput *op_to = *it; | NodeOperationInput *op_to = *it; | ||||
| addLink(op_from, op_to); | addLink(op_from, op_to); | ||||
| } | } | ||||
| } | } | ||||
| add_operation_input_constants(); | add_operation_input_constants(); | ||||
| resolve_proxies(); | |||||
| add_datatype_conversions(); | add_datatype_conversions(); | ||||
| resolve_proxies(); | |||||
| determineResolutions(); | determineResolutions(); | ||||
| /* surround complex ops with read/write buffer */ | /* surround complex ops with read/write buffer */ | ||||
| add_complex_operation_buffers(); | add_complex_operation_buffers(); | ||||
| /* links not available from here on */ | /* links not available from here on */ | ||||
| /* XXX make m_links a local variable to avoid confusion! */ | /* XXX make m_links a local variable to avoid confusion! */ | ||||
| m_links.clear(); | m_links.clear(); | ||||
| ▲ Show 20 Lines • Show All 625 Lines • Show Last 20 Lines | |||||