Changeset View
Changeset View
Standalone View
Standalone View
intern/cycles/graph/node.h
| Show First 20 Lines • Show All 158 Lines • ▼ Show 20 Lines | struct Node { | ||||
| /* Get total size of this node. */ | /* Get total size of this node. */ | ||||
| size_t get_total_size_in_bytes() const; | size_t get_total_size_in_bytes() const; | ||||
| /* Type testing, taking into account base classes. */ | /* Type testing, taking into account base classes. */ | ||||
| bool is_a(const NodeType *type); | bool is_a(const NodeType *type); | ||||
| bool socket_is_modified(const SocketType &input) const; | bool socket_is_modified(const SocketType &input) const; | ||||
| bool is_modified(); | bool is_modified() const; | ||||
| void tag_modified(); | void tag_modified(); | ||||
| void clear_modified(); | void clear_modified(); | ||||
| void print_modified_sockets() const; | void print_modified_sockets() const; | ||||
| ustring name; | ustring name; | ||||
| const NodeType *type; | const NodeType *type; | ||||
| ▲ Show 20 Lines • Show All 56 Lines • Show Last 20 Lines | |||||