Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/graph/node.cpp
| Show First 20 Lines • Show All 808 Lines • ▼ Show 20 Lines | void Node::dereference_all_used_nodes() | ||||
| } | } | ||||
| } | } | ||||
| bool Node::socket_is_modified(const SocketType &input) const | bool Node::socket_is_modified(const SocketType &input) const | ||||
| { | { | ||||
| return (socket_modified & input.modified_flag_bit) != 0; | return (socket_modified & input.modified_flag_bit) != 0; | ||||
| } | } | ||||
| bool Node::is_modified() | bool Node::is_modified() const | ||||
| { | { | ||||
| return socket_modified != 0; | return socket_modified != 0; | ||||
| } | } | ||||
| void Node::tag_modified() | void Node::tag_modified() | ||||
| { | { | ||||
| socket_modified = ~0ull; | socket_modified = ~0ull; | ||||
| } | } | ||||
| ▲ Show 20 Lines • Show All 79 Lines • Show Last 20 Lines | |||||