Changeset View
Changeset View
Standalone View
Standalone View
source/blender/compositor/intern/COM_NodeOperation.cc
| Show All 18 Lines | |||||
| #include <cstdio> | #include <cstdio> | ||||
| #include <typeinfo> | #include <typeinfo> | ||||
| #include "COM_ExecutionSystem.h" | #include "COM_ExecutionSystem.h" | ||||
| #include "COM_ReadBufferOperation.h" | #include "COM_ReadBufferOperation.h" | ||||
| #include "COM_defines.h" | #include "COM_defines.h" | ||||
| #include "COM_NodeOperation.h" /* own include */ | #include "COM_NodeOperation.h" /* own include */ | ||||
| #include "COM_ReadBufferOperation.h" | |||||
| namespace blender::compositor { | namespace blender::compositor { | ||||
| /******************* | /******************* | ||||
| **** NodeOperation **** | **** NodeOperation **** | ||||
| *******************/ | *******************/ | ||||
| NodeOperation::NodeOperation() | NodeOperation::NodeOperation() | ||||
| ▲ Show 20 Lines • Show All 194 Lines • ▼ Show 20 Lines | |||||
| std::ostream &operator<<(std::ostream &os, const NodeOperationFlags &node_operation_flags) | std::ostream &operator<<(std::ostream &os, const NodeOperationFlags &node_operation_flags) | ||||
| { | { | ||||
| if (node_operation_flags.complex) { | if (node_operation_flags.complex) { | ||||
| os << "complex,"; | os << "complex,"; | ||||
| } | } | ||||
| if (node_operation_flags.open_cl) { | if (node_operation_flags.open_cl) { | ||||
| os << "open_cl,"; | os << "open_cl,"; | ||||
| } | } | ||||
| if (node_operation_flags.single_threaded) { | if (node_operation_flags.write_full_buffer) { | ||||
| os << "single_threaded,"; | os << "write_full_buffer,"; | ||||
| } | |||||
| if (node_operation_flags.write_partial_buffer) { | |||||
| os << "write_partial_buffer,"; | |||||
| } | } | ||||
| if (node_operation_flags.use_render_border) { | if (node_operation_flags.use_render_border) { | ||||
| os << "render_border,"; | os << "render_border,"; | ||||
| } | } | ||||
| if (node_operation_flags.use_viewer_border) { | if (node_operation_flags.use_viewer_border) { | ||||
| os << "view_border,"; | os << "view_border,"; | ||||
| } | } | ||||
| if (node_operation_flags.is_resolution_set) { | if (node_operation_flags.is_resolution_set) { | ||||
| ▲ Show 20 Lines • Show All 52 Lines • Show Last 20 Lines | |||||